:root {
    --custom-color: #0b7f97;
    --color: #ea6623;
    --bg-light: #e6f3ff;
    --hover: #1f5b37;
}

body {
    margin: 0;
    padding: 0;
}

img,
iframe,
video {
    max-width: 100%;
    vertical-align: middle;
}

a {
    outline: none;
    text-decoration: none;
    color: #555;
}

h4 {
    font-weight: 700;
    color: var(--custom-color);
}

h3.logo img {
    width: 36%;
}

.border {
    border: 2px solid #215936 !important;
}

.logo img {
    width: 70%;
}

section.Blog.mb-5 {
    background-color: #efefef;
    padding-bottom: 70px;
}


/* 2 headder css start  */

:root {
    --clr-bg-header: #3D8361;
    --clr-btn: #3D8361;
    --clr-dropdown: #1C6758;
    --clr-nav-hover: #1E6F5C;
    --clr-dropdown-hov: #289672;
    --clr-dropdown-link-hov: #29BB89;
    --clr-light: #FAFAFA;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    position: sticky;
    top: 0px;
    background-color: var(--clr-bg-header);
    width: 100%;
    z-index: 1000;
}

header {
    position: sticky;
    top: 0px;
    background-color: #ebebeb;
    width: 100%;
    z-index: 1000;
}

.containerrr {
    max-width: 65rem;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn {
    flex: 3;
    display: flex;
}

.nav-links {
    flex: 2;
}

.log-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 21px;
    margin-left: 76px;
}

.nav-link {
    position: relative;
}

.nav-link>a {
    line-height: 3rem;
    color: #0f869c;
    letter-spacing: 1px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    font-weight: 600;
}

.nav-link>a>i {
    margin-left: .2rem;
}

.nav-link:hover>a {
    transform: scale(1.1);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown .second {
    position: absolute;
    top: 100%;
    left: 0;
    width: 275px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul {
    position: relative;
}

.dropdown-link>a {
    display: flex;
    background-color: var(--clr-light);
    color: var(--clr-dropdown);
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover>a {
    background-color: var(--clr-dropdown);
    color: var(--clr-light);
}

.dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
    transform: rotate(-90deg);
}

.arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: var(--clr-light);
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover~.arrow {
    background-color: var(--clr-dropdown);
}

.dropdown-link {
    position: relative;
}

.dropdown.second {
    top: 0;
    left: 70%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}

.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--clr-light);
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: var(--clr-light);
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

#check {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px) {
    .hamburger-menu-container {
        display: flex;
    }
    #check {
        display: block;
    }
    .nav-btn {
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: var(--clr-btn);
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }
    #check:checked~.nav-btn {
        transform: translateX(0);
    }
    #check:checked~.nav-btn .nav-link,
    #check:checked~.nav-btn .log-sign {
        animation: animation .5s ease forwards var(--i);
    }
    .nav-links {
        flex: initial;
        width: 135%;
    }
    .nav-links>ul {
        flex-direction: column;
    }
    .nav-link {
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }
    .nav-link>a {
        line-height: 1;
        padding: 1.6rem 2rem;
    }
    .nav-link:hover>a {
        transform: scale(1);
        background-color: var(--clr-nav-hover);
    }
    .dropdown,
    .dropdown.second {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 80%;
        padding: 0;
        background-color: var(--clr-dropdown-hov);
        display: none;
    }
    .nav-link:hover>.dropdown,
    .dropdown-link:hover>.dropdown {
        display: block;
    }
    .nav-link:hover>a>i,
    .dropdown-link:hover>a>i {
        transform: rotate(360deg);
    }
    .dropdown-link>a {
        background-color: transparent;
        color: var(--clr-light);
        padding: 1.2rem 2rem;
        line-height: 1;
    }
    .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 3rem;
    }
    .dropdown.second .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 4rem;
    }
    .dropdown-link:not(:nth-last-child(2)) {
        border-bottom: none;
    }
    .arrow {
        z-index: 1;
        background-color: var(--clr-btn);
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }
    .nav-link:hover .arrow {
        background-color: var(--clr-nav-hover);
    }
    .dropdown .dropdown .arrow {
        display: none;
    }
    .dropdown-link:hover>a {
        background-color: var(--clr-dropdown-link-hov);
    }
    .dropdown-link:first-child:hover~.arrow {
        background-color: var(--clr-nav-hover);
    }
    .nav-link>a>i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }
    .dropdown i {
        font-size: 1rem;
        transition: .7s;
    }
    .log-sign {
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}


/* 2 headder css end  */

.hair {
    box-shadow: 0px 5px 12px -9px;
    transition: .5s;
    cursor: pointer;
}

.hair:hover {
    transform: translatey(-10px);
}

section.aboutus {
    padding-top: 60px !important;
}


/* button css start  */

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

::before,
::after {
    position: absolute;
    content: "";
}

.btn-holder {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 10px auto 35px;
}

.btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 25px 15px;
    min-width: 150px;
}

.btn span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 13px;
    transition: 0.3s;
}


/*--- btn-3 ---*/

.btn-3 {
    padding: 5px;
}

.btn-3 span {
    color: rgb(255, 255, 255);
    background-color: rgb(10 134 162);
}

.btn-3::before,
.btn-3::after {
    background: transparent;
    z-index: 2;
}


/* 12. hover-border-2 */

.btn.hover-border-2::before,
.btn.hover-border-2::after {
    width: 10%;
    height: 25%;
    transition: 0.35s;
}

.btn.hover-border-2::before {
    bottom: 0;
    left: 0;
    border-left: 1px solid rgb(28, 31, 30);
    border-bottom: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-2::after {
    top: 0;
    right: 0;
    border-right: 1px solid rgb(28, 31, 30);
    border-top: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-2:hover::before,
.btn.hover-border-2:hover::after {
    width: 99%;
    height: 99%;
}


/* button css end  */


/* heding css start  */

.heading h2 {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color);
}

.heading h2:before {
    content: '';
    background: var(--custom-color);
    width: 100px;
    height: 3px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}


/* heding css end  */

.serv {
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 0px 216px 168.75px 168.75px;
    transition: .5s;
    height: 420px;
}

.serv:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.serv .contentt {
    padding: 20px 30px 1px;
    text-align: center;
}

.serv img {
    position: relative;
    z-index: -1;
    border-radius: 0px 168.75px 0px 0px;
    height: 174px;
    object-fit: cover;
    width: 100%;
}

.servv {
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 216px 0px 168.75px 168.75px;
    transition: .5s;
    height: 420px;
}

.servv:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.servv img {
    position: relative;
    z-index: -1;
    border-radius: 168.75px 0px 0px 0px;
    height: 174px;
    object-fit: cover;
    width: 100%;
}

.servv .contentt {
    padding: 20px 30px 1px;
    text-align: center;
}

.blogs {
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
    transition: .5s;
    height: 250px;
}

.btn-success {
    color: #fff !important;
    background-color: #ea6022;
    padding: 10px;
    border: none;
}

.btn-success a {
    color: #fff !important;
}

.blogs .contenttt {
    padding: 20px 30px 1px;
    text-align: center;
}

h6.head {
    color: var(--custom-color);
    font-size: 19px;
}

input.form-buton.btn.mt-3 {
    background: var(--custom-color);
    color: white;
    font-size: 20px;
}

footer {
    padding: 50px 0 50px;
    background-color: #dae9f7;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.address .list-unstyled a {
    color: var(--custom-color);
    text-decoration: none;
    display: flex;
    font-weight: 600;
    gap: 34px;
}

.address ul.list-unstyled i {
    font-size: 25px;
}

.footer-bottom.py-2 {
    background: var(--custom-color);
}

@media (max-width: 1024px) {
    .nav-links>ul {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 21px;
        margin-left: 63px;
    }
    .servv .contentt {
        padding: 21px 9px 1px;
        text-align: center;
    }
    .serv .contentt {
        padding: 21px 16px 1px;
        text-align: center;
    }
    .serv {
        box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
        border-radius: 0px 257px 168.75px 168.75px;
        transition: .5s;
    }
    .servv {
        box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
        border-radius: 258px 0px 168.75px 168.75px;
        transition: .5s;
    }
}

@media (max-width: 767px) {
    .serv {
        box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
        border-radius: 0px 169px 86.75px 86.75px;
        transition: .5s;
    }
    .servv {
        box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
        border-radius: 166px 0px 86.75px 86.75px;
        transition: .5s;
    }
    .nav-link>a {
        line-height: 3rem;
        color: #ffffff;
        letter-spacing: 1px;
        font-size: 15px;
        display: contents !important;
        transition: .5s;
        font-weight: 600;
    }
    .btn-holder {
        display: block;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: 10px auto 35px;
    }
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    position: relative;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.col-md-6.shodow {
    box-shadow: 2px 0px 10px -6px;
}

button.btnn.mt-4 {
    background-color: #215936;
    color: white;
    position: relative;
    left: 120px;
}

button.btnnn.mt-4 {
    position: relative;
    top: 50px;
    left: 15px;
    background-color: #215936;
    color: white;
}

.shodow.mt-5 {
    box-shadow: 0px 0px 20px -14px;
    padding: 20px;
}

.sticky-social {
    position: fixed;
    top: 330px;
    left: -35px;
    padding: 0px;
    margin: 0px;
    z-index: 9999;
}

.social {
    list-style: none;
}

.social li {
    padding: 10px 25px;
    font-size: 25px;
    transition: all 0.8s ease-in-out;
}

.social li a {
    color: #fff;
}

.social li:hover {
    margin-right: -15px;
    box-shadow: 2px 5px 10px grey;
}

.social li:hover .fa {
    margin-left: 20px;
}

ul.social i {
    position: relative;
    left: -11px;
    top: -23px;
}

.fa {
    color: #fff;
    transition: all 0.8s ease-in-out;
}

.fb {
    background-color: #3C5A98;
}

.twitter {
    background-color: #1EA1F2;
}

.insta {
    background-color: #DC4F42;
}

.whats {
    background-color: #18e43a;
}

.vim {
    background-color: #59BFBE;
}