@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');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&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;
    --color-blue : #093374;
    --color-steelblue : #456FB0;
    --color-cornflowerblue : #7293C6;
    --color-price : #1BAA57;
    --color-purple : #EED2F5;

    --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 {
    width: 100%;
    height: auto;
    font-family: "Lexend Deca", sans-serif;
}

.content .head {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 50px;
}

.content div p {
    text-align: left;
    font-size: 22px;
    font-weight: 250;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 5px;
}

ul {
    width: 100%;
    padding-left: 18px;
}

ul li{
    width: fit-content;
    font-size: 22px;
    font-weight: 250;
    list-style-type: disc;
    margin-bottom: 10px;
    line-height: 35px;
    letter-spacing: 1px;
}





footer {
    width: 100%;
    margin-top: 100px;
    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 {
        width: 100%;
        height: auto;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 100px;
        font-family: "Lexend Deca", sans-serif;
    }
    
    .content .head {
        font-size: 28px;
        font-weight: 300;
        margin-bottom: 50px;
        margin-top: 10px;
    }
    
    .content div p {
        text-align: left;
        font-size: 20px;
        font-weight: 250;
        letter-spacing: 1px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    
    ul {
        width: 100%;
        padding-left: 18px;
    }
    
    ul li{
        width: fit-content;
        font-size: 20px;
        font-weight: 250;
        list-style-type: disc;
        margin-bottom: 10px;
        line-height: 35px;
        letter-spacing: 1px;

    }

    

    /* Footer */

    footer {
        width: 100%;
        margin-top: 120px;
    }

    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 {
        width: 100%;
    }


    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-4 .item1 a , .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 ,.fd-2 a, .fd-3 a , footer .f-div .fd-1 p, .logo-text{
        font-size: 36px;
    }
}