@import url('https://fonts.googleapis.com/css2?family=Markazi+Text:wght@400;500;600;700&amp;display=swap');


* {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --white-color: rgb(235, 230, 230);
    --open-green: #95cf0c;
    --green-color: #7ea80b;
    --black-green: #042e0b;

}

body {
    font-family: 'Markazi Text', serif;
}

a {
    text-decoration: none;
    color: white;
}

i {
    line-height: 0 !important;
}

.link {
    color: #111;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: lowercase;
    padding: 0 2px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.link:before,
.link:after {
    content: '';
    background-color: #01bfa5;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.link:after {
    background-color: transparent;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px dashed #11d14a;
    visibility: hidden;
    transform: translateX(-50%) translateY(50%) rotate(0) scale(0);
    left: 50%;
    bottom: 50%;
    z-index: -2;
    transition: all 0.5s ease-in-out;
}

.link:focus:before,
.link:hover:before {
    height: 100%;
}

.link:focus:after,
.link:hover:after {
    transform: translateX(-50%) translateY(50%) rotate(360deg) scale(5);
    animation: animate 0.5s linear;
}

.link span {
    line-height: 25px;
    display: block;
}

.link:focus,
.link:hover {
    color: #fff;
}

@keyframes animate {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
    }

    100% {
        visibility: hidden;
    }
}

@media only screen and (max-width: 767px) {
    .link {
        margin-bottom: 30px;
    }
}

.main-text {
    color: #012204;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    animation: animate 0.7s alternate linear infinite;
}

.main-text:before {
    content: attr(data-content);
    color: rgb(204, 201, 201);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: animate 3s ease-in-out infinite;
}

@keyframes animate {
    0% {
        top: 0;
        text-shadow: none;
    }

    100% {
        top: -10px;
        text-shadow:
            0 1px 0 hsl(174, 5%, 80%), 0 2px 0 hsl(174, 5%, 75%), 0 3px 0 hsl(174, 5%, 70%), 0 4px 0 hsl(174, 5%, 66%),
            0 5px 0 hsl(174, 5%, 64%), 0 6px 0 hsl(174, 5%, 62%), 0 7px 0 hsl(174, 5%, 61%), 0 8px 0 hsl(174, 5%, 60%),
            0 9px 0 hsl(174, 5%, 60%), 0 0 5px rgba(0, 0, 0, .05), 0 1px 3px rgba(0, 0, 0, .2), 0 3px 5px rgba(0, 0, 0, .2),
            0 5px 10px rgba(0, 0, 0, .2), 0 10px 10px rgba(0, 0, 0, .2), 0 20px 20px rgba(0, 0, 0, .2);
    }
}

@media only screen and (max-width: 990px) {
    .main-text {
        font-size: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .main-text {
        font-size: 70px;
    }
}

@media only screen and (max-width: 576px) {
    .main-text {
        font-size: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .main-text {
        font-size: 60px;
        line-height: 35px;
    }
}

.color-overlay {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .6;
    position: absolute;
}

.color-overlay {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .6;
    position: absolute;
}

/* navbar */
.navbar {
    background-color: #8a8a8bb5;
    z-index: 1000;
    position: sticky;
    top: 0;

}

@media (min-width: 992px) and (max-width: 1125px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0.5rem;
    }

}

.navbar .navbar-nav {
    border-radius: 4px;
    color: var(--white-color);
}

.navbar .navbar-nav .nav-item {
    border-bottom: 1px solid var(--open-green);
}

.navbar .navbar-nav .nav-link {
    margin: 0 3px;
    color: var(--white-color);
    position: relative;
}

.fa-sort-down {
    margin: 0 2px;
}

@media(min-width: 300px) and (max-width: 550px) {
    .navbar .navbar-brand img {
        height: 85px;

    }
}

.dropdown-toggle::after {
    content: "";
}


.navbar .navbar-nav .nav-item:hover a:not(.dropdown-item) {
    color: #bba90a;
    transform: scale(1.1);
    transition: .5s;
}

@media(min-width: 300px) and (max-width: 550px) {
    .navbar .navbar-nav .nav-item:hover a:not(.dropdown-item) {
        transform: none;
    }
}

.navbar .navbar-nav .nav-item .active {
    color: #ffd100;
}

@media(min-width: 300px) and (max-width: 550px) {
    .navbar .navbar-nav .content {
        margin-top: 40px;
    }
}

@media(min-width: 400px) and (max-width: 992px) {
    .navbar-light .navbar-nav .nav-link {
        margin: 0 40px;
    }
}

.navbar .navbar-toggler {
    line-height: 0;
    padding: 7px 10px;
    box-shadow: none;
    background: white;
}

.navbar .navbar-toggler:focus {
    border: none;
}

.navbar .navbar-toggler .bi-toggles {
    color: var(--white-color);
    font-size: 1.5rem;
}

.navbar .navbar-nav .dropdown-menu {
    background-color: #252525;
    background-color: #fff;
    min-width: 10rem;
    max-width: 20rem;
    top: 161%;
    padding: 10px;

}

.navbar .navbar-nav .dropdown-menu .dropdown-item {
    color: black;
    border: 2px rgba(255, 255, 255, .2) dotted;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 6px;
}

.navbar .navbar-nav .dropdown-menu .all-services {
    background-color: rgba(32, 158, 46, .4);
    transition: .4s;
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #252525;
    color: var(--green-color);
}

/* navbar */
.hero {
    height: 100vh;
    background-image: url(../../img/new/img3.jpg);
    background-size: cover;
    background-position: center center;
    /* position: relative; */
}

.hero .content {
    text-align: center;
    margin-top: 17rem;
}

.hero .content span {
    color: var(--white-color);
    background: var(--black-green);
    padding: 3px 5px;
    border-radius: 4px;
    margin: 0;
}

.hero .content h1 {
    color: var(--black-green);
    background: var(--white-color);
    width: fit-content;
    margin: auto;
    padding: 15px 25px;
    font-size: 46px;
    font-weight: bold;
    border-radius: 4px;
}

@media(min-width: 300px) and (max-width: 550px) {
    .hero .content h1 {
        font-size: 38px;
    }
}

.hero .content p {
    width: 550px;
    margin: auto;
    background: #003b05;
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--white-color);
    padding: 15px;
    border-radius: 4px;
    transform: translateY(0px);
    transition-duration: 500ms;
    opacity: 1;
}

@media(min-width: 300px) and (max-width: 550px) {
    .hero .content p {
        font-size: 1.2rem;
        width: fit-content;
    }
}

/* about-us section */
.about-us {
    padding: 100px 0;
    background-image: url(../img/about-bg.webp);
    background-size: cover;
    background-position: right;
}

@media(min-width: 300px) and (max-width: 576px) {
    .about-us {
        background-position: right center;
    }

}

.about-us .image-1 img {
    border-radius: 10px;
    max-width: 500px;
    border: 4px solid var(--green-color);

}

@media(min-width: 300px) and (max-width: 576px) {
    .about-us .image-1 img {
        max-width: 275px;
    }

}

.about-us .img-text {
    background-color: var(--black-green);
    left: 50%;
    transform: translateX(-50%);
    bottom: -37px;
    padding: 8px 8px;
    font-size: 30px;
    color: var(--white-color);
    font-weight: bold;
    border-radius: 5px;
}

.about-us .img-text h3 {
    border: 2px solid var(--white-color);
    padding: 10px 8px;
    font-size: 16px;
    width: fit-content;
    margin: auto;
}

.about-us .col-lg-5 h3 {
    color: #000;
    padding-bottom: 10px;
    position: relative;
}

.about-us .col-lg-5 h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    background: #000;
    height: 3px;
    width: 30%;
    right: 50%;
    transform: translateX(50%);
}

.about-us .col-lg-5 h2 {
    color: green;
    width: fit-content;
    margin: auto;
}

.about-us .col-lg-5 .up-and-down {
    position: relative;
}

.about-us nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us nav li {
    display: flex;
    gap: 10px;

}

.about-us nav li h4 {
    font-size: 16px;
    color: var(--open-green);
}

.about-us nav li i {
    color: var(--black-green);
}

.our-services {
    padding: 100px 0;
}

@media (max-width: 567px) {
    .our-services {
        color: orange;
    }
}

.our-services .card {
    overflow: hidden;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    cursor: pointer;
    border-radius: 20px 20px 0 0;
    border: none;
    position: relative;
}

.our-services .card h5 {
    position: absolute;
    color: white;
    background: #012003;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    transition: .5s;
    width: fit-content;
    border-radius: 6px;
    padding: 12px 15px;
    top: -21px;
    right: 50%;
    transform: translateX(50%);
}

.our-services .card p {
    color: rgb(71, 70, 70);
}

/* our-service */
/* our-service */
.our-work {
    background-image: url(../img/bg-ourwork.jpg);
    background-size: contain;
}

.our-work .videos video {
    border: 2px solid #494848;
    border-radius: 5px;
    background-color: white;
}

.our-work .videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.our-work .gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.our-work .gallery a {
    display: none;
    height: 250px;
    width: 350px;
    margin: 20px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 3px 5px #000;
}

.our-work .gallery a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;

}

.our-work .gallery a img:hover {
    transform: scale(1.4);
}

.our-work {
    font-size: 32px;
    color: var(--dark-green);
    text-align: center;
    font-weight: bold;
    padding: 5px;
}

.more,
.less {
    background: #013305;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #99f2c8, #1f4037);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #99f2c8, #1f4037);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    clear: both;
    color: white;
    cursor: pointer;
    display: block;
    font-size: 20px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    width: 150px;
    box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px, rgb(0 0 0 / 20%) 0px -3px 0px inset;
}

.map .google-map {
    background-color: rgba(255, 255, 255, .1);
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.map .google-map iframe {
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 0 20px white;
    width: 100%;
}

/* map end */
footer {
    background-color: rgb(51, 50, 50);
    background-attachment: fixed;
    padding: 80px 0 30px;
}

footer ul {
    padding-right: 0;
}

footer h2 {
    color: white;
}

footer h2 .super {
    color: var(--open-green);
    font-size: 46px;
}

footer h2 .clean {
    color: pink;
    font-size: 46px;
}

footer .first-col h3 {
    color: white;
}

footer .first-col .icons h4 {
    color: white;
}

footer .first-col .icons i {
    width: 20px;
    height: 20px;
    font-size: 24px;
    transition: all 0.3s linear 0s;
    margin-left: 10px;
    color: var(--open-green);
    border: 1px solid var(--open-green);
    border-radius: 20%;
    padding: 5px 10px;
    background-color: white;
}

footer .first-col .icons a:hover i {
    transform: scale(1.1);
    color: white;
    background-color: var(--open-green);

}

@media (max-width: 500px) {
    footer .first-col .icons i {
        margin-left: 6px;
    }
}

footer .links h3 {
    width: fit-content;
    color: var(--open-green);
    position: relative;
}

.underline {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 50px;
    left: 0;
}

.underline span {
    width: 15px;
    height: 100%;
    background: var(--open-green);
    border: 3px;
    position: absolute;
    top: 0;
    right: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        right: -10px;
    }

    50% {
        right: calc(100% - 10px);
    }

    100% {
        right: -10px;
    }

}

footer .list-unstyled i {
    color: var(--open-green);
}

footer .links a {
    text-decoration: none;
    margin-right: 10px;
    color: white;

}

footer .links li {
    margin: 16px 0;
}

footer .links li:hover a {
    color: var(--open-green);
    transition: .4s;
}

footer .last-col h3 {
    width: fit-content;
    color: var(--open-green);
    position: relative;
}

footer .last-col h5 {
    color: white;
}

footer .last-col p {
    color: white;
    margin-right: 38px;
}

footer .last-col .namber {
    letter-spacing: 4.7px;
}

footer .last-col li i {
    color: var(--open-green);
    margin-left: 12px;
}

footer .rights {
    padding-top: 20px;
}

footer .rights span {
    color: var(--open-green);
    font-weight: bold;
}

footer .rights p {
    font-size: 18px;
}

footer .rights a {
    text-decoration: none;
    color: rgb(186, 206, 9);
    font-size: 25px;
}

/* footer end */
.call {
    display: flex;
    flex-direction: column;
    left: 0;
    gap: 25px;
    position: fixed;
    bottom: 0;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    padding: 10px 10px;
    z-index: 1500;
}

.call a {
    color: rgb(7, 143, 7);
    background: rgb(255, 255, 255);
    border-radius: 50%;
    padding: 10px 17px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.bi-whatsapp::before {
    line-height: 0;
}

.icons2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: sticky;
    bottom: 0;
    background: rgb(0 0 0 / 13%);
    width: fit-content;
    border-radius: 5px;
    font-size: 20px;
    z-index: 1600;
    margin: auto;
    padding: 10px;

}

.icons2 a {
    color: var(--black-green);
    padding: 5px;
    background-color: #ffffff;
    border-radius: 50%;
    width: 40px;
    text-align: center;
    transition: .6s;
}

.icons2 a:hover {
    transform: scale(1.2);
}

#handboy {
    animation: swing ease-in-out 1.3s infinite alternate;
    transform-origin: 98% 98%;
    transform-box: fill-box;

}


#girllight {
    animation: swing ease-in-out 1.3s infinite alternate;
    transform-origin: 0% 97%;
    transform-box: fill-box;
}

#hairgirl {
    animation: swinghair ease-in-out 1.3s infinite alternate;
    transform-origin: 60% 0%;
    transform-box: fill-box;

}

#zero {
    transform-origin: bottom;
    transform-box: fill-box;

}

/*************swing************/
@keyframes swing {
    0% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}


/*************swing hair************/
@keyframes swinghair {
    0% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}