/********** Template CSS **********/
:root {
    --primary: #5B8C51;
    --secondary: #EDDD5E;
    --light: #F7F7F7;
    --dark: #404A3D;
}

body {
    overflow-x: hidden !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

section {
    padding: 35px 0;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 1px 0;
    color: rgb(2, 32, 65);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgb(240, 221, 12);
    /* background: rgb(25, 65, 97);
    border-radius: 20px;
    padding: 15px 10px; */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        background: #2b2626bf;
        ;
        position: absolute;
        height: 100vh;
        width: 50%;
        top: 86px;
        left: 0px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;

}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler {
    color: white !important;
    border-color: transparent !important;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 3px solid var(--primary);
    transition: all 300ms linear;

}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/*** Header ***/

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: black;
    border: 10px solid black;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
    }
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.banner_back_ground {
    /* background-image: url('/User/img/banner.jpg'); */
    /* height: 375px; */
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(81 75 75 / 39%) !important;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}



/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}



/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer a {
    text-decoration: none;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

/* home section */
.slider_img {
    height: 458px;
    width: 100%;
}

.logo_img {
    height: 60px;
    width: 154px;
}

.home_about_img {
    height: 238px;
    width: 100%;
}

.banner_card {
    background-color: rgb(0 0 0 / 75%);
    height: 370px;
}

.services_round_img {
    height: 108px !important;
    width: 100% !important;
}

.team_img {
    height: 300px;
    width: 100%;
}

/* gallery */
.img-box {
    box-sizing: content-box;
    /* margin: 10px; */
    height: 250px;
    width: 100%;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;

}

.img-box img {
    height: 218px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.img-box:hover img {
    transform: scale(1.1);
}

/* menu css */
.outer_menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_menu {
    width: 70%;
}

.nav-pills-custom .nav-link {
    color: #aaa;
    background: #fff;
    position: relative;
}

.nav-pills-custom .nav-link.active {
    color: #45b649;
    background: #fff;
}


/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #fff;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}

.tab_bg_menu {
    background-color: rgba(2, 0, 0, 0.815);
}

.banner_img {
    height: 300px;
    /* border: 1px red solid; */
}


.banner_ad_img_1 {
    height: 145px;
    width: 145px;
    border-radius: 50%;
}

.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}

.services_section_img {
    height: 350px;
    width: 100%;
}

@media (min-width:992px) and (max-width: 1024px) {
    .slider_img {
        height: 466px;
        width: 100%;
    }
}

.demo {
    background: #e5e5e5;
}

.our-team {
    border: 2px solid #024e6a;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    z-index: 1;
    position: relative;
}

.our-team:before,
.our-team:after {
    content: "";
    width: 100%;
    height: 104%;

    background: #024e6a;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.3);
    transition: all 0.3s ease 0s;
}

.our-team:after {
    width: 106%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0.25);
}

.our-team:hover:before {
    transform: translateY(-50%) scaleX(0.7);
}

.our-team:hover:after {
    transform: translate(-50%, -50%) scaleY(0.7);
}

.our-team img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}

.our-team .team-content {
    width: 93%;
    padding: 25px 0 10px;
    background: #024e6a;
    position: absolute;
    bottom: 50px;
    left: 50%;
    opacity: 0;
    -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
}

.our-team:hover .team-content {
    bottom: 10px;
    opacity: 1;
}

.our-team .title {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}

.our-team .post {
    display: block;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.our-team .social {
    padding: 0;
    margin: 0;
    list-style: none;
}

.our-team .social li {
    display: inline-block;
    margin: 0 5px;
}

.our-team .social li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #024e6a;
    transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
    background: linear-gradient(to bottom, #024e6a, darkred);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
    color: #fff;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}

/* counter */

.counter {
    color: var(--main-color);
    background: var(--main-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 100%;
    height: 221px;
    padding: 35px 20px 55px 45px;
    margin: 0 auto;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.counter:before {
    content: "";
    background: #fff;
    border-radius: 10px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: -1;
}

.counter:after {
    content: "";
    background: #2d3c4e73;
    width: 40px;
    height: 180px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.counter .counter-icon {
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 18px;
}

.counter h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 23px;
    margin: 0 0 10px;
}

.counter .counter-value {
    color: #fff;
    background: var(--main-color);
    font-size: 33px;
    font-weight: 500;
    min-width: 100px;
    padding: 2px 18px;
    border-radius: 15px 0 0 0;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.counter.blue {
    --main-color: #536173;
}

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

/* our team */

.box {
    background: #0e204d;
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease 0s;
}

.box:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.box img {
    width: 100%;
    height: 300px;
    transition: all .6s ease-in-out;
}

.box:hover img {
    opacity: 0.4;
    transform: scale(1.3);
}

.box .box-content {
    color: #fff;
    background: #13c5dd;
    width: 100%;
    padding: 15px 15px 10px;
    transform: translateX(-50%);
    position: absolute;
    bottom: -70px;
    left: 50%;
    transition: all 0.4s ease-out;
}

.box:hover .box-content {
    bottom: 0;
}

.box .title {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 3px;
}

.box .post {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.box .icon {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    top: 35%;
    left: 50%;
    transition: all 0.4s ease-out;
}

.box:hover .icon {
    opacity: 1;
}

.box .icon li {
    margin: 0 3px;
    display: inline-block;
    transition: all .5s ease-in-out;
}

.box .icon li:first-child {
    transform: translateX(-100%) translateY(-100%);
}

.box .icon li:last-child {
    transform: translateX(100%) translateY(100%);
}

.box:hover .icon li {
    transform: translateX(0) translateY(0);
}

.box .icon li a {
    color: #fff;
    background: #13c5dd;
    font-size: 18px;
    line-height: 39px;
    height: 35px;
    width: 35px;
    border-radius: 5px;
    display: block;
    transition: all .5s ease-in-out;
}

.box .icon li a:hover {
    color: #0e204d;
    background: #fff;
}

@media only screen and (max-width:990px) {
    .box {
        margin: 0 0 30px;
    }
}



.main-timeline {
    font-family: 'Poppins', sans-serif;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}


.main-timeline .timeline-content {
    color: #ffffff;
    background: linear-gradient(30deg, #356265, #0d4346);
    text-align: center;
    padding: 30px 20px 20px;
    display: block;
    text-decoration: none;
    position: relative;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-year {
    color: #fff;
    width: 74px;
    background: linear-gradient(#0056a2, #080f16);
    font-size: 25px;
    font-weight: 600;
    padding: 32px 10px 5px;
    border-radius: 5px 5px 0 0;
    transform: rotate(20deg);
    position: absolute;
    top: -50px;
    right: -10px;
}

.main-timeline .timeline-year:before,
.main-timeline .timeline-year:after {
    content: '';
    background: linear-gradient(var(--color1), var(--color2));
    height: 33px;
    border-radius: 30px/50px;
    position: absolute;
    left: -7px;
    right: -1.5px;
    top: -4px;
}

.main-timeline .timeline-year:after {
    background: var(--color1);
    width: 23px;
    left: auto;
}

.main-timeline .title {
    color: var(--color2);
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.main-timeline .description {
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

@media screen and (max-width:767px) {

    .main-timeline .timeline-year,
    .main-timeline .timeline:nth-child(even) .timeline-year {
        transform: rotate(-20deg);
        top: -45px;
        left: 0;
        right: auto;
    }

    .main-timeline .timeline-year:before,
    .main-timeline .timeline-year:after {
        right: -7px;
        left: -1.5px;
    }
}


.text-effect {
    color: #394d33;
    font-family: 'Old Standard TT', serif;
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    animation: animate 1.5s infinite linear alternate;
}

@keyframes animate {
    100% {
        color: #67875d;
        text-shadow: 0 0 2px #c2e2b9, -4px 5px 0 #b5d3ac,
            -7px 11px 0 #a9c2a2, -12px 17px 0 #859282;
    }
}

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

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

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

/* gallery */
.box_gallery {
    background: #000;
    font-family: 'Sora', sans-serif;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in;
}

.box_gallery:hover {
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.4);
}

.box_gallery:before {
    content: "";
    /* background: linear-gradient(-225deg, #9EFBD3 50%, #45D4FB 100%); */
    background: #000000;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
    transform-origin: 0 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s ease-out 0s;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.box_gallery:hover:before {
    opacity: 0.8;
    transform: rotate3d(0, 0, 1, 15deg);
}

.box_gallery img {
    width: 100%;
    height: 250px;
    transform: scale(1.1) translateY(4%);
    transition: all 0.4s ease-in;
}

.box_gallery:hover img {
    opacity: 0.4;
    transform: scale(1.1) translateY(-4%);
}

.box_gallery .box-content {
    color: #fff;
    width: 100%;
    text-align: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.4s ease-out;
}

.box_gallery:hover .box-content {
    opacity: 1;
    top: 30px;
}

.box_gallery .title {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 2px;
}

.box_gallery .post {
    color: #9EFBD3;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    text-transform: capitalize;
    display: block;
}

.box_gallery .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    bottom: -50px;
    right: 10px;
    z-index: 2;
    transition: all 0.4s ease-in;
}

.box_gallery:hover .icon {
    opacity: 1;
    bottom: 10px;
}

.box_gallery .icon li {
    display: inline-block;
    margin: 0 4px;
}

.box_gallery .icon li a {
    color: #222;
    background: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 32px;
    height: 30px;
    width: 30px;
    display: block;
    transition: all 0.3s ease 0s;
}

.box_gallery .icon li a:hover {
    border-radius: 15px 0;
    box-shadow: 0 0 10px #999 inset;
}

@media only screen and (max-width:990px) {
    .box_gallery {
        margin: 0 0 30px;
    }
}

.about_side_img {
    height: 500px;
    width: 100%;
    position: relative;
}

.about_side_img::before {
    content: "";
    position: absolute;
    background-color: aqua;
    width: 20px;
    height: 210px;

    border-radius: 10px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.6);

    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
}

.before_after {

    z-index: 1;
    position: relative;
}

.before_after .about_h_b::after {
    content: "";
    width: 13%;
    height: 500px;
    /* background: #2d251d; */
    position: absolute;
    top: 0px;
    left: 87%;
    border-top-left-radius: 112px;
    border-bottom-left-radius: 90px;
}

.about_content {
    width: 83%;
}

.about_letter_specing {
    /* letter-spacing: 5px !important; */
    font-family: fangsong;
}

/* .before_after .about_h_b::before{
    content: "";
    width: 20%;
    height: 500px;
    background: #024e6a;
    position: absolute;
    top: 0px;
    left: 82%;
    border-top-left-radius: 112px;
    border-bottom-left-radius: 90px;
} */
/* why us */
.whyus_box {
    padding: 25px 30px;
    text-align: center;
    background: #0a2d43;
    border-top: 3px solid #eed956;
    border-bottom: 3px solid #eed956;
    position: relative;
}

.whyus_box:before {
    content: "";
    border-top: 0 solid #eed956;
    border-right: 0 solid transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.whyus_box:hover:before {
    border-top-width: 78px;
    border-right-width: 78px;
}

.whyus_box:after {
    content: "";
    border-bottom: 0 solid #eed956;
    border-left: 0 solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.whyus_box:hover:after {
    border-bottom-width: 78px;
    border-left-width: 78px;
}

.whyus_box .service-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 20px;
    border: 2px solid #eed956;
    background: #0a2d43;
    font-size: 40px;
    color: #eed956;
    margin-bottom: 20px;
    position: relative;
}

.whyus_box .title {
    font-size: 20px;
    font-weight: 700;
    color: #eed956;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease 0s;
}

.whyus_box:hover .title {
    letter-spacing: 3px;
}

.whyus_box .description {
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 0;
}

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

/* btn contact*/
.contact_btn {
    color: #000;
    background: linear-gradient(135deg, #8ae553 0%, #8ae553 22%, #6ecb47 22%, #6ecb47 28%, #53b03b 28%, #53b03b 72%, #37962f 72%, #37962f 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding: 13px 20px 12px;
    border-radius: 32px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.6s ease 0s;
}

.contact_btn:hover {
    color: #fff;
    background-position: 100% 0;
}

.contact_btn:before {
    content: "";
    background-color: #fff;
    border-radius: 50px;
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    transition: all 0.5s;
    z-index: -1;
}

.contact_btn:hover:before {
    opacity: 0;
}

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


/*** Testimonial ***/



.why_us_imgg {
    height: 90px !important;
    width: 90px !important;
    border-radius: 50% !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.info {
    width: 100%;
    background: #fff;
}

.info i {
    font-size: 20px;
    color: #1b6f84;
    float: left;
    width: 44px;
    height: 44px;
    background: #d6e9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.info h4 {
    /* padding: 0 0 0 60px; */
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c4964;
}

.info p {
    /* padding: 0 0 0 60px; */
    margin-bottom: 0;
    font-size: 14px;
    color: #4b7dab;
}

.info .email,
.info .phone {
    margin-top: 40px;
}

.info .email:hover i,
.info .address:hover i,
.info .phone:hover i {
    background: #1b6f84;
    color: #fff;
}


/* FAQ */
/* .accordion {
    display: flex;
    flex-direction: column;
    font-family: "Sora", sans-serif;
    max-width: 991px;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 50px;
} */
.accordion h1 {
    font-size: 32px;
    text-align: center;
}

.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 6px;
    background: #ffffff;
}

.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
}

.accordion-item .accordion-item-desc {
    display: none;
    font-size: 17px;
    line-height: 22px;
    /* font-weight: 300; */
    color: #000000;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}

.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-desc {
    display: block;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-title .icon:after {
    content: "-";
    font-size: 20px;
}

.accordion-item input[type="checkbox"]~.accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}

.accordion-item:first-child {
    margin-top: 0;
}

.accordion-item .icon {
    margin-left: 14px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }

    .accordion h1 {
        font-size: 22px;
    }
}

/*  SERVICES */

/* .bg-gray {
    background-color: #f9f9f9;
} */

.site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.site-heading h2 span {
    color: #ffaf5a;
}

.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.site-heading h4::before {
    background: #ffaf5a none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.site-heading {
    /* margin-bottom: 60px; */
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 20px;

}


.features-items,
.features-items .items-box {
    overflow: hidden;
}

.features-items img{
    width: 100px;
    border-radius: 50%;
}
.features-area .equal-height::after {
    background: #e7e7e7 none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    right: -1px;
    top: 0;
    width: 1px;
}

.features-area.item-full .equal-height::before {
    background: #e7e7e7 none repeat scroll 0 0;
    content: "";
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 100%;
}

.features-area .features-items .col-md-5,
.features-area .features-items .col-md-7 {
    display: table-cell;
    float: none;
    vertical-align: middle;
}

.features-area .features-items.reversed .col-md-5,
.features-area .features-items.reversed .col-md-7 {
    display: inline-block;
    float: left;
}

.features-area .features-items.reversed .info-box {
    float: right;
}

.features-area .features-items .item {
    padding: 15px 30px;
}

.features-area.item-full .features-items .item {
    padding: 15px;
}

.features-area .features-items .item h4 {
    position: relative;
}

.features-area.bottom-small {
    padding-bottom: 25px;
}

.features-area.default-padding.bottom-none {
    padding-bottom: 30px;
}

.features-area .item .icon {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    color: #ffaf5a;
    display: inline-block;
    position: relative;
    text-align: center;
    z-index: 1;
    height: 85px;
    width: 85px;
}

.features-area .item .info {}

.features-area .item .icon img {
    height: 50px;
    width: 50px;
    margin-top: 21%;
}

.features-area .features-items .items-box img {
    background: transparent;
}

.features-area .item .icon {
    margin-bottom: 10px;
}

.features-area .features-items.icon-solid i {
    border-radius: inherit;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    color: #ffaf5a;
    display: inline-block;
    font-size: 50px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
}


.features-area .item .info h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
}

.features-area .item .info p {
    margin: 0;
}

.features-area .features-items.less-icon .items-box.inc-cell .item .info {
    padding-left: 0;
}

.features-area .features-items .items-box.inc-cell .item .info a {
    color: #666666;
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
}

.features-area .features-items .items-box.inc-cell .item .info a:hover {
    color: #ffaf5a;
}

/*  */
.btn_one {
    background-color: rgb(3, 51, 81);

    color: white;
}

.btn_one:hover {
    border: double 3px rgb(3, 51, 81);
    color: rgb(3, 51, 81);
    background-color: white;

}

.btn_two {
    background-color: red;
    color: white;
}

.btn_two:hover {
    border: double 3px red;
    background-color: white;
    color: red;
}


/* Testimonial  */


.testimonial {
    background-color: white;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 290px;
    padding: 30px 30px 50px;
    margin: 0px 14px 53px 4px;
    position: relative;
}

.owl-theme .owl-controls {
    margin-top: 50px !important;
    text-align: center;
}

.testimonial::before,
.testimonial::after {
    content: "";
    border-top: 40px solid white;
    border-right: 125px solid transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
}

.testimonial::after {
    border-right: none;
    border-left: 125px solid transparent;
    left: auto;
    right: 0;
}

.testimonial .icon {
    display: inline-block;
    font-size: 38px;
    color: #016d9b;
    /* margin-bottom: 20px; */
    opacity: 0.6;
}

.testimonial .description {
    font-size: 14px;
    color: #777;
    text-align: justify;
    margin-bottom: 30px;
    opacity: 0.9;
}

.testimonial .testimonial-content {
    width: 100%;
    left: 0;
    position: absolute;
}

.testimonial .pic {
    display: inline-block;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 4px 4px #016d9b;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.testimonial .pic img {
    width: 90px;
    height: 90px;
}

.testimonial .name {
    font-size: 15px;
    font-weight: bold;
    color: white;
    text-transform: capitalize;
    margin: 10px 0 5px 0;
}

.testimonial .title {
    display: block;
    font-size: 14px;
    color: #ffd9b8;
}

.owl-controls {
    margin-top: 20px;
}

.owl-pagination {
    /* display: none; */
    display: flex;
    justify-content: center;
}

.owl-page {
    height: 10px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10%;
}

.owl-page:hover,
.owl-page.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.owl-page:not(first-item) {
    margin-left: 10px;
}

.owl-theme .owl-controls .owl-page span {
    display: contents !important;
}
