:root {
    --theme: #D4A024;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-family: 'Anek Gujarati', sans-serif;
    overflow-x: hidden;
    width: 100vw;
}

input,
textarea,
select {
    border: 1px solid grey;
    width: 100%;
    padding: 5px 15px;
    border-radius: 5px;
    caret-color: var(--theme);
    display: block;
    margin-bottom: 20px;
    background: white;
}

label {
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: bold;
}

textarea {
    height: 100px;
}

input:focus,
textarea:focus,
select:focus,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-color: var(--theme);
}

a {
    color: black;
    text-decoration: none;
    transition: all 0.3s linear;
}

a:hover {
    color: var(--theme);
    text-decoration: none;
}

button:focus,
button:focus {
    outline: none;
}



/* ======================================================================================
                                        HEDAER
=====================================================================================  */
header {
    z-index: 2;
    position: relative;
}

/* ---------------- HEADE TOP --------------- */
#header-top {
    background: var(--theme);
    padding: 10px 0;
}

#header-top .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header-top .left {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: white;
    align-items: center;
}

#header-top .left a {
    color: white;
}

#header-top .right {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    align-items: center;
}

#header-top .right a {
    color: white;
}

#header-top .left a:hover,
#header-top .right a :hover {
    color: black;
}

/* ---------------- HEADE MIDDLE --------------- */
#header-middle {
    padding: 10px 0;
    background: white;
}

#header-middle .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header-middle .logo {
    width: 250px;
    aspect-ratio: 1/0.3;
}

#header-middle .links {
    width: calc(100% - 250px);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

#header-middle .links a,
#header-middle .links .head-drop .drop-button {
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: black;
    cursor: pointer;
}

#header-middle .links .head-drop {
    position: relative;
}

#header-middle .links .head-drop .drop-button:hover {
    color: black !important;
}

#header-middle .links .head-drop .drop-list {
    position: absolute;
    width: 400px;
    background: white;
    padding: 5px 0;
    left: 0;
    transform: translate(-40%, 0);
    display: none;
    box-shadow: 0 8px 24px #00000038;
}

#header-middle .links .head-drop:hover .drop-list {
    display: block;
}

#header-middle .links .head-drop a {
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s linear;
    padding: 10px 20px;
}

#header-middle .links .head-drop a:hover,
#header-middle .links a:hover {
    color: black;
}

#header-middle .links .search-button {
    color: var(--theme);
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--theme);
    display: grid;
    place-items: center;
    position: relative;
}

#header-middle .links .search-button .search-container {
    display: none;
    position: absolute;
    width: 450px;
    background: white;
    padding: 15px;
    right: 0;
    top: calc(100% + 10px);
    border-top: 5px solid var(--theme);
    box-shadow: 0 8px 24px #00000038;
}

#header-middle .links .search-button:hover .search-container {
    display: block;
}

#header-middle .links .search-button:hover .search-container::before {
    position: absolute;
    content: "";
    width: 120px;
    top: -20px;
    height: 20px;
    right: 0;
}

#header-middle .links .search-button .search-container .search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #a9a6a699;
}

#header-middle .links .search-button .search-container label {
    width: 50px;
    background: var(--theme);
    color: white;
    display: grid;
    place-items: center;
    height: 34px;
    margin: 0;
}

#header-middle .links .search-button .search-container input {
    margin: 0;
    border: 0;
    width: calc(100% - 50px);
    height: 34px;
    font-size: 1rem;
}

#header-middle .links .close-menu {
    display: none;
    margin-left: auto;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 1.2rem;
}

#header-middle .hamburger-btn {
    display: none;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid #808080a8;
    border-radius: 50%;
}

@media screen and (max-width:991px) {
    #header-middle .links {
        width: 300px;
        position: absolute;
        top: 0;
        right: 0px;
        background: white;
        flex-direction: column;
        height: 100vh;
        justify-content: flex-start;
        padding: 20px;
        align-items: flex-start;
        z-index: 15;
        box-shadow: 0 8px 24px #aeababa3;
        overflow-y: auto;
        transition: all 0.5s linear;
        display: none;
    }

    #header-middle .hamburger-btn {
        display: grid;
    }

    #header-middle .links .search-button {
        border: 0;
        border-radius: 0;
        width: 100%;
    }

    #header-middle .links .search-button>i {
        display: none;
    }

    #header-middle .links .search-button .search-container {
        display: block;
        position: static;
        border: 0;
        padding: 0;
        width: 100%;
    }

    #header-middle .links .search-button .search-container .search-bar {
        width: 100%;
    }

    #header-middle .links .close-menu {
        display: block;
    }

    #header-middle .links .head-drop .drop-list {
        position: static;
        width: initial;
        padding: 0;
        box-shadow: initial;
        transform: initial;
    }

    #header-middle .links .head-drop .drop-list a {
        padding: 5px 0;
    }
}

@media screen and (max-width:768px) {
    #header-middle .logo {
        width: 200px;
    }

    #header-top {
        display: none;
    }
}



/* ======================================================================================
                                    HOME SLIDER
=====================================================================================  */
#home-slider {
    position: relative;
}

#home-slider .slider-item {
    width: 100%;
    max-height: 500px;
    position: relative;
}

#home-slider .slider-item .image {
    width: 100%;
    height: 500px;
}

#home-slider .slider-item .image img {
    object-fit: cover;
    object-position: center;
}

#home-slider .slider-item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 30px 0 30px;
    background: #00000061;
}

#home-slider .slider-item .content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home-slider .slider-item .content .title {
    font-family: 'GFS Neohellenic', sans-serif;
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

#home-slider .slider-item .content .data {
    font-size: 1.2rem;
    color: white;
    text-align: justify;
    margin-bottom: 10px;
}

#home-slider .slider-item .content a {
    display: grid;
    background: var(--theme);
    max-width: 200px;
    height: 40px;
    place-items: center;
    color: white;
    font-size: 1.3rem;
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
}

#home-slider .owl-nav {
    display: flex;
    width: 100px;
    justify-content: flex-end;
    position: absolute;
    bottom: 20px;
    right: 50px;
    border-radius: 25px;
    background: white;
}

#home-slider .owl-nav div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s linear;
}

#home-slider .owl-nav div:hover {
    background: #D4A02461;
}

@media screen and (max-width:991px) {
    #home-slider .slider-item {
        max-height: 370px;
    }
}

@media screen and (max-width:768px) {
    #home-slider .slider-item .content .title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width:576px) {
    #home-slider .slider-item .content .title {
        font-size: 2rem;
    }

    #home-slider .slider-item .content .data {
        font-size: 1rem;
    }

    #home-slider .slider-item .content a {
        font-size: 1.1rem;
    }

    #home-slider .owl-nav {
        display: none;
    }
}



/* ======================================================================================
                                    SECTION CSS
=====================================================================================  */
section {
    padding: 30px 0;
}

section .section-head {
    margin-bottom: 30px;
}

section .section-head .tag {
    font-family: 'GFS Neohellenic', sans-serif;
    background: #D4A024;
    display: inline-block;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

section .section-head .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 3px;
}

section .section-head .slogan {
    padding-left: 20px;
    border-left: 5px solid var(--theme);
    font-size: 1.4rem;
    text-align: justify;
    font-weight: 600;
    letter-spacing: 3px;
}

section .section-head .link {
    text-align: right;
}

section .section-head .link a {
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s linear;
}

section .section-head .link a:hover {
    letter-spacing: 3px;
}

@media screen and (max-width:768px) {
    section .section-head .title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width:576px) {
    section .section-head .title {
        font-size: 2rem;
    }

    section .section-head .tag {
        font-size: 1rem;
    }
}



/* ======================================================================================
                                    SERVICE GRID
=====================================================================================  */
#service-grid .service-card {
    border-radius: 20% 20% 5% 5% / 50% 50% 5% 5%;
    position: relative;
    box-shadow: 0 8px 24px #a9a9a985;
    padding: 40px 20px 20px;
    text-align: center;
    margin: 30px 0 20px;
    cursor: pointer;
}

#service-grid .service-card .icon {
    position: absolute;
    top: -30px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dddddd;
    font-size: 1.5rem;
    color: black;
    transition: all 0.5s linear;
}

#service-grid .service-card .title {
    font-family: 'GFS Neohellenic', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--theme);
}

#service-grid .service-card .content {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 144px;
}

#service-grid .service-card:hover .icon {
    background: var(--theme);
    color: white;
}

@media screen and (max-width:768px) {
    #service-grid .service-card .content {
        -webkit-line-clamp: initial;
        height: initial;
    }
}



/* ======================================================================================
                                    ABOUT AREA
=====================================================================================  */
#about-area .image-block {
    position: relative;
    margin-bottom: 30px;
}

#about-area .image-block .image {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1/0.8;
}

#about-area .image-block .image img {
    object-fit: cover;
    object-position: top;
}

#about-area .image-block .title {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    max-width: 600px;
    width: 100%;
    background: #c9c9c9a3;
    padding: 20px;
}

#about-area .image-block .tag {
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    color: black;
    font-weight: 800;
    font-size: 1.3rem;
}

#about-area .image-block .company {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--theme);
    letter-spacing: 3px;
    word-spacing: 6px;
    margin-bottom: 15px;
    font-family: 'GFS Neohellenic', sans-serif;
}

#about-area .image-block .head {
    color: black;
    font-size: 1.4rem;
    font-weight: bold;
}

#about-area .main-content {
    text-align: justify;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

#about-area .mission-card {
    box-shadow: 0 8px 24px #979595a3;
    padding: 20px;
    background: #0000001a;
    margin-bottom: 20px;
}

#about-area .mission-card .icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid grey;
    text-align: center;
    line-height: 56px;
    margin-bottom: 15px;
}

#about-area .mission-card .title {
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#about-area .mission-card .content {
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 96px;
}

@media screen and (max-width:991px) {
    #about-area .image-block .image {
        max-width: 350px;
        aspect-ratio: 1/1.5;
    }

    #about-area .image-block .title {
        max-width: 450px;
    }

    #about-area .image-block .tag {
        font-size: 1.1rem;
    }

    #about-area .image-block .company {
        font-size: 1.7rem;
    }
}

@media screen and (max-width:576px) {
    #about-area .image-block .title {
        position: static;
        transform: initial;
    }

    #about-area .image-block .image {
        margin-bottom: 20px;
        aspect-ratio: 1/1.2;
    }

    #about-area .mission-card .content {
        -webkit-line-clamp: initial;
        height: initial;
    }

    #about-area .image-block .company {
        font-size: 1.4rem;
    }
}



/* ======================================================================================
                                    SERVICE GRID
=====================================================================================  */
#services-area {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

#services-area::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b8;
    content: '';
}

#services-area .container-fluid {
    z-index: 1;
    position: relative;
}

#services-area .service-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
}

#services-area .service-card .image {
    width: 100%;
    aspect-ratio: 1/0.9;
}

#services-area .service-card .details {
    background: white;
    padding: 20px;
}

#services-area .service-card .title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--theme);
}

#services-area .service-card .data {
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 72px;
}



/* ======================================================================================
                                    RECENTLY COMPLETED
=====================================================================================  */
#recently-completed .work-item {
    position: relative;
}

#recently-completed .work-item .name {
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    padding: 5px 10px;
    background: var(--theme);
    color: white;
    height: 82px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#recently-completed .work-item .image {
    width: 100%;
    aspect-ratio: 1/0.7;
}

#recently-completed .owl-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin: 10px auto;
}

#recently-completed .owl-nav div {
    width: 70px;
    aspect-ratio: 1/0.8;
}

#recently-completed .owl-nav div img {
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
    filter: invert(9%) sepia(93%) saturate(4853%) hue-rotate(40deg) brightness(94%) contrast(100%);
}

#recently-completed .owl-nav div img:hover {
    filter: initial;
}

@media screen and (max-width:576px) {
    #recently-completed .owl-nav {
        display: none;
    }
}



/* ======================================================================================
                                    WORKING PROCESS
=====================================================================================  */
#working-process .process-card {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 6px solid var(--theme);
}

#working-process .process-card .icon {
    font-size: 4rem;
    color: #D4A02459;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

#working-process .process-card .title {
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#working-process .process-card .content {
    font-size: 1.1rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 80px;
}

#working-process .process-card .number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--theme);
    color: white;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0);
}



/* ======================================================================================
                                    APPOINTMENT
=====================================================================================  */
#appointment {
    background: var(--theme);
}

#appointment .section-content {
    display: flex;
    align-items: center;
}

#appointment .appoint-details {
    width: calc(100% - 300px);
}

#appointment .appoint-details div {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
}

#appointment .link {
    width: 300px;
    text-align: right;
}

#appointment .link a {
    color: white;
    font-family: 'GFS Neohellenic', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s linear;
}

#appointment .link a:hover {
    letter-spacing: 2px;
}

@media screen and (max-width:768px) {
    #appointment .section-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    #appointment .appoint-details,
    #appointment .link {
        width: 100%;
    }
}

@media screen and (max-width:576px) {
    #appointment .appoint-details div {
        font-size: 1.6rem;
    }
}



/* ======================================================================================
                                    HOME CONTACT
=====================================================================================  */
#contact-area {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

#contact-area .form-container {
    padding: 20px;
    backdrop-filter: blur(5px);
    background: #ffffff17;
}

#contact-area .form-container .head {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

#contact-area .form-container .slogan {
    font-size: 1.2rem;
    text-align: justify;
    margin-bottom: 25px;
    color: ghostwhite;
}

#contact-area .form-container .group-input label {
    color: white;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: initial;
    margin: 0;
    text-transform: uppercase;
}

#contact-area .form-container .submit input {
    margin: 0;
    padding: 7px 10px;
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    background: var(--theme);
    border: 0;
    cursor: pointer;
    transition: all 0.3s linear;
}

#contact-area .form-container .submit input:hover {
    letter-spacing: 3px;
}



/* ======================================================================================
                                    HOME CONTACT
=====================================================================================  */
#testimonials .testimonial-item {
    position: relative;
}

#testimonials .testimonial-item .details {
    width: 100%;
    max-width: 200px;
    border: 1px solid #80808057;
    padding: 10px;
    z-index: 1;
    position: relative;
    background: white;
}

#testimonials .testimonial-item .image {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
}

#testimonials .testimonial-item .name {
    text-align: center;
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--theme);
}

#testimonials .testimonial-item .place {
    text-align: center;
    color: rgb(61, 61, 61);
}

#testimonials .testimonial-item .review {
    width: 100%;
    max-width: 400px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: white;
    padding: 10px;
    padding-left: 30px;
    border: 1px solid #80808057;
    text-align: justify;
    font-size: 0.9rem;
}

#testimonials .owl-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin: 10px auto;
}

#testimonials .owl-nav div {
    width: 70px;
    aspect-ratio: 1/0.8;
}

#testimonials .owl-nav div img {
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
    filter: invert(9%) sepia(93%) saturate(4853%) hue-rotate(40deg) brightness(94%) contrast(100%);
}

#testimonials .owl-nav div img:hover {
    filter: initial;
}

@media screen and (max-width:991px) {
    #testimonials .testimonial-item .review {
        max-width: calc(100% - 180px);
    }
}

@media screen and (max-width:576px) {
    #testimonials .testimonial-item .review {
        position: initial;
        transform: initial;
        max-width: 100%;
    }

    #testimonials .testimonial-item .details {
        max-width: 100%;
    }

    #testimonials .owl-nav {
        display: none;
    }
}



/* ======================================================================================
                                    MAIN FOOTER
=====================================================================================  */
#footer-top {
    background: black;
    padding: 40px 0 30px;
}

#footer-top .about {
    padding: 10px;
    background: #ffffff21;
    border-bottom: 5px solid var(--theme);
}

#footer-top .about .logo {
    max-width: 200px;
    aspect-ratio: 1/0.3;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

#footer-top .about .content {
    text-align: justify;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 15px;
}

#footer-top .about .social {
    display: flex;
    gap: 20px;
}

#footer-top .about .social a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid white;
    color: white;
    border-radius: 50%;
}

#footer-top .about .social a:hover {
    background: white;
    color: black;
}

#footer-top .link-content .head {
    padding: 1px 0 1px 10px;
    color: white;
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-left: 3px solid white;
    margin-bottom: 25px;
}

#footer-top .link-content .links {
    padding-left: 15px;
}

#footer-top .link-content .links a {
    display: block;
    color: #ededed;
    text-transform: uppercase;
}

#footer-top .link-content .links a:hover {
    color: white;
    letter-spacing: 3px;
    text-shadow: 0 0 2px white;
}

#footer-top .contact-content .block {
    margin-bottom: 20px;
}

#footer-top .contact-content .block .head {
    padding: 1px 0 1px 10px;
    color: white;
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-left: 3px solid white;
    margin-bottom: 10px;
}

#footer-top .contact-content .block .data {
    padding-left: 15px;
    color: #ededed;
    font-size: 0.9rem;
    display: block;
}

#footer-top .contact-content .block a.data:hover {
    color: white;
    letter-spacing: 3px;
    text-shadow: 0 0 2px white;
}

#footer-bottom {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-weight: bold;
    padding: 8px 0;
}

@media screen and (max-width:991px) {
    #footer-top .about {
        margin-bottom: 20px;
    }
}



/* ======================================================================================
                                    CLIENT SLIDER
=====================================================================================  */
#clients-area .client-item {
    max-width: 200px;
    margin: 0 auto;
}

#clients-area .client-item .image {
    width: 100%;
    aspect-ratio: 1/1;
}

#clients-area .client-item video {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

#clients-area .client-item .bottom {
    height: 82px;
    display: none;
    justify-content: center;
    align-items: center;
    background: white;
    border: 1px solid #8080806b;
}

#clients-area .owl-nav {
    display: flex;
    width: 100px;
    justify-content: flex-end;
    border-radius: 25px;
    background: white;
    margin-top: 20px;
    margin-left: auto;
    border: 1px solid #80808069;
}

#clients-area .owl-nav div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s linear;
}

#clients-area .owl-nav div:hover {
    background: #D4A02461;
}

@media screen and (max-width:576px) {
    #clients-area .owl-nav {
        display: none;
    }
}



/* ======================================================================================
                                    BREADCRUMB
=====================================================================================  */
#breadcrumb-area {
    width: 100%;
    aspect-ratio: 1/0.5;
    max-height: 300px;
    position: relative;
}

#breadcrumb-area .image-bg {
    width: 100%;
    height: 100%;
}

#breadcrumb-area .image-bg img {
    object-fit: cover;
    object-position: center;
}

#breadcrumb-area .container-fluid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000006e;
}

#breadcrumb-area .main-head {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

#breadcrumb-area .slogan {
    color: #e5e4e1;
    text-align: justify;
}

@media screen and (max-width:576px) {
    #breadcrumb-area .main-head {
        font-size: 1.4rem;
    }

    #breadcrumb-area .slogan {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media screen and (max-width:360px) {
    #breadcrumb-area .main-head {
        font-size: 1.1rem;
    }
}



/* ======================================================================================
                                        MAP AREA
=====================================================================================  */
#map-area iframe {
    width: 100%;
    height: 300px;
}



/* ======================================================================================
                                    CONTACT PAGE
=====================================================================================  */
#contact-page .contact-details .main-head,
#contact-page .contact-form .main-head {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--theme);
}

#contact-page .contact-details .slogan {
    text-align: justify;
    margin-bottom: 30px;
}

#contact-page .contact-details .block {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

#contact-page .contact-form {
    padding: 20px;
    background: #00000026;
}

#contact-page .contact-form .group-input label {
    color: black;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

#contact-page .contact-form .submit input {
    margin: 0;
    padding: 7px 10px;
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    background: var(--theme);
    border: 0;
    cursor: pointer;
    transition: all 0.3s linear;
}

#contact-page .contact-form .submit input:hover {
    letter-spacing: 3px;
}



/* ======================================================================================
                                    ABOUT PAGE
=====================================================================================  */
#about-mission .image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

#about-mission .image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
}

#about-mission .image .owner {
    text-align: center;
    padding: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    background: #00000026;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

#about-mission .about-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#about-mission .about-list .block {
    background: #00000038;
    padding: 15px;
    margin-bottom: 12px;
    backdrop-filter: blur(2px);
}

#about-mission .about-list .block:nth-last-child(1) {
    margin-bottom: 0;
}

#about-mission .about-list .head {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    color: var(--theme);
}

#about-mission .about-list .data {
    text-align: justify;
}

#about-content .main-content {
    text-align: justify;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

@media screen and (max-width:991px) {
    #about-mission .image {
        margin-bottom: 20px;
    }
    
    #about-mission .image .owner {
        font-size:1.3rem;
    }
}

@media screen and (max-width:576px) {
    #about-content .main-content {
        font-size: 1rem;
    }
    
    #about-mission .image .owner {
        font-size:1.1rem;
    }
}



/* ======================================================================================
                                    ABOUT MILESTONE
=====================================================================================  */
#about-mile .mile-contaier .mile-item {
    margin-bottom: 20px;
}

#about-mile .mile-contaier .mile-item .count {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

#about-mile .mile-contaier .mile-item .title {
    font-family: 'GFS Neohellenic', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0 4px 4px #00000042;
    text-align: center;
}



/* ======================================================================================
                                    GALLERY PAGE
=====================================================================================  */
#gallery-page .image {
    width: 100%;
    aspect-ratio: 1/0.8;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s linear;
}

#gallery-page .image:hover {
    transform: translate(0, -10px);
}

#gallery-video .video {
    width: 100%;
    aspect-ratio: 1/0.8;
    margin-bottom: 25px;
    cursor: pointer;
}

#gallery-video .video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}



/* ======================================================================================
                            RESIDENTIAL HOUSEKEEPING SERVICES
=====================================================================================  */
.services-inner .top-content .image {
    max-width: 400px;
    margin: 0 auto 30px;
    aspect-ratio: 1/0.8;
}

.services-inner .top-content .head {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: bold;
    color: var(--theme);
    margin-bottom: 15px;
}

.services-inner .top-content .content {
    font-size: 1.1rem;
    text-align: justify;
    font-weight: bold;
    padding: 15px;
    border-left: 4px solid black;
    background: #00000017;
}

.services-inner .main-content {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 20px;
}

.services-inner .process {
    margin-bottom: 30px;
}

.services-inner .process .head {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 5px solid var(--theme);
    color: var(--theme);
}

.services-inner .process .list div {
    font-size: 1.1rem;
    margin-bottom: 5px;
    padding-left: 30px;
    position: relative;
}

.services-inner .process .list div i {
    position: absolute;
    left: 0;
    top: calc(50% - 9px);
}

@media screen and (max-width:991px) {
    .services-inner .top-content .details {
        margin-bottom: 20px;
    }

    .services-inner .process .list div i {
        top: 5px;
    }

    .services-inner .top-content .head {
        font-size: 2.5rem;
    }
}

@media screen and (max-width:576px) {
    .services-inner .top-content .head {
        font-size: 2rem;
    }

    .services-inner .top-content .content,
    .services-inner .main-content {
        font-size: 1rem;
    }
}