@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

p {
    font-size: 16px;
    line-height: 27px;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", serif;
}

body {
    font-family: "Roboto", serif;
    color: #6e777d;
    padding: 0 !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}


.dekstop-none {
    display: none;
}

/* ----- Navigation Starts ----- */
.top-bar {
    border-bottom: 1px solid #e8e8e8;
    padding-top: 7px;
    padding-bottom: 7px;
}

.top-sec-main {
    display: flex;
    gap: 30px;
    justify-content: end;
}

.top-sec-main .top-sec {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

.top-sec-main .top-sec .icon {
    width: 15px;
}

.top-sec-main .top-sec .icon img {
    width: 100%;
}

.site-header {
    position: relative;
}

.navbar {
    padding: 10px 0;
    z-index: 1000;
}

.nav_bg {
    background: #fff;
    width: 100%;
    padding: 0px 0;
    border-left: 5px solid #b2be59;
}

.transparent-bg {
    background: #fff;

}

.logo_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5px 60px;
}

.btIconWidget,
.topBarInLogoArea {
    display: flex;
    align-items: center;
}

.topBarInLogoArea {
    gap: 20px;
}

.btIconWidgetIcon {
    padding-right: 10px;
}

.btIconWidgetTitle,
.btIconWidgetTitle a {
    color: #222222;
    font-size: 0.8rem;
}

.btIconWidgetText,
.btIconWidgetText a {
    color: #444444;
    font-size: 0.8rem;
    opacity: 0.8;
}

.fixed-bottom {
    position: absolute;
    background: #fff;
    padding: 0;
    -webkit-box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.35);
}

.fixed-bottom.fixedmenu {
    bottom: auto;
    top: 0;
    -webkit-animation: none;
    -o-animation: none;
    animation: none;
}

.fixed-bottom.menu-top .dropdown-toggle::after {
    content: "\f106";
}

.fixedmenu {
    top: 0;
    position: fixed;

    z-index: 1002;
    background: #fff !important;
    /* -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35); */
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    width: 100%;
}

.fixedmenu.no-animation {
    animation: none;
    animation-duration: 0.1s;
}

.navbar-expand-lg .navbar-collapse {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 60px;
}


@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}


/**/

.scroll-down {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    z-index: 13;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}

.scroll-down i {
    font-size: 12px;
    padding-left: 10px;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(-2px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(-2px);
    }
}


.logo {
    margin: 0px 0 0px;
    padding: 0;
    max-width: 400px;
    position: relative;
}


.fixedmenu .navbar-brand::before {
    height: 129px;
    width: 83px;
    content: none;
}

.navbar-brand.center-brand {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    z-index: 1;
}

.center-brand+.navbar-collapse {
    margin: 3px 0;
}

.navbar-brand>img {
    width: 100%;
}

/* .navbar.fixedmenu .logo-default,
.navbar .logo-scrolled {
    display: none;
} */

.navbar.fixedmenu .logo-scrolled,
.navbar .logo-default {
    display: inline-block;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar.sidebar-nav .navbar-nav .nav-item {
    margin: 10px 0;
}

.navbar-nav .nav-link {
    padding: 15px 0 10px !important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #26313c;
    position: relative;
    line-height: normal;
    margin: 0px 1.25rem;
    display: inline-block;
}



.nav-item.dropdown:hover {
    cursor: pointer;
}

.text-warning-hvr:hover,
.text-warning-hvr:focus {
    color: #ffc107;
}

.text-grey {
    color: #a5a5a5;
}

.navbar-nav .nav-link.dropdown-toggle::before {
    display: none;
}

.transparent-bg .navbar-nav .nav-link {
    color: #222222;
}

.static-nav .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 0;
    height: 3px;
    background: #002261 !important;
    margin: auto;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}

.transparent-bg.darkcolor .navbar-nav .nav-link {
    color: #26313c;
}

.whitecolor .navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link.active:before {
    width: 100%;
}

.dark-slider h2,
.light-slider h2 {
    font-size: 48px !important;
}

.dark-slider p,
.light-slider p {
    font-size: 18px !important;
    line-height: 1.2 !important;
}

.dark-slider h2,
.dark-slider p {
    color: #373737;
}

.light-slider h2,
.light-slider p {
    color: #fff;
}


/*.transparent-bg .navbar-nav .nav-link::before {*/


/*  background: #fff;*/


/*}*/

.fixedmenu .navbar-nav .nav-link {
    color: #26313c;
}


/*DropDowns*/

.collapse {
    position: relative;
}



.sideNavPagesInner {
    margin-left: 30px;
}

.sideNavPagesInner .nav-link {
    font-size: 1.2rem !important;
}

.collapsePagesSideMenu {
    display: flex !important;
}

.collapsePagesSideMenu .fas {
    font-size: 12px;
    margin: auto 10px auto auto;
}

.sideNavPages .nav-item {
    display: block;
    margin: 5px 0;
}

.sideNavPages .nav-link {
    font-size: 1.335rem !important;
    margin-left: 30px !important;
}

.static.dropdown {
    position: static;
}

.dropdown-toggle::after {
    content: "\f107";
    border: none;
    vertical-align: baseline;
    width: auto;
    height: auto;
    line-height: 1;
}

.megamenu {
    /*padding: 20px 0;*/
    width: 100%;
}

.navbar-nav .dropdown-menu {
    z-index: 5;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 18px 0;
    -webkit-box-shadow: 0 13px 25px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 13px 25px -12px rgba(0, 0, 0, 0.25);
    box-shadow: 0 13px 25px -12px rgba(0, 0, 0, 0.25);
    left: 0;
    top: auto;
    border-top: 1px solid #efefef;
    margin-top: 0;
    cursor: default;
}

.menu-top .navbar-nav .dropdown-menu {
    -webkit-box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.25);
    bottom: 68px;
}

.dropdown-menu.right-show {
    left: auto !important;
    right: 0 !important;
}

.dropdown-menu .dropdown-item {
    background: transparent;
    font-weight: normal;
    font-size: 16px;
    padding: 0 0 0 1.4rem;
    line-height: 40px;
}

a.dropdown-toggle::after {
    transition: all 0s;
}

.dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-title {
    color: #26313c;
}

.dropdown-item.active {
    color: #ffb400;
}

.navbar-nav .nav-link:hover,
.navbar .dropdown:hover .dropdown-toggle,
.dropdown-menu .dropdown-item:hover,
.dropdown-menu.megamenu .dropdown-item:hover {
    color: #ed1c24 !important;
}

.dropdown-menu .dropdown-title {
    margin: 1.5rem 0 0.5rem 1rem;
    font-size: 19px;
}

.hover-light:hover {
    color: #fff !important;
}

.hover-underline:hover span {
    text-decoration: underline;
}

.services-main:hover img {
    transform: scale(1.08);
}

.services-main:hover h3 {
    background-image: -webkit-gradient(linear, left top, right top, from(#5192e1), color-stop(51%, #23ced5), to(#5192e1));
    background-clip: border-box;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@colorPrimary', endColorstr='@colorSecondary', GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 992px) {
    .navbar-nav .dropdown {
        position: static;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        min-width: 260px;
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    .navbar.menu-top .dropdown-menu {
        transform-origin: 100% 100%;
    }

    .dropright .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        transform: scale(0, 1);
        transform-origin: 0 0;
    }

    .navbar-nav .dropdown:hover>.dropdown-menu,
    .dropright:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}


/*-----Side Menu----*/


/*side open btn*/

.sidemenu_btn {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 36px;
    padding: 6px;
    margin-right: 1rem;
    margin-top: 1px;
    right: 20px;
}

.sidemenu_btn,
.side-menu .btn-close,
.side-menu .btn-close::before,
.side-menu .btn-close::after {
    position: absolute;
}

#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: none;
    z-index: 1031;
    opacity: 0.5;
    cursor: pointer;
}

.sidemenu_btn>span {
    height: 2px;
    width: 100%;
    display: block;
}

.transparent-bg .sidemenu_btn>span {
    background: #000;
}

.fixedmenu .sidemenu_btn>span:not(.gradient-bg) {
    background: #26313c !important;
}

.sidemenu_btn>span:nth-child(2) {
    margin: 4px 0 4px auto;
    width: 75%;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

.sidemenu_btn>span:nth-child(3) {
    margin-left: auto;
    width: 45%;
    -webkit-transition: 0.6s all;
    -moz-transition: 0.6s all;
    -o-transition: 0.6s all;
    transition: 0.6s all;
}

.sidemenu_btn:hover>span:nth-child(2),
.sidemenu_btn:hover>span:nth-child(3) {
    width: 100%;
}


/*side clode btn*/

.side-menu .btn-close {
    height: 20px;
    width: 20px;
    /* -webkit-box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.15); */
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    position: absolute;
    margin-right: 1.5rem;
    margin-top: 0;
    right: 20px;
    top: 24px;
    z-index: 12;
    cursor: pointer;
}

.side-menu .btn-close.btn-close-no-padding {
    top: 24px;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
    left: 16px;
    height: 24px;
    width: 2px;
    background: #000;
    top: 5px;
}

.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.side-menu {
    width: 40%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1610;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    overflow: hidden;

    background: #fff;
}

.side-menu:not(.gradient-bg) {
    background: #24cdd5;
}

.side-menu.side-menu-active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.side-menu .inner-wrapper {
    /* height: 100%; */
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center; */
    text-align: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.side-menu .side-nav {
    margin-bottom: 30px;
    display: block;
}

.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 8px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
    margin-top: 0;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
}

.side-nav .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #222222 !important;
    padding: 5px 0 !important;
    margin: 0;
    font-size: 1.5rem;
}

.side-nav .navbar-nav .nav-link::before,
.breadcrumb .breadcrumb-item a::before {
    content: '';
    position: absolute;
    background: #fff;
    display: inline-block;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.breadcrumb .breadcrumb-item a::before {
    bottom: -5px;
}

.side-nav .navbar-nav .nav-link:hover::before,
.breadcrumb .breadcrumb-item a:hover::before {
    width: 100%;
}

.side-nav .navbar-nav .nav-link.collapsePagesSideMenu:hover::before {
    width: 0;
}

.transparent-sidemenu .side-nav .navbar-nav .nav-link::before {
    display: none;
}

.side-nav .navbar-nav .nav-link.active::before {
    width: 100%;
}

.transparent-sidemenu .side-nav .navbar-nav .nav-link:hover {
    margin-left: 5px;
}

.side-menu p {
    font-size: 13px;
    margin-top: .5rem;
    margin-bottom: 0;
}


/*Header Social Icons*/

@media (max-width: 1024px) {



    .side-nav .navbar-nav .nav-link {
        font-size: 1.25rem;
    }

    .sideNavPages .nav-link {
        font-size: 1.125rem !important;
    }

    .sideNavPagesInner .nav-link {
        font-size: 1rem !important;
    }


}

@media (max-width: 992px) {
    .transparent-bg:not(.fixedmenu) {
        /* background: rgba(38, 49, 60, 0.55); */
        padding: 0;
    }

    .side-menu {
        width: 50%;
    }




    .side-nav .navbar-nav .nav-link {
        font-size: 1.125rem;
    }

    .sideNavPages .nav-link {
        font-size: 1rem !important;
    }

    .side-menu .btn-close {
        top: 33px;
        margin-right: 1.2rem;
        right: 15px;
    }

    nav.side-nav {
        margin-top: 100px;
    }

    .navbar-nav {
        margin: 1.5rem;
    }
}

@media (max-width: 767px) {
    .side-menu .btn-close {
        top: 26px;
    }

    .side-menu {
        width: 80% !important;
    }

    .dropdown-menu .dropdown-title {
        display: none;
    }


}

@media (max-width: 576px) {


    .side-menu {
        width: 100% !important;
    }


}

@media (min-width: 1200px) {
    .ms-xl-auto {
        margin-left: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }
}

/*---- Navigation Ends ----*/

.full-height {
    position: relative;
    width: 100%;
    height: 100%;
}

.overlay-dark {
    background-image: none;
    background-color: #033241;
    z-index: 1;
    visibility: visible;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    z-index: 1;
}

.home_banner {
    position: relative;
}

.banner-text {
    position: absolute;
    z-index: 2;
    margin: auto;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 80px;
}

.banner-text h1 {
    font-size: 49px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.banner-text h1 span {
    color: #fff;
    font-weight: 300;
}

.banner-text p {
    font-size: 16px;
    color: #e3e5eb;
    margin-bottom: 35px;
}

.fancy-button {
    font-size: 16px;
    color: #fff !important;
    padding: 12px 45px !important;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid #d96f29;
    background: #d96f29;
    display: inline-block;
    line-height: normal !important;
    width: auto !important;
    height: auto !important;
}

.small-btn {
    font-size: 14px;
    padding: 8px 25px !important;
}

.white-btn {
    background: #fff;
    border: 1px solid #fff;
    color: #222 !important;
}

.white-border-btn {
    background: #fff;
    border: 1px solid #d96f29 !important;
    color: #222 !important;
}

.white-head {
    color: #fff !important;
}

.white-phara {
    color: rgba(255, 255, 255, 0.75);
}

.font-30 {
    font-size: 30px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-medium {
    font-weight: 500;
}

.cs_iconbox.cs_style_8 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 40px 20px 1px;
    background-color: #fff;
    gap: 25px;
    height: 160px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 300px;
}

.cs_iconbox.cs_style_8 .cs_iconbox_icon {
    height: 90px;
    width: 90px;
    border: 7px solid #fff;
    background-color: #002261;
    margin-left: -60px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-radius: 10px;
    padding: 15px;
}

.cs_iconbox.cs_style_8 .cs_iconbox_title {
    font-size: 30px;
    margin-bottom: 7px;
    color: #222;
    text-transform: uppercase;
}

.cs_iconbox.cs_style_8 .cs_iconbox_subtitle {
    font-size: 20px;
    margin: 0;
    color: #222;
}

.team-section {
    position: relative !important;
}

.team-section .team-main {
    position: relative;
    z-index: 2;
    margin-left: 15%;
    padding-right: 60px;
}

.team-section .team-main::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100vw;
    left: -30px;
    top: 0;
    background-color: #002261;
    border-radius: 100px 0 0 100px;
}

.team-section .team-main .cs_cta_in {
    padding: 22px 0;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.team-section .team-main .cs_cta_left {
    gap: 30px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.team-section .team-main .cs_cta_thumb {
    width: initial;
    height: 125px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 147px;
    height: 147px;
    position: relative;
}

.team-section .team-main .cs_cta_title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.team-section .team-main .cs_cta_subtitle {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

.padding-x60 {
    padding-left: 60px;
    padding-right: 60px;
}

.padding-b60 {
    padding-bottom: 60px;
}

.padding-b80 {
    padding-bottom: 80px;
}

.padding-b30 {
    padding-bottom: 30px;
}

.padding-t60 {
    padding-top: 60px;
}

.weight-400 {
    font-weight: 400;
}

/* HOME SERVICES */
.home_serices_container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.main_heading h1 {
    color: #d96f29;
    font-size: 16px;
    position: relative;
    margin-bottom: 16px;
    text-transform: uppercase;
}


.main_heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0px;
}

.main_heading h2 span {
    color: #000;
    font-weight: 300;
}

.service-right {
    flex: 0 0 350px;
    margin-left: 100px;
    padding: 20px;
    border: 5px solid #ececec;
}

.service-right .main_heading h2 {
    font-size: 25px;
}

.service-right .fancy-button {
    background-color: #ececec;
    color: #000 !important;
    border: 0;
}

/* services slider */
.services_img {
    text-align: center;
    width: 80px;
    margin: auto;
}

.services_img img {
    margin: 0 auto 30px;
}

.title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.services_text {
    text-align: center;
}

.home_services {
    position: relative;
    background-color: rgba(239, 239, 239, 0.6);
}

.serivces-wrap {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 100px;
}

.serivces_card.serivces_style_6 {
    position: relative;
    padding: 100px 30px 30px;
    background-color: #fff;
    border-top: 5px solid #002261;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    margin-bottom: 10px;
    -ms-flex: 0 0 31.2%;
    flex: 0 0 31.2%;
    max-width: 31.2%;
    margin-bottom: 100px;
}

.serivces_card.serivces_style_6 .serivces_card_shape {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 6px 6px 10px 10px;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.serivces_card.serivces_style_6:hover .serivces_card_shape {
    background-color: #002261;
    opacity: 1;
}

.serivces_bg_filed {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.serivces_card.serivces_style_6 .serivces_card_thumbnail {
    width: 170px;
    height: 170px;
    border: 10px solid #fff;
    -webkit-filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
    border-radius: 50%;
    margin: -140px auto 20px;
    overflow: hidden;
    position: absolute;
    top: -102px;
    left: 0;
    right: 0;
    margin: auto;
}

.serivces_card.serivces_style_6 .serivces_card_thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.serivces_card.serivces_style_6 .serivces_card_info {
    position: relative;
    z-index: 1;
    text-align: left;
}

.serivces_card.serivces_style_6 .serivces_card_title {
    font-size: 22px;
    margin-bottom: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: #222;
}

.serivces_card.serivces_style_6:hover .serivces_card_title {
    color: #fff;
}

.serivces_card.serivces_style_6:hover .serivces_card_subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.list-check {
    list-style-type: none;
    margin-left: 10px;
}

.list-check li {
    margin-bottom: 7px;
    margin-left: -10px;
    display: flex;
    align-items: start;
    line-height: 26px;
}

.list-mb-0 li {
    margin-bottom: 5px;
    line-height: normal;
}

.list-check li::before {

    color: transparent;
    font-size: 1px;
    content: url('../images/check.png');
    margin-left: -1.3em;
    margin-right: 15px;
}

.grid-bg {
    background-image: url(../images/grid-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 30px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.about-us-text {
    margin-right: 60px;
}

.about-feature {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

.about-feature_title {
    font-size: 17px;
    margin-bottom: 8px;
    margin-top: -0.3em;
    color: #222222;
    text-transform: uppercase;
}

.about-feature_icon {
    width: 70px;
    text-align: center;
    flex: 0 0 70px;
}


.video-sec {
    width: 100%;
    min-height: 500px;
    position: relative;
    background: url(../images/video-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.video_cta_btn_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cs_video_open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.v_player_btn:before,
.v_player_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 100%;
    background-color: #2ea6f7;
    border-radius: 50%;
}

.v_player_btn {
    width: 43px;
    height: 43px;
    color: #2ea6f7;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.v_player_btn:before {
    z-index: 0;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.v_player_btn:after {
    z-index: 1;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.v_player_btn:before,
.v_player_btn:after {
    background-color: #fff;
}

.v_player_btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 15px solid #d96f29;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}


.v_play_btn_text:hover {
    background-size: 100% 1px;
    background-position: 0 calc(100% - 0px);
}

.v_play_btn_text {
    background-repeat: no-repeat;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
    background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
    -webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
    transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
    background-position: 100% calc(100% - 0px);
    background-size: 0 1px;
}

.video-sec .about-us-text {
    margin-top: 30px;
}

.donation-sec-main {
    position: relative;
    padding: 0 0px 185px;
}

.donation_wrap {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    background-color: #d96f29;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    align-items: center;
    -webkit-filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.02));
    filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.2));
    max-width: 1000px;
    margin: auto;
}

.donation-img {
    flex: 0 0 40%;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.donation-img img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.donation-main-text {
    padding: 20px 40px;
}

.donation-main-text .white-head {
    font-size: 24px;
}

/* contact */
.contact-content {
    background: #fff;
}

.contact-content .contact-form textarea,
.contact-content .contact-form input {
    width: 100%;
    height: 50px;
    border: 0;
    outline: none;
    padding-left: 20px;
    line-height: 58px;
    font-size: 14px;
    background-color: #ededed;
    border-radius: 1.2rem;
}

.contact-content .contact-form .fancy-button {
    background-color: #fff !important;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-content .contact-form textarea {
    height: 150px;
}

.contact-content .contact-info {
    padding: 0;
}

.contact-content .contact-info li {
    list-style: none;
    margin-bottom: 50px;
    display: flex;
    align-items: start;
}

.contact-content .contact-info li .icon-box,
.contact-content .contact-info li .content-box {
    display: table-cell;
    vertical-align: top;
}

.contact-content .contact-info li .icon-box .inner {
    width: 60px;
    height: 60px;
    text-align: center;
    color: #000;
    font-size: 35px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: #1e3b6f;
    padding: 5px;
    border-radius: 5px;
}

.contact-content .contact-info li .content-box h4 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    color: #222222;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Oxygen', sans-serif;
}

.contact-content .contact-info li .content-box p {
    color: #6e777d;
    line-height: 22px;
    margin-bottom: 0;
}

.contact-content .contact-info li .content-box p a {
    color: #6e777d !important;
}


.from_section {
    background-color: #fff;
    position: relative;
}


.error {
    color: red;
    font-weight: 400;
    display: block;
    padding: 6px 0 0;
    font-size: 12px;
}



/* gallery */
.gallery-main {
    padding: 20px;
    background-color: #1e3b6f;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
}

.gallery {
    margin-bottom: 0;
}

.gallery .slick-slide {
    margin: 0px 2px;
    height: 300px;

}

.gallery .slick-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery-main .slick-arrow {
    z-index: 1;
    width: 25px;
    background: transparent;
    border: none;
}

.gallery-main .btn-wrap {
    width: 100%;
    margin-top: 20px;


}

/* footer */

.footer_sec {
    background-color: #272727;
    padding: 28px 80px 28px 80px;
}

.footer_sec p {
    color: #859396;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    margin: 0;
}

.footer_links {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #859396;
    font-size: 14px;
    font-weight: 400;
}

.footer_links li {
    border-right: 1px solid #5b5b5b;
    padding-right: 10px;
    line-height: normal;
}

.footer_links li:last-child {
    border: none;
}

.footer_links a {
    color: #859396;
}

.home_services_slider.slick-slider {
    margin-bottom: 15px;
}

.service-left {
    flex: 0 0 60%;
}


/* insidepages */
.inside_banner {
    position: relative;
}

.inside_banner:after {
    content: "";
    height: 100% !important;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* z-index: -1; */
    pointer-events: none;
    background-image: linear-gradient(180deg, rgb(0 109 96 / 29%) 0%, rgb(0 109 96 / 55%) 100%);
}

.inside_banner img {
    width: 100%;
}

.inside-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    text-align: center;
    z-index: 1;
    width: 100%;
}

.inside-banner-text h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
}

.inside_services .services_box {
    margin-bottom: 60px;
}

.inside_about .about-feature {
    margin-bottom: 60px;
}

.circle2 {
    box-sizing: border-box;
}

.fStyle2 {
    background: #fff;
    border: 2px dotted #aaa;
}

.circleSelect {
    border: 2px dotted #ed1c24;
}

.wStyle2 {
    border: 2px dotted #aaa;
}

.innerStyle2 {
    background-color: #f9f9f9;
    width: 70% !important;
    height: 70% !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 15% 22px;
    font-size: 16px;
    font-weight: 500;
}

.black-text {
    color: #000;
}

.innerStyle2 strong {
    color: #006d60;
    font-size: 28px;
}

.fStyle2 span {
    padding: 15px;
}

.list-style li {
    list-style: circle;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.inside-banner {
    height: 370px;
    position: relative;
}

.inside-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgb(47 129 180 / 78%);
    top: 0;
    width: 100%;
    height: 100%;
}

.inside-banner img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.inside-text-wrap {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    z-index: 1;
}

.donation-sec {
    background-image: url(../images/donation-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.donation-sec .logo {
    max-width: 100%;
    /* margin: 30px 0; */
}

.donation-content {
    padding: 30px;
    border-radius: 16px;
    background-color: #fff;
    margin-bottom: 10px;
    margin-top: 10px;
}


.donation-box {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.orange-text {
    color: #d96f29;
    font-weight: 500;
    padding-right: 10px;
}

.scan-main {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.scan-content {
    width: 60%;
}

.scan-img {
    width: 40%;
    -webkit-filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.07));
}

.donation-sec .btn-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.donation-sec .btn-wrap .fancy-button {
    width: 33.33% !important;
    padding: 12px 10px !important;
    ;
}

.donation-sec .btn-wrap .fancy-button.selected {
    background-color: #d96f29;
    color: #fff !important;
}

.list1-ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.list1-ul li {
    list-style: circle;
    margin-bottom: 10px;
}

.list1-ul .list2-ul {
    margin-left: 20px;
}

.list1-ul .list2-ul li {
    list-style: decimal;
}

.logo-wrap {
    /* display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center; */
    margin-bottom: 35px;
}

.home-icon img {
    width: 20px;
    margin-right: 5px;
}

.home-icon a {
    color: #fff;
    font-weight: 500;
}

.home-banner {
    margin-bottom: 0;
}

.home-banner .slick-slide img {
    width: 100%;
}

.home-banner .slick-dots {
    bottom: 20px;
}

.home-banner .slick-dots li button:before {
    font-size: 20px;
}

.home-banner .slick-dots li.slick-active button:before {
    color: #fff
}

.home-banner .slick-dots li button:before {
    color: #fff
}