/* Start Global Rules */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root {
    --main-color: #3E5E46;
    --back-color: #fff;
    --main-transition: 0.5s;
    --sec-color: #88B395;
    --padding-top: 50px;
    --padding-bottom: 50px;
    --background-linear: linear-gradient(to left, #3E5E46, #88B395);
}

/* End Variables */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
}

/* Start Contanier */

.contanier {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contanier {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .contanier {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .contanier {
        width: 1170px;
    }
}

/* End Contanier */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 50px;
    height: 50px;
}

.main-title {
    margin: 0 auto;
    display: flex;
    width: fit-content;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px;
    text-align: center;
    align-items: center;
}

.main-title .t {
    color: white;
    background-color: var(--main-color);
    width: fit-content;
    padding: 10px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-title .r {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.main-title .r .sp {
    font-family: "Caveat";
    color: var(--sec-color);
}

@media (max-width: 768px) {
    .main-title {
        text-align: center;
    }
}

.main-title .big {
    position: relative;
    font-size: 80px;
    text-transform: uppercase;
    font-weight: bold;
    color: #3e5e461a;
}

@media (max-width: 768px) {
    .main-title .big {
        font-size: 50px;
    }
}

.main-title .small {
    text-align: center;
    position: absolute;
    bottom: 0;
    /* left: 50%; */
    font-size: 40px;
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: bold;
    /* transform: translateX(-50%); */
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .main-title .small {
        font-size: 25px;
    }
}

/* ****************************** */

.menu {
    display: none;
    flex-direction: column;
    position: relative;
    height: 80px;
    width: 35px;
    border: none;
    outline: none;
    background-color: transparent;
    margin-right: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

.menu span {
    display: block;
    width: 35px;
    height: 2px;
    margin: 6px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 12px);
    background-color: red;
}

.menu.active span:nth-child(2) {
    opacity: 0;
}

.menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -12px);
    background-color: red;
}

/* **************************** */

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    /* position: fixed; */
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    display: none;
}

.menu-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.menu-items ul {
    list-style: none;
    padding: 0;
    margin: 20% 0 0 0;
    text-align: center;
}

.menu-items ul li {
    margin-bottom: 20px;
}

.menu-items ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.menu-items ul li a:hover {
    color: #00bcd4;
}

.close-icon {
    color: white;
}

/* End Mage Menu */

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 40;
    width: 100%;
    height: 100%;
    background-color: var(--main-blue-color);
    animation: hide 400ms ease 2500ms forwards;
}

.loader img:nth-child(2) {
    width: 280px;
    margin-left: 25px;
    transform: translateY(-20px);
}

@keyframes hide {
    100% {
        top: 100%;
    }
}

.loaderLogo {
    opacity: 0;
    animation: loader 1.5s linear 0s infinite forwards;
}

.loaderLogo img {
    width: 280px;
    height: 280px;
}

@keyframes loader {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.goTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 10px;
    z-index: 5;
}


.goTop span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #88b395;
    box-shadow: 0px 0px 10px var(--main-blue-color);
    cursor: pointer;
    transition: 0.2s;
}

.goTop span:hover {
    background-color: #3f5e46;
}

.goTop span:hover i {
    color: #fff;
}

.goTop span i {
    color: #fff;
    font-size: 1.5em;
}

.btn {
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    width: fit-content;
    padding: 10px 35px;
    transition: var(--main-transition);
    color: black;
    position: relative;
    background-color: #88b3952b;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    transition: var(--main-transition);
    width: 20%;
    background-color: var(--main-color);
    height: 2px;
    left: 0;
}

.btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    transition: var(--main-transition);
    width: 20%;
    background-color: var(--main-color);
    height: 2px;
    right: 0;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover::after {
    width: 100%;
}

.color {
    position: fixed !important;
    width: 100%;
    z-index: 1000;
    background-color: white;
    transition: var(--main-transition);
}

/* End Global Rules */

/* Start Header */

.header {
    box-shadow: 0px 0px 10px #6a6a6a;
    position: fixed;
    z-index: 500;
    width: 100%;
    background-color: #fff;
}

.header .contanier {
    display: flex;
    flex-direction: column;
}

.header .contanier .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
    display: none;
}

.header .contanier .top::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    bottom: 0;
}

.header .contanier .top .left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
}

.header .contanier .top .left img {
    width: 20px;
    height: 20px;
}

.header .contanier .top .right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-direction: row-reverse;
}

.header .contanier .top .right .tt {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    text-transform: capitalize;
}

.header .contanier .top .right .tt img {
    width: 20px;
    height: 20px;
}

.header .contanier .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header .contanier .bottom .logo {
    width: 74px;
    height: 74px;
}

.header .contanier .bottom .logo img {
    width: 74px;
    height: 74px;
}

.header .contanier .bottom .nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .header .contanier .bottom .nav {
        display: none;
        position: fixed;
        top: 100px;
        left: -400px;
        width: 100%;
        display: flex;
        transition: 0.5s;
        z-index: 5;
        flex-direction: column;
        background-color: white;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .header .contanier .bottom .nav ul {
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: self-start !important;
        padding-left: 20px;
        padding-top: 20px;
    }
}

.header .contanier .bottom .nav ul li a {
    color: var(--sec-color);
    font-weight: bold;
    text-transform: uppercase;
    color: black;
}

.header .contanier .bottom .nav ul li .active {
    color: var(--sec-color);
}

/* End Header */

/* Start Landing */

.landing {
    background-image: url(../media/landing.jpg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 768px) {
    .landing{
        background-position: 85% 100%;
    }
}

.landing .contanier {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing .contanier .text {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .landing .contanier .text {
        padding-top: 125px;
    }
}

.landing .contanier span {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.landing .contanier .title {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .landing .contanier .title{
        font-size: 30px;
    }
}

.landing .contanier p {
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .landing .contanier p{
        font-size: 15px;
    }
}

.cont-header {
    position: absolute;
    bottom: -35px;
    display: flex;
    background-color: rgb(255 255 255 / 50%);
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    justify-content: space-between;
    padding: 35px;
    box-shadow: 0px 0px 10px #6a6a6a;
}

@media (max-width: 768px) {
    .cont-header {
        display: none;
    }
}

.cont-header .cc {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cont-header .cc img {
    width: 40px;
}

.cont-header .cc .info {
    display: flex;
    flex-direction: column;
}

.cont-header .cc .info .big {
    font-family: "Caveat";
    color: var(--main-color);
    font-size: 24px;
    font-weight: bold;
}

.cont-header .cc .info .small {
    font-size: 18px;
    font-family: "Caveat";
}

/* End Landing */



/* Start Bar */

.bar {
    width: 100%;
    height: 5px;
    background-color: var(--main-color);
    display: none;
}

/* End Bar */

/* Start Welcome */

.welcome {
    padding-bottom: 40px;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.ext1 {
    position: absolute;
    right: -11px;
    top: 0;
    width: 250px;
    height: 250px;
}

@media (max-width: 768px) {
    .ext1{
        display: none;
    }
}

.welcome .contanier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.welcome .contanier .left {
    width: 500px;
}

@media (max-width: 768px) {
    .welcome .contanier .left {
        display: none;
    }
}

.welcome .contanier .left .image {
    position: relative;
    height: 500px;
}

.welcome .contanier .left .image .one {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 10px;
    right: 0;
    top: 0;
}

.welcome .contanier .left .image .two {
    border-radius: 10px;
    position: absolute;
    right: 90px;
    bottom: 90px;
    width: 150px;
    height: 150px;
}

.welcome .contanier .left .image .three {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 250px;
    border-radius: 10px;
}

.welcome .contanier .left .image .four {
    left: 90px;
    top: 90px;
    position: absolute;
    border-radius: 10px;
    width: 150px;
    height: 150px;
}

.welcome .contanier .right {
    flex: 1;
    height: 500px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .welcome .contanier .right {
        height: auto;
        align-items: center;
    }
}

.welcome .contanier .right .main-title {
    margin: 0 !important;
}

.welcome .contanier .right p {
    margin-top: 15px;
    width: 500px;
    font-size: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .welcome .contanier .right p {
        width: auto;
        text-align: center;
    }
}


/* End Welcome */

/* Start About */

.about {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.about .ext2 {
    position: absolute;
    left: -11px;
    bottom: 0;
    width: 250px;
    height: 250px;
}

@media (max-width: 768px) {
    .about .ext2{
        display: none;
    }
}

.about .contanier {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.about .contanier p {
    line-height: 1.5;
    font-size: 20px;
    text-align: center;
}

/* End About */

/* Start Working */

.working {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    position: relative;
    background-image: url(../media/FEMININE.jpg);
    background-size: cover;
    height: 500px;
    background-repeat: no-repeat;
    background-position: 100% 44%;
    color: white;
}

.working::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.192);
}

.working .contanier {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.working .contanier .title {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 768px) {
    .working .contanier .title{
        font-size: 23px;
    }
}

.working .contanier .sub-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.working .contanier .one {
    display: flex;
    justify-content: space-between;
    width: 450px;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 768px) {
    .working .contanier .one{
        width: auto;
    }
}

.working .contanier .one span {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .working .contanier .one span {
        font-size: 17px;
    }
}


.working .contanier .two {
    display: flex;
    justify-content: space-between;
    width: 450px;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 768px) {
    .working .contanier .two{
        width: auto;
    }
}

.working .contanier .two span {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .working .contanier .two span{
        font-size: 17px;
    }
}

/* End Working */

/* Start Services */

.services {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.services .ext3 {
    position: absolute;
    right: -46px;
    bottom: -26px;
    width: 250px;
    height: 250px;
}

@media (max-width: 768px) {
    .services .ext3{
        display: none;
    }
}

.services .contanier {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.services .contanier .bx {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.services .contanier .bx .box {
    width: 350px;
    height: 500px;
    box-shadow: 0px 0px 10px #6a6a6a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 4px solid var(--main-color);
}

@media (max-width: 768px) {
    .services .contanier .bx .box{
        width: 300px;
    }
}

.services .contanier .bx .box .title {
    font-weight: bold;
    font-size: 20px;
}

.services .contanier .bx .box .image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .contanier .bx .box .image .iner {
    width: 80px;
    height: 80px;
    background-color: var(--sec-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .contanier .bx .box p {
    text-align: center;
}

.services .contanier .bx .box a {
    text-transform: capitalize;
    color: white;
    background-color: var(--sec-color);
    padding: 10px 30px;
    border-radius: 2px;
    font-weight: bold;
    transition: 0.5s;
}

.services .contanier .bx .box a:hover {
    background-color: #88b39599;
}

/* End Services */

/* Start Contact */

.contact {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    position: relative;
    background-image: url(../media/k.jpg);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
    background-position: 100% 44%;
    color: white;
    margin-bottom: 40px;
}

.contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.192);
}

.contact .contanier {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact .contanier .title {
    position: relative;
    font-family: "Caveat";
    font-weight: bold;
    font-size: 60px;
}

@media (max-width: 768px) {
    .contact .contanier .title{
        text-align: center;
    }
}

.contact .contanier p {
    position: relative;
    font-size: 30px;
    font-family: "Caveat";
}

.contact .contanier .search {
    position: relative;
}

.contact .contanier .search input {
    width: 500px;
    padding: 10px;
    border-radius: 2px;
    border: 0;
}

@media (max-width: 768px) {
    .contact .contanier .search input{
        width: 300px;
    }
}

.contact .contanier .search input:focus {
    outline: 0;
}

.contact .contanier .search button {
    position: absolute;
    right: 0;
    background-color: var(--sec-color);
    padding: 6px 40px;
    font-family: "Caveat";
    font-weight: bold;
    text-transform: capitalize;
    height: 100%;
    border: 0;
    color: white;
    cursor: pointer;
}

/* End Contact */

/* Start Footer */

.footer {
    background-color: var(--sec-color);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.footer .ext4 {
    position: absolute;
    bottom: -50px;
    width: 250px;
    height: 250px;
    left: -30px;
    transform: rotate(69deg);
}

@media (max-width: 768px) {
    .footer .ext4{
        display: none;
    }
}

.footer .contanier {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer .contanier{
        flex-direction: column;
    }
}

.footer .contanier .left-side {
    display: flex;
    flex-direction: column;
    margin-top: -70px;
}

.footer .contanier .left-side .logo {
    width: 250px;
}

.footer .contanier .left-side .logo img {
    width: 250px;
    height: 200px;
}

.footer .contanier .left-side p {
    width: 450px;
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: -25px;
}

@media (max-width: 768px) {
    .footer .contanier .left-side p{
        width: auto;
    }
}

.footer .contanier .left-side a {
    width: fit-content;
    background-color: white;
    padding: 10px 30px;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
}


.footer .contanier .right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 600px;
}

@media (max-width: 768px) {
    .footer .links {
        flex-direction: column;
    }
}

.footer .links .title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    border-bottom: 2px solid;
    margin-bottom: 15px;
    width: fit-content;
}

.footer .contanier .right-side .links .quick ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .contanier .right-side .links .quick ul li a {
    color: white;
    font-weight: bold;
    text-transform: capitalize;
}

.footer .contanier .right-side .links .reach ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .contanier .right-side .links .reach ul li {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .contanier .right-side .links .reach ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .contanier .right-side .links .reach ul li a img {
    width: 20px;
    height: 20px;
}

.footer .contanier .right-side .links .reach ul li a span {
    color: white;
}

.footer .contanier .right-side .social {
    display: flex;
    gap: 10px;
}

.footer .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid white;
    margin: 0 auto;
    width: 60%;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .footer .bottom{
        display: none;
    }
}

.footer .bottom span {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
}

.footer .bottom span a {
    color: white;
    text-decoration: underline;
}

.footer .bottom span img {
    width: 13px;
    height: 13px;
}

/* End Footer */


/* Start About Page */

.landing-about {
    position: relative;
    background-image: url(../media/about.jpg);
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 40%;
    padding-top: 80px;
}

.landing-about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.192);
}

.landing-about .contanier {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.landing-about .contanier .title {
    position: relative;
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-about .contanier .title{
        font-size: 35px;
    }
}

.landing-about .contanier .sub {
    position: relative;
    color: white;
    font-size:20px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-about .contanier .sub{
        font-size: 14px;
    }
}

.landing-about .contanier .sub .su {
    position: relative;
    color: var(--main-color);
}

.image-section {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    position: relative;
    overflow: hidden;
}

.image-section .contanier {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-section .contanier .one {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    position: relative;
}

@media (max-width: 768px) {
    .image-section .contanier .one,
    .image-section .contanier .two,
    .image-section .contanier .three,
    .image-section .contanier .four,
    .image-section .contanier .five,
    .image-section .contanier .six{
        display: none;
    }
}

.image-section .contanier .two {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    position: relative;
}

.image-section .contanier .three {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    position: relative;
}

.image-section .contanier .four {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    position: relative;
}

.image-section .contanier .five {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    position: relative;
}

.image-section .contanier .six {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    position: relative;
}

.detailes {
    padding-bottom: var(--padding-bottom);
}

.detailes .contanier {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detailes .contanier .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detailes .contanier .info .title {
    font-family: "Caveat";
    font-weight: bold;
    font-size: 30px;
    text-transform: capitalize;
    color: var(--sec-color);
}

.detailes .contanier .info p {
    font-size: 18px;
}

/* End About Page */

/* Start Services Page */

.landing-services {
    position: relative;
    background-image: url(../media/services.jpg);
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 40%;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .landing-services{
        background-position: 75%;
    }
}

.landing-services::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.192);
}

.landing-services .contanier {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.landing-services .contanier .title {
    position: relative;
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-services .contanier .title{
        font-size: 35px;
    }
}

.landing-services .contanier .sub {
    position: relative;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-services .contanier .sub {
        font-size: 14px;
    }
}

.landing-services .contanier .sub .su {
    position: relative;
    color: var(--main-color);
}

.serv {
    position: relative;
    padding-bottom: var(--padding-bottom);
    padding-top: var(--padding-top);
    overflow: hidden;
}

.serv .contanier .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .serv .contanier .text{
        width: auto;
    }
}


.serv .contanier .text .title {
    font-family: "Caveat";
    font-weight: bold;
    color: var(--sec-color);
    font-size: 40px;
}

.serv .contanier .text p {
    font-size: 25px;
    font-family: "Caveat";
    font-weight: bold;
}

.serv .contanier .bx {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.serv .contanier .bx .box {
    width: 350px;
    height: 500px;
    box-shadow: 0px 0px 10px #6a6a6a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 4px solid var(--main-color);
}

@media (max-width: 768px) {
    .serv .contanier .bx .box{
        width: 300px;
    }
}

.serv .contanier .bx .box .title {
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize !important;
}

.serv .contanier .bx .box .image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.serv .contanier .bx .box .image .iner {
    width: 80px;
    height: 80px;
    background-color: var(--sec-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serv .contanier .bx .box p {
    text-align: center;
}

.serv .contanier .bx .box a {
    text-transform: capitalize;
    color: white;
    background-color: var(--sec-color);
    padding: 10px 30px;
    border-radius: 2px;
    font-weight: bold;
    transition: 0.5s;
}

.serv .contanier .bx .box a:hover {
    background-color: #88b39599;
}

/* End Services Page */


/* Start Contact Page */

.landing-contact {
    position: relative;
    background-image: url(../media/contact.jpg);
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 60%;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .landing-contact{
        height: 60vh;
        padding-top: 80px;
    }
}

.landing-contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.192);
}

.landing-contact .contanier {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.landing-contact .contanier .title {
    position: relative;
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-contact .contanier .title{
        font-size: 35px;
    }
}

.landing-contact .contanier .sub {
    position: relative;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-contact .contanier .sub{
        font-size: 14px;
    }
}

.landing-contact .contanier .sub .su {
    position: relative;
    color: var(--main-color);
}

.contact-page {
    position: relative;
    padding-bottom: var(--padding-bottom);
    padding-top: var(--padding-top);
    overflow: hidden;
}

.contact-page .contanier {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-page .contanier .information {
    box-shadow: 0px 0px 10px #6a6a6a;
    padding: 30px;
}

.contact-page .contanier .information form {
    display: flex;
    flex-direction: column;
}

.contact-page .contanier .information form .input {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-page .contanier .information form .input{
        flex-direction: column;
    }
}

.contact-page .contanier .information form .input .inp {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-page .contanier .information form .input .inp label {
    font-family: "Caveat";
    font-weight: bold;
    font-size: 20px;
}

.contact-page .contanier .information form .input .inp input {
    padding: 5px 10px;
    background-color: #F3F3F3;
    border: 1px solid #D4D4D4;
    width: 250px;
}

.contact-page .contanier .information form .input .inp select {
    padding: 5px 10px;
    background-color: #F3F3F3;
    border: 1px solid #D4D4D4;
    width: 250px;
}

.contact-page .contanier .information form .input .inp input:focus {
    outline: 0;
}

input[type="submit"] {
    text-transform: capitalize;
    color: white;
    background-color: var(--sec-color);
    padding: 10px 30px;
    border-radius: 2px;
    font-weight: bold;
    transition: 0.5s;
    width: fit-content;
    border: 0;
    margin: 0 auto;
}

input[type="submit"]:hover {
    background-color: #88b39599;
}

.contact-page .contanier .bottom-section {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .contact-page .contanier .bottom-section{
        flex-direction: column;
    }
}



.contact-page .contanier .bottom-section .left .title {
    font-size: 27px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.contact-page .contanier .bottom-section .left .cont {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-page .contanier .bottom-section .left .cont .c {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-page .contanier .bottom-section .left .cont .c img {
    width: 30px;
}

.contact-page .contanier .bottom-section .left .cont .c .sp {
    display: flex;
    flex-direction: column;
}

.contact-page .contanier .bottom-section .left .cont .c .sp .bo {
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
}

.contact-page .contanier .bottom-section .left .cont .c .sp .li {
    font-size: 15px;
    color: black;
}

.contact-page .contanier .bottom-section .right {
    width: auto;
}

.contact-page .contanier .bottom-section .right .title {
    font-size: 27px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.contact-page .contanier .bottom-section .right form .input {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-page .contanier .bottom-section .right form .input{
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-page .contanier .bottom-section .right form .input .inp {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .contact-page .contanier .bottom-section .right form .input .inp{
        width: 100%;
    }
}

.contact-page .contanier .bottom-section .right form .input .inp label {
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 20px;
}

.contact-page .contanier .bottom-section .right form .inp input {
    padding: 10px 20px;
    width: 300px;
    background-color: rgb(136 179 149 / 20%);
    border: 0;
}

@media (max-width: 768px) {
    .contact-page .contanier .bottom-section .right form .inp input{
        width: 100%;
    }
}

.contact-page .contanier .bottom-section .right form .inp-phone {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-page .contanier .bottom-section .right form .inp-phone label {
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 20px;
}

.contact-page .contanier .bottom-section .right form .inp-phone input {
    padding: 10px 20px;
    width: auto;
    background-color: rgb(136 179 149 / 20%);
    border: 0;
}

.contact-page .contanier .bottom-section .right form .txt {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-page .contanier .bottom-section .right form .txt label {
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 20px;
}

.contact-page .contanier .bottom-section .right form .txt textarea {
    padding: 10px 20px;
    width: auto;
    background-color: rgb(136 179 149 / 20%);
    border: 0;
    height: 200px;
    border-radius: 4px;
}

input:focus {
    outline: 0;
}

textarea:focus {
    outline: 0;
}

.contact-page .location {
    width: 100%;
    height: 300px;
    position: relative;
    margin-top: 20px;
}

.contact-page .location::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.20);
    left: 0;
    top: 0;
}

.contact-page .location iframe {
    width: 100%;
    height: 300px;
}

/* End Contact Page */

/* Start Gynecology Page */

.landing-gynecology {
    position: relative;
    background-image: url(../media/gg.png);
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 60%;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .landing-gynecology{
        background-position: 50% 100%;
    }
}

.landing-gynecology::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.192);
}

.landing-gynecology .contanier {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.landing-gynecology .contanier .title {
    position: relative;
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-gynecology .contanier .title{
        font-size: 35px;
    }
}

.landing-gynecology .contanier .sub {
    position: relative;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-gynecology .contanier .sub{
        font-size: 14px;
    }
}

.landing-gynecology .contanier .sub .su {
    position: relative;
    color: var(--main-color);
}

.gynecology {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    position: relative;
    overflow: hidden;
}

.gynecology .contanier .top-section {
    display: flex;
    justify-content: space-between;
}

.gynecology .contanier .top-section .text {
    width: 600px;
}

.gynecology .contanier .top-section .text .tx {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gynecology .contanier .top-section .text .tx .title {
    font-weight: bold;
    font-family: "Caveat";
    color: var(--main-color);
    font-size: 25px;
    text-transform: uppercase;
}

.gynecology .contanier .top-section .text .tx p {
    line-height: 1.5;
}

.gynecology .contanier .top-section .text .tx a {
    text-transform: capitalize;
    color: white;
    background-color: var(--sec-color);
    padding: 10px 30px;
    border-radius: 2px;
    font-weight: bold;
    transition: 0.5s;
    width: fit-content;
    border: 0;
    margin-bottom: 20px;
}

.gynecology .contanier .top-section .text .tx a:hover {
    background-color: #88b39599;
}

.gynecology .contanier .top-section .image {
    position: relative;
    width: 400px;
}

@media (max-width: 768px) {
    .gynecology .contanier .top-section .image{
        display: none;
    }
}

.gynecology .contanier .top-section .image .one {
    position: absolute;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 5px;
}

.gynecology .contanier .top-section .image .two {
    position: absolute;
    right: 100px;
    width: 300px;
    height: 300px;
    bottom: 77px;
    border-radius: 5px;
}

.gynecology .contanier .bottom {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.gynecology .contanier .bottom .title {
    font-weight: bold;
    font-family: "Caveat";
    color: var(--main-color);
    font-size: 25px;
    margin-bottom: 15px;
}

.gynecology .contanier .bottom .points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .gynecology .contanier .bottom .points{
        flex-direction: column;
    }
}


.gynecology .contanier .bottom .points .pp {
    width: 45%;
    display: flex;
    gap: 28px;
    align-items: center;
}

@media (max-width: 768px) {
    .gynecology .contanier .bottom .points .pp{
        width: 100%;
    }
}

.gynecology .contanier .bottom .points .pp .number {
    font-size: 45px;
    font-weight: bold;
    color: #d1d1d182;
    height: fit-content;
}

.gynecology .contanier .bottom .points .pp .tit {
    font-weight: bold;
    margin-bottom: 5px;
}

.gynecology .right-bottom {
    position: absolute;
    right: -150px;
    bottom: -50px;
    width: 600px;
    height: 600px;
}

/* End Gynecology Page */


.faqs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
}

.faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 7px;
    background-color: #fff;
    border: 1px solid #cacaca;
    transition: 0.3s all ease;
    cursor: pointer;
}

.faq p {
    font-size: 0.9em;
    color: transparent;
    transition: 0.3s all ease;
    height: 0;
    overflow: hidden;
}

.faq .top {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.faq .top i {
    font-size: 1.2em;
    color: #9b9b9b;
}

.faq .top img {
    width: 15px;
}

.faq .top .fa-circle-xmark {
    display: none;
}

.faq.active {
    gap: 10px;
}

.faq.active p {
    height: auto;
    color: #9b9b9b;
}

.faq.active .top .fa-circle-xmark {
    display: block;
}

.faq.active .top .fa-angle-down {
    display: none;
}

.faqs2 .faq {
    border: none;
    position: relative;
    border-radius: 0;
    background-image: linear-gradient(to right, rgba(235, 103, 63, 0.1843137255), rgba(225, 49, 90, 0.1843137255), rgba(114, 37, 132, 0.1843137255));
}

.faqs2 .faq::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-image: linear-gradient(to bottom, #eb683f, #e1315a, #722584);
}

.faqs2 .faq p {
    color: transparent;
    font-weight: 600;
}

.faqs2 .faq .top h3 {
    font-weight: 700;
}

.faqs2 .faq .top i {
    color: #000;
}

.faqs2 .faq .top .fa-minus {
    display: none;
}

.faqs2 .faq.active {
    gap: 10px;
}

.faqs2 .faq.active p {
    height: auto;
    color: #000;
}

.faqs2 .faq.active .top .fa-minus {
    display: block;
}

.faqs2 .faq.active .top .fa-plus {
    display: none;
}

button{
    text-transform: capitalize;
    color: white;
    background-color: var(--sec-color);
    padding: 10px 30px;
    border-radius: 2px;
    font-weight: bold;
    transition: 0.5s;
    width: fit-content;
    margin: 0 auto;
    border: 0;
    cursor: pointer;
}


/* Start Loader */

/* CSS styles for the loader and overlay */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #eee;
}

body.loaded {
    overflow-y: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
    background: #00000080;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.overlay.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

.overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.overlayContent .skip {
    display: block;
    width: 130px;
    text-align: center;
    margin: 50px auto 0;
    cursor: pointer;
    color: #fff;
    font-family: "Nunito";
    font-weight: 700;
    padding: 12px 0;
    border-radius: 3px;
    transition: 0.2s ease;
    font-size: 25px;
}

.overlayContent .skip:hover {
    background: #ddd;
    color: #444;
    border-color: #ddd;
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

/* End Loader */