/* index */

:root {
    --primary-font-family: "Roboto", sans-serif;
    --main-color: #f36;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.nav-link.active {
    color: red;
    position: relative;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 10px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: red;
    border-radius: 50%;
}
span{

    font-size: 16px !important;
}
/* Navbar start */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.navbar-content a {
    color: #9797aa;
    text-decoration: none;
}

.navbar-content a.active {
    color: #ff0000;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #9797aa;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--primary-font-family);
}

.navbar-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.nav-login,
a.nav-login {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    padding: 10px 30px;
    border-radius: 6px;
    background-color: transparent;
    text-decoration: none;
}

.nav-signUp,
a.nav-signUp {
    border: 1px solid var(--main-color);
    color: white;
    background-color: var(--main-color);
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
}

.navbar-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Navbar End */

/* section-1 Start */
.section-1 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 70px;
    /* background-color: #EDF3FF; */
}

.section-1-content {
    flex: 1 1 56%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.section-1-content h2 {
    color: #000;
    font-family: var(--primary-font-family);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 51px;
}

.section-1-content h6 {
    color: var(--main-color);
    font-family: var(--primary-font-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 51px;
}

.section-1-content p {
    color: #525252;

    font-family: var(--primary-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
}

.section-1-buttons {
    padding-top: 70px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.section-1-btn-tour {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: white;
    border-radius: 80px;
    padding: 10px 40px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.section-1-btn-tour:hover {
    opacity: 0.9;
}

.section-1-btn-tour:active {
    opacity: 0.8;
}

.section-1-btn-tour img {
    height: 2vh;
}

.section-1-btn-download {
    border-radius: 80px;
    border: 1px solid #1b5ecd;
    background-color: #1b5ecd;
    padding: 10px 40px;
    color: white;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.section-1-btn-download:hover {
    opacity: 0.9;
}

.section-1-btn-download:active {
    opacity: 0.8;
}

.section-1-btn-download img {
    height: 2vh;
}

.section-1-images {
    flex: 1 1 44%;
    min-width: 0;
    max-width: 560px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-1-images > img {
    max-width: 100%;
    height: auto;
}

/* section-1 End */
/* Section 2 start */
.section-2 {
    background-color: #edf3ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
}

.section-2-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 90px;
}

.section-2-content h4 {
    color: var(--main-color);
    font-family: var(--primary-font-family);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
}

.section-2-content h5 {
    color: #1a1a1a;
    font-family: var(--primary-font-family);
    font-size: 26px;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: 51px;
}

.section-2-content p {
    color: #9f9f9f;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.section-2-content1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 50px 30px;
}

.content1-img {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content1-img img {}

.content1-content {
    flex: 2;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.content1-content h4 {
    color: #000;
    font-family: var(--primary-font-family);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

.content1-content p {
    color: #939393;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.content1-content-btn {
    background-color: var(--main-color);
    border-radius: 100px;
    border: 1px solid var(--main-color);
    color: white;
    padding: 10px 30px;
}

.section-2-content2 {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 50px 0px;
}

.content2-img {
    flex: 2;
}

.content2-img img {}

.content2-content {
    flex: 2;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.content2-content h4 {
    color: #000;
    font-family: var(--primary-font-family);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

.content2-content p {
    color: #939393;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.content2-content-btn {
    background-color: var(--main-color);
    border-radius: 100px;
    border: 1px solid var(--main-color);
    color: white;
    padding: 10px 30px;
}

.section-2-content3 {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 50px 0px;
}

.content3-img {
    flex: 2;
}

.content2-img img {}

.content3-content {
    flex: 2;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.content3-content h4 {
    color: #000;
    font-family: var(--primary-font-family);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

.content3-content p {
    color: #939393;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.content3-content-btn {
    background-color: var(--main-color);
    border-radius: 100px;
    border: 1px solid var(--main-color);
    color: white;
    padding: 10px 30px;
}

/* Section 2 End */

/* Media query for responsiveness */
@media (max-width: 1000px) {

    .navbar-content,
    .navbar-buttons {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-content.show,
    .navbar-buttons.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 7%;
        /* bottom: 73%; */
        left: 0;
        background-color: #fff;
        width: 100%;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        /* margin: 0 autp; */
    }

    .navbar-buttons.show {
        top: 0;
        right: 0;

        flex-direction: column;
        align-items: flex-end;
    }

    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }
}

/* Additional styles for larger screens */
@media (min-width: 1001px) {
    .navbar-toggle {
        display: none;
    }

    .close-button {
        display: none;
    }
}

@media (max-width: 700px) {
    .section-1 {
        flex-wrap: wrap;
        gap: 20px;
        padding: 32px 20px;
    }

    .section-1-images {
        display: none;
    }

    .section-1-btn-tour {
        border: 1px solid var(--main-color);
        background-color: var(--main-color);
        color: white;
        border-radius: 80px;
        padding: 10px 10px;
    }

    .section-1-btn-download {
        border-radius: 80px;
        border: 1px solid #1b5ecd;
        background-color: #1b5ecd;
        padding: 10px 10px;
        color: white;
    }

    .section-2-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 40px;
    }

    .section-2-content1,
    .section-2-content2,
    .section-2-content3 {
        display: flex;
        flex-direction: column;
    }

    .section-2-content3 .content3-img {
        order: -1;
    }

    .psudo {
        display: none;
    }

    .section-1-content h2 {
        color: #000;
        font-family: var(--primary-font-family);
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 51px;
    }
}


/* section 3 */

:root {
    --primary-font-family: "Roboto", sans-serif;
    --main-color: #f36;
}

.section-3 {
    position: relative;
    width: 100%;
    /* height: 100vh; */
}

.background-image {
    width: 100%;
    height: 328px;
    /* background-image: url("/Rectangle\ 13.png"); */

    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 328px;
    /* background-color: rgba(0, 0, 0, 0.3); */
    /* Adjust the alpha value to change the overlay opacity */
}

.section-3-content {
    display: flex;
    flex-wrap: wrap;
    color: white;
    justify-content: space-between;
    align-items: center;
    padding: 110px;
}

.sec-3-content1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sec-3-content1 p {
    color: var(--main-color);

    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 125%;
}

.sec-3-content1 h6 {
    color: white;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
}

@media (max-width: 700px) {
    .section-3-content {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        color: white;
        justify-content: center;
        align-items: center;
        padding: 10px;
        /* gap: '20px' */
    }

    .background-image {
        width: 100%;
        height: 400px;
        /* background-image: url("/Rectangle\ 13.png"); */

        background-size: cover;
        background-position: center;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-color: rgba(0, 0, 0, 0.3);
        /* Adjust the alpha value to change the overlay opacity */
    }
}

/* section 4 */


:root {
    --primary-font-family: "Roboto", sans-serif;
    --main-color: #f36;
}

.section-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: #e8f4fa; */
    padding: 50px 0px;
}

.section-4-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 90px;
    gap: 10px;
}

.section-4-content h4 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
}

.section-4-content p {
    color: #9f9f9f;

    text-align: center;

    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.section-4-containers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 0px 40px 40px 40px;
}

.section-4-box {
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    padding: 20px;
}

.section4-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 50px;
}

.s4-partnerContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.s4-partnerContent h5 {
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.s4-partnerContent p {
    color: #9f9f9f;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 134.188%;
}

.partners-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 1000px) {
    .section-4-containers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        padding: 0px 40px 40px 40px;
    }
}

@media (max-width: 700px) {
    .section-4-containers {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        padding: 0px 40px 40px 40px;
    }

    .section-4-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 40px;
        gap: 10px;
    }
}

@media (max-width: 300px) {
    .section-4-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 10px;
        gap: 10px;
    }
}

/* formats */

.format-section-1 {
    position: relative;
    width: 100%;
    /* height: 100vh; */
}

.format-background-image {
    width: 100%;
    height: 328px;
    /* background-image: url('/Rectangle\ 13.png'); */

    background-size: cover;
    background-position: center;
}

.format-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 328px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid grey;
    /* background-color: rgba(0, 0, 0, 0.3); */
}

.format-overlay h1 {
    color: black;
    position: absolute;
    top: 45%;
    left: 45%;
}

.format-section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}

.format-section2-content1 {
    padding: 0px 40px;
}

.format-section2-content1 h2 {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
}

.format-section2-content1 p {
    color: #9f9f9f;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.format-section2-content2 {
    display: flex;
    padding: 30px 70px 0px 70px;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.format-box1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.format-box1 h4 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.format-box1 p {
    color: #979797;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.format-section3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f2f6ff;
    padding: 50px;
}

.format-section3 h4 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
    text-align: center;
}

.format-section3 p {
    color: #9f9f9f;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.format-section3-content2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.format-section3-box1 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.format-section3-box1 img {
    width: 100%;
    height: 50vh;
}

.format-section3-box1 h3 {
    text-align: center;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
}

.format-section3-box1 p {
    color: #939393;

    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
}

/* section 4 start*/
.format-section4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    padding: 50px;
}

.format-section4 h4 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
    text-align: center;
}

.format-section4 p {
    color: #9f9f9f;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.format-section4-content2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.format-section4-box1 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.format-section4-box1 img {
    width: 100%;
    height: 50vh;
}

.format-section4-box1 h3 {
    text-align: center;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    background-color: #f2f6ff;
    padding: 10px 0px;
}

.format-sec4-content-btn {
    background-color: #f36;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    color: white;
    padding: 10px 30px;
    margin-top: 30px;
}

/* section 4 end */

@media (max-width: 900px) {
    .format-section2-content2 {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 70px 0px 70px;
        align-items: center;
        justify-content: center;
        gap: 70px;
    }

    .format-section4-content2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .format-section3-content2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .format-section2-content2 {
        display: flex;
        flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 30px 70px 0px 70px;
        align-items: center;
        justify-content: center;
        gap: 70px;
    }

    .format-section4-content2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .format-section3-content2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
}

/* footer */

.footer {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
    background-color: #F36;
    padding: 50px;

}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    /* justify-content: start; */
    gap: 20px;
}

.footer-content p {
    color: white;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.foter-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.footer-content1 {
    display: flex;
    flex-direction: column;
    align-items: start;
    /* justify-content: center; */
    gap: 20px;
    /* border-bottom: 1px solid white; */
}

.footer-content1 p {
    color: white;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

/* contact */

.contact-section-1 {
    position: relative;
    width: 100%;
    /* height: 100vh; */
}

.contact-background-image {
    width: 100%;
    height: 328px;
    /* background-image: url('/Rectangle\ 13.png'); */

    background-size: cover;
    background-position: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 328px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid grey;
    /* background-color: rgba(0, 0, 0, 0.3); */
}

.contact-overlay h1 {
    color: black;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 42%;
}

.contact-section2 {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
}

.contact-section2 h3 {
    color: black;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
}

.contact-section2 p {
    color: #9f9f9f;
    text-align: center;

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 134.188%;
}

.contact-section2-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section2-box1 {
    flex: 2;
    display: flex;
    flex-direction: column;
    background-color: #e4c2ab;
    border-radius: 8px;
    padding: 40px;
    gap: 20px;
}

.contact-section2-box1 h4 {
    color: black;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.52px;
}

.contact-section2-box1 h5 {
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact-contact {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 20px;
}

.contact-contact p {
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact-section2-box2 {
    flex: 3;
    padding: 0px 50px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

/* Style for the text field */
input[type="text"] {
    border: none;
    border-bottom: 1px solid #333;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

/* Style for the text field when focused */
input[type="text"]:focus {
    border-color: #007bff;
    /* Change to your desired focus color */
}

@media (max-width: 700px) {
    .contact-section2-box2 {
        flex: 3;
        padding: 0px 20px;
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
}

/* company */

.company-section-1 {
    position: relative;
    width: 100%;
    /* height: 100vh; */
}

.company-background-image {
    width: 100%;
    height: 328px;
    /* background-image: url('/Rectangle\ 13.png'); */

    background-size: cover;
    background-position: center;
}

.company-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 328px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid grey;
    /* background-color: rgba(0, 0, 0, 0.3); */
}

.company-overlay h1 {
    color: black;
    position: absolute;
    top: 45%;
    left: 42%;
}

.company-sec2 {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    padding: 50px;
    gap: 30px;
}

.company-sec2 h3 {
    color: #000;
    font-size: 36px;
    text-align: center;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
}

.company-sec2 p {
    color: #9f9f9f;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    padding: 0px 100px;
}

.company-sec2-box {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.company-sec2-box1 {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;
}

.company-sec2-box1 h3 {
    color: #000;
    font-size: 32px;
    text-align: left;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
}

.company-sec2-box1 h6 {
    color: #8a8a8a;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 188.188%;
}

.company-sec2-box1-btn {
    background-color: #f36;
    border-radius: 3px;
    padding: 10px 30px;
    border: none;
    color: white;
}

.company-sec2-box2 {
    flex: 2;
}

@media (max-width: 700px) {
    .company-sec2-box {
        display: grid;
        /* grid-template-columns: ; */
    }
}

@media (max-width: 500px) {
    .company-sec2 p {
        color: #9f9f9f;
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 35px;
        padding: 0px 20px;
    }
}

/* advertisement   */

.adver-section-1 {
    position: relative;
    width: 100%;
    /* height: 100vh; */
}

.adver-background-image {
    width: 100%;
    height: 328px;
    /* background-image: url('/Rectangle\ 13.png'); */

    background-size: cover;
    background-position: center;
}

.adver-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 328px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
    border: 1px solid grey;
    /* background-color: rgba(0, 0, 0, 0.3); */
}

.adver-overlay h1 {
    color: black;
    position: absolute;
    top: 45%;
    left: 42%;
}

.adver-section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}

.adver-section2-content1 {
    padding: 0px 40px;
}

.adver-section2-content1 h2 {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
}

.adver-section2-content1 p {
    color: #9f9f9f;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.adver-section2-content2 {
    display: flex;
    /* flex-wrap: wrap; */
    padding: 30px 70px 0px 70px;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-top: 50px;
}

.adver-box1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.adver-box1 h4 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.adver-box1 p {
    color: #979797;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.adver-section3 {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    background-color: #f8f8f8;
    padding: 50px;
}

.adver-section3 h4 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 51px;
    text-align: center;
}

.adver-section3 p {
    color: #9f9f9f;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.adver-section3-content2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    /* gap: 30px; */
}

.adver-section3-box1 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.adver-section3-box1 img {
    width: 100%;
    height: 50vh;
}

.adver-section3-box1 h3 {
    text-align: center;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    background-color: #f2f6ff;
    padding: 10px 0px;
}

.adver-sec3-content-btn {
    background-color: #f36;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    color: white;
    padding: 5px 10px;

    /* margin-top: 30px; */
}

.adver-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.adver-section4 {
    display: grid;
    /* flex-wrap: wrap; */
    grid-template-columns: repeat(2, 1fr);
    background: linear-gradient(180deg, #c3dfed 0%, #dff0f7 100%);
    align-items: center;
    justify-content: center;
}

.adver-sec4-box1 {
    flex: 2;
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: left;
    gap: 20px;
}

.adver-sec4-box1 h3 {
    color: #110229;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.adver-sec4-box1 p {
    color: #585981;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.adver-sec4-box1-btn {
    background-color: #f36;
    border-radius: 5px;
    border: 1px solid #f36;
    color: white;
    padding: 10px 20px;
}

.adver-sec4-box2 {
    flex: 2;
}

@media (max-width: 900px) {
    .adver-section3-content2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        /* gap: 30px; */
    }

    .adver-section4 {
        display: grid;
        /* flex-wrap: wrap; */
        grid-template-columns: repeat(1, 1fr);
        background: linear-gradient(180deg, #c3dfed 0%, #dff0f7 100%);
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .adver-section3-content2 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        /* gap: 30px; */
    }

    .adver-section4 {
        display: grid;
        /* flex-wrap: wrap; */
        grid-template-columns: repeat(1, 1fr);
        background: linear-gradient(180deg, #c3dfed 0%, #dff0f7 100%);
        align-items: center;
        justify-content: center;
    }
}

/* auth */

* {
    margin: 0;
    padding: 0;
}

.signup {
    display: flex;
}

.signup_box1 {
    /* flex: 2; */
    width: 50%;
    padding: 50px 150px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    /* align-items: center; */
    /* justify-content: center; */
}

.signup_box1 label {
    color: #333;
    /* Change label color */
    font-size: 18px;
    /* Change label font size */
}

#role,
.signup_box1 input[type="text"],
.signup_box1 input[type="password"],
.signup_box1 input[type="email"],
.signup_box1 button {
    padding: 10px;
    /* Add padding */
    margin: 5px 0;
    /* Add margin */
    border: 1px solid #ccc;
    /* Change input field border color */
    border-radius: 5px;
    /* Add border-radius for rounded corners */
    width: 100%;
    /* Make input fields full width */
    box-sizing: border-box;
    /* Include padding and border in width */
}



.signup_box1 input[type="checkbox"] {
    margin-right: 5px;
    /* Add margin-right to checkbox for spacing */
}

.signup_box1 button {
    background-color: #4CAF50;
    /* Change button background color */
    color: white;
    /* Change button text color */
    border: none;
    /* Remove button border */
    cursor: pointer;
    /* Add pointer cursor to button */
}

.signup_box1 button:hover {
    background-color: #45a049;
    /* Change button background color on hover */
}

.signup_box1 h3 {
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.signup_box1 h5 {
    text-align: center;
    font-size: 18px;
    color: #8E8EA9;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.signup_box2 {
    /* flex: 2; */
    background-color: #F36;
    width: 50%;
    /* padding: 50px; */
    /*
     padding: 100px; */
}

@media(max-width:1000px) {
    .signup_box2 {
        display: none;
    }

    .show-login-mobile {
        display: block !important;
    }

    .signup_box1 {
        /* flex: 2; */
        width: 100%;
        padding: 50px 50px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;

        /* align-items: center; */
        /* justify-content: center; */
    }
}

@media(max-width:600px) {
    .signup_box1 {
        /* flex: 2; */
        width: 100%;
        padding: 50px 50px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;

        /* align-items: center; */
        /* justify-content: center; */
    }

    .signup_box2 {
        display: none;
    }
}
