@import url('https://fonts.googleapis.com/css2?family=Scope+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Scope+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Scope+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
:root{
    --lightBrown:#A0866E;
    --mediumBrow:#85674B;
    --darkBrown:#6C543D;
    --whiteBackground: #FFFFFF;
    --poppins : "Poppins", sans-serif;
    --scope-opne: "Scope One", serif;
    --nunito-sans: "Nunito Sans", sans-serif;
    --roboto-serif:"Roboto Serif", serif;
    --satisfy: "Satisfy", cursive;
    --semiBold: 600
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 1rem;
}

a {
    text-decoration: none;
    color: var(--darkBrown);
}

button{
    all: unset;
    cursor: pointer;
}



.width-wrapper{
    margin: auto;
    max-width: 1260px;
}
.white-bolded {
    color: #FFFFFF;
    font-weight: bold;
}
.brown-bolded {
    color: var(--darkBrown);
    font-weight: bold;
}
/* HEADER */
/* header{
    -webkit-box-shadow: 0px 14px 10px -4px rgba(216, 216, 216, 1);
    -moz-box-shadow: 0px 14px 10px -4px rgba(216, 216, 216, 1);
    box-shadow: 0px 14px 10px -4px rgba(216, 216, 216, 1);
} */
header{
    position: fixed;
    width: 100%;
    background-color: var(--whiteBackground);
    z-index: 999;
}
.burger-menu{
    display: none;
}
.header{
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding-inline: 10px;
}

.header-logo{
    width: 20%;
}
.header-logo > img{
    height: 80px;
}
.menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--darkBrown);
    font-family: var(--poppins);
    font-size: 15px;
}

.nav-link:not(:last-of-type)::after{
    display: block;
    content: " ";
    height: 2px;
    width: 0%;
    background-color: var(--darkBrown);
    transition: 0.2s ease-in-out;
}
.nav-link:not(:last-of-type):hover::after{
    width: 100%;
}
.nav-link:last-of-type{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 140px;
    border: 3px solid var(--lightBrown);
    border-radius: 10px;
}
.nav-link:last-of-type:hover{
    background-color: var(--lightBrown);
    color: white;
}


/* Hero section */
section{
    padding-top: 150px;
}

#hero{
    height: fit-content;
    min-height: 40rem;
}
#hero > div{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.hero-text-box{
    width: 500px;
    font-family: var(--poppins);
}

.hero-text-box > h1{
    font-size: 50px;
    line-height: 55px;
    font-weight: var(--semiBold);
    color: var(--darkBrown);
}
.hero-text-box > p , .hero-text-box > a{
    font-size: 18px;
    width: 90%;
}
.hero-text-box> p{
    font-size: 18px;
    margin-block: 15px;
}
.hero-text-box> a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--mediumBrow);
    color: #FFFFFF;
    height: 50px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}
.hero-text-box > a:hover{
    padding-left: 15px;
}
.hero-image{
    height: 500px;
    width: 335px;
    border-radius: 15px;
}




/* History section */
#history{
    height: fit-content;
    min-height: 40rem;
    padding-bottom: 100px;
}

#history > div {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.history-text-box{
    width: 450px;
    font-family: var(--poppins);
    padding-left: 15px;
}
.history-text-box > h2{
    color: var(--lightBrown);
    line-height: 40px;
    font-size: 32px;
    font-family: var(--scope-opne);
}
.history-text-box > h2 > span{
    font-size: 50px;
    font-family: var(--poppins);
    color: black;
}

.history-text-box > p{
    font-size: 17px;
    font-family: var(--poppins);
    margin-block:15px;
}
.history-text-box > p:last-of-type{
    color: var(--darkBrown);
}


.image-box > img {
    position: relative;
    height: 350px;
    border-radius: 20px;
}

.image-box > img:first-of-type{
    top:-100px;
    right:-80px;
}    
.image-box > img:last-of-type{
    top: 150px;
    right: 50px;
}


/* GameChangers section */

#gamechangers{
    background-color: var(--lightBrown);
    padding-bottom: 150px;
}
#gamechangers > div{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.gc-image{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
.gc-image > h2 {
    font-family: var(--poppins);
    color: #FFFFFF;
    font-weight: var(--semiBold);
    font-size: 55px;
    line-height: 45px;
}
.gc-image > h2 > span{
    font-family: var(--scope-opne);
    font-size: 40px;
    font-weight: 200;
}
.gc-image > img{
    width: 450px;
    height: 250px;
    border-radius: 20px;
}

.gc-text-box{
    width: 500px;
}

.gc-text-box > p {
    color: #FFFFFF;
    font-family: var(--poppins);
    margin-block:15px;
    font-size: 15px;
}

/* About section */
#about{
    -webkit-box-shadow: 0px 14px 10px -4px rgba(216, 216, 216, 1);
    -moz-box-shadow: 0px 14px 10px -4px rgba(216, 216, 216, 1);
    box-shadow: 0px 14px 10px -4px rgba(216, 216, 216, 1);
    padding-bottom: 100px;
}
.about-upper{
    display: flex;
    justify-content: space-around;
}

.about-upper> img {
    width: 300px;
    height: 500px;
    border-radius: 20px;
}

.about-text-box{
    width: 500px;
}
.about-text-box > h2{
    font-size: 32px;
    font-family: var(--scope-opne);
    color: var(--lightBrown);
    line-height: 40px;
}
.about-text-box > h2 > span{
    font-size: 50px;
    font-family: var(--poppins);
    font-weight: var(--semiBold);
    color: black
}
.about-text-box > p {
    font-size: 17px;
    font-family: var(--poppins);
    margin-block: 15px;
}
.about-lower{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 120px;
}
.about-box{
    height: 150px;
    width: 250px;
    border: 2px solid var(--darkBrown);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    font-size: 30px;
    font-weight: bold;
    font-family: var(--roboto-serif);
}
.about-box > a {
    display: block;
    text-align: center;
    line-height: 25px;
    background-color: var(--lightBrown);
    width: 80%;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.about-box  a:hover{
    padding-left: 15px;
}


/*  Why section */
#why > div{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#why > div > img {
    width: 25%;
}

.why-container{
    width: 80%;
    background-color: var(--lightBrown);
    display: flex;
    justify-content: flex-start;
    flex-shrink: 1;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
}
.why-container > img {
    width: 300px;
    border-radius: 20px;
    height: auto;
}
.why-text{
    padding: 10px;
}
.why-text > h2,.why-text > p{
    font-family: var(--poppins);
    color: #FFFFFF;
    margin-block: 15px;
}
.why-text > h2 {
    font-size: 40px;
}

/* Opinions */
#opinions{
    height: 65rem;
    padding-bottom: 0px;
}
.opinion-upper-box{
    height: 400px;
    background-color: var(--lightBrown);
}

.opinions-holder{
    height: fit-content;
    position: relative;
    top: -250px;

}
.opinions-holder > h2 {
    font-size: 55px;
    text-align: center;
    font-family: var(--semiBold);
    font-family: var(--poppins);
    color: #FFFFFF;
    margin-bottom: 20px;
}
.opinions-slider{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: scroll;
    gap: 20px;
    padding: 20px;
}

.opinion{
    flex-shrink: 0;
    display: block;
    height: 400px;
    width: auto;
    border-radius: 20px;

}

::-webkit-scrollbar {
    width: 15px;
  }
  ::-webkit-scrollbar-track{
    border: 1px solid var(--darkBrown);
    border-radius: 20px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--darkBrown);
    border-radius: 20px;
  }

/* Requirememnts */
.requirements-holder{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
#requirements > div > h2{
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}
.requirement{
    height: 250px;
    width: 280px;
    background-color: var(--lightBrown);
    border-radius: 20px;
    color: #FFFFFF;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    gap: 5px;
    margin: 10px;
}
.requirement > p:first-of-type{
    font-family: var(--satisfy);
    font-size: 24px;
}
.requirement > h2:last-of-type{
    font-size: 20px;
    font-family: var(--poppins);
    font-weight: var(--semiBold);
}
.requirement > p:last-of-type{
    font-size: 16px;
    font-family: var(--poppins);
    width: 90%;
}


/*  FORM SECTION */
#form{
    padding-inline:15px;
    padding-bottom: 150px;
}

.form-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    border: 4px solid var(--darkBrown);
    padding: 40px;
    border-radius: 50px;
}
.form-wrapper > img {
    height: 400px;
}

.form-text > h2 {
    font-size: 50px;
    font-family: var(--poppins);
    font-weight: var(--semiBold);
}
.form-text > p {
    width: 300px;
    font-family: var(--poppins);
    font-size: 20px;
}
.form-button{
    width: 300px;
    height: 50px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--mediumBrow);
    color: white;
    font-family: var(--nunito-sans);
}

.footer{
    -webkit-box-shadow: 2px -5px 24px -8px rgba(66, 68, 90, 1);
    -moz-box-shadow: 2px -5px 24px -8px rgba(66, 68, 90, 1);
    box-shadow: 2px -5px 24px -8px rgba(66, 68, 90, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding-block: 30px;
}
.footer > a{
    border: 3px solid transparent;    
    transition: 0.3s ease-in-out;
    border-radius: 20px;
}
.footer > a:hover{
    border: 3px solid var(--darkBrown);    
}
.footer > a > img {
    height: 50px;
}



@media screen and (max-width:1100px){
    .burger-menu{
        display: block;
    }
    .header-logo{
        width: 200px;
    }
    .menu{
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        left: -100%;
        background-color: rgba(0, 0, 0, 0.965);
        justify-content: flex-start;
        flex-direction: column;
        transition: 0.3s ease-in-out;
    }
    .nav-link:not(:last-of-type)::after{
        display: none;
    }
    .nav-link{
        width: 100%;
        height: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
    }
    .nav-link:last-of-type{
        width: 100%;
        height: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 0;
        background-color: transparent;
    }
    .nav-link:last-of-type:hover{
        background-color: transparent;
        color: var(--darkBrown);
    }

}



@media screen and (max-width:1000px){
    /* Hero responsice */
    .hero-text-box{
        width: 400px;
    }
    .hero-text-box > h1{
        font-size: 38px;
    }
    .hero-text-box > p , .hero-text-box > a{
        font-size: 16px;
    }
    .hero-text-box > a {
        height: 40px;
    }
    .hero-image{
        height: 400px;
        width: auto;
    }

    /* History */
    #history > div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .history-text-box{
        width: 80%;
        text-align: center;
        margin-bottom: 20px;
        padding: 0;
    }
    .history-text-box > h2{
        font-size: 30px;
    }
    .history-text-box > h2 > span{
        font-size: 38px;
    }
    .history-text-box > p{
        font-size: 15px;
    }
    .image-box{
        height: 35rem;
    }
    .image-box > img {
        height: 300px;
    }
    
    .image-box > img:first-of-type{
        top: 0;
        right:-50px;
    }    
    .image-box > img:last-of-type{
        top: 200px;
        right: 50px;
    }

    /* Gamechengers */
    #gamechangers > div{
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }
    .gc-image{
        width: 80%;
    }
    .gc-image > h2 {
        font-size: 38px;
        line-height: 32px;
    }
    .gc-image > h2 > span{
        font-size: 28px;
    }
    .gc-image > img{
        width: 90%;
        height: auto;
    }
    
    .gc-text-box{
        width: 80%;
        text-align: center;
        margin-top: 20px;
    }
    .gc-text-box > p {
        margin-block: 10px;
        font-size: 14px;
    }

    /* About section */
    .about-upper> img {
        width: 250px;
        height: 430px;
    }
    .about-text-box{
        width: 400px;
    }
    .about-text-box > h2{
        font-size: 28px;
    }
    .about-text-box > h2 > span{
        font-size: 38px;
    }
    .about-text-box > p {
        font-size: 15px;
        margin-block: 10px;
    }

    .about-box{
        height: 130px;
        width: 180px;
        font-size: 25px;
    }
    .about-box > a {
        display: block;
        text-align: center;
        line-height: 25px;
        background-color: var(--lightBrown);
        width: 80%;
        border-radius: 20px;
        transition: 0.3s ease-in-out;
    }
    .about-box  a:hover{
        padding-left: 15px;
    }
    /*  Why section */
    #why{
        padding-top: 0px;
    }
    #why > div{
        flex-direction: column;
        padding-bottom: 100px;
    }
    #why > div > img {
        width: 400px;
        position: relative;
    }

    .why-container > img {
        display: none;
    }
    .why-text{
        padding: 20px;
    }
    .why-text > h2,.why-text > p{
        width: 100%;
        margin: auto;
        text-align: center;
    }
    .why-text > h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .why-text >p {
        font-size: 15px;
        line-height: 25px;
        margin-block: 15px;
    }
    /* Opinions */
    .opinion{
        height: 350px;
    }

    #requirements > div > h2:first-of-type{
        font-size: 35px;
    }
    .requirement{
        padding-bottom: 50px;
    }
    .requirement > p {
        width: 90%;
    }

    /*  FORM SECTION */
    .form-wrapper{
        width: 100%;
        justify-content: space-around;
        gap: 9px;
    }
    .form-wrapper > img {
        width: 50%;
        height: auto;
    }

    .form-text > h2 {
        font-size: 38px;
    }
    .form-text > p {
        font-size: 16px;
    }
    .form-button{
        width: 100%;
        height: 50px;
    }
}


@media screen and (max-width:700px){
    #hero > div{
        flex-direction: column;
    }
    .hero-image{
        height: auto;
        width: 40%;
        border-radius: 15px;
    }
    .hero-text-box{
        margin:auto;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .hero-text-box > h1{
        font-size: 30px;
        line-height: 34px;
        margin-block: 20px;
    }
    .hero-text-box > p , .hero-text-box > a{
        margin: auto;
        width: 80%;
        font-size: 15px;
        margin-block:20px
    }
    .hero-text-box > a {
        width: 50%;
    }
    .hero-image{
        height: 400px;
        width: auto;
    }

    /* History images */
    .image-box{
        height: fit-content;
    }
    .image-box > img {
        height: 300px;
    }
    
    .image-box > img:first-of-type{
        display: none;
        top: 0;
        right:-50px;
    }    

    .image-box > img:last-of-type{
        top: 0;
        right: 0;
    }
    /* ABOUT */
    .about-upper{
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .about-upper> img {
        width: 50%;
        height: auto;
    }
    
    .about-text-box{
        width: 90%;
    }
    .about-text-box > h2{
        font-size: 24px;
        font-family: var(--scope-opne);
        color: var(--lightBrown);
        line-height: 40px;
    }
    .about-text-box > h2 > span{
        font-size: 28px;
        font-family: var(--poppins);
        font-weight: var(--semiBold);
        color: black
    }
    .about-text-box > p {
        font-size: 15px;
        font-family: var(--poppins);
        margin-block: 15px;
    }

    /*  FORM SECTION */
    #form{
        padding-inline:15px;
        padding-bottom: 150px;
    }
    
    .form-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        gap: 50px;
        border: 0px solid var(--darkBrown);
        padding: 40px;
        border-radius: 50px;
        text-align: center;
    }
    .form-wrapper > img {
        height: auto;
        width: 100%;
    }
    
    .form-text > h2 {
        font-size: 35px;
        font-family: var(--poppins);
        font-weight: var(--semiBold);
    }
    .form-text > p {
        width: 100%;
        font-family: var(--poppins);
        font-size: 18px;
    }
    .form-button{
        width: 300px;
        height: 40px;
        margin: auto;
        margin-top: 30px;
    }

}