@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;800&display=swap');


* {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

body {
    scroll-behavior: smooth;
}

a {
    cursor: pointer;
}

a,
ul {
    text-decoration: none;
    list-style: none;
}

/* Nav Bar */

nav {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 110px;
    background: #107001;
    gap: 10px;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar>ul {
    display: flex;
    flex-direction: row;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    position: relative;
    display: block;
    font-size: 17px;
    color: #FFF8FD;
    padding: 12px 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.navbar ul>li>a:hover {
    color: #F5EA00;
}

.arrow-down {
    position: absolute;
    display: inline-block;
    font-size: 30px;
    right: -10px;
    top: 10px;
}

@media(min-width: 992px) {
    .navbar ul li ul {
        position: absolute;
        border-top: 2px solid #05221F;
        min-width: 250px;
        background: #107001;
        padding: 0;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        box-shadow: 0 3px 5px rgba(0 0 0 / 20%);
        transition: all 0.3s;
        z-index: 99;
        -webkit-transition: all 0.3;
        -moz-transition: all 0.3;
        -ms-transition: all 0.3;
        -o-transition: all 0.3;
        transform: translateY(35);
        -webkit-transform: translateY(35px);
        -moz-transform: translateY(35px);
        -ms-transform: translateY(35px);
        -o-transform: translateY(35px);
        visibility: hidden;
        opacity: 0;
        z-index: 0;
    }

    .navbar ul>li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(33px);
        -webkit-transform: translateY(33px);
        -moz-transform: translateY(33px);
        -ms-transform: translateY(33px);
        -o-transform: translateY(33px);
    }

    .navbar ul ul li {
        position: relative;
    }

    .navbar ul ul li a {
        display: block;
        color: #FFF8FD;
        font-size: 15px;
        font-weight: 700;
        padding: 8px 10px;
        line-height: 1.8rem;
        border-bottom: 2px solid #fff;
        transition: all 0.5s;
    }

    .navbar ul ul li a:hover {
        color: #107001;
        border-color: transparent;
        background: #F5EA00;
        padding: 10px;
        font-size: 1rem;
    }

    .navbar ul li ul ul {
        position: absolute;
        left: 100%;
        top: 0;
    }
}

.logo {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    padding-top: 70px;
    object-fit: cover;
    z-index: 100;
    transition: 3s;
}

nav.scrollNav .logo {
    padding: 0;
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: 3s;
}

.meny-box {
    display: none;
}

.i {
    margin-right: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.nav-link {
    color: #fff;

}

.nav-socials {
    position: absolute;
    right: 1rem;
    top: .8rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.logo-box.mobile-logo {
    display: none;
}

.slide-container {
    position: relative;
    width: 95%;
    height: 680px;
    margin: 100px auto;
    border-radius: 50px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 680px;
    margin: 0;
    opacity: 0;
    transition: 1s ease-in-out;
    overflow: hidden;
}

.slide img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
}

button {
    position: absolute;
    top: 50%;
    border: none;
    background: rgba(32, 26, 26, 0.527);
    color: rgb(243, 243, 243);
    padding: 10px 16px;
    margin-top: -25px;
    font-size: 30px;
    z-index: 1000;
    font-weight: 900;
    transition: 0.5s ease-in-out;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}


button:hover {
    background: rgba(32, 26, 26, 0.527);
}

.dots_container {
    display: flex;
    margin: 5px auto;
    width: fit-content;
}

.dots {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #bdbdbd;
    margin: 4px;
}

.dots:hover {
    background: #696969 !important;
}

/* Marquee text */
.marquee-text {
    height: 100px;
    overflow: hidden;
    position: relative;
}

.marquee-text h1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 57px;
    letter-spacing: 0.02em;
    color: #000000;
    position: absolute;
    width: 100%;
    height: fit-content;
    margin-top: .5em;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: example1 15s linear infinite;
    -webkit-animation: example1 15s linear infinite;
    animation: example1 15s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes example1 {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes example1 {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes example1 {
    0% {
        -moz-transform: translateX(100%);
        /* Firefox bug fix */
        -webkit-transform: translateX(100%);
        /* Firefox bug fix */
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
        /* Firefox bug fix */
        -webkit-transform: translateX(-100%);
        /* Firefox bug fix */
        transform: translateX(-100%);
    }
}



/* Hide social handle on mobile */
.social_mobile_handles {
    display: none;
}

/* Our director */
.director-section {
    height: 715px;
    background-image: url('assets/images/_MG_0059\ 1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.director-contents {
    background: rgba(16, 112, 1, 0.85);
    margin: 0;
    padding: 0;
    height: 715px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


.director-img {
    width: 545px;
    height: 486px;
    margin-bottom: -5px;
}

.contents {
    display: flex;
    flex-direction: column;
    width: 700px;
    gap: 1rem;
    padding: 10px;
}

.title-and-name {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welcome-text h2 {
    text-transform: uppercase;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
    width: 100%;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description p {
    font-family: 'Inter';
    font-style: normal;
    /* font-weight: 300; */
    font-size: 16px;
    line-height: 1.2rem;
    color: #FFFFFF;
}

.director_name {
    width: 545px;
    height: 100px;
    background: #FFB905;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5rem;
}

.director-img-box {
    margin-bottom: -130px;
}

/* core value, mission */
.offer-section {
    height: 775.58px;
    background: #F3FFEF;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.offer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offer img {
    width: 800px;
    height: 302px;
    margin-bottom: -100px;
    z-index: 1;
}

.offer p {
    width: 200px;
    height: 256px;
    background: #F1ECEC;
    box-shadow: -17.6558px 199.511px 80.3339px rgba(0, 0, 0, 0.01), -9.71069px 112.114px 67.9748px rgba(0, 0, 0, 0.04), -4.41395px 50.319px 50.319px rgba(0, 0, 0, 0.06), -0.88279px 12.3591px 27.3665px rgba(0, 0, 0, 0.07), 0px 0px 0px rgba(0, 0, 0, 0.07);
    border-radius: 0px 0px 88px 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.8rem;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
}

/* Employee of the month section */
.employee-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 580px;
}

.employee-img-box p,
.employee-img-box h2 {
    display: none;
}

.employee-img-box div {
    width: 502.74px;
    height: 502.74px;
    background: #F29406;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
}

.employee-img {
    height: 100%;
    margin-top: 10px;
}

.details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
}

.employee-title-and-name {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.employee-title-and-name p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 31.3602px;
    line-height: 100%;
    color: #000000;
    text-transform: uppercase;
}

.employee-name {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #000000;
}

.detail {
    width: 472px;
    height: 120px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 19.6001px;
    line-height: 24px;
    color: #000000;
}

/* Our services */
.our_services {
    background: #FFF8FD;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.our_services>h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 29.3973px;
    line-height: 100%;
    text-align: center;
    color: #1D7B1B;
}

.our-services {
    height: 857.75px;
    display: grid;
    grid-template-columns: repeat(4, 264px);
    justify-content: space-evenly;
    align-items: center;
}

.service {
    height: 299.57px;
    background-color: #FFFFFF;
    transition: background-color 0.5s;
    box-shadow: 0px 8.01633px 24.049px rgba(0, 0, 0, 0.15);
    border-radius: 5.01021px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.service:hover {
    background-color: #107001;

}

.service:hover p {
    color: #fff;
}


.service p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20.0408px;
    line-height: 100%;
    text-align: center;
    color: #0B0B0B;
    transition: color 0.5s;
}

/* GEt app */
.get-app {
    height: 856px;
    background: #05221F;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5em;
    padding: 1rem;
}

.get-app-cta div {
    margin-top: 1.5rem;
}

.get-app-cta .text-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
}

.text-content p {
    width: 258px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}

.text-content h2 {
    width: 352px;
    height: 167px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 34px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}

.mobile-img {
    width: 387px;
    height: 624px;
}

/* Book an appointment */
.appointment-container {
    height: 456px;
    color: #FFFFFF;
    position: relative;
    padding: 1.5rem;
    margin: 0px 1.8rem;
}

.appointment-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 8.18px;
    height: 390px;
    margin: 2rem;
    background: linear-gradient(107.47deg, #107001 0%, #FFB905 100.72%);
    border-radius: 20.4534px;
    margin-top: -200px;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .8em;
}

.text-container h2 {
    width: 884px;
    /* height: 79px; */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-size: 48.5409px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    color: #FFFFFF;
}

.text-container p {
    width: 867px;
    /* height: 13px; */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12.9633px;
    line-height: 100%;
    color: #FFFFFF;
    text-align: center;
}

.book-form {
    margin-top: 50px;
}

.control-container {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: space-between;
    align-items: center;
    gap: 2em;
}

.form-control {
    height: 45.45px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12.9633px;
    border: none;
}

.form-control:focus {
    outline: none;
}

.btn-box {
    margin-top: 50px;
    text-align: center;
}

.btn-box .submit {
    /* display: inline-block; */
    width: 245.44px;
    height: 57.27px;
    background: #107001;
    border-radius: 7.38366px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 20.6743px;
    line-height: 100%;
    color: #E6E9E6;
    border: none;
    padding: 20px;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    color: #3F3F3F;
    margin-left: 10px;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    color: #3F3F3F;
    margin-left: 10px;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    color: #3F3F3F;
    margin-left: 10px;
}


/* Footer */
footer {
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px;
}

footer a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13.7201px;
    line-height: 17px;
    color: #FFFFFF;
}

footer h4 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 13.7201px;
    line-height: 17px;
    color: #FFFFFF;
}

.footer-contents {
    display: grid;
    grid-template-columns: 240px 150px 150px 240px;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5em;
    border-bottom: 0.980007px solid #FFFFFF;
    padding: .5em;
}

.brand-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2em;
}

.brand-content h2 {
    width: 157px;
    height: 28px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    color: #FFFFFF;
}

.brand-content p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13.7201px;
    line-height: 17px;
    color: #FFFFFF;
}

.social-handles,
.home-link-box,
.quick-link-box,
.contact-link-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1em;
}

.images {
    display: none;
}

.gradient-img {
    position: absolute;
    right: 20px;
    width: 100px;
}

.footer-icon {
    position: absolute;
    left: 20px;
    width: 100px;
}

.contact-links p {
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    text-align: start;
}

.contact-links,
.quick-links,
.home-links {
    display: flex;
    flex-direction: column;
    gap: .8em;
}

.contact-links span {
    display: block;
    margin-bottom: 1.6em;
}

.contact-links span i {
    padding: 5px 5px 5px 0px;
}

.social-handles-2 {
    display: none;
}

.copy-righ-box {
    text-align: center;
    width: 238px;
    height: 14px;
    margin-top: 20px;

}

.copy-righ-box p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11.7601px;
    line-height: 14px;
    color: #FFFFFF;
}

.mobile-navbar {
    display: none;
}



@media(max-width: 992px) {

    body {
        width: 100%;
    }

    .nav-socials {
        display: none;
    }

    nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        z-index: 1000;
        width: 100% !important;
        background: #107001;
    }

    .logo-box.mobile-logo {
        display: block;
    }

    .logo {
        display: block;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin: 0;
        padding-top: 30px;
        padding-left: 10px;
        z-index: 1000;
    }

    .navbar .logo-box {
        display: none;
    }

    /* Mobile nav */

    .navbar>ul {
        position: absolute;
        background: #107001;
        left: 0;
        right: 0;
        width: 90%;
        top: 60px;
        margin: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: -1;
        border-top: 8px solid #F5EA00;
    }

    .navbar>ul>li {
        width: 100%;
    }

    .arrow-down {
        right: 0;
    }

    .navbar ul li {
        border-top: 1px solid #F5EA00;
        padding: 0;
    }

    .navbar ul li:first-child {
        border-top: none;
        padding-top: 10px;
    }

    .navbar ul li a {
        padding: 12px 13px;
    }

    .navbar ul li>ul {
        background-color: #05221F;
    }

    .navbar ul li>ul li a {
        padding: 12px 20px;
        font-size: 15px;
    }

    .navbar ul li a .arrow-down {
        font-size: 35px;
        right: 10px;
        top: 10px;
    }

    nav.scrollNav .logo {
        margin: 0;
        width: 60px;
        height: 60px;
        padding: 0;
        object-fit: cover;
        transition: 3s;
        z-index: 99;
    }

    .meny-box {
        display: flex;
        padding-right: 1.2rem;
    }

    .meny-box img {
        cursor: pointer;
        width: 1.5rem;
    }

    /* Hero section */
    
   .slide-container {
        margin: 50px auto;
        height: 400px;
        width: 100%;
    }
    .slide {
        height: 400px;
    }
    .prev {
        left: 0;
        display: none;
    }
            
    .next {
        right: 0;
        display: none;
    }
    
    .slide {
        height: 400px;
    }
    
    .slide img {
        border-radius: 0;
    }

    .container {
        margin: 0 0;
        width: 100%;
        height: 600px;
        margin: 0;
        border-radius: 50px;
    }

    .slide img {
        border-radius: 0;
    }

    /* Marquee text */
    .marquee-text {
        display: none;
    }


    /* Mobile social handles */
    .social_mobile_handles {
        background: #000000;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 1.5rem;
        padding: 1.8rem;
        margin-top: 0;
    }

    .social_mobile_handles img {
        width: 50px;
        height: 50px;
    }

    /* Our director */
    .director-section {
        margin: 0;
        height: fit-content;
        width: 100%;
        overflow: hidden;
    }

    .director-contents {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .director-img-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: -65px;
    }


    .director_name {
        width: 350px;
        height: 60px;
        padding: 0;
        margin-top: -50px;
    }

    .director_name h2 {
        font-size: 15px;
    }

    .contents {
        display: block;
        width: fit-content;
        text-align: center;
        padding: 20px;
    }

    .director-img {
        width: 350px;
        height: 288px;
        border-radius: 0;
        object-fit: cover;
        margin-top: -150px;
    }

    .description {
        margin: 0;
    }

    .description p {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.2rem;
        color: #FFFFFF;
    }

    .title-and-name p {
        font-size: 14px;
        color: #FFFFFF;
        padding: 1rem 0;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
    }

    .title-and-name h2 {
        display: none;
    }

    /* Mobile offer section */

    .offer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2.5rem;
        gap: 2.5rem;
        height: fit-content;
    }

    .offer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .offer img {
        width: 200px;
        margin-right: -50px;
        z-index: 1;
        margin-bottom: 0;
    }

    .offer p {
        border-radius: 0px 51px 51px 0px;
        background: #F1ECEC;
        width: 250px;
        height: 100px;
        padding: 2rem 3.5rem;
    }

    /* Employee section */

    .employee-section {
        display: flex;
        flex-direction: column;

    }

    .employee-img-box {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 50px;
        width: 100%;
        margin: 10px 20px;
    }

    .employee-img-box h2,
    .employee-img-box p {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .employee-img-box div {
        width: 320px;
        height: 320px;
    }

    .employee-img {
        width: 240px;
        height: 240px;
    }

    .employee-img-box h2 {
        width: 430px !important;
        font-size: 18px !important;
        margin-top: -130px;
        padding: 20px;
        height: 40px;
        background: #D9D9D9;
        font-size: 26px;
        text-align: center;
    }

    @media(max-width: 482px) {
        .employee-img-box h2 {
            width: 310px !important;
            font-size: 18px !important;
            margin-top: -130px;
            padding: 20px;
            height: 40px;
            background: #D9D9D9;
            font-size: 26px;
            text-align: center;
        }

    }

    .employee-title-and-name,
    .employee-details {
        display: none;
    }

    .employee-img-box p {
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
    }

    /* Our services */
    .our-services {
        display: grid;
        grid-template-columns: repeat(1, 304px);
        justify-content: space-evenly;
        align-items: center;
        gap: 1rem;
        height: fit-content;
    }

    .service {
        height: 199px;
    }

    .service p {
        font-size: 14px;
    }

    /* GEt app */
    .get-app {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 1495px;
    }

    .mobile-img {
        width: 800px;
    }

    /* Appointment section */

    .appointment-container {
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 748px;
    }

    .appointment-contents {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -500px;
        width: 300px;
        height: 648px;
        background: linear-gradient(107.47deg, #107001 0%, #FFB905 100.72%);
        border-radius: 20px;
        padding-top: 1rem;
    }

    .text-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: flex;
        gap: .8rem;
    }

    .text-container h2 {
        width: 246px;
        height: 20px;
        padding: 10px;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 900;
        font-size: 22px;
        line-height: 100%;
        text-align: center;
        letter-spacing: 0.035em;
        color: #FFFFFF;
    }

    .text-container p {
        width: 251px;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 100%;
        text-align: center;
        color: #FFFFFF;
    }

    .control-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 1em;
        width: 100%;
    }

    .book-form {
        width: 100%;
        margin: 40px 50px;
    }

    .form-control {
        width: 300px;
        height: 60px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        border: none;
    }

    .form-control:focus {
        outline: none;
    }

    .btn-box {
        text-align: center;
        margin: 2.5rem 0px;
    }

    .btn-box input {
        width: 162.56px;
        height: 44px;
        background: #107001;
        border: 1px solid #107001;
        border-radius: 4.89033px;
        font-family: 'Inter', sans-serif;
        font-style: normal;
        font-weight: 800;
        font-size: 14px;
        line-height: 100%;
        color: #E6E9E6;
    }

    /* Footer */
    footer {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
    }

    .footer-contents {
        display: flex;
        flex-direction: column;
        border: none;
    }

    footer a {
        font-weight: 200;
    }

    footer h4 {
        font-size: 19px;
    }

    .brand-content {
        gap: 1.5em;
    }

    .brand-content p {
        font-weight: 400;
        text-align: start;
    }

    .social-handles,
    .social-handles-2,
    .home-link-box,
    .quick-link-box,
    .contact-link-box {
        margin-top: 20px;
    }

    .contact-links p {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }

    .contact-links span {
        margin-bottom: 0;
    }

    .contact-links span i {
        font-size: 15px;
        padding: 5px 5px 5px 0px;
    }


    .social-handles {
        display: none;
    }

    .images {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2em;
        margin: 2em auto 1em;
    }

    .images img {
        width: 100px;
    }

    .gradient-img,
    .footer-icon {
        display: none;
    }

    .copy-righ-box {
        margin: 0 auto;

    }

    /* Mobile menu toggle */
    .nav-list {
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
    }

    .nav-list.show {
        overflow-y: scroll;
        visibility: visible;
        opacity: 1;
        max-height: 100vh;
    }

    .dropdown-content {
        display: none;
    }

    .submenushow {
        display: block;
    }

}

@media(max-width: 550px) {
    .director-section {
        margin: 0;
        height: 950px;
        width: 100%;
        overflow: hidden;
    }

    .director-contents {
        height: 950px;
    }

    .director-img-box {
        margin-bottom: -65px;
    }

    .social_mobile_handles {
        background: #000000;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 1.5rem;
        padding: 1rem;
    }

    .social_mobile_handles img {
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .offer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 2.5rem;
        height: fit-content;
    }

    .offer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .offer img {
        width: 150px;
        margin-right: -40px;
        z-index: 1;
        margin-bottom: 0;
    }

    .offer p {
        border-radius: 0px 51px 51px 0px;
        background: #F1ECEC;
        width: 200px;
        height: 70px;
        padding: 2.4rem 2.5rem;
        font-size: 13px;
    }
}