@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;
    --color-LavenderBush: #F5EAF7;
    --color-LavenderMist: #F0D7F6;
    --color-red: #F44545;

    --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: auto;
    padding-top: 20px;
    display: flex;
    /* padding-left: 40px; */
}

.content .item-1 {
    font-family: "Lexend Deca", sans-serif;
    width: 50%;
    padding-right: 30px;
}

.content .item-1 .para {
    height: 50%;
}

.para .p1 {
    width: fit-content;
    padding: 8px 20px;
    background-color: var(--color-LavenderMist);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 20px;
}

.para .p2 {
    font-size: 35px;
    font-weight: 250;
    margin-bottom: 10px;
}

.para .p3 {
    font-size: 42px;
    font-weight: 250;
    margin-bottom: 10px;
}

.para .p4 {
    margin-top: 30px;
    font-size: 30px;
    font-weight: 200;
    line-height: 50px;
}

.form-div {
    position: relative;
}

.form-div img {
    position: relative;
    width: 200px;
    z-index: -1;
    float: right;
}

.form-div .form {
    position: absolute;
    width: 80%;
    padding: 30px 20px;
    margin-top: 80px;
    background-color: rgba(253, 248, 253, 0.92);
    border-radius: 10px;
    text-align: center;
}

.form-div .form input {
    display: block;
    width: 90%;
    height: 38px;
    padding: 22px;
    border-radius: 10px;
    background-color: #FFE8E8;
    margin: auto;
    font-size: 18px;
    color: #000000;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
}

.form-div .form button {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 200;
    color: white;
    margin: 20px auto;
    width: 90%;
    text-align: center;
    padding: 20px 10px;
    font-size: 25px;
    border-radius: 8px;
    background-color: var(--color-red);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.form-div .form button:hover {
    background-color: #bf3a3a;
}

.form p {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
}

.form-div .form .response{
    display: none;
    padding: 30px;
    
}

.form-div .form .response p {
    text-align: center;
    font-family: "Lexend Deca", sans-serif;
    font-size: 18px;
    font-weight: 300;
}



.content .item-2 {
    position: relative;
    width: 50%;
    height: auto;
    background-color: var(--color-LavenderBush);
    border-radius: 25px;
    z-index: -2;
}

.img-div {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: space-evenly;
}

.img-div .img-1,
.img-2 {
    width: 35%;
    max-height: 75%;
}

.img-div .img-1 {
    margin-top: 6%;
}

.img-div .img-2 {
    margin-top: 18%;
}

.img-div .img-1 {
    align-items: flex-start;
}

.img-div .img-2 {
    align-items: flex-end;
}

.content .item-2 .group77 {
    position: absolute;
    width: 100%;
    z-index: -1;
    bottom: -5px;

}

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



.content-2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
    background-color: #F8ECF8;
    background-image: url(/images/_Group_.png), url(/images/_Group_1.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 40% 30px, 85% 95px;
    background-size: 5%;
    padding: 40px 0px;
}


.content-2 .item-1 {
    width: 45%;
    z-index: 0;
}

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

.content-2 .item-2 {
    text-align: center;
    width: 50%;
    height: 90%;
}

.item-2 .head {
    width: 60%;
    text-align: left;
    font-size: 30px;
    font-family: "Lexend Deca", sans-serif;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 50px;
}

.item-2 .features {
    display: flex;
    flex-direction: column;
}

.item-2 .features .f1,
.f2,
.f3,
.f4 {
    display: flex;
    justify-content: left;
    height: fit-content;
    gap: 20px;
}

.f1-img img,
.f2-img img,
.f3-img img,
.f4-img img {
    width: 70px;
    height: 70px;
}

.f1-img .line {
    border-left: 5px solid #BEC8F7;
    height: 100px;
    margin: auto;
    width: fit-content;
}

.f2-img .line {
    border-left: 5px solid #BEC8F7;
    height: 150px;
    margin: auto;
    width: fit-content;
}

.f3-img .line {
    border-left: 5px solid #BEC8F7;
    height: 150px;
    margin: auto;
    width: fit-content;
}

.f1 .f1-p,
.f2 .f2-p,
.f3 .f3-p,
.f4 .f4-p {
    text-align: left;
    width: 72%;
}

.f1 .f1-p .t1,
.f2 .f2-p .t1,
.f3 .f3-p .t1,
.f4 .f4-p .t1 {
    text-align: left;
    font-size: 22px;
    font-family: "Lexend Deca", sans-serif;
    margin-top: 10px;
    margin-bottom: 20px;
}

.f1 .f1-p .p1,
.f2 .f2-p .p1,
.f3 .f3-p .p1,
.f4 .f4-p .p1 {
    text-align: left;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 240;
    font-family: "Lexend Deca", sans-serif;
}

.f1 .f1-p .p1 {
    width: 60%;
    height: 95px;
}

.f2 .f2-p .p1 {
    width: 70%;
    height: 95px;
}

.f3 .f3-p .p1 {
    width: 80%;
    height: 120px;
}

.f4 .f4-p .p1 {
    width: 75%;
    height: 100px;
}

.f1-p hr,
.f2-p hr,
.f3-p hr,
.f4-p hr {
    width: 90%;
    border: .5px solid #BEC8F7;
    margin-top: 10px;
    margin-bottom: 10px;
}



.content-3 {
    width: 100%;
}

.content-3 p {
    text-align: center;
    padding-top: 50px;
    font-size: 28px;
    font-family: "Lexend Deca", sans-serif;
}

.content-3 .available {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 20px;
}

.content-3 .available img {
    width: 90px;
}

.content-3 .c3-p {
    width: 40%;
    margin: auto;
    text-align: center;
    font-size: 25px;
}

.content-4 {
    width: 100%;
    margin-top: 50px;
}

.content-4 img {
    width: 100%;
}


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;
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }

    .content .item-1 {
        width: 100%;
        padding: 0px;
    }

    .para .p1 {
        margin-bottom: 10px;
    }

    .para .p2 {
        font-size: 30px;
    }

    .para .p3 {
        font-size: 38px;
    }

    .para .p4 {
        width: 80%;
        margin-top: 20px;
        font-size: 18px;
        font-weight: 250;
        line-height: 30px;
    }

    .form-div img {
        width: 280px;
        margin-top: -50px;
    }

    .form-div .form {
        width: 100%;
        margin-top: 40px;
        background-color: rgba(253, 248, 253, 0.5);
        border-radius: 10px;
        text-align: center;
        padding: 15px 15px;
    }

    .form-div .form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .form-div .form button {
        width: 100%;
        font-size: 23px;
        margin: 10px auto;
    }

    .form p {
        padding: 10px;
        text-align: left;
        font-size: 16px;
        font-weight: 250;
        letter-spacing: 1px;
    }

    .form-div .form .response{
        display: none;
    }

    .img-div {
        width: 100%;
        justify-content: space-evenly;
    }

    .img-div .img-1,
    .img-2 {
        width: 40%;
        height: 70%;
    }

    .img-div .img-2 {
        margin-bottom: 25px;
    }

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

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

    .content-2 {
        width: auto;
        height: auto;
        margin-top: 30px;
        margin-left: 15px;
        margin-right: 15px;
        padding-top: 30px;
        align-items: center;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
        background-image: url(/images/_Group_.png), url(/images/_Group_1.png);
        background-repeat: no-repeat, no-repeat;
        background-position: 1% 25px, 85% 70px;
        background-size: 14%;
    }

    .content-2 .item-1 {
        display: block;
        width: 100%;
    }

    .content-2 .item-2 {
        display: block;
        width: 100%;
    }

    .item-2 .head {
        display: block;
        width: 73%;
        margin: auto;
        letter-spacing: 1px;
        text-align: center;
        margin-bottom: 20px;
    }

    .f1-img img, .f2-img img, .f3-img img, .f4-img img {
        width: 50px;
        height: 50px;
    }

    .item-2 .features .f1, .f2, .f3, .f4 {
        justify-content: center;
    }

    .f1 .f1-p .p1, .f2 .f2-p .p1, .f3 .f3-p .p1, .f4 .f4-p .p1 {
        width: 95%;
    }

    .f1 .f1-p .p1 {
        height: 90px;
    }

    .f2 .f2-p .p1 {
        height: 90px;
    }

    .f1-img .line {
        height: 120px;
    }

    .f2-img .line {
        height: 130px;
    }

    .f3 .f3-p .p1 {
        height: 120px;
    }

    .f4 .f4-p .p1 {
        height: 110px;
    }
    /**************** Content 3 ****************/

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

    .content-3 p {
        text-align: center;
        padding-top: 10px;
        font-size: 26px;
        font-weight: 250;
        font-family: "Lexend Deca", sans-serif;
    }

    .content-3 .available {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: 30px;
    }

    .content-3 .available img {
        width: 70px;
        height: auto;
    }

    .content-3 .c3-p {
        width: 80%;
        margin: auto;
        margin-top: 10px;
        text-align: center;
        font-size: 24px;
    }

    /* 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 {
        width: 100%;
        height: auto;
        padding-top: 20px;
        display: flex;
    }

    .content .item-1 {
        padding-right: 20px;
    }

    .para .p1 {
        padding: 5px 15px;
        font-size: 14px;
    }

    .para .p2 {
        font-size: 30px;
    }

    .para .p3 {
        font-size: 38px;
    }

    .para .p4 {
        margin-top: 30px;
        font-size: 26px;
        font-weight: 200;
        line-height: 45px;
    }

    .form-div .form {
        position: absolute;
        width: 90%;
        padding: 15px 10px;
        margin-top: 80px;
        background-color: rgba(253, 248, 253, 0.92);
        border-radius: 10px;
        text-align: center;
    }

    .form-div .form button {
        width: 90%;
        height: 60px;
        padding: 0px;
        font-size: 22px;
    }

    .form p {
        font-size: 14px;
    }

    .form-div .form .response{
        display: none;
    }

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

    .img-div .img-1,
    .img-2 {
        width: 40%;
    }


    .content-2 {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 30px;
        background-color: #F8ECF8;
        background-image: url(/images/_Group_.png), url(/images/_Group_1.png);
        background-repeat: no-repeat, no-repeat;
        background-position: 40% 30px, 80% 90px;
        background-size: 5%;
        padding: 40px 0px;
    }


    .content-2 .item-1 {
        width: 45%;
        z-index: 0;
    }

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

    .content-2 .item-2 {
        text-align: center;
        width: 50%;
        height: 90%;
    }

    .item-2 .head {
        width: 80%;
        text-align: left;
        font-size: 28px;
        font-family: "Lexend Deca", sans-serif;
        margin-top: 20px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .item-2 .features {
        display: flex;
        flex-direction: column;
    }

    .item-2 .features .f1,
    .f2,
    .f3,
    .f4 {
        display: flex;
        justify-content: left;
        height: fit-content;
        gap: 20px;
    }

    .f1-img img,
    .f2-img img,
    .f3-img img,
    .f4-img img {
        width: 60px;
        height: 60px;
    }

    .f1-img .line {
        border-left: 5px solid #BEC8F7;
        height: 100px;
        margin: auto;
        width: fit-content;
    }

    .f2-img .line {
        border-left: 5px solid #BEC8F7;
        height: 150px;
        margin: auto;
        width: fit-content;
    }

    .f3-img .line {
        border-left: 5px solid #BEC8F7;
        height: 150px;
        margin: auto;
        width: fit-content;
    }

    .f1 .f1-p,
    .f2 .f2-p,
    .f3 .f3-p,
    .f4 .f4-p {
        text-align: left;
        width: 72%;
    }

    .f1 .f1-p .t1,
    .f2 .f2-p .t1,
    .f3 .f3-p .t1,
    .f4 .f4-p .t1 {
        text-align: left;
        font-size: 20px;
        font-family: "Lexend Deca", sans-serif;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .f1 .f1-p .p1,
    .f2 .f2-p .p1,
    .f3 .f3-p .p1,
    .f4 .f4-p .p1 {
        text-align: left;
        letter-spacing: 1px;
        font-size: 18px;
        font-weight: 240;
        font-family: "Lexend Deca", sans-serif;
    }

    .f1 .f1-p .p1 {
        width: 60%;
        height: 95px;
    }

    .f2 .f2-p .p1 {
        width: 70%;
        height: 95px;
    }

    .f3 .f3-p .p1 {
        width: 80%;
        height: 140px;
    }

    .f4 .f4-p .p1 {
        width: 75%;
        height: 120px;
    }

    .f1-p hr,
    .f2-p hr,
    .f3-p hr,
    .f4-p hr {
        width: 90%;
        border: .5px solid #BEC8F7;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .content-3 p {
        font-size: 22px;
        padding-top: 30px;
    }

    .content-3 .available {
        margin-top: 40px;
    }

    .content-3 .available img {
        width: 80px;
    }

    .content-3 .c3-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: 1200px) {
    .img-div {
        height: 100%;
    }
}

@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;
    }

    .para p.p2{
        font-size: 65px;
    }

    .para p.p3{
        font-size: 80px;
    }

    .form-div .form input{
        font-size: 30px;
    }

    .form-div .form button{
        font-size: 40px;
    }
    .content .item-1 .form p{
        font-size: 24px;
    }

    .item-2 .head{
        font-size: 48px;
    }

    .f1 .f1-p .t1, .f2 .f2-p .t1, .f3 .f3-p .t1, .f4 .f4-p .t1{
        font-size: 36px;
    }

    .f1 .f1-p .p1, .f2 .f2-p .p1, .f3 .f3-p .p1, .f4 .f4-p .p1{
        font-size: 24px;
    }
    .content-2 .item-1 img{
        width: 50%;
    }

    .content-3 p{
        font-size: 36px;
    }
}
