@charset "UTF-8";

:root {
    --primary-color: #F39C01;
    --secondary-color: #002048;
    --bg-color: #acfbbc;
    --white-color: #ffffff;
    --black-color: #151515;
    --dark-color: #002048;
    --text-gray-color: #606060;
    --transition: all 0.3s ease 0s;
}
* {
    margin: 0;
    box-sizing: border-box;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body {
    overscroll-behavior: none;
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 22px;
    color: var(--black-color);
    font-family: "Jost", serif;
}
h1,h2,h3,h4 {
    margin: 0;
    font-family: "Lato", serif;
}
h5,h6 {
    margin: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
span, li {
    font-family: "Jost", serif;
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.all-search i {
    font-size: 22px;
}
.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}
.section-padding {
    padding: 80px 0 80px 0;
}
.pad-top {
    padding-top: 80px;
}
.pad-bottom {
    padding-bottom: 80px;
}
.pad-top-half {
    padding-top: 40px;
}
.pad-bottom-half {
    padding-bottom: 40px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
    z-index: 11;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 30px;
}
.main-head {
    font-size: 34px;
    line-height: 45px;
    margin-top: 5px;
    font-weight: 800;
    font-family: "Lato", serif;
}
.sub-head {
    background: var(--primary-color);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgb(243 156 1 / 36%) 50%, rgba(255, 255, 255, 0.00) 95.35%);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: #151515;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    padding: 8px 50px;
    border-radius: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.section-bg {
    background: var(--bg-color) !important;
}
.bg-primary {
    background: var(--primary-color) !important;
}
.bg-secondary {
    background: var(--secondary-color) !important;
}


/*button section start*/
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.main-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}
.main-btn:after {
    content: "";
    position: absolute;
    right: 0;
    width: 0%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.main-btn:hover::after {
    left: 0;
    width: 100%;
}
.main-btn span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 8px 20px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.main-btn:hover span {
    animation: scaleUp 0.3s ease-in-out;
}
.main-btn:not(:hover) span {
    animation: scaleDown 0.3s ease-in-out;
}


.btn-1 {
    background: var(--primary-color);
}
.btn-1:after {
    background: var(--secondary-color);
}
.btn-1 span {
    color: var(--white-color);
}
.btn-1:hover span {
    color: #ffd700;
}


.btn-2 {
    background: var(--secondary-color);
}
.btn-2:after {
    background: var(--primary-color);
}
.btn-2 span {
    color: var(--white-color);
}
.btn-2:hover span {
    color: var(--white-color);
}


.btn-white {
    color: #000;
    background: var(--white-color);
}
.btn-white:after {
    background: var(--primary-color);
}
.btn-white span {
    color: var(--black-color);
}
.btn-white:hover span {
    color: #ffffff;
}
/*button section end*/

/*hover-link start*/
.hover-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.hover-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #000;
    transition: width .3s;
}
.hover-link:hover::after {
    width: 100%;
    transition: width .3s;
}
/*hover-link end*/


/*mouse start*/
.center, .outerCircle {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999;
}
.center {
    background-color: var(--primary-color);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.outerCircle {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: 0.1s ease;
}
/*mouse end*/

/*--------------------------------------------
           header section start
--------------------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}
.header-top-section {
    padding: 5px 0;
    background: #acfbbc;
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-social-list-icon {
    width: 20px;
    height: 20px;
    color: var(--black-color);
    border: 1px solid var(--black-color);
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 10px;
    display: inline-block;
}
.header-social-list-icon:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.header-social-inline {
    display: flex;
    column-gap: 5px;
    align-items: center;
}
.header-social-inline li {
    font-size: 13px;
    color: var(--black-color);
}
.top-info a {
    font-size: 13px;
    color: var(--black-color);
    margin-right: 15px;
}
.top-info a:hover {
    color: var(--primary-color);
}
.logo {
    display: flex;
    height: 81px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.logo img {
    width: 120px;
    height: auto;
    position: relative;
    top: 0;
}
.html-marquee {
    overflow: hidden;
    position: relative;
    max-width: 50%;
}
.marquee-section marquee {
    font-size: 13px;
    line-height: 13px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.marquee-section span {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
.marquee-section span:before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 30px;
    background: #000000;
    top: -5px;
}
.marquee-section span:last-child:before {
    width: 0;
}
.marquee-section marquee a, .marquee-section marquee span, .marquee-section marquee p {
    color: var(--black-color);
}
.marquee-section {
    width: 50%;
}
/*--------------------------------------------
           header section end
--------------------------------------------*/



/*--------------------------------------------
           home section start
--------------------------------------------*/
.z-index-1 {
    z-index: 1;
}
.heading-white .main-head {
    color: #ffffff;
}
.new-slick-dots .slick-dots {
    bottom: 0;
    left: 0;
    margin: 15px 0 0;
    position: relative;
}
.new-slick-dots .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    border: 0;
}
.new-slick-dots li.slick-active button {
    background: var(--primary-color) !important;
}
.new-slick-dots .slick-dots li button {
    width: 5px;
    height: 5px;
    padding: 5px;
    border-radius: 50%;
    background: #ffd993;
    opacity: 1;
}
.slick-slide {
    padding: 3px;
    margin-right: 3px;
    margin-left: 3px;
}
/*--------------------------------------------
           home section end
--------------------------------------------*/



/*--------------------------------------------
           banner section start
--------------------------------------------*/
.home2__slider--bg {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100vh;
}
.hero__slider--section .inline-main-btn {
    justify-content: center;
}
.home2__slider--bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #000000 50%, #000000 50%);
    background: #161616;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.hero__slider--items__inner {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: relative;
}
.sub-heading-banner {
    display: flex;
    align-items: center;
}
.sub-heading-banner h4{
    width: 60%;
    height: 40px;
    text-transform: uppercase;
    background: #9b9b9b5e;
    color: var(--white-color);
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 40px;
    text-align: right;
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
}
.slider__content .sub-head {
    color: #ffffff;
}
.slider__content--maintitle {
    margin-bottom: 10px;
    font-size: 60px;
    line-height: 75px;
    color: var(--white-color);
    position: relative;
    font-weight: 700;
    width: 700px;
    text-transform: capitalize;
}
.slider__content--desc {
    width: 700px;
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
    margin-bottom: 20px;
}
.swiper__nav--btn::after {
    background: url(../images/icon/left-arrow-angle.png) !important;
    width: 9px;
    height: 17px;
    font-size: 0;
}
.swiper__nav--btn.swiper-button-next::after {
    background: url(../images/icon/right-arrow-angle.png) !important;
}
.swiper__nav--btn {
    display: none !important;
    width: 3rem !important;
    height: 3rem !important;
    background: var(--primary-color) !important;
    border-radius: 50% !important;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper__nav--btn:hover {
    background: var(--black-color);
}
.hero__slider--activation .swiper-button-prev {
    left: 1rem;
}
.swiper__nav--btn.swiper-button-prev {
    left: 0;
}
.swiper:hover .swiper__nav--btn {
    opacity: 1;
    visibility: visible;
}
.hero__slider--activation .swiper-button-next {
    right: 1rem;
}
.swiper__nav--btn.swiper-button-next {
    right: 0;
}
.slider__content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.scroll-icon {
    position: absolute;
    bottom: 40px;
    z-index: 1;
    left: 49%;
    transform: translate(-0%, -49%);
    cursor: pointer;
}
.scroll-icon svg {
    width: 30px;
    height: 30px;
}

@-webkit-keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(100px);
    }
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(100px);
    }
}
svg #wheel {
    -webkit-animation: scroll ease 1.5s infinite;
    animation: scroll ease 1.5s infinite;
}
/*--------------------------------------------
           banner section end
--------------------------------------------*/


/*--------------------------------------------
         happy client section start
--------------------------------------------*/
.happy-client-item {
    width: 100%;
    height: 90px;
    background: #fff;
    box-shadow: 0 0 5px #00000012;
    border-radius: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.happy-client-item img {
    width: 100%;
    height: 45px;
    object-fit: contain;
}
/*--------------------------------------------
         happy client section end
--------------------------------------------*/


/*--------------------------------------------
         technology section start
--------------------------------------------*/
.technology-item {
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 60px;
    height: 60px;
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    box-shadow: 0 0 5px #0000001f;
    border-radius: 6px;
}
.technology-item .tooltip {
    background: var(--secondary-color);
    bottom: 100%;
    color: #fff;
    display: block;
    font-size: 12px;
    left: 0;
    text-align: center;
    margin-bottom: 10px;
    opacity: 0;
    padding: 10px 10px;
    pointer-events: none;
    border-radius: 4px;
    position: absolute;
    width: 100%;
    transform: translateY(10px);
    transition: all .25s ease-out;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}
.technology-item .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}
.technology-item .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid var(--secondary-color) 10px;
    bottom: -9px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: 0;
}

.technology-item:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}
.lte8 .technology-item .tooltip {
    display: none;
}

.lte8 .technology-item:hover .tooltip {
    display: block;
}
.technology-section .section-heading {
    margin-bottom: 10px;
}
.technology-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 5px 0;
}
.technology-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}
.technology-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40%;
}
.technology-heading .main-head {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0;
    position: relative;
    font-size: 20px;
}
.technology-heading .main-head:before {
    content: "";
    background: var(--black-color);
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: -1;
}
.technology-heading .main-head span {
    background: #fff;
    padding: 0 10px;
}
.technology-inline-item {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.technology-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*--------------------------------------------
         technology section end
--------------------------------------------*/


/*--------------------------------------------
         service section start
--------------------------------------------*/
.service-shape {
    height: 850px;
}
.service-item {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 15px;
    border-radius: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
    margin-bottom: 20px;
}
.service-item:before {
    content: "";
    background: #ffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 12px;
    opacity: 0.2;
}
.service-heading {
    position: relative;
    padding: 15px;
    border-radius: 12px;
    height: 100%;
}
.service-heading:before {
    content: "";
    background: var(--secondary-color);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 12px;
    opacity: 0.7;
}
.service-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-in-out;
}
.service-item:hover .service-content {
    max-height: 15rem; /* Flexible height depending on text length */
    opacity: 1;
}
.service-item:hover .service-heading:before {
    opacity: 0.9;
}
.service-item p {
    color: #fff;
    position: relative;
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
}
.service-heading h6 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    position: relative;
}
.service-heading span {
    color: var(--primary-color);
}
.service-heading h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    position: relative;
    margin-top: 5px;
}
.service-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
}
.service-btn i {
    transform: rotate(320deg);
    transition: var(--transition);
}
.service-btn:hover {
    color: #fff;
}
.service-btn:hover i {
    transform: rotate(360deg);
}

.small-box h4 {
    position: absolute;
    top: 11px;
    left: 60px;
}

/*--------------------------------------------
         service section end
--------------------------------------------*/


/*--------------------------------------------
         contact section start
--------------------------------------------*/
.contact-banner-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-banner {
    position: relative;;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-banner:before {
    content: "";
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
}
/*--------------------------------------------
         contact section end
--------------------------------------------*/


/*--------------------------------------------
         working process start
--------------------------------------------*/

.working-process-one__single {
    position: relative;
    display: block;
    padding: 0px 30px 0px;
}
.working-process-one__single .icon-box {
    position: relative;
    display: block;
    max-width: 75px;
    margin: 0 auto;
}
.working-process-one__single .icon-box i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 24px;
}
.working-process-one__single .icon-box .overlay-list {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -5px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}
.working-process-one__single .icon-box .overlay-list span {
    position: relative;
    display: inline-block;
    color: var(--white-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}
.working-process-one__single .content-box {
    position: relative;
    display: block;
    padding-top: 23px;
}
.working-process-one__single .content-box .title-box {
    position: relative;
    display: block;
}
.working-process-one__single .content-box .title-box h5 {
    color: #f39c01;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.working-process-one__single .content-box .title-box h3 {
    font-size: 30px;
    line-height: 25px;
    font-weight: 700;
}
.working-process-one__single .content-box .title-box h3 a {
    color: var(--secondary-color);
    transition: var(--transition);
    transition-delay: 0.1s;
    font-size: 18px;
    line-height: 10px;
    font-weight: 700;
}
.title-box p {
    margin-top: 10px;
    color: #727272;
}
.working-process-one__single .content-box .text-box {
    position: relative;
    display: block;
    padding-top: 15px;
}
.working-process-one__single .content-box .text-box p {
    color: var(--black-color);
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
.working-process-one__shape3 {
    position: absolute;
    top: 20px;
    left: -120px;
    opacity: 1;
}
.working-process-one__shape4 {
    position: absolute;
    top: 5px;
    left: -120px;
    opacity: 1;
}
.working-process-one__shape5 {
    position: absolute;
    top: 20px;
    left: -120px;
    opacity: 1;
}
.working-process-section .row {
    margin-top: 60px;
}

/*--------------------------------------------
         working process end
--------------------------------------------*/


/*--------------------------------------------
         about us start
--------------------------------------------*/

.about-img-wrap {
    max-width: 620px;
    width: 100%;
    height: 500px;
    z-index: 11;
}
.about-img-wrap .about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 305px;
    width: 100%;
    height: 355px;
    padding: 5px;
    border: 2px solid #eeeff1;
    border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-img-1 .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-img-wrap .about-img-1 .video-btn a {
    background-color: #ffffffd4;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    padding-left: 5px;
}
.about-img-wrap .about-img-1 .video-btn a i {
    margin-top: 10px;
    line-height: 1;
}
.about-img-wrap .about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 300px;
    width: 100%;
    height: 352px;
}
.about-img-wrap .about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px 0 60px 0;
}
.about-img-wrap .about-contact {
    background-color: #d7171e;
    position: absolute;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    grid-gap: 15px;
    max-width: 310px;
    width: 100%;
    padding: 30px 30px 30px 50px;
    border-radius: 0 60px 0 60px;
}
.about-img-wrap .about-contact .icon {
    background-color: #ffffff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #d7171e;
}
.about-img-wrap .about-contact .content span {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}
.about-img-wrap .about-contact .content a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.about_play.style_three {
    position: absolute;
    top: -55px;
    right: 8%;
    z-index: 1;
}
.about_play.style_three a.banner-play-btn {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background-color: var(--bg-color);
    line-height: 190px;
    border: 1px solid #f39c011f;
    overflow: hidden;
    text-align: center;
    position: relative;
    display: inline-block;
}
.text-inner {
    position: relative;
    top: -2px;
    animation: circle 15s linear infinite;
    z-index: 22;
    fill: transparent;
}
.about_play.style_two .text-inner svg {
    width: 76%;
}
.text-inner svg {
    width: 100px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 16px;
    transform: rotate(0) scaleX(1) scaleY(1);
    position: relative;
}
.about_play.style_three .text-inner text {
    fill: #102654;
    font-weight: 500;
    font-size: 30px;
    text-transform: uppercase;
    direction: ltr;
    transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
    position: relative;
    z-index: 2;
}
.like {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 49%;
    transform: translate(-50%, -50%);
    left: 50%;
    background: var(--secondary-color);
    width: 90px;
    height: 90px;
    border-radius: 50%;
}
.like img {
    height: 54px;
}

@keyframes circle {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.circle {
    animation: circle 15s linear infinite;
}
.about-content-right .section-heading {
    margin-bottom: 15px;
}
.about_area .main-btn {
    width: fit-content;
    margin-top: 15px;
}
.mission-vision-section {
    margin-top: 25px;
    margin-bottom: 25px;
}
.feature-list {
    display: flex;
    column-gap: 15px;
    margin-bottom: 30px;
}
.feature-img {
    width: 78px;
    height: 78px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #ffd58a;
}
.about-content {
    width: calc(100% - 100px);
}
.feature-list img {
    height: 46px;
}
.about-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.about-content p {
    color: #7e7e7e;
}
.about_area {
    padding-top: 110px;
}

/*--------------------------------------------
         about us end
--------------------------------------------*/


/*--------------------------------------------
         our team start
--------------------------------------------*/
.team-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.team-two__single::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    bottom: 0px;
    right: 0;
    background-color: var(--white-color);
    z-index: 1;
}
.team-two__single:hover .team-two__single-img::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.team-two__single-img {
    position: relative;
    display: block;
    margin-right: 40px;
    overflow: hidden;
    z-index: 11;
}
.team-two__single-img::before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}
.team-two__single-img img {
    width: 100%;
    transform: scale(1.01);
    transition: transform .5s cubic-bezier(.27, .48, .45, .94);
    transform-origin: 70% 80%;
    position: relative;
}
.team-two__single-content {
    position: relative;
    display: block;
    padding: 15px 40px 20px 65px;
    z-index: 11;
}
.team-two__single-content h3 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 0px;
}
.team-two__single-content p {
    color: #747474;
}
.team-two__single:hover .team-two__single-content h3 a {
    color: #ffffff;
}
.team-two__single:hover .team-two__single-content p {
    color: #ffffff;
}
.team-two__single::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    bottom: 0px;
    right: 0;
    background-color: var(--secondary-color);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 1;
}
.team-two__single:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}
.our-team-section .shape-3 {
    position: absolute;
    bottom: 0;
    top: auto;
    right: auto;
    left: 5%;
}
/*--------------------------------------------
         our team end
--------------------------------------------*/


/*--------------------------------------------
         portfolio start
--------------------------------------------*/
.portfolio-box {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.portfolio-item a {
    display: block;
    position: relative;
    transform: var(--transition);
}
.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
}
.portfolio-item:hover .view-btn {
    opacity: 1;
    visibility: visible;
}
.portfolio-item-content h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--secondary-color);
}
.portfolio-item-content .read-btn {
    color: var(--primary-color);
    font-size: 12px;
}
.portfolio-item-content .hover-link::after{
    background: var(--primary-color);
}
.portfolio-hover-text {
    display: none;
}
.portfolio-item-content {
    background: #eef5ff;
    padding: 10px 15px 0px 15px;
    text-align: center;
    border-radius: 0 0 14px 14px;
}
.portfolio-item {
    border-radius: 14px;
    box-shadow: 0 0 3px 0px #0000001f;
}
.portfolio-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}
.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}
.shape-bottom img {
    height: 175px;
    opacity: 0.5;
}

/*--------------------------------------------
         portfolio end
--------------------------------------------*/


/*--------------------------------------------
         testimonial start
--------------------------------------------*/
.customers-review-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.customers-review-grid .client-text {
    width: 100%;
}
.customers-review-grid .customers-review-item {
    background: #dbefdf;
    padding: 25px;
    border-radius: 10px;
}
.client-text {
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    width: 60%;
}
.customers-review-text h2 {
    font-size: 20px;
}
.star-review {
    display: flex;
    justify-content: center;
    align-items: center;
}
.star-review img {
    height: 16px;
}
.customers-review-item {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.customers-review.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.testimonial-section.before-none:before {
    display: none;
}
.testimonial-section:before {
    content: "";
    background-image: url(../images/bg-img/bg-pattern1.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: top;
}
.quote-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.quote-img img {
    height: 36px;
}
.testimonial-section .shape-3 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    top: auto;
}
.testimonial-section .shape-2 {
    position: absolute;
    bottom: 14%;
    left: 5%;
    top: auto;
}
/*--------------------------------------------
         testimonial end
--------------------------------------------*/


/*--------------------------------------------
         FAQ section start
--------------------------------------------*/
.accordion-body {
    background: #dbefdf;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
    transition: all 0.5s;
}
.accordion-item {
    background-color: var(--bg-color);
    border: var(--bs-accordion-border-width) solid #5c5c5c;
}
.accordion-button {
    background-color: var(--bg-color);
}
.accordion-button:not(.collapsed) {
    color: var(--black-color);
    background-color: var(--bg-color);
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 #dbefdf;
}
.accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}
.faq-section .shape-2 {
    position: absolute;
    top: 26%;
    right: 4%;
}
.faq-section .shape-2 img {
    height: 150px;
}
.faq-shape-3 {
    position: absolute;
    bottom: 0;
    left: 0;
}

/*--------------------------------------------
         FAQ section end
--------------------------------------------*/


/*--------------------------------------------
     home contact with contact page start
--------------------------------------------*/
.home-contact-info {
    border-radius: 100px;
    display: grid;
    gap: 20px;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    margin-bottom: 10px;
}
.home-contact-info-items {
    margin-bottom: 10px;
    background: var(--bg-color)!important;
    border-radius: 14px;
    padding: 15px 15px;
    z-index: 11;
    position: relative;
}
.home-contact-info-icon i {
    font-size: 24px;
    margin-right: 10px;
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    color: var(--white-color);
}
.contact-info-content h4 {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-info-content p, .contact-info-content a {
    color: var(--secondary-color);
    line-height: 22px;
    font-size: 14px;
    word-break: break-word;
    margin-bottom: 0;
}
.contact-form .form-control {
    height: 55px;
    color: #747474;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #efefef;
    position: relative;
    z-index: 11;
}
.contact-form {
    background: var(--bg-color)!important;
    padding: 30px;
    border-radius: 14px;
    height: 480px;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}
textarea.form-control {
    min-height: 120px;
}
.contact-section:before {
    content: "";
    background-image: url(../images/bg-img/map-dot-bg.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
}
.contact-map-home iframe {
    width: 100%;
    height: 480px;
    border-radius: 14px;
    object-fit: cover;
    position: relative;
    z-index: 11;
    filter: grayscale(100%);
    transform: var(--transition);
}
.contact-map-home iframe:hover {
    filter: grayscale(0%);
}
.contact-page .contact-form {
    background: var(--bg-color);
}
.contact-page .home-contact-info-items {
    background: var(--bg-color);
}

/*--------------------------------------------
     home contact with contact page end
--------------------------------------------*/



/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    background: #acfbbc;
}
.footer-logo {
    height:84px;
}
.footer-social-inline {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 15px;
}
.footer-social-list-icon:hover i{
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.footer-social-inline li, .footer-social-inline li a {
    margin-bottom: 0;
}
.footer-social-list-icon i {
    width: 30px;
    height: 30px;
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
    line-height: 29px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 12px;
    display: inline-block;
    transition: var(--transition);
}
.footer-title:before {
    content: "";
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    border-radius: 14px;
}
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}
.footer-widget a {
    font-size: 14px;
    width: fit-content;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer-widget a:hover {
    color: var(--primary-color);
}
.row-space-1 {
    padding-left: 50px;
}
.row-space-2 {
    padding-left: 65px;
}
.footer-widget ul li {
    margin-bottom: 5px;
}
.footer-widget p {
    font-size: 14px;
    margin-top: 15px;
}
.footer-bottom {
    padding: 20px 0 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--black-color);
    margin-top: 50px;
}
.copyright-content-link:hover {
    color: var(--primary-color);
}
.footer-bottom p {
    font-size: 12px;
    margin: 0;
}
.contact-info i {
    font-size: 20px;
    color: #ffffff;
    margin-right: 10px;
}
.contact-info a:hover i {
    color: var(--primary-color);
}
.extra-link a {
    font-size: 12px;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}
.extra-link a:hover {
    color: var(--primary-color);
}
.extra-link a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 1px;
    height: 70%;
    background: var(--black-color);
}
.extra-link a:last-child:before {
    content: "";
    width: 0;
}
.extra-link .hover-link::after {
    background: var(--primary-color);
}
#scroll__top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
#scroll__top:hover {
    color: var(--primary-color);
    background: var(--white-color)
}

#scroll__top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}
#scroll__top svg {
    width: 25px;
    line-height: 1
}
.contact-info i {
    width: 24px;
    height: 24px;
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: -35px;
    font-size: 10px;
    display: inline-block;
    transition: var(--transition);
}
.contact-info a:hover i {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.contact-info a {
    margin-left: 35px;
    margin-bottom: 12px;
    position: relative;
}
.contact-info a:first-child {
    margin-bottom: 20px;
}
.inline-footer-widget {
    display: flex;
    justify-content: space-between;
}
.arrow-list li a:before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    padding-right: 10px;
}
/*--------------------------------------------
        footer section end
--------------------------------------------*/


/*--------------------------------------------
        breadcrumb section start
--------------------------------------------*/
.breadcrumb-area {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100px;
    position: relative;
    margin-top: 112px;
}
.breadcrumb-area .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 33px;
}
.breadcrumb-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.breadcrumb-area h1, .breadcrumb-area h2, .breadcrumb-area h3, .breadcrumb-area h4 {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    position: relative;
}
.breadcrumb-list a, .breadcrumb-list li {
    color: var(--black-color);
    font-size: 12px;
    margin-right: 10px;
}
.breadcrumb-list li:last-child {
    margin-right: 0;
}
.breadcrumb-list li:last-child:after {
    display: none;
    opacity: 0;
}
.breadcrumb-list li:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    color: var(--black-color);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.breadcrumb-list ul {
    display: flex;
    background: #ffffff;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 30px;
    transition: var(--transition);
}
.breadcrumb-list ul:hover {
    background: var(--primary-color);
}
.primary-bg {
    background: var(--primary-color);
}
.breadcrumb-list ul:hover a, .breadcrumb-list ul:hover li {
    color: #ffffff;
}
.breadcrumb-list ul:hover li:after {
    color: #ffffff;
}
/*--------------------------------------------
        breadcrumb section end
--------------------------------------------*/


/*--------------------------------------------
        about page start
--------------------------------------------*/
.about-page {
    padding-top: 130px;
}
.why-choose-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.why-choose-text {
    height: 400px;
    background: var(--bg-color);
    padding: 60px 60px;
    border-radius: 30px 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-choose-img img {
    border-radius: 0 30px 30px 0;
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.why-choose-text .section-heading {
    margin-bottom: 15px;
}


/*------- journey section start -------*/
.journey-section ul {
    --col-gap: 2rem;
    --row-gap: 2rem;
    --line-w: 0.25rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
}

/* line */
.journey-section ul::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 20;
    background: rgb(219 239 223);
    border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.journey-section ul li:not(:last-child) {
    margin-bottom: var(--row-gap);
}

/* card */
.journey-section ul li {
    grid-column: 2;
    --inlineP: 1.5rem;
    margin-inline: var(--inlineP);
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
}

/* date */
.journey-section ul li .date {
    --dateH: 3rem;
    height: var(--dateH);
    margin-inline: calc(var(--inlineP) * -1);

    text-align: center;
    background-color: var(--accent-color);

    color: white;
    font-size: 1.25rem;
    font-weight: 700;

    display: grid;
    place-content: center;
    position: relative;

    border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.journey-section ul li .date::before {
    content: "";
    width: var(--inlineP);
    aspect-ratio: 1;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;

    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}

/* circle */
.journey-section ul li .date::after {
    content: "";
    position: absolute;
    width: 2rem;
    aspect-ratio: 1;
    background: #ffffff;
    border: 0.3rem solid var(--accent-color);
    border-radius: 50%;
    top: 50%;

    transform: translate(50%, -50%);
    right: calc(100% + var(--col-gap) + var(--line-w) / 1.5);
}

/* title descr */
.journey-section ul li .title,
.journey-section ul li .descr {
    position: relative;
    background: #f7f7f7;
    padding-inline: 1.5rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
.journey-section ul li .title {
    overflow: hidden;
    padding-block-start: 15px;
    padding-block-end: 5px;
    font-weight: 500;
    font-size: 16px;
}
.journey-section ul li .descr {
    padding-block-end: 1.5rem;
}

/* shadows */
.journey-section ul li .title::before,
.journey-section ul li .descr::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 0;
    left: 50%;
    border-radius: 50%;
    box-shadow: 0 0 1px 1px #00000017;
    transform: translate(-50%, 50%);
}
.journey-section ul li .title::before {
    bottom: calc(100% + 0.125rem);
}

.journey-section ul li .descr::before {
    z-index: -1;
    bottom: 0.25rem;
}

@media (min-width: 40rem) {
    .journey-section ul {
        grid-template-columns: 1fr var(--line-w) 1fr;
    }
    .journey-section ul::before {
        grid-column: 2;
    }
    .journey-section ul li:nth-child(odd) {
        grid-column: 1;
    }
    .journey-section ul li:nth-child(even) {
        grid-column: 3;
    }

    /* start second card */
    .journey-section ul li:nth-child(2) {
        grid-row: 2/4;
    }

    .journey-section ul li:nth-child(odd) .date::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        left: 0;
    }

    .journey-section ul li:nth-child(odd) .date::after {
        transform: translate(-50%, -50%);
        left: calc(100% + var(--col-gap) + var(--line-w) / 2);
    }
    .journey-section ul li:nth-child(odd) .date {
        border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
    }
}

/*------- journey section end -------*/


/*--------------------------------------------
        about page end
--------------------------------------------*/


/*--------------------------------------------
        blog page start
--------------------------------------------*/
.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #acfbbc;
    border-radius: 4px;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 500;
}
.blog-grid {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 35px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.event-date span {
    color: #fff;
    font-size: 46px;
    line-height: 40px;
    font-weight: 600;
    display: block;
}
.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border: 2px solid #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}
.blog-item .blog-img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}
.auth-area img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}
.blog-content {
    box-shadow: 0 0 4px 3px #00000008;
    margin-top: -65px;
    background: #fff;
    position: relative;
    padding: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: 165px;
    border-radius: 10px;
}
.blog-content h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.blog-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    position: absolute;
    width: 89%;
    bottom: 15px;
}
.auth-area {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.blog-content p {
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    font-size: 14px;
    line-height: 20px;
}
.blog-link {
    text-transform: capitalize;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}
.blog-link:hover {
    color: var(--primary-color);
}
.sidebar-service-content .blog-date {
    margin-top: 5px;
    margin-bottom: 2px;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    padding: 0;
    font-size: 12px;
    text-transform: capitalize;
    color: #747474;
    font-weight: 400;
}
.sidebar-service-content .blog-date i {
    color: #1ca337;
}
.blog-details-page .sidebar-service-img img {
    height: 70px;
}
.blog-details-page .sidebar-service-img {
    width: 20%;
}
.blog-details-page .sidebar-service-content {
    width: 75%;
}
.inner-service-section {
    display: grid;
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.sub-head {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.event-time-location {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 16px;
}
.inner-text h4 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.inner-text {
    margin-top: 30px;
}
.inner-text p {
    margin-bottom: 15px;
}
.inner-service-content-area .main-head {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
}
.blog-box {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}
.blog-box p {
    margin: 0;
    font-weight: 500;
}
.blog-box img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 3px;
}
.blog-category {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--bg-color);
    padding: 2px 15px;
    border-radius: 4px;
    font-weight: 500;
}
.blog-category-list {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid;
    border-color: #e1e1e1;
}
.blog-category-list .sidebar-heading {
    margin-bottom: 25px;
}
.blog-category-list li {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 5px;
    margin-bottom: 5px;
    position: relative;
}
.blog-category-list li:last-child {
    border-bottom: 0 solid var(--black-color);
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.blog-category-list li:hover a {
    color: var(--primary-color);
}
.blog-category-list li:after {
    content: "\f178";
    font-family: "Font Awesome 6 Pro";
    top: 0;
    right: 0;
    position: absolute;
    color: var(--black-color);
}
.blog-category-list.blog-tag li {
    border: 0;
    margin: 0;
    padding: 0;
}
.blog-category-list.blog-tag li:after {
    display: none;
}
.blog-category-list.blog-tag li a {
    background: #dbefdf;
    padding: 4px 8px;
    border-radius: 4px;
    display: block;
}
.blog-category-list.blog-tag ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.blog-category-list.blog-tag {
    margin-top: 30px;
}
/*--------------------------------------------
        blog page end
--------------------------------------------*/


/*--------------------------------------------
        CMS page start
--------------------------------------------*/
.cms-page .main-head {
    margin-top: 0;
    margin-bottom: 5px;
}
.sub-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}
.cms-page ul li {
    list-style: inside;
    margin-bottom: 5px;
}
/*--------------------------------------------
        CMS page end
--------------------------------------------*/


/*--------------------------------------------
      service details page start
--------------------------------------------*/
.main-service-img img {
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.sidebar-service-item {
    display: flex;
    column-gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.sidebar-service-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0 solid #e5e5e5;
}
.sidebar-service-img {
    width: 25%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.sidebar-service-img img {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    transition: var(--transition);
    object-fit: cover;
}
.sidebar-service-item:hover .sidebar-service-img img {
    transform: scale(1.1);
}
.sidebar-service-content {
    width: 70%;
}
.sidebar-service-content h4 {
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    height: 1.3em;
    white-space: nowrap;
}
.sidebar-service-content p {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.sidebar-service-content a {
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
}
.sidebar-service-content a i {
    position: relative;
    top: 1.5px;
}
.sidebar-service-item:hover .sidebar-service-content h4, .sidebar-service-item:hover .sidebar-service-content a {
    color: var(--primary-color);
}
.service-details-area .main-head {
    margin-bottom: 10px;
    margin-top: 0;
}
.service-details-area h4, .service-details-area h5, .service-details-area h6{
    font-size: 16px;
    color: #707070;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}
.sidebar-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 35px;
    position: relative;
}
.sidebar-heading:before {
    content: "";
    background: var(--primary-color);
    width: 55px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 6px;
}
.stickyexample {
    position: sticky;
    top: 115px;
}
.service-details-area ul li {
    list-style: inside;
    margin-bottom: 5px;
}
.service-details-area ul {
    margin-bottom: 10px;
}

/*--------------------------------------------
       service details page end
--------------------------------------------*/


/*--------------------------------------------
       menu active class start
--------------------------------------------*/
.menu-item .active, .menu-item a.active {
    color: var(--white-color) !important;
    background: var(--primary-color);
}
.menu-item .sub_menu .active {
    color: var(--black-color);
    background: #fff;
}
/*--------------------------------------------
       menu active class end
--------------------------------------------*/