@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend+Deca:wght@100..900&display=swap');

:root {
    --color-dark-orange: #D77400;
    --color-black: #000000;
    --color-dark-green: #1C3828;
    --color-light-orange: #FFF3DB;
    --color-white: #fff;
    --color-card-background: #F5F5F5;
    --color-info-light: #edba73;
    --color-dark: #363949;
    --color-light: rgba(132, 139, 200, 0.18);
    --color-underline: #BF810A;
    --color-dark-variant: #677483;
    --color-background: #ffffff;

    --card-border-radius: 2rem;
    --border-radius-1: 0.4rem;
    --border-radius-2: 0.8rem;
    --border-radius-3: 1.2rem;

    --card-padding: 1.8rem;
    --padding-1: 1.2rem;

    --box-shadow: 0 2rem 3rem var(var(--color-light));

}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    padding: 0px 100px;
    width: 100%;
}

/* Navbar */

nav {
    background-color: var(--color-background);
    color: var(--color-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    font-family: "Lexend Deca", sans-serif;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: auto;
    margin-right: 5px;
}

.logo-text {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-black);
}

.logo-text span {
    font-weight: 700;
}

.links {
    display: flex;
    align-items: center;
    width: 45%;
    justify-content: space-around;
}

.links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 20px;
    margin-left: 20px;
    font-weight: 200;
    transition: color 0.3s ease-in-out, font-weight 0.4s ease-in-out;
}

.links a:hover {
    color: #D66F21;
    font-weight: 450;
}


.hide {
    display: none;
}

nav .links .nav-foot{
    display: none;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 30px;
    height: 5px;
    margin: 4px 0;
    transition: 0.4s;
}

.circle {
    width: 20%;
    height: 100%;
    border-radius: 25px;

}

.circle:nth-child(1) {
    background: linear-gradient(0deg, #FAAB5D 0%, #D56E20 20.5%);
}

.circle:nth-child(2) {
    background: linear-gradient(0deg, #FAAB5D 20.5%, #D56E20 64.5%);
}

.circle:nth-child(3) {
    background: linear-gradient(0deg, #FAAB5D 64.5%, #D56E20 100%);
}

.rectangle {
    width: 80%;
    height: 100%;
    border-radius: 25px;
}


.rectangle:nth-child(1) {
    background: linear-gradient(0deg, #FAAB5D 0%, #D56E20 20.5%);
}

.rectangle:nth-child(2) {
    background: linear-gradient(0deg, #FAAB5D 20.5%, #D56E20 64.5%);
}

.rectangle:nth-child(3) {
    background: linear-gradient(0deg, #FAAB5D 64.5%, #D56E20 100%);
}


.change {
    padding: 2px;
    border-radius: 10px;
    background-color: #D66F21;
}

.change .bar:nth-child(1) {
    border-radius: 25px;
    background: #ffffff;
    transform: rotate(-45deg) translate(-6px, 6px);
}

.change .bar:nth-child(2) {
    opacity: 0;
}

.change .bar:nth-child(3) {
    border-radius: 25px;
    background: #ffffff;
    transform: rotate(45deg) translate(-6px, -6px);
}

.change .bar .circle{
    display: none;
}

.change .bar .rectangle{
    display: none;
}


.content {
    height: 90vh;
    padding-top: 20px;
    /* padding-left: 40px; */
}

.content .item-1 {
    display: flex;
    font-family: "Lexend Deca", sans-serif;
    width: 70%;
}

.content .item-1 p {
    font-size: 28px;
    font-weight: 200;
    line-height: 45px;
    margin-bottom: 20px;
}



.content .item-2 {
    float: right;
    width: 50%;
    height: auto;
}

.content .item-2 img{
    width: 100%;
    height: auto;
}

.content-2 {
    width: 100%;
    height: 98dvh;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.content-2 .item-1 {
    margin-top: 80px;
    width: 48%;
    height: fit-content;
    font-family: "Lexend Deca", sans-serif;
}

.content-2 .item-1 .text-1 {
    color: var(--color-black);
    font-size: 28px;
    text-align: center;
    font-weight: 250;
    line-height: 40px
}

.content-2 .item-1 img {
    margin-top: 90px;
    width: 100%;
    height: auto;
}


.content-3 {
    width: 100%;
    height: 100vh;
    padding-top:20px;

}

.c3-div {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content-3 .c3-div .item-1 {
    width: 50%;
    font-family: "Lexend Deca", sans-serif;
}

.content-3 .c3-div .item-1 .text-1 {
    color: var(--color-black);
    font-size: 27px;
    text-align: center;
    font-weight: 250;
    line-height: 40px;
    letter-spacing: 1px;
}

.ellipse {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.ellipse img {
    width: 80px;
    height: 80px;
}

.content-3 .c3-img {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
    align-content: center;
}

.content-4 {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 150px;
    font-family: "Lexend Deca", sans-serif;
    margin-bottom: 50px;
}

.content-4 .item1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.c4-img {
    width: 500px;
    height: 500px;
}

.content-4 .item1 a {
    width: 300px;
    font-weight: 200;
    color: var(--color-black);
    font-size: 24px;
}

.content-4 .c4-div {
    margin-top: 60px;
}

.content-4 .c4-div p {
    margin-top: 35px;
    font-size: 25px;
    font-weight: 200;
}

.content-4 .c4-div p .c4-a {
    text-decoration: underline;
    color: var(--color-underline);
    /* Default color */
    transition: all 0.5s ease-in;
    /* Smooth transition for color property over 0.3 seconds with ease timing function */
}

.content-4 .c4-div p .c4-a:hover {
    color: var(--color-dark-orange);
}


footer {
    width: 100%;
    margin-top: 50px;
    text-align: center;
    font-family: "Lexend Deca", sans-serif;
}

footer p {
    font-size: 22px;
    font-weight: 300;
    margin: 10px;
}

footer .f-div {
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

footer .f-div .fd-1 p {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

footer .f-div .fd-1 span {
    font-weight: 700;
}

.fd-2 {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-around;
}

.fd-2 a,
.fd-3 a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 20px;
    margin-left: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.fd-2 a:hover {
    color: var(--color-dark-orange);
}

.fd-3 img {
    margin-top: 10px;
    width: 30px;
}


@media screen and (max-width: 800px) {

    body {
        width: 100%;
        padding: 0px 0px;
    }

    nav {
        position: fixed;
        width: 100%;
        padding: 15px;
        height: 90px;
        z-index: 5;
        box-shadow: #D97527 0px 10px 10px -10px;
    }

    .logo img {
        width: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    .links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 88px;
        left: 0;
        background-color: var(--color-background);
        width: 100%;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        height: 0;
        transition: all .7s ease-in-out;
        opacity: 0;
    }

    .links.active {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 100vh;
        opacity: 1;
    }

    .hide {
        display: block;
    }

    nav .links .nav-foot {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 21%;
    }

    nav .links .nav-foot p {
        font-size: 18px;
        margin: 8px;
    }

    nav .links .nav-foot .f-div {
        padding: 22px;
        display: block;
    }

    nav .links .nav-foot .f-div .fd-1 {
        display: none;
    }

    .fd-2 {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 22px;
    }

    .fd-3 {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 30px;
        padding-right: 18px;
        margin-bottom: 10px;
    }

    .fd-2 a,
    .fd-3 a {
        font-size: 18px;
        font-weight: 300;
        margin: 0;
    }

    .links .menu {
        opacity: 0;
        font-weight: 250;
        transition: opacity 0.6s ease-in-out;
    }
    
    .links .menu.fade {
        opacity: 1;
      
    }

    .hamburger-menu {
        display: block;
    }


    /**************** Content ****************/


    .content {
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 100px;
    }



    .content .item-1  {
        width: 80%;
        margin: auto;
        margin-bottom: 15px;
    }

    .content .item-1 p {
        font-size: 18px;
        text-align: center;
        font-weight: 300;
        line-height: 30px;
    }

    .content .item-2 {
        width: 100%;
        margin: auto;
    }

    .content .item-2 img, .content-2 .item-1 img {
        display: block;
        margin: auto;
        width: 80%;
        height: auto;
    }

    /**************** Content 2 ****************/

    .content-2 {
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }

    .content-2 .item-1 {
        width: 100%;
        margin-top: 0px;
    }

    .content-2 .item-1 .text-1 {
        display: block;
        width: 80%;
        margin: auto;
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 40px;
    }

    /**************** Content 3 ****************/

    .content-3 {
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }

    .content-3 .c3-div .item-1 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content-3 .c3-div .item-1 .text-1 {
        width: auto;
        font-size: 18px;
        text-align: right;
        margin-right: 15px;
        line-height: 30px;
    
    }

    .content-3 .c3-div .item-1 .ellipse{
        display: flex;
        flex-direction: column;
    }

    .ellipse {
        margin-top: 0px;
    }

    .ellipse img {
        width: 60px;
        height: 60px;
    }


    .content-3 .c3-img {
        display: none;
    }

    .content-4 {
        width: 100%;
        margin-top: 30px;
    }
    .content-4 .item1 {
        flex-direction: column;
        padding-left: 15px;
        padding-right: 15px;
        gap: 40px;
    }

    .c4-img {
        display: block;
        margin: auto;
        width: 90%;
        height: auto;
    }

    .content-4 .item1 a {
        font-size: 22px;
    }

    .content-4 .c4-div {
        margin-top: 40px;
    }

    .content-4 .c4-div p {
        margin-top: 20px;
        font-size: 18px;
        font-weight: 200;
    }
    /* Footer */

    footer {
        width: 100%;
    }

    footer p {
        font-size: 18px;
        margin: 8px;
    }

    footer .f-div {
        padding: 22px;
        display: block;
    }

    footer .f-div .fd-1 {
        display: none;
    }

    .fd-2 {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 22px;
    }

    .fd-3 {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 30px;
        padding-right: 18px;
        margin-bottom: 10px;
    }

    .fd-2 a,
    .fd-3 a {
        font-size: 18px;
        font-weight: 300;
        margin: 0;
    }
}

@media screen and (min-width: 799px)  and (max-width: 1100px) {
    body {
        width: 100%;
        padding: 0px 22px;
    }

    nav {
        width: 100%;
        height: 90px;
    }

    .logo img {
        width: 40px;
        height: auto;
        margin-right: 5px;
    }
    
    .logo-text {
        font-size: 22px;
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--color-black);
    }

    .links a {
        color: var(--color-black);
        text-decoration: none;
        font-size: 19px;
        font-weight: 250;
        transition: color 0.3s ease;
    }

    .language {
        margin-left: 10px;
    }

    .language img {
        width: 25px;
    }

    .content {
        height: 90vh;
        padding-top: 20px;
    }

    .content .item-1 p {
        font-size: 24px;
    }

    .content .item-2 img {
        width: 650px;
        height: auto;
        margin-bottom: 20px;
    }

    .content-2 {
        display: block;
        width: 100%;
        margin: auto;
        height: auto;
    }

    .content-2 .item-1 {
        display: block;
        width: 100%;
    }
    .content-2 .item-1 .text-1 {
        width: 55%;
        margin: auto;
        font-size: 22px;
    }

    .content-2 .item-1 img {
        display: block;
        width: 60%;
        margin: 60px auto;
    }

    .content-3 .c3-div .item-1 .text-1 {
        font-size: 22px;
    }

    .c4-img {
        width: 400px;
        height: 400px;
    }
    .content-4 .c4-div p {
        font-size: 22px;
    }

    footer p {
        font-size: 20px;
    }

    footer .f-div {
        padding: 25px;
        display: flex;
        justify-content: space-between;
    }

    footer .f-div .fd-1 p {
        font-size: 23px;
    }

    .fd-2 a {
        font-size: 18px;
    }
}
@media screen and (min-width: 1600px) {
    .content {
        height: auto;
        padding-top: 20px;
    }

    .content .item-1{
        width: 50%;
        align-items: center;
        margin-bottom: 50px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .content .item-2 {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
        float: none;
    }
    .content-2 {
        height: auto;
    }

    .content-3 {
        height: auto;
    }

    .c4-img {
        width: 1000px;
        height: 1000px;
    }

    .content-4 .item1 a {
        width: 500px;
        font-weight: 200;
        color: var(--color-black);
        font-size: 40px;
    }

    .content-4 .c4-div p, .content .item-1 p, .content-2 .item-1 .text-1, .content-3 .c3-div .item-1 .text-1 {
        font-size: 40px;
    }

    .links a {
        font-size: 36px;
    }

    .fd-2 a, .fd-3 a , footer .f-div .fd-1 p, .logo-text{
        font-size: 36px;
    }
}

