<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('css2.css');

/*=============================
01. Theme default css
===============================*/
:root {
    --body-color: #717580;
    --primary-color: #ff8a43;
    --secondary-color: #23262d;
    --cm-green:#0000ff;
    --cm-yellow:#faee4d;
    --headding-color: #23262d;
    --cm-black:#1f242e;
    --section-bg: #efefff;
    --white-color:#fff;
    --border-color:#f0f0f0;
    --cm-grey:#848587;
}
body{
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--body-color);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--body-bg);
}
a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.qtlj{height:1px;overflow: hidden;}
.qtlj a{color:#fff; font-size:10px; line-height:10px;}

*::-moz-selection {
    background: var(--cm-black);
    color: #fff;
    text-shadow: none;
}
::-moz-selection {
    background: var(--cm-black);
    color: #fff;
    text-shadow: none;
}
::selection {
    background: var(--cm-black);
    color: #fff;
    text-shadow: none;
}
h1,h2,h3,h4,h5,h6,p{
    margin:0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    color: var(--headding-color);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
a{
    text-decoration: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}
a:hover{
    text-decoration: none;
    color: var(--primary-color);
}
button:focus{
    outline: none;
}
input:focus{
    outline: none;
}
textarea:focus{
    outline: none;
}
p{
    color: var(--body-color);
    line-height: 26px;
}
ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
img{
    max-width:100%;
}
.cm-yellow{
    color: var(--cm-yellow)!important;
}
.cm-white{
    color: var(--white-color)!important;
}
.cm-grey-bg{
    background: #f5f5f8;
}
.pt-120{
    padding-top: 120px;
}
.pt-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
.pb-90{
    padding-bottom: 90px;
}
.pb-170{
    padding-bottom: 170px;
}
.pb-70{
    padding-bottom: 70px;
}
.black-bg{
    background: var(--cm-black);
}
/*=============================
02. Scroll Area
===============================*/
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    display: none;
}
.scroll-area i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
}
.section-bg{
    background-color: var(--section-bg);
}
.section-padding{
    padding: 100px 0px;
}
.section-padding-2{
    padding-top: 100px;
    padding-bottom: 70px;
}
.section-padding-80{
    padding: 80px 0px;
}
.section-padding-70{
    padding: 70px 0px;
}
.section-padding-50{
    padding: 50px 0px;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.cm-row-80 {
    --bs-gutter-x: 80px;
}
@media only screen and (max-width: 1199.99px) {
    .cm-row-80 {
        --bs-gutter-x: 60px;
    }
}
@media only screen and (max-width: 767.99px) {
    .cm-row-80 {
        --bs-gutter-x: 50px;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-row-80 {
        --bs-gutter-x: 30px;
    }
}

/*=============================
03. header-area-start
===============================*/
.td-header-sticky {
    position: fixed !important;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    z-index: 9999;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    background: rgba(255, 255, 255, 0.9)!important;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}
.header-top {
    background: var(--secondary-color);
    padding: 14px 0;
}
.header-top .hl_top-left a {
    display: inline-block;
    margin-right: 30px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
.header-top .hl_top-left a:hover{
    color: var(--primary-color);
}
.header-top .hl_top-left a:last-child{
    margin-right: 0;
}
.header-top .hl_top-left a i {
    margin-right: 2px;
    color: var(--primary-color);
}
.header-top .ht-call-text {
    display: inline-block;
}
.header-top .top-social{
    float: right;
    margin-left: 30px;
}
.header-top .ht-call-text a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.header-top .ht-call-text a:hover {
    color: var(--primary-color);
}
.cu-top-right-social {
    display: flex;
    justify-content: end;
}
.header-top .ht-call-text a i{
    margin-right: 2px;
    color: var(--primary-color);
}
.header-top .top-social span {
    margin-left: 25px;
    font-size: 16px;
}
.header-top .top-social span a{
    color: #fff;
}
.header-top .top-social span a:hover{
    color: var(--primary-color);
}
.cm-hrader-top-spacing{
    padding: 13px 45px;
}
.cm-hrader-main-spacing{
    padding: 0px 45px;
    box-shadow: 0px 1px 3px rgba(3, 4, 28, 0.12);
    background-color: var(--white-color);
    position: relative;
    z-index: 99;
}
@media only screen and (max-width: 1399.99px) {
    .cm-hrader-top-spacing{
        padding: 13px 0;
    }
    .cm-hrader-main-spacing{
        padding: 0;
    }
}
.header-top-2-left a{
    font-size: 16px;
    color: var(--white-color);
    margin-right: 55px;
}
.header-top-2-left a:hover{
    color: var(--cm-yellow);
}
.header-top-2-left a i{
    margin-right: 10px;
}
.cm-header-social-title{
    font-size: 16px;
    color: var(--white-color);
    font-weight: 400;
    margin-bottom: 0; 
}
.cm-top-social a{
    color: var(--white-color);
    margin-left: 18px;
}
.cm-top-social svg{
    transform: translateY(-1px);
}
.cm-top-social a:hover{
    color: var(--cm-yellow);
}
.cm-header-search input{
    font-size: 16px;
    color: #767676;
    background: #f5f5f8;
    width: 300px;
    padding: 16px 20px;
    border: 1px solid transparent;
    padding-right: 50px;
}
@media only screen and (max-width: 1700px) {
    .cm-header-search input{
        width: 200px;
    }
}
.cm-header-search input:focus{
    border: 1px solid var(--cm-green);
}
.cm-header-search form{
    position: relative;
    margin-bottom: 0;
}
.cm-header-search button{
    background: none;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
@media only screen and (min-width: 1400px) {
	.container-1600 {
		max-width: 1600px;
	} 
}
/*=============================
04. menu-area-start
===============================*/

.menu {
    float: right;
    margin-right: 100px;
}
@media only screen and (max-width: 1199.98px) {
    .menu {
        margin-right: 30px;
    }
}
.header-bright {
    float: right;
}
.menu ul li {
    display: inline-block;
    position: relative;
    margin-left: 30px;
}
.menu ul li a {
    display: inline-block;
    padding: 36px 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--headding-color);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.menu ul li a i{
    font-size: 13px;
}
.menu ul li:hover &gt; a{
    color: var(--primary-color);
}
.menu ul li &gt; ul {
	position: absolute;
	background: #fff;
	width: 240px;
	box-shadow: 0 30px 70px 0 hsla(216,2%,55%,.15);
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top center;
	transform-origin: top center;
	transition: all .3s ease-out 0s;
	opacity: 0;
	left: 0;
	top: 100%;
	visibility: hidden;
	padding: 26px 0;
	z-index: 9;
	padding-top: 15px;
}
.menu ul li:hover &gt; ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.menu ul li &gt; ul li {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}
.menu ul li &gt; ul li a {
    display: inline-block;
    width: 100%;
    padding: 0 25px;
    font-size: 13.5px;
}
.header-bright .contact-button {
    margin-top: 17px;
}
.button-1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 21px 40px;
    background: var(--primary-color);
    color: #fff;
    line-height: 1.2;
    overflow: hidden;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.button-1:hover{
    color: #fff;
}
.button-1::after{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--secondary-color);
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform .5s cubic-bezier(.86,0,.07,1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86,0,.07,1);
    transition: transform .5s cubic-bezier(.86,0,.07,1);
    transition: transform .5s cubic-bezier(.86,0,.07,1),-webkit-transform .5s cubic-bezier(.86,0,.07,1);
    -webkit-transition-timing-function: cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
    z-index: -1;
}
.button-1:hover::after{
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.button-2{
    background: var(--cm-green);
    padding: 20px 32px;
    border-radius: 0;
}
.button-1::after{
    background: var(--cm-black);
}
.btn-black{
    background: var(--cm-black);
}
.main-menu-2{
    float: left;
    margin-left: 30px;
}
@media only screen and (max-width: 1399.99px) {
    .main-menu-2{
        margin-right: 0;
        margin-left: 0;
    }
}
.main-menu-2 ul li {
    margin-left: 50px;
}
@media only screen and (max-width: 1600px) {
    .main-menu-2 ul li {
        margin-left: 30px;
    }
}
@media only screen and (max-width: 1199.99px) {
    .main-menu-2 ul li {
        margin-left: 27px;
    }   
}
.main-menu-2 ul li:hover &gt; a {
    color: var(--cm-green);
}

/*=============================
05. Hero-area-start
===============================*/

.hero-section {
    position: relative;
    z-index: 1;
}
.hero-caption {
	margin-right: 70px;
}
@media only screen and (max-width: 1199.98px) {
    .hero-caption {
        margin-right: 0;
    }
}
.hero-section .shap-img-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation: tpupdown 1s ease-in-out 1s forwards infinite alternate;
}
.hero-section .shap-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.shap-img-3 {
    position: absolute;
    top: 15%;
    right: 0;
    z-index: -1;
}
.shap-img-4 {
    position: absolute;
    top: 34%;
    right: 38%;
    z-index: -1;
}
.shap-img-5 {
    position: absolute;
    bottom: 10%;
    right: 6%;
    z-index: -1;
    animation: tprotate 3s ease-in-out 1s forwards infinite alternate;
}
.hero-caption h5 {
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.cm-about-4-thumb {
    position: absolute;
    width: 349px;
    top: 25%;
    right: -1%;
}
.hero-caption h2 {
    font-size: 65px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 18px;
}
.cm-about-home-shape-4 {
    margin-top: 30px;
    border-radius: 50%;
    margin-left: -25px;
}
.cm-about-home-img-inner {
    width: 122%;
}
.cm-about-home-shape-2 {
    top: 125px;
    right: 30px;
    border-radius: 5px;
}
.cm-about-home-shape {
    border-radius: 5px;
}
.cm-about-content-wrapper {
    margin-left: 40px;
    margin-right: 100px;
}
.cm-about-info {
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    background-color: var(--white-color);
    padding: 38px 40px 34px 40px;
    border-radius: 5px;
}
.cm-about-info-icon span {
    flex: 0 0 auto;
    font-size: 28px;
    display: inline-block;
    color: var(--primary-color);
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 83px;
    border-radius: 40px;
    filter: drop-shadow(0 0 20px rgba(42, 35, 87, 0.06));
    background-color: var(--white-color);
    margin-right: 25px;
    position: relative;
    transition: all 0.4s ease;
}
.cm-about-info-icon span i{
    line-height: 2.8;
}
.cm-about-info-title {
    margin-bottom: 13px;
}
.cm-about-info-icon span::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    top: 10px;
    left: 0;
    right: 0;
    border-radius: 50%;
    z-index: 1;
    margin: auto;
    border: 1px dashed var(--body-color);
    transition: all 0.4s ease;
}
.cm-about-content-wrapper-home .cm-about-info-item:hover .cm-about-info-icon span::before {
    border: 1px dashed var(--primary-color);
}
.cm-about-info-item:hover .cm-about-info-icon span::before {
    border: 1px dashed var(--tp-theme-primary);
    animation: spinaround 9s linear infinite;
}
.cm-about-details {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.cm-about-avatar-thumb {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    filter: drop-shadow(0 0 20px rgba(32, 13, 64, 0.06));
    background-color: var(--white-color);
    flex: 0 0 auto;
    text-align: center;
    line-height: 60px;
    margin-right: 15px;
}
.cm-about-avatar-content-home h5 {
    color: var(--primary-color);
}
.hero-caption h2 span {
    color: var(--primary-color);
}
.hero-caption  p {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}
@media only screen and (max-width: 1399.98px) {
    .cm-about-content-wrapper {
        margin-right: 0;
    }
    .cm-about-home-shape-2 {
        right: 0;
    }
}
@media only screen and (max-width: 1199.98px) {
    .hero-caption h2 {
        font-size: 55px;
    }
    .cm-about-content-wrapper {
        margin-left: 0;
    }
    .hero-caption  p br{
        display: none;
    }
    .cm-about-home-shape-2 {
        width: 65%;
    }
    .cm-about-info-content p br{
        display: none;
    }
    .cm-about-btn {
        margin-bottom: 20px;
    }
    .cm-about-avatar{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 575.98px) {
    .hero-caption  p br {
        display: none;
    }
    .hero-caption h2 {
        font-size: 40px;
    }
}
.hero-caption .img-text {
    margin-top: 100px;
    display: flex;
    align-items: center;
}
.hero-caption .img-text img {
    max-width: 200px;
    margin-right: 20px;
    float: left;
}
.hero-caption .img-text span {
    font-size: 14px;
    display: inline-block;
}
.hero-section-img .image-1 {
    max-width: calc( 100% - 200px );
    float: right;
    margin-top: 40px;
    margin-bottom: 40px;
}
.hero-section-img .image-1 img {
    border-radius: 5px;
    transition: all .3s ease;
}
.hero-section-img .image-1 img:hover, .hero-section-img .image-2 img:hover,
.hero-section-img .image-3 img:hover{
    transform: scale(1.05);
}
.hero-section-img .image-3 {
    position: absolute;
    width: 180px;
    top: 0;
    left: 10px;
}
.hero-section-img .image-3 img{
    border-radius: 5px;
    transition: all .3s ease;
}
.hero-section-img .image-2 {
    max-width: 181px;
    position: absolute;
    bottom: -3px;
    left: 10px;
}
.hero-section-img .image-2 img{
    border-radius: 5px;
    transition: all .3s ease;
}
.hero-section-img .text-1 {
    position: absolute;
    top: -9px;
    z-index: 9;
    left: 150px;
    background: #10393bcc;
    padding: 8px 20px;
    padding-left: 15px;
    border-radius: 23px;
    color: #fff;
    line-height: 1;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
}
.hero-section-img .text-1 i{
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 22px;
}
.hero-section-img .text-1:hover{
    margin-left: 20px;
}
.cm-hero-wrapper {
    padding-top: 240px;
    padding-bottom: 245px;
    z-index: 999;
    position: relative;
}
.fix{
    overflow: hidden;
}
.cm-hero-shape {
    position: absolute;
    bottom: 100px;
    z-index: 9;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-animation: tpswing 1s ease-in-out 1s forwards infinite alternate;
    animation: tpswing 1s ease-in-out 1s forwards infinite alternate;
    transform-origin: left center;
}
@media only screen and (max-width: 1399.99px) {
    .cm-hero-shape {
        bottom: 150px;
    }
}
.cm-hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    -webkit-transition: all 10s linear 0s;
    -moz-transition: all 10s linear 0s;
    -o-transition: all 10s linear 0s;
    transition: all 10s linear 0s;
}
@media only screen and (max-width: 1199.99px) {
    .cm-hero-bg {
        background-position: right;
    }
    .cm-hero-wrapper {
        padding-top: 180px;
        padding-bottom: 180px;
    }
    .cm-hero-shape {
        margin-right: -300px;
    }
    .cm-hero-singles::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: #ffffff94;
        top: 0;
        left: 0;
    }
    .hero-section-img .image-3 {
        width: 137px;
        left: 55px;
    }
    .hero-section-img .image-2 {
        max-width: 130px;
        bottom: 4px;
        left: 61px;
    } 
}
@media only screen and (max-width: 991.99px) {
    .cm-hero-wrapper {
        padding-top: 120px;
        padding-bottom: 120px;
    }  
}
.cm-hero-slider .swiper-slide.swiper-slide-active .cm-hero-bg {
    visibility: visible;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
 .cm-hero-play-fin {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--white-color);
    display: inline-block;
    text-align: center;
    line-height: 60px;
    animation: cm-pulse-2 2s infinite;
}
.cm-hero-play-fin i{
    line-height: inherit;
}
.cm-hero-video-content {
    font-size: 16px;
    color: var(--cm-black);
    font-weight: 600;
    margin-left: 20px;    
}
.cm-hero-useractive {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 575.99px) {
    .cm-hero-useractive {
        flex-wrap: wrap;
    }
    .cm-hero-video {
        margin-top: 20px;
    } 
}
.cm-hero-content-wrap {
    opacity: 0;
    transform: translateY(-100px);
}
.cm-hero-slider .swiper-slide.swiper-slide-active .cm-hero-content-wrap {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2500ms ease;
}
.cm-hero-slider .swiper-wrapper {
    height: auto;
}
.cm-hero-useractive {
    opacity: 0;
    transform: translateY(100px);
}
.cm-hero-slider .swiper-slide.swiper-slide-active .cm-hero-useractive  {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2500ms ease;
}
.cm-hero-pagenation{
    left: 0;
    top: 46%;
    width: 34px;
    height: 80px;
    display: flex;
    flex-direction: column;
    margin-left: 60px;
}
@media only screen and (max-width: 1500px) {
    .cm-hero-pagenation{
        margin-left: 10px;
    }
}
@media only screen and (max-width: 1399.99px) {
    .cm-hero-pagenation{
        top: inherit;
        bottom: 5%!important;
        flex-direction: row;
        justify-content: center;
    }
}
@media only screen and (max-width: 991.99px) {
    .cm-hero-pagenation{
        bottom: 0%!important;
    }
}
.p-absolute{
    position: absolute;
}
.p-relative{
    position: relative;
}
.cm-hero-pagenation span{
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #c5c5c5;
    opacity: 1;
    z-index: 9;
    margin-bottom: 8px !important;
}
.cm-hero-pagenation span.swiper-pagination-bullet-active{
    background-color: var(--cm-green);
}

@keyframes cm-pulse-2 {
	0% {
	  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}
	70% {
	  -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
	  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
	}
	100% {
	  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
  }
  
/*=============================
06. brands-area-start
===============================*/

.company-logo-slider-full .single-logo {
    width: 200px;
    padding: 0 50px;
}
.tp-brand-bus-slide .swiper-slide {
    width: 200px!important;
}
.company-logo-slider-full .single-logo img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.company-logo-slider-full .single-logo:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

/*=============================
07. About-area-start
===============================*/ 

.about-us-content h5 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.about-us-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}
@media only screen and (max-width: 767.98px) {
    .about-us-content h2 {
        font-size: 40px;
    }    
}
.about-us-content p {
    margin-bottom: 35px;
    font-size: 16px;
}
.about-us-content ul {
    margin-bottom: 30px;
}
.about-us-content ul li {
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}
.about-us-content ul li i {
    font-size: 16px;
    color: var(--primary-color);
    padding-right: 10px;
    transform: translateY(1px);
}
.about-us-content {
    padding-left: 70px;
}
@media only screen and (max-width: 1199.98px) {
    .about-us-content {
        padding-left: 0;
    }
}
.about-us-image img{
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.about-us-image .ab-im-content {
    background: #fff;
    padding: 25px 25px 25px 20px;
    border-left: 10px solid var(--primary-color);
    box-shadow: 0 2px 40px 0 rgba(21,24,32,.06);
    margin-left: -100px;
    margin-top: 40px;
}
.about-us-image .ab-im-content .icon {
    float: left;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: transparent;
    font-size: 20px;
    background: #f4f5f8;
    border-radius: 50%;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
}
.about-us-image .ab-im-content .con {
    overflow: hidden;
}
.about-us-image .ab-im-content .con strong {
    display: block;
    font-size: 14px;
    margin-top: 2px;
    font-weight: 400;
    margin-bottom: 5px;
}
.about-us-image .ab-im-content .con a {
    color: var(--headding-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}
.about-us-image .ab-im-content .con a:hover{
	color: var(--primary-color);
}
.cm-about-thumb{
    padding-right: 170px;
}
.cm-about-thumb-2{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
@media only screen and (max-width: 1199.99px) {
    .cm-about-thumb-2{
        width: 50%;
    }   
}
.cm-about-shape{
    position: absolute;
    top: 75px;
    left: -70px;
    z-index: -1;
    -moz-animation: cmupdown 1s ease-in-out 1s forwards infinite alternate;
    -webkit-animation: cmupdown 1s ease-in-out 1s forwards infinite alternate;
    animation: cmupdown 1s ease-in-out 1s forwards infinite alternate;
}
.cm-about-solution {
    background-color: var(--white-color);
    box-shadow: 0px 2px 20px 0px rgba(18, 20, 31, 0.08);
    display: flex;
    padding: 20px 70px 20px 40px;
    margin-right: 70px;
    align-items: center;
}
.cu-banne-bg {
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 1199.99px) {
    .cm-about-solution {
        padding: 20px 25px 20px 70px;
        margin-right: 0;
    }  
}
@media only screen and (max-width: 575.99px) {
    .cm-about-solution {
        padding: 20px 25px 20px 20px;
    }  
}
.cm-about-solution-title {
    font-size: 20px;
    color: var(--cm-black);
    line-height: 1.5;
}
@media only screen and (max-width: 1399.99px) {
    .cm-about-content{
        margin-left: 0;
    }
}
.cm-about-solution-content p{
    font-size: 16px;
    line-height: 1.75;
    color: var(--cm-grey);
}
.cm-about-solution-icon {
    margin-right: 23px;
    flex: 0 0 auto;
}
.cm-about-list ul li{
    display: flex;
    margin-bottom: 20px;
}   
.cm-about-list ul li div {
    flex: 0 0 auto;
    margin-right: 15px;
    transform: translateY(-4px);
}
.cm-about-list ul li p{
    font-size: 16px;
    color: #2a2833;
    line-height: 1.2;
    font-weight: 600    
}  
 
/*=============================
08. Section-Headding-area-start
===============================*/ 

.section-headding h5 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-headding h2 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
}
@media only screen and (max-width: 767.98px) {
    .section-headding h2 {
        font-size: 40px;
    }
}
.cm-section-title-pre {
    font-size: 16px;
    color: var(--cm-green);
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;     
}
.cm-hero-title {
    font-size: 80px;
    color: var(--cm-black);
    line-height: 1.1;
    font-weight: 700;
}
@media only screen and (max-width: 767.99px) {
    .cm-hero-title {
        font-size: 60px;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-hero-title {
        font-size: 40px;
    }
}
.cm-section-title {
    font-size: 45px;
    color: var(--cm-black);
    line-height: 1.2;
}
@media only screen and (max-width: 767.99px) {
    .cm-section-title {
        font-size: 40px;
    }
}
@media only screen and (max-width: 1199.99px) {
    .cm-section-title br{
        display: none;
    }
    .cm-science-thumb{
        padding-right: 0;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-section-title {
        font-size: 32px;
    }
}
.cm-section-para {
    font-size: 16px;
    color: var(--cm-grey);
    line-height: 1.8;
}
.cm-hero-pre{
    font-size: 16px;
}
@media only screen and (max-width: 1399.99px) {
    .cm-hero-pre{
        color: var(--cm-black);
    }
}
 @media only screen and (max-width: 991.99px) {
    .cm-hero-pre br{
        display: none;
     }
 }
/*=============================
09. Services Item
===============================*/ 

.cm-service-para p{
    font-size: 16px;
    color: #999cbb;
    line-height: 1.8;  
}
.cm-service-after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--cm-yellow);
    top: 0;
    left: 0;
    transition: all .4s ease;
    opacity: 0;
}
.cm-service-wrap:hover .cm-service-after{
    opacity: .80;
}
@media only screen and (max-width: 991.99px) {
    .cm-service-para {
        margin-top: 0;
    }
}
.cm-service-icon{
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}
.cm-service-wrap:hover .cm-service-icon{
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.cm-service-title a{
    font-size: 20px;
    color: var(--white-color);
    line-height: 1.2; 
}
.cm-service-title a:hover{
    color: var(--cm-yellow);
}

.cm-service-sidebar {
    position: sticky;
    top: 0;
}
.cm-service-widget {
    padding: 30px;
    background-color: #f4f4f4;
}
.cm-service-widget-tab ul li a {
    filter: drop-shadow(2px 0px 0px #0000ff);
    background-color: var(--white-color);
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 32px;
    color: var(--headding-color);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.tp-service-widget-tab ul li a:hover {
    filter: inherit;
    color: var(--cm-green);
}
.cm-service-widget-tab ul li a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background-color: #0000ff;
    top: 0;
    right: 0;
    transition: all 0.4s ease;
}
.cm-service-widget-tab ul li a span i{
    font-size: 20px;
    color: var(--headding-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}
.cm-service-widget-tab ul li a:hover span i{
    color: var(--white-color);
}
.cm-service-widget-tab ul li a:hover::before {
    width: 56px;
}
.cm-service-contact {
    padding: 40px 40px;
    background: var(--white-color);
    padding-bottom: 0;
}
.cm-service-contact-title {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 32px;
}
.cm-service-downloads-title {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 26px;
    color: var(--cm-black);
    font-weight: 800;
}
.cm-service-downloads-item {
    background: var(--white-color);
    padding: 16px 30px;
    border-radius: 15px;
}
.cm-service-downloads-pdf {
    font-size: 36px;
    color: var(--cm-green);
    margin-right: 20px;
}
.cm-service-downloads-link a {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
    text-decoration: underline;
    color: #131313;
    font-weight: 700;
    display: block;
}
.cm-service-downloads-link a:hover {
    color: var(--cm-green);
}
.cm-service-downloads-link span {
    font-size: 14px;
    line-height: 32px;
    color: #727272;
    font-weight: 400;
}
.cm-service-details-wrapper {
    margin-left: 30px;
}
.cm-service-details-title {
    font-size: 36px;
    letter-spacing: -1px;
    line-height: 34px;
    font-weight: 800;
}
.cm-service-details-content p {
    font-size: 16px;
    font-weight: 400;
    color: #6a6a6a;
    line-height: 30px;
    margin-bottom: 15px;
}
.cm-service-details-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cm-service-details-list-item {
    flex: 0 0 auto;
}
.cm-service-details-list-item span {
    display: inline-block;
    margin-bottom: 25px;
    width: 100px;
    height: 100px;
    text-align: center;
    background-color: #f4f4f4;
    transition: all 0.4s ease;
}
.cm-service-details-list-item span i{
    color: var(--cm-green);
    font-size: 52px;
    line-height: 2;
}
.cm-service-details-list-item a {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 32px;
    color: var(--cm-black);
    font-weight: 800;
    display: block;
}
.cm-service-details-quick {
    filter: drop-shadow(4px 0px 20px rgba(30, 22, 22, 0.08));
    background-color: var(--white-color);
    padding: 30px 40px;
}
.cm-service-details-quick p {
    font-size: 16px;
    line-height: 30px;
    color: var(--cm-black);
    font-weight: 700;
    margin: 0;
}
.cm-service-details-list-2 ul li {
    display: flex;
    align-items: center;
}
.cm-service-details-list-2 ul li span {
    width: 60px;
    margin-right: 20px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--cm-green);
    text-align: center;
    line-height: 64px;
    flex: 0 0 auto;
    transition: all 0.4s ease;
    display: inline-block;

}
.cm-service-details-list-2 ul li span i{
    color: var(--white-color);
    font-size: 24px;
    line-height: 2.5;
}
.cm-service-details-list-2 p {
    font-size: 16px;
    font-weight: 400;
    color: #6a6a6a;
    line-height: 30px;
    margin-bottom: 15px;
}
.cm-service-shape-vap-2 {
    top: 80px;
    left: 0;
}
.cm-service-shape-vap {
    right: 0;
    bottom: 64px;
}
.cm-service-vap-wrapper {
    border-top: 3px solid transparent;
    position: relative;
    transition: all 0.4s ease-in;
}
.cm-service-vap-wrapper:hover {
    filter: drop-shadow(0 0 12px rgba(115, 121, 129, 0.08));
    background-color: #ebf4fd;
    border-right: 0;
}
.cm-service-vap-wrapper::before {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    background: var(--primary-color);
    top: 0;
    left: auto;
    right: 0;
    transition: all 0.4s ease-in;
}
.cm-service-vap-wrapper:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}
.cm-service-vap-wrapper:hover {
    filter: drop-shadow(0 0 12px rgba(115, 121, 129, 0.08));
    background-color: #ebf4fd;
    border-right: 0;
}
.cm-service-vap-inner {
    padding: 41px;
    padding-top: 50px;
    padding-bottom: 0;
    border-top: 1px solid #d6e5f3;
    border-right: 1px solid #d6e5f3;
}
.cm-service-vap-btn {
    display: inline-block;
    margin-bottom: 15px;
}
.cm-service-vap-icon {
    top: 50%;
    transform: translateY(-50%);
    left: -6px;
    right: 0;
    text-align: center;
    font-size: 40px;
    color: var(--cm-black);
    transition: all 0.4s ease-in;
    width: 50px;
    margin: 0 auto;
}
.cm-service-vap-icon svg {
    width: 50px;
}
.cm-service-vap-wrapper:hover .cm-service-vap-icon {
    color: var(--primary-color);
}
.cm-service-vap-title a {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 29px;
    color: var(--cm-black);
    font-weight: 800;
    margin-bottom: 10px;
    display: inline-block;
}
.cm-service-vap-inner a:hover {
    color: var(--primary-color);
}
.cm-service-vap-para {
    margin-bottom: 38px;
}
.cm-service-vap-icon-2 i {
    width: 60px;
    height: 34px;
    background: #dde9f6;
    text-align: center;
    line-height: 37px;
    display: inline-block;
    font-size: 16px;
    color: var(--primary-color);
    position: relative;
    transition: all 0.4s ease-in;
    z-index: 1;
}
.cm-service-vap-icon-2 i::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background: var(--primary-color);
    top: 0;
    left: auto;
    right: 0;
    color: var(--white-color);
    transition: all 0.4s ease-in;
    z-index: -1;
}
.cm-service-vap-wrapper:hover .cm-service-vap-icon-2 i {
    color: var(--white-color);
    z-index: 1;
}
.cm-service-vap-inner-bn {
    border-right: 0;
}
.cm-service-vap-wrapper:hover .cm-service-vap-icon-2 i::after {
    width: 100%;
    right: auto;
    left: 0;
}
@media only screen and (max-width: 1199.99px) {
    .cm-service-details-wrapper {
        margin-left: 0;
    }
}
@media only screen and (max-width: 767.99px) {
    .cm-service-vap-inner {
        padding: 25px;
    }
    .cm-banner-button{
        float: left;
        margin-top: 30px;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-service-details-list {
        justify-content: center;
    }
    .hero-section .shap-img-2 {
        width: 100%;
    }
    .cm-about-info-item {
        flex-direction: column;
        margin-right: 0;
    }
    .cm-about-info {
        padding: 38px 20px 34px 20px;
    }
}

/*=============================
10. Why Chooses Us Section
===============================*/ 

.why-chooses-section .w-left-content .item-single .icon {
    float: left;
    background: linear-gradient(90deg, var(--primary-color)  20%, #f6a904 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    margin-right: 18px;
}
.why-chooses-section .w-left-content .item-single {
    margin-bottom: 20px;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 5px;
}
.why-chooses-section .w-left-content .item-single:last-child {
    margin-bottom: 0px;
}
.why-chooses-section .w-left-content .item-single .con {
    overflow: hidden;
}
.why-chooses-section .w-left-content .item-single .con h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}
.why-chosses-content .section-headding {
    margin-left: 100px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 991.98px) {
    .why-chosses-content .section-headding {
        margin-left: 0;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
.why-chosses-content .image-sec {
    position: relative;
}
.why-chosses-content .image-sec img {
    position: relative;
    z-index: -1;
    height: 480px;
    max-width: 370px;
    object-fit: cover;
    border-radius: 5px;
}
.chose-thumb2 img {
    width: 366px;
    height: 408px;
    object-fit: cover;
    position: absolute;
    bottom: -60px;
    right: 0;
    border-radius: 5px;
}
.why-chosses-content {
    position: relative;
    margin-right: 70px;
}
.why-chosses-content .image-sec .video-btn {
    position: absolute;
    z-index: 1;
    top: 16%;
    right: 155px;
}
.video-btn a {
	background: #fff;
	height: 100px;
	width: 100px;
	text-align: center;
	border-radius: 50%;
	line-height: 100px;
	font-size: 30px;
	transition: .5s -webkit-animation ripple-red 1s linear infinite;
	animation: ripple-red 1s linear infinite;
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
}

@keyframes ripple-red {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(2241, 42, 2, 0)
    }
}
.video-btn span {
	display: none;
}
@media only screen and (max-width: 1199.98px) {
    .why-chosses-content {
        margin-right: 0;
    }
    .chose-thumb2 img {
        width: 291px;
        height: 408px;
        bottom: -116px;
        right: 0;
    }
    .why-chooses-section .w-left-content .item-single br{
        display: none;
    }
    .section-headding h2 br{
        display: none;
    }
}

@media only screen and (max-width: 991.98px) {
    .chose-thumb2 img {
        bottom: 0;
    }
    .cu-banne-bg {
        padding: 70px 20px;
    }
}
/*=============================
11. Recent Project
===============================*/ 
.recent-work-item .content {
    background: var(--secondary-color);
    padding: 80px;
    margin-top: 80px;
}
.recent-work-item .content .swiper-wrapper {
    height: auto;
}
@media only screen and (max-width: 1199.98px) {
    .recent-work-item .content {
        padding: 35px;
    }
}
.recent-work-item .thumbnail {
    margin-right: -80px;
}
.recent-work-item .content h3 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.recent-work-item .content  p {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}
.recent-work-item .content a.button-1:after {
    background: #fff;
}
.recent-work-item .content a.button-1:hover {
    color: var(--headding-color);
}

.tp-work-pagenation {
    position: absolute;
    top: 0;
    right: 0;
}
@media only screen and (max-width: 575.98px) {
    .tp-work-pagenation {
        position: inherit;
        margin-top: 30px;
    }
    .why-chosses-content .image-sec img {
        max-width: 100%;
    }
    .why-chooses-section .w-left-content .item-single .icon {
        float: inherit;
        margin-bottom: 16px;
    }
}
.tp-work-pagenation div {
    border: none;
    background: transparent;
    padding: 0;
    line-height: 1;
}
.tp-work-pagenation div {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    font-size: 18px;
    transition: all .3s ease;
    line-height: 1;
}
.tp-work-pagenation div:hover {
    background: var(--primary-color);
}
.cu-section-title-wrpper {
    position: relative;
}
.cm-project-content {
    background: var(--cm-yellow);
    padding: 40px 40px 40px 40px;
    position: absolute;
    width: 100%;
    bottom: -220px;
    left: 0;
    transition: all .5s ease;
}
@media only screen and (max-width: 1199.99px) {
    .cm-project-content {
        padding: 30px 25px 30px 23px;
    }
}
.cm-project-wrap:hover .cm-project-content {
    bottom: 0;
}
.cm-project-thumb{
    transition: all .4s ease;  
}
.cm-project-wrap:hover .cm-project-thumb{
    transform: scale(1.1);
}
.cm-project-icon{
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    background: var(--cm-black);
    color: var(--white-color);
    font-size: 18px;
}
.cm-project-icon i{
    line-height: inherit;
}
.cm-project-location{
    font-size: 16px;
    font-weight: 400;
    color: #2a2833; 
}
.cm-project-title a{
    font-size: 22px;
    color: #2a2833;
    font-weight: 600; 
}
.cm-project-title a:hover{
    color: var(--cm-green);
}  
.cm-project-transparent{
    margin-top: -380px;
}
.cu-portfolio-thumb {
    position: relative;
}
.cu-portfolio-thumb::before {
    height: 0;
    bottom: 0;
    opacity: 0.8;
    background-color: rgb(0, 35, 90);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.cu-portfolio-thumb::after, .cu-portfolio-thumb::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background-image: -moz-linear-gradient(90deg, rgb(0, 35, 90) 0%, rgba(0, 35, 90, 0.5) 32%, rgba(0, 35, 90, 0.04) 95%, rgba(0, 35, 90, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 35, 90) 0%, rgba(0, 35, 90, 0.5) 32%, rgba(0, 35, 90, 0.04) 95%, rgba(0, 35, 90, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 35, 90) 0%, rgba(0, 35, 90, 0.5) 32%, rgba(0, 35, 90, 0.04) 95%, rgba(0, 35, 90, 0) 100%);
    z-index: 0;
}
.cu-portfolio-thumb:hover::before {
    height: 100%;
}
.cu-portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cu-portfolio-thumb-info {
    position: absolute;
    bottom: 30px;
    left: 40px;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    z-index: 1;
}
.cu-portfolio-thumb:hover .cu-portfolio-thumb-info {
    bottom: 115px;
}
.cu-portfolio-thumb-info p {
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 8px;
}
.cu-portfolio-title a{
    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
}
.cu-portfolio-title a:hover{
    color: var(--primary-color);
}
.cu-portfolio-btn {
    position: absolute;
    bottom: 0;
    left: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    z-index: 1;
}
.cu-portfolio-thumb::before {
    height: 0;
    bottom: 0;
    opacity: 0.8;
    background-color: rgb(0, 35, 90);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.cu-portfolio-btn i{
    margin-top: 20px;
}
.cu-portfolio-thumb:hover .cu-portfolio-btn {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}
.cu-portfolio-btn a {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    color: var(--white-color);
    background: var(--primary-color);
}
/*=============================
12. Banner Section
===============================*/ 
.banner-section-1 {
    padding: 150px 0px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner-section-1:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--secondary-color);
    top: 0;
    left: 0;
    opacity: .7;
}
.banner-section-1 .content .section-headding h5 {
    color: #fff;
}
.banner-section-1 .content .section-headding  h2 {
    color: #fff;
    font-size: 90px;
}
.banner-section-1 .content .section-headding {
    margin-bottom: 30px;
}
@media only screen and (max-width: 1399.98px) {
    .banner-section-1 .content .section-headding  h2 {
        font-size: 80px;
    }
}
@media only screen and (max-width: 1199.98px) {
    .banner-section-1 .content .section-headding  h2 {
        font-size: 55px;
    }
}
@media only screen and (max-width: 575.98px) {
    .banner-section-1 .content .section-headding  h2 {
        font-size: 40px;
    }
}
/*=============================
13. Team start
===============================*/ 

  
.team-card-single {
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    text-align: center;
}
.team-card-single .thumb{
    border-radius: 5px;
}
.cm-team-thumb{
    overflow: hidden;
}
.cm-team-thumb img{
    transition: all .4s ease;
}
.cm-team-wrap:hover .cm-team-thumb img{
    transform: scale(1.1);
}
.team-card-single .social {
    position: absolute;
    background: var(--secondary-color);
    width: 40px;
    border-radius: 20px;
    padding: 12px 0px;
    bottom: 15px;
    right: 15px;
    text-align: center;
    transform: scaleY(0);
    transition: all .4s ease;
    transform-origin: bottom;
}
.team-card-single:hover .social {
    transform: scaleY(1);
}
.team-card-single img {
    transition: all .6s ease;
}
.team-card-single:hover img {
    transform: scale(1.2);
}
.team-card-single .social span {
    display: inline-block;
    width: 100%;
    margin: 6px 0px;
}
.team-card-single .social span a {
    color: #fff;
    font-size: 14px;
}
.team-card-single .social span a:hover {
    color: var(--primary-color);
}
.team-card-single .content h4 a{
    font-size: 22px;
    font-weight: 600;
    color: var(--cm-black);
}
.team-card-single .content h4 a:hover{
    color: var(--body-color);
}
.team-card-single .content p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}
.cm-overly{
    background-image: -moz-linear-gradient( 90deg, rgb(42,40,51) 0%, rgba(42,40,51,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(42,40,51) 0%, rgba(42,40,51,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(42,40,51) 0%, rgba(42,40,51,0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: perspective(500px) rotateY(-20deg);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;  
}
.cm-team-wrap:hover .cm-overly{
    transform: perspective(500px) rotateY(0);
    opacity: 1;
    visibility: visible;
}   
.cm-team-title a{
    font-size: 22px;
    color: var(--cm-black);
}
.cm-team-title a:hover{
    color: var(--cm-green);
}
.cm-team-pre {
    font-size: 16px;
    color: var(--cm-grey);
}
.cm-team-content{
    background: var(--white-color);
    padding: 25px 20px 25px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 40px;
    right: 0;
    transform: perspective(500px) rotateY(20deg);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.team-details-border {
    padding: 70px 100px;
    background: var(--white-color);
    border: 1px solid #EAEAEF;
}
.team-details-thumb{
    margin-right: 60px;
}
.team-details-subtitle {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cm-black);
}
.team-details-title {
    font-size: 44px;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    font-weight: 700;
}
.team-details-contact-content p a{
    font-weight: 500;
    font-size: 22px;
    color: var(--cm-black);
    margin-bottom: 0;
}
.team-details-contact-content p a:hover{
    color: var(--cm-green);
}
.team-details-content-para {
    font-size: 16px;
    line-height: 1.62;
    margin-bottom: 30px;
    color: var(--cm-grey);
    font-weight: 400;
}
.team-details-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    background: var(--white-color);
    border: 1px solid #EAEAEF;
    color: var(--cm-black);
}
.team-details-social a svg{
    transform: translateY(-2px);
}
.team-details-social a i {
    color: var(--cm-black);
    font-size: 16px;
    line-height: 2.5;
    transition: all .4s ease;
}
.team-details-social a:hover {
    color: var(--white-color);
    background-color: var(--cm-green);
    border-color: var(--cm-green);
}
.team-details-social a:hover i{
    color: var(--white-color);
}
.team-details-about-title {
    font-size: 40px;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    font-weight: 600;
}
.team-details-about-content p {
    font-size: 16px;
    line-height: 1.62;
    color: var(--cm-grey);
    opacity: 0.9;
    margin-bottom: 25px;
}
.team-details-about-list ol li {
    font-size: 16px;
    color: var(--cm-grey);
    opacity: 0.9;
    font-weight: 400;
}
.team-details-about-border {
    border-bottom: 1px solid #EAEAEF;
}
@media only screen and (max-width: 1199.99px) {
    .team-details-border {
        padding: 70px 70px;
    }
    .team-details-thumb {
        margin-right: 30px;
    }
    .team-details-about-content p br{
        display: none;
    }
}
@media only screen and (max-width: 991.99px) {
    .team-details-thumb {
        margin-right: 0;
    }
    .team-details-content {
        padding-left: 0;
        padding-right: 0;
    }
    .team-details-border {
        padding: 19px 19px;
    }
    .cm-about-home-img-wrapper {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 767.99px) {
    .cm-team-content{
        margin: 10px;
    }

}
.cm-team-wrap:hover .cm-team-content{
    transform: perspective(500px) rotateY(0);
    opacity: 1;
    visibility: visible;
}
/*=============================
14. cm-banifits-area-start
===============================*/ 
.cm-banifits-thumb{
    padding-right: 290px;
    padding-top: 185px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 1199.99px) {
    .cm-banifits-thumb{
        padding-right: 100px;
    }
}
@media only screen and (max-width: 991.99px) {
    .cm-banifits-thumb{
        padding-right: 200px;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-banifits-thumb{
        padding-right: 100px;
    }
}
.cm-banifits-thumb-2{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding-left: 230px;
    padding-right: 50px;
    padding-top: 20px;
}
@media only screen and (max-width: 1199.99px) {
    .cm-banifits-thumb-2{
        padding-left: 100px;
    }
}
@media only screen and (max-width: 991.99px) {
    .cm-banifits-thumb-2{
        padding-left: 230px;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-banifits-thumb-2{
        padding-left: 100px;
        padding-right: 0;
    }
}
.cm-banifits-thumb-3{
    position: absolute;
    right: 75px;
    bottom: 30px;
    z-index: -1;
}
.cm-banifits-shape{
    position: absolute;
    top: 120px;
    left: 0;
}
.cm-banifits-solution{
    display: flex;
    align-items: center;
}
.cm-banifits-solution-icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--cm-black);
    display: inline-block;
    text-align: center;
    transition: all .4s ease;
}
.cm-banifits-solution-icon img{
    margin-top: 19px;
}
.cm-banifits-solution:hover .cm-banifits-solution-icon{
    background: var(--cm-green);
}
@media only screen and (max-width: 575.99px) {
    .cm-banifits-solution{
        flex-wrap: wrap;
    }
    .cm-banifits-solution-icon{
        margin-bottom: 20px;
    }
    .cm-about-solution-content br {
        display: none;
    }
}
/*=============================
15. Counter Section
===============================*/
.counter-up-section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.counter-up-section-bg:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff00005e;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 5px;
    z-index: -1;
}
.counter-item .icon {
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    font-size: 40px;
    margin-bottom: 12px;
}
.counter-item .icon i{
    transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
}
.counter-item:hover .icon i{
    -webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}
.counter-item  .title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
}
.counter-item  .title h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
}

.counter-item p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}
.cm-counter-content{
    background-color: var(--white-color);
    box-shadow: 0px 0px 60px 0px rgba(23, 19, 4, 0.08);
    width: 100%;
    transition: all .4s ease;
    padding: 35px 20px;
    overflow: hidden;
}
.cm-counter-content:hover{
    background: var(--cm-green);
}
.cm-counter-count{
    color: var(--cm-green);
    font-size: 45px;
    transition: all .4s ease;
}
.cm-counter-content:hover .cm-counter-count{
    color: var(--white-color);
}
.cm-counter-title{
    color: #2a2833;
    font-size: 18px;
    font-weight: 600;
    transition: all .4s ease;
}
.cm-counter-content:hover .cm-counter-title{
    color: var(--white-color);
}
.cm-counter-shape{
    position: absolute;
    top: -30px;
    right: 0;
    transition: all .4s ease;
}
.cm-counter-content:hover .cm-counter-shape{
    top: 0;
}
.cm-counter-space{
    padding-bottom: 500px;
}
.cm-counter-transparent{
    margin-top: -80px;
}
.bg-position{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
/*=============================
16. Pricing Plan
===============================*/  
.pricing-imem-card.active{
    box-shadow: 0 5px 70px rgba(32,35,66,.1);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.pricing-imem-card .headding-card {
    padding: 40px;
    padding-bottom: 30px;
    padding-top: 70px;
}
.pricing-imem-card .headding-card span.badge-p {
    position: absolute;
    top: 9px;
    right: -30px;
    background: var(--secondary-color);
    color: #fff;
    height: 35px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    width: 140px;
    text-align: center;
    justify-content: center;
    font-size: 13.5px;
    letter-spacing: 1px;
    transform: rotate(35deg);
}
.pricing-imem-card .headding-card h4 {
    font-weight: 600;
    font-size: 16px;
    color: var(--body-color);
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pricing-imem-card .headding-card h2 {
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 1px;
}
.pricing-imem-card .headding-card p {
    font-size: 15px;
    color: var(--body-color);
    font-weight: 400;
    letter-spacing: -0.03em;
}
.pricing-imem-card .pricing-middle {
    padding: 50px;
    padding-top: 0;
    padding-bottom: 70px;
}
@media only screen and (max-width: 1199.99px) {
    .pricing-imem-card .pricing-middle {
        padding: 20px;
        padding-bottom: 70px;
    }
}
.pricing-imem-card .pricing-middle ul{
    margin-bottom: 30px;
}
.pricing-imem-card .pricing-middle ul li {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    font-size: 17px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd6;
}
.pricing-imem-card .pricing-middle ul li.inactive {
    opacity: .7;
}
.pricing-imem-card .pricing-middle ul li i {
    margin-right: 4px;
    font-size: 14px;
    color: var(--headding-color);
}
.pricing-imem-card .pricing-middle ul li.inactive i {
    color: red;
}
.pricing-imem-card .pricing-middle a.button-1 {
    margin-top: 20px;
    padding: 15px 28px;
}
/*=============================
17. Testimonial Card
===============================*/
.testimonial-card {
    background: #fff;
    padding: 84px 40px 53px 40px;
    border-radius: 5px;
    position: relative;
    border: 1px solid rgb(230, 230, 230);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 60px 0px rgba(35, 35, 49, 0.08);
    transition: all .4s ease;
}
.swiper-container.tp-testimonial-active {
	padding-top: 55px;
	padding-bottom: 40px;
}
.testimonial-card:hover {
    border-color: var(--primary-color);
}
.testimonial-card::before {
    position: absolute;
    bottom: -20px;
    left: 50px;
    content: "";
    height: 30px;
    width: 50px;
    background: rgb(255, 255, 255);
    clip-path: polygon(100% 0, 0 0, 0 100%);
    box-shadow: 0px 4px 60px 0px rgba(35, 35, 49, 0.08);
    z-index: 2;
}
.cu-testimonial-shape {
    position: absolute;
    right: 0;
    top: 0;
    filter: saturate(0);
}
.testimonial-card .thum img {
    width: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.testimonial-card .rating-a {
    text-align: center;
    color: var(--primary-color);
}
.testimonial-card .rating-a .quote {
    line-height: 1;
    font-size: 45px;
    margin-right: 5px;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: var(--headding-color);
    color: transparent;
    transform: translateY(5px);
}
.testimonial-card .rating-a  .rating i {
    font-size: 18px;
    color: var(--primary-color);
}
.testimonial-card .content {
    margin-bottom: 20px;
}
.testimonial-card .t-btm {
    overflow: hidden;
}
.testimonial-card .t-btm .thum {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 20px;
}
@media only screen and (max-width: 767.98px) {
    .testimonial-card .t-btm .thum {
        width: 40px;
        height: 40px;
    }  
}
.testimonial-card .t-btm .thum img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-card .t-btm .r-name {
    overflow: hidden;
    margin-bottom: 30px;
}
.testimonial-card .t-btm .r-name h4 {
    font-size: 20px;
    margin-top: 4px;
    padding-bottom: 3px;
    font-weight: 700;
    letter-spacing: 0;
}
@media only screen and (max-width: 767.98px) {
    .testimonial-card .t-btm .r-name h4 {
        padding-bottom: 0;
    }
}
.testimonial-slider .testimonial-card {
    width: 340px;
}
/*=============================
18. Banner 2
===============================*/
.home-banner2-sec {
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 50px 40px;
    padding-bottom: 10px;
}
@media only screen and (max-width: 991.98px) {
    .cm-cta-banner{
        text-align: left!important;
    }
}
.home-banner2-sec h2 {
    font-size: 42px;
    color: #fff;
    letter-spacing: 1px;
}
@media only screen and (max-width: 575.98px) {
    .home-banner2-sec h2 {
        font-size: 25px;
    }
}
/*=============================
19. Blog Item
===============================*/
.blog-item {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 5px;
}
.blog-item .thumbnail img{
    transition: all .5s ease-in-out;
    width: 100%;
}
.blog-item:hover .thumbnail img {
    transform: scale(1.1) rotate(3deg);
}
.blog-item .thumbnail {
    overflow: hidden;
}
.blog-item .content {
    padding: 30px;
    position: relative;
}
.blog-item .content h2 a {
    color: var(--headding-color);
    line-height: 30px;
    font-size: 24px;
}
.blog-item .content h2 {
    margin: 17px 0px;
    font-weight: 700;
}
.blog-item .content h2 a:hover {
    color: var(--primary-color);
}
.cm-date span {
    font-size: 13px;
    display: flex;
    align-items: center;
}
.cm-date span i{
    margin-right: 6px;
}
.blog-item .content .date i {
    margin-right: 3px;
}
.blog-item .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 20px;
}
.blog-item .content .b-btm span.admin {
    font-size: 13px;
    line-height: 1;
    color: var(--headding-color);
}
.blog-item .content .b-btm span.admin i {
    margin-right: 2px;
    font-size: 15px;
    color: var(--primary-color);
}
.blog-item .content .b-btm a.read-more {
    color: var(--headding-color);
    font-size: 16px;
}
.blog-item .content .b-btm a.read-more:hover {
    color: var(--primary-color);
}
/*=============================
20 .pagenation
===============================*/

.cm-pagenation ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .cm-pagenation ul li {
    margin-right: 15px;
  }
  .cm-pagenation ul li a {
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background-color: #dedede7d;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    font-size: 14px;
    letter-spacing: 0px;
    color:  var(--cm-black);
    font-weight: 700;
    transition: all 0.4s ease;
  }
  .cm-pagenation ul li a i{
    line-height: 45px;
  }
  .cm-pagenation ul li a:hover {
    background: var(--cm-black);
    color: var(--white-color);
  }
  .cm-pagenation ul li .active {
    background: var(--cm-black);
    color: var(--white-color);
  }
/*=============================
21. Footer
===============================*/
.footer {
    background-color: var(--headding-color);
    background-size: contain;
    background-repeat: no-repeat;
}
.footer-top-spacing{
    padding-top: 235px;
}
.footer-top {
    padding-top: 235px;
    padding-bottom: 70px;
}
.footer-widgets-item .f-logo {
    margin-bottom: 30px;
}
.cm-banner-transparent{
    margin-bottom: -125px;
}
.footer-widgets-item p {
    color: #c7c7c7;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}
.footer-widgets-item .f-social span {
    margin-right: 6px;
}
.footer-widgets-item .f-social span:last-child{
    margin-right: 0;
}
.footer-widgets-item .f-social span a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: #414142;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.footer-widgets-item .f-social span a:hover{
    background: var(--primary-color);
}
.footer-widgets-item h3.title {
    line-height: 1.2;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    margin-bottom: 37px;
    padding-bottom: 15px;
    color: #fff;
}
.footer-widgets-item h3.title::before {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 20%;
    height: 1px;
    background: var(--primary-color);
    bottom: 0;
}
.footer-widgets-item h3.title::after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #6765654a;
    bottom: 0;
}
.footer-widgets-item .personal-info .single {
    padding-bottom: 16px;
    display: flex;
}
.footer-widgets-item .personal-info .single:last-child{
	padding-bottom: 0px;
}
.footer-widgets-item .personal-info .single  .icon {
    font-size: 16px;
    padding-right: 12px;
    padding-top: 1px;
    color: var(--primary-color);
}
.footer-widgets-item .personal-info .single  .con h4 {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1.2;
}
.footer-widgets-item .personal-info .single  .con a{
	color: #c7c7c7;
}
.footer-widgets-item .personal-info .single  .con a:hover{
	color: var(--primary-color);
}
.footer-widgets-item .personal-info .single  .con p {
    color: #c7c7c7;
    font-size: 13.5px;
    line-height: 20px;
    padding-top: 4px;
    margin-bottom: 0;
    font-weight: 400;
}
.footer-widgets-item ul li {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    padding: 2.5px 0;
}
.footer-widgets-item ul li a {
    color: #c7c7c7;
    font-size: 13.5px;
    font-weight: 400;
}
.footer-widgets-item ul li a i{
    color: var(--primary-color);
    margin-right: 3px;
}
.footer-widgets-item ul li a:hover{
    color: var(--primary-color);
}
.footer-bottom {
    background: #020016;
    padding: 30px 0;
}
.footer-bottom p {
    color: #c7c7c7;
}
.cm-instagram-title{
    font-size: 39px;
    line-height: 1.2;
    color: var(--white-color);
}
.cm-instagram-content p{
    font-size: 16px;
    color: #e4e4e4;
}
.cm-instagram-link {
    border-radius: 50%;
    background-color: var(--cm-yellow);
    position: absolute;
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    top: 50%;
    transform: translateY(-50%) scale(.6);
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: all .4s ease;
    z-index: 4;
}
.cm-instagram-thumb{
    position: relative;
}
.cm-instagram-thumb::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -2px;
    left: 0;
    right: 0;
    background-image: -moz-linear-gradient(90deg, rgb(42, 40, 51) 0%, rgba(42, 40, 51, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(42, 40, 51) 0%, rgba(42, 40, 51, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(42, 40, 51) 0%, rgba(42, 40, 51, 0) 100%);
    transform: perspective(500px) rotateY(-20deg);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: all .4s ease;
}
.cm-instagram-thumb:hover .cm-instagram-link {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    visibility: visible;
}
.cm-instagram-thumb:hover::before{
    transform: perspective(500px) rotateY(0);
    opacity: 1;
    visibility: visible;
}
.cm-instagram-link i{
    line-height: inherit;
    color: var(--cm-black);
    font-size: 22px;
}
.footer-widgets-para{
    font-size: 24px;
    color: var(--white-color);
    line-height: 1.4; 
}
.cm-footer-social{
    display: flex;
    flex-wrap: wrap;
}
.cm-footer-social a {
    background-color: #3f3f3f;
    width: 38px;
    height: 38px;
    display: inline-block;
    text-align: center;
    line-height: 38px;
    color: var(--white-color);
    font-size: 18px;
    margin-right: 15px;
}
.cm-footer-social a:hover {
    color: var(--cm-yellow);
}
.cm-footer-social i{
    line-height: inherit;
}
.cm-footer-widgets-title{
    font-size: 24px;
    color: var(--white-color);
}
.cm-footer-widgets ul li {
    display: block;
    color: #bababa;
}
.cm-footer-widgets ul li a{
    color: #bababa;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    transition: all .3s ease;
}
.cm-footer-widgets ul li a:hover{
    padding-left: 15px;
    color: var(--cm-yellow);
} 
.cm-footer-widgets ul li a:after{
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: var(--cm-yellow);
    transition: all .3s ease;
}
.cm-footer-widgets ul li a:hover::after{
    width: 10px;
}
.cm-footer-copyright p{
    color: #e4e4e4;
    font-size: 16px;
}
.cm-footer-copyright a{
    color: var(--cm-yellow);
}
.cm-footer-privacy{
    text-align: right;
}
@media only screen and (max-width: 767.99px) {
    .cm-footer-privacy{
        text-align: left;
        margin-top: 20px;
    }
}
.cm-footer-privacy a{
    color: #e4e4e4;
    font-size: 16px;
}
.cm-footer-privacy a:hover{
    color: var(--cm-yellow);
}
.cm-footer-privacy span{
    color: #e4e4e4;
    font-size: 16px;
    margin: 0 10px;
}
.cm-footer-bottom-border{
    border-top: 1px solid #575757;
    padding: 34px 0px;
}
@media only screen and (max-width: 1199.99px) {
    .cm-footer-widgets {
        margin-left: 0;
    }
    .cm-footer-widgets-2{
        margin-left: 40px;
    }
}
@media only screen and (max-width: 767.99px) {
    .cm-footer-widgets-2{
        margin-left: 0;
    }
} 
/*=============================
22. Breadcrumb
===============================*/ 
.breadcrumb-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 140px 0;
    position: relative;
    z-index: 1;
}
.breadcrumb-section:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(24 24 24);
    top: 0;
    left: 0;
    opacity: 0.5;
}
.breadcrumb-section h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
    .cm-banner-btn{
        float: left;
        margin-top: 30px;
    }
}
@media only screen and (max-width: 575.98px) {
    .breadcrumb-section h2 {
        font-size: 40px;
    }
}
.breadcrumb-section  ul li {
    display: inline-block;
    color: #fff;
    line-height: 25px;
    text-transform: uppercase;
    font-size: 13px;
    padding: 0 5px;
}
.breadcrumb-section  ul {
    background: hsla(0,0%,100%,.1);
    display: inline-block;
    padding: 10px 18px;
    border-radius: 2px;
}
.breadcrumb-section ul li a {
    color: var(--border-color);
}
.breadcrumb-section ul li a:hover {
    color: rgb(182 182 182);
}
/*=============================
23. About Banner
===============================*/ 
.about-banner-section .a-banner-img {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.about-banner-section .a-banner-img .video-btn {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    align-items: center;
    display: inline-flex;
}
.about-banner-section .a-banner-img:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #10393bab;
    z-index: 1;
    top: 0;
    left: 0;
}
/* 
 * ABout Page CLient Logo
*/
.ab-logo {
    padding: 8px 38px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.ab-logo:hover{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
/*=============================
24. Contact Us
===============================*/ 
.contact-form .single-input {
    width: 100%;
    position: relative;
}
.contact-form .single-input input {
    width: 100%;
    padding: 18px 20px;
    background: #f2f4f8;
    border: 1px solid transparent;
    transition: all .3s ease;
    font-weight: 500;
    padding-left: 40px;
}
.contact-form .single-input input:focus{
    border-color: var(--primary-color);
}
.contact-form .single-input input::placeholder{
    color: var(--body-color);
    opacity: .5;
}
.contact-form .single-input i {
    position: absolute;
    left: 16px;
    top: 11px;
    font-size: 20px;
}
.contact-form button{
    border: none;
}
.contact-form .single-input textarea {
    width: 100%;
    padding: 18px 20px;
    background: #f2f4f8;
    border: 1px solid transparent;
    transition: all .3s ease;
    font-weight: 500;
    padding-left: 40px;
    height: 150px;
}
.contact-form .single-input textarea:focus{
    border-color: var(--primary-color);
}
.info-box-sec {
    padding-left: 50px;
}
.c-info-box {
    background: linear-gradient(60deg, var(--secondary-color) 47%, var(--primary-color) 160%);
    border-radius: 2px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
}
.c-info-box .icon {
    float: left;
    margin-right: 20px;
    font-size: 56px;
    color: var(--primary-color);
    line-height: 56px;
}
.c-info-box .con {
    overflow: hidden;
}
.c-info-box i {
    position: absolute;
    opacity: .3;
    color: var(--primary-color);
    font-size: 84px;
    bottom: -16px;
    line-height: 1;
    right: -15px;
}
.c-info-box .icon i {
    position: relative;
    font-size: inherit;
    opacity: 1;
    line-height: inherit;
    bottom: inherit;
    right: inherit;
}
.c-info-box .con h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}
.c-info-box .con  p {
    color: #fff;
}
.cm-contact-counter-content {
    background: var(--cm-black);
    padding: 35px 40px;
    height: 100%;
}
@media only screen and (max-width: 1600px) {
    .cm-contact-counter-content {
        padding: 35px 20px;
    }
}
.cm-contact-counter-count{
    font-size: 48px;
    color: var(--cm-yellow);
}
.cm-contact-counter-title{
    font-size: 18px;
    color: var(--white-color);
}
.cm-contact-counter-content-2{
    background: var(--cm-yellow);
}
.cm-contact-counter-wrap{
    position: absolute;
    bottom: 0;
}
.cm-contact-thumb-wrap {
    margin-right: 30px;
}

@media only screen and (max-width: 1399.99px) {
    .contact-button-2 {
        margin-left: 10px;
    }
    .cm-header-search input {
        width: 192px;
    }
}
@media only screen and (max-width: 1199.99px) {
    .cm-contact-thumb-wrap {
        margin-right: 0;
    }
    .header-top-2-left a {
        margin-right: 20px;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-contact-counter-wrap{
        position: inherit;
    }
    .cm-contact-wrap {
        margin-top: 360px;
    }
}
.cm-black{
    color: var(--cm-black)!important;
}
.cm-contact-title{
    font-size: 30px;
    color: var(--cm-black);
}
.cm-contact-wrap{
    background: var(--white-color);
    padding: 80px;
    padding-bottom: 60px;
    box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);       
}

.cm-contact-map-box {
    line-height: 1;
}
.cm-contact-map-box iframe {
    height: 750px;
    width: 100%;
    filter: saturate(0);
}
.cm-contact-4-thumb {
    margin-right: 20px;
}
.cm-contact-4-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
}
.cm-contact-4-content ul li {
    display: block;
    list-style: none;
}
.cm-contact-4-content ul li a {
    line-height: 1.62;
    color: var(--td-grey-2);
    font-size: 16px;
}
.cm-contact-4-content ul li a:hover {
    color: var(--cm-green);
}
@media only screen and (max-width: 1600px) {
    .cm-contact-wrap{
        padding: 30px;
        margin-left: 0;     
    }
}
@media only screen and (max-width: 991.99px) {
    .cm-contact-wrap{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-contact-wrap{
        margin-top: 350px;
        margin-bottom: 0;
    }
}
.cm-contact-input input{
    font-size: 16px;
    color: var(--cm-grey);
    background: #f5f5f8;
    width: 100%;
    padding: 17px 30px;
    border: 1px solid transparent;
}
.cm-contact-input input:focus{
    border: 1px solid var(--cm-green);
}
.cm-contact-wrap form{
    margin-bottom: 0;
}
.cm-contact-input input::placeholder{
    font-size: 16px;
    color: var(--cm-grey);
}
.cm-contact-input textarea{
    font-size: 16px;
    color: var(--cm-grey);
    background: #f5f5f8;
    width: 100%;
    height: 150px;
    resize: none;
    padding: 17px 30px;
    border: 1px solid transparent;
}
.cm-contact-input button{
    border: none;
}
.cm-contact-input textarea:focus{
    border: 1px solid var(--cm-green);
}
.cm-contact-input textarea::placeholder{
    font-size: 16px;
    color: var(--cm-grey);
}
.cm-contact-man-shape {
    position: absolute;
    bottom: 0;
    margin-left: -85px;
}
@media only screen and (max-width: 1600px) {
    .cm-contact-man-shape {
        margin-left: 0;
    }
}
@media only screen and (max-width: 991.99px) {
    .cm-contact-map-box iframe {
        height: 550px;
    }
    .cm-contact-4-form .cm-contact-wrap {
        margin-top: 0;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-contact-map-box iframe {
        height: 400px;
    }
    .cm-contact-4-thumb {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .cm-contact-4-form .cm-contact-wrap {
        margin-top: 0;
    }
}
.cm-contact-man-shape img{
    width: 100%;
}
.cm-contact-thumb img{
    height: 100%;
    object-fit: cover;
}  
/* 
 * Pagination
*/
.pagination {
    margin-top: 10px;
}
.pagination ul {
    margin: 0 auto;
}
.pagination ul li {
    display: inline-flex;
    margin: 0 3px;
}
.pagination ul li a {
    border: 1px solid #f6f7f9;
    background: #fff;
    width: 45px;
    height: 45px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    color: var(--body-color);
    font-weight: 500;
    transition: all .3s ease;
}
.pagination ul li a:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.pagination ul li span {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    width: 45px;
    height: 45px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    transition: all .3s ease;
}
/*=============================
25. Blog Sidebar
===============================*/ 
.sidebar-widgets-item {
    padding: 42px 40px;
    background: var(--section-bg);
    border-left: 5px solid var(--secondary-color);
    margin-left: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.sidebar-widgets-item .search-f {
    position: relative;
    width: 100%;
}
.sidebar-widgets-item .search-f input {
    width: 100%;
    position: relative;
    border: 1px solid transparent;
    padding: 16px 20px;
    transition: all .3s ease;
}
.sidebar-widgets-item .search-f input:focus {
    border-color: var(--primary-color);
}
.sidebar-widgets-item .search-f button {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    border: none;
    color: #fff;
    background: var(--primary-color);
    font-size: 16px;
}
.sidebar-widgets-item h2 {
    margin-bottom: 25px;
    font-size: 22px;
    letter-spacing: 1px;
}
.sidebar-widgets-item .s-latest-blog .s-blog {
    margin-bottom: 25px;
    overflow: hidden;
}
.sidebar-widgets-item .s-latest-blog .s-blog:last-child {
    margin-bottom: 0px;
}
.sidebar-widgets-item .s-latest-blog .s-blog .img {
    width: 80px;
    float: left;
    margin-right: 10px;
}
.sidebar-widgets-item .s-latest-blog .s-blog .con {
    overflow: hidden;
}
.sidebar-widgets-item .s-latest-blog .s-blog .con span {
    font-size: 13px;
    margin-bottom: 2px;
    display: inline-block;
}
.sidebar-widgets-item .s-latest-blog .s-blog .con span i {
    color: var(--primary-color);
}
.sidebar-widgets-item .s-latest-blog .s-blog .con h4 {
    font-size: 15px;
    font-weight: 600;
}
.sidebar-widgets-item .s-latest-blog .s-blog .con h4 a {
    color: var(--headding-color);
}
.sidebar-widgets-item .s-latest-blog .s-blog:hover .con h4 a {
    color: var(--primary-color);
}
.sidebar-widgets-item ul.categories li {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}
.sidebar-widgets-item ul.categories li:last-child {
    margin-bottom: 0;
}
.sidebar-widgets-item ul.categories li a {
    color: var(--body-color);
}
.sidebar-widgets-item ul.categories li a:hover {
    color: var(--primary-color);
}
.sidebar-widgets-item ul.tags li {
    display: inline-block;
    margin: 2px;
    margin-bottom: 6px;
}
.sidebar-widgets-item ul.tags li a {
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
    color: var(--body-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.sidebar-widgets-item ul.tags li a:hover {
    color: #fff;
    background: var(--primary-color);
}
.cm-blog-spacing{
    padding-top: 250px;
}
@media only screen and (max-width: 575.99px) {
    .cm-blog-spacing{
        padding-top: 120px;
    }
}
.cm-blog-meta span{
    font-size: 14px;
    color: #8f8e9a;
}
.cm-blog-title a{
    font-size: 26px;
    color: var(--cm-black);
    line-height: 1.3;
}
@media only screen and (max-width: 1199.99px) {
    .cm-blog-title a{
        font-size: 24px;
    }
}
.cm-blog-title a:hover{
    color: var(--cm-green);
}
.cm-blog-btn{
    color: #8f8e9a;
    font-size: 14px;
}
.cm-blog-btn:hover{
    color: var(--cm-green);
}
.cm-blog-content{
    padding: 20px 30px 0px 30px;
}
.cm-blog-wrap .cm-service-after {
    background: var(--cm-black);
}
.cm-blog-wrap:hover .cm-service-after {
    opacity: .80;
}
.cm-blog-wrap:hover .cm-service-icon {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
/*=============================
26. Blog Details
===============================*/ 
.blog-details-full .auth-con ul li {
    display: inline-block;
    margin-right: 20px;
}
.blog-details-full .auth-con ul li:last-child {
    margin-right: 0;
}
.blog-details-full .auth-con ul li i {
    color: var(--primary-color);
    margin-right: 3px;
}
.blog-details-full .auth-con ul li a {
    color: var(--body-color);
}
.blog-details-full .auth-con ul li a:hover {
    color: var(--primary-color);
}
.content-default-style p {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
}
.content-default-style  img {
    margin-bottom: 20px;
}
.content-default-style ul {
    margin-bottom: 20px;
    list-style: inside;
    margin-left: 30px;
}
.content-default-style ul li {
    line-height: 30px;
    font-weight: 600;
    color: var(--headding-color);
}
.content-default-style ol li {
    line-height: 30px;
    font-weight: 600;
    color: var(--headding-color);
}
.content-default-style ol {
    margin-left: 12px;
}
.content-default-style h1, 
.content-default-style h2, 
.content-default-style h3, 
.content-default-style h4, 
.content-default-style h5, 
.content-default-style h6 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}
.cm-postbox-content-2 p {
    line-height: 1.62;
    font-size: 16px;
    font-weight: 400;
}
.cm-postbox-comment-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.cm-postbox-comment-avatar{
    flex: 0 0 auto;
}
.cm-postbox-comment-avatar img{
    width: 80px;
}
.cm-postbox-comment-name h5 {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}
.cm-postbox-comment-name h5 a{
    color: var(--cm-black);
}
.cm-postbox-comment-name .post-meta {
    font-weight: 400;
    color: #666;
}
.cm-postbox-comment-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    color: #666;
    margin-bottom: 20px;
}
.cm-postbox-comment-reply a {
    font-size: 14px;
    line-height: 1;
    color: var(--cm-black);
}
.cm-postbox-comment-reply a i {
    border: 1px solid #e4e4e4;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
}
.cm-postbox-comment .children {
    margin-left: 110px;
}
.cm-postbox-comment-form-content {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
}
.cm-postbox-comment-form-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
}
.cm-postbox-comment-input input, textarea {
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    padding: 20px 30px;
    line-height: 1.14;
    color: var(--cm-grey);
    background: #f5f5f8;
    border: 1px solid #d5dde9;
    height: 54px;
}
.cm-postbox-comment-input input:focus {
    background: none;
    border: 1px solid var(--cm-green);
}
.cm-postbox-comment-textarea textarea {
    height: 180px;
    resize: none;
}
.cm-postbox-comment-textarea textarea:focus {
    background: none;
    border: 1px solid var(--cm-green);
}
.cm-postbox-comment-btn button{
    border: none;
    outline: none;
}
.cm-blog-sidebar-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 17px;
}
.cm-blog-sidebar-input {
    position: relative;
}
.cm-blog-sidebar-input input {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.14;
    height: 56px;
    color: #999;
    background: #f5f5f5;
    border: 1px solid transparent;
    padding-left: 20px;
    width: 100%;
    padding-right: 60px;
}
.cm-blog-sidebar-input input:focus {
    border: 1px solid var(--cm-green);
    background: none;
}
.cm-blog-sidebar-input button {
    width: 54px;
    height: 100%;
    background: var(--cm-green);
    text-align: center;
    line-height: 54px;
    color: var(--white-color);
    position: absolute;
    top: 0;
    right: 0;
    outline: none;
    border: none;
}
.cm-blog-post-thumb img{
    width: 80px;
}
.cm-blog-post {
    display: flex;
    align-items: center;
}
.cm-blog-post-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.43;
}
.cm-blog-post-title a:hover {
    color: var(--cm-green);
}
.cm-blog-post-title a {
    color: var(--headding-color);
}
.cm-blog-post-thumb {
    margin-right: 15px;
    flex: 0 0 auto;
}
.cm-blog-post-meta span {
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 8px;
    display: block;
}
.cm-blog-sidebar-widget-content .cm-service-widget-tab ul li a{
    border: 1px solid #e6e6e6;
}
.sidebar-widgets-items ul li{
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 3px;
}
.sidebar-widgets-items ul li a{
    border: 1px solid #e6e6e6;
    display: inline-block;
    padding: 10px 20px;
    color: var(--cm-black);
}
.sidebar-widgets-items ul li a:hover{
    background: var(--cm-green);
    color: var(--white-color);
    border-color: var(--cm-green);
}
.cm-postbox-wrapper-space {
    margin-right: 70px;
}
@media only screen and (max-width: 1199.99px) {
    .cm-postbox-wrapper-space {
        margin-right: 0;
    }
}
@media only screen and (max-width: 767.99px) {
    .cm-postbox-comment .children {
        margin-left: 0;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-postbox-comment-box {
        flex-wrap: wrap;
    }
    .cm-postbox-comment-avatar {
        margin-bottom: 20px;
        margin-right: 0;
    }
}
/*=============================
27. Portfolio
===============================*/ 
.portfolio-item {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 5px;
    overflow: hidden;
}
.cu-portfolio-thumb img{
    transition: all .4s ease;

}
.cu-portfolio-thumb:hover img{
    transform: scale(1.1);
}
.portfolio-item .info {
    padding: 30px;
}
.portfolio-item .info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.portfolio-item .info h4 a {
    color: var(--headding-color);
}
.portfolio-item .info h4 a:hover {
    color: var(--primary-color);
}
.portfolio-item .info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px !important;
    margin-bottom: 20px !important;
    color: var(--body-color) !important;
}
.portfolio-item .info a.read-more{
    color: var(--headding-color);
    font-size: 14px;
}
.portfolio-item .info a.read-more:hover{
    color: var(--primary-color);
}
.cm-protfolio-meta-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: rgb(118 118 118);
    margin-bottom: 11px;
    display: inline-block;
}
.cm-protfolio-meta-pre {
    font-weight: 600;
    font-size: 18px;
}
.cm-protfolio-social a{
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    font-size: 17px;
    line-height: 40px;
    background: #4661c5;
    color: var(--white-color);
    margin-left: 5px;
}
.cm-protfolio-social a i{
    line-height: 2.5;
}
.cm-protfolio-social a:nth-child(2){
    background: rgb(29 161 242);
}
.cm-protfolio-social a:nth-child(3){
    background: rgb(255 46 46);
}
.cm-protfolio-social a:nth-child(4){
    background: rgb(0 115 176);
}
.cm-protfolio-details-title{
    font-size: 50px;
    margin-bottom: 30px;
}
.cm-protfolio-details-content p{
    color: rgb(118 118 118);
    font-size: 16px;
    font-weight: 400;
}
.cm-protfolio-tag a {
    padding: 5px 16px;
    background-color: rgb(245 245 248);
    font-size: 16px;
    line-height: 20px;
    color:  rgb(118 118 118);
    font-weight: 400;
    transition: all 0.3s ease;
    margin-right: 7px;
    display: inline-block;
}
.cm-protfolio-tag a:hover {
    color: var(--white-color);
    background: var(--cm-green);
}
.cm-protfolio-social-share {
    width: 38px;
    height: 38px;
    border-radius: 19px;
    background: var(--cm-green);
    display: inline-block;
    text-align: center;
    line-height: 38px;
    color: var(--white-color);
}
.cm-protfolio-social-share i{
    line-height: 2.8;
}
.cm-protfolio-navigation-border{
    border-bottom: 1px solid #cdcdcd;
}
.cm-protfolio-navigation-icon span a{
    margin-bottom: 6px;
    display: inline-block;
    color:  rgb(118 118 118);
}
.cm-protfolio-navigation-icon span a:hover{
    color: var(--cm-green);
}
.cm-navigation-title a{
    color: var(--cm-black);
}
.cm-navigation-title a:hover{
    color: var(--cm-green);
}
@media only screen and (max-width: 767.99px) {
    .cm-protfolio-details-social-inner {
        float: left;
    }
    .cm-protfolio-navigation-right {
        float: left;
    }
}
@media only screen and (max-width: 575.99px) {
    .cm-portfolio-social.text-right {
        float: left;
    }
    .cm-protfolio-details-title {
        font-size: 36px;
    }
}
/*=============================
28. Share
===============================*/ 
.blog-details-full .social-share-p {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.social-share-p ul li {
    display: inline-block;
    margin: 0 4px;
}
.social-share-p ul li b {
    font-weight: 700;
    color: var(--headding-color);
    font-size: 16px;
}
.social-share-p ul li a {
    background: #5d82d1;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}
.social-share-p ul li a:hover {
    background: #5475bc;
}
.social-share-p ul li a.twitter {
    background: #40bff5;
}
.social-share-p ul li a.twitter:hover {
    background: #28a3d7;
}
.social-share-p ul li a.instagram {
    background: radial-gradient(circle at 20% 130%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-share-p ul li a.linkedin {
    background: #207eb4;
}
.social-share-p ul li a.linkedin:hover {
    background: #156593;
}
.social-share-p ul li a.whatsup {
    background: #1db588;
}
.social-share-p ul li a.whatsup:hover {
    background: #1a9973;
}
.tag-d {
    text-align: center;
}
.tag-d ul li {
    display: inline-block;
    margin: 4px 2px;
}
.tag-d ul li a {
    background: #fff;
    display: inline-block;
    padding: 6px 12px;
    color: var(--body-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid;
}
.tag-d ul li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.blog-details-full h2.title {
    font-size: 28px;
    margin-bottom: 30px;
}
/*=============================
29. Portfolio Details 
===============================*/ 
.portfolio-details h2.h-title {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.portfolio-sidebar {
    background: var(--section-bg);
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
}
.portfolio-sidebar h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.portfolio-sidebar ul.p-info li {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    padding: 8px 0;
    text-align: right;
}
.portfolio-sidebar ul.p-info li b {
    float: left;
    font-weight: 700;
    color: var(--headding-color);
}
/*=============================
30. Error Page 
===============================*/ 
.error-page-content h2 {
    font-size: 15rem;
    color: var(--secondary-color);
}
.error-page-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.error-page-content p {
    margin-bottom: 20px;
}
.header-bright .mobile-bar {
    display: none;
}


/*=============================
31.Mobile Menu
===============================*/
.header-top-wraper .header-top-social ul {
    display: flex;
    align-items: center;
}
.header-top-wraper .header-top-social ul li {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.header-top-wraper .header-top-social ul li a {
    margin-left: 20px;
    color: var(--headding-color);
    font-size: 16px;
    transition: all .4s ease;
}
@media only screen and (max-width: 991.99px) {
    .header-md-height{
        padding: 20px 0;
    }
}
.cm-menu-bar span{
    width: 30px;
    height: 2px;
    background-color: #111111;
    display: block;
    cursor: pointer;
  }
  .cm-menu-bar span:not(:last-child) {
      margin-bottom: 9px;
  }
  .off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
  }
  .off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
  }
  .offcanvas_menu_wrapper {
    z-index: 999999;
  }
  .offcanvas_menu {
    display: none;
  }
  .canvas_open a {
    font-size: 18px;
    color: var(--headding-color);
    margin-left: 20px;
    display: block;
  }
  .canvas_open.blck-canvas a i {
    color: #111111;
  }
  .mobile-logo a {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 900;
  }
  .mobile-logo h2 a {
    font-weight: 700;
  }
  .offcanvas_menu_wrapper {
    width: 450px;
    position: fixed;
    background: var(--white-color);
    top: 0;
    height: 100vh;
    margin-left: 0;
    transition: 0.5s;
    left: -450px;
    padding: 30px 40px 30px;
    overflow-y: auto;
  }
  .offcanvas_menu_wrapper.active {
    margin-left: 450px;
    width: 450px;
  }
  @media only screen and (max-width: 500px) {
    .offcanvas_menu_wrapper {
      width: 100%;
      left: -510px;
    }
    .offcanvas_menu_wrapper.active {
      width: 100%;
      margin-left: 510px;
    }
  }
  .offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
  }
  .offcanvas_menu_wrapper .header_search_box {
    display: block;
  }
  
  .offcanvas_main_menu &gt; li.menu-item-has-children.menu-open &gt; span.menu-expand {
    transform: rotate(180deg);
  }
  .offcanvas_main_menu
    &gt; li
    ul
    li.menu-item-has-children.menu-open
    span.menu-expand {
    transform: rotate(180deg);
  }
  
  .offcanvas_main_menu li {
    position: relative;
  }
  .offcanvas_main_menu li:last-child {
    margin: 0;
  }
  .offcanvas_main_menu li span.menu-expand {
    display: none;
  }
  .offcanvas_main_menu li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    padding: 0px 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid#ebebeb;
    transition: all 0.3s ease;
    color: var(--headding-color);
    position: relative;
    padding-left: 0;
  }
  .header-top-wraper .menu-social ul li{
    color: var(--cm-title-color);
  }
  .header-top-wraper .menu-social ul li a i{
    color: var(--secondary-color);
    transition: all .4s ease;
  }
  .header-top-wraper .menu-social ul li a:hover i{
    color: var(--secondary-color);
  }
  .offcanvas_main_menu li a span{
    position: absolute;
    right: 0;
    font-size: 18px;
    top: 2px;
  }
  .offcanvas__contact-title h5{
    color: var(--headding-color);
    font-weight: 600;
  }
  .offcanvas__contact-info ul li{
    margin-bottom: 10px;
  }
  .offcanvas__contact-info ul li{
    font-weight: 500;
  }
  .offcanvas__contact-info ul li a{
    color: var(--headding-color);
    font-weight: 400;
  }
  .offcanvas__contact-info ul li a:hover{
    color: var(--secondary-color);
  }
  .offcanvas__contact-info ul li i{
    margin-right: 4px;
  }
  .offcanvas_main_menu li a:hover {
    color: var(--secondary-color);
  }
  .offcanvas_main_menu li ul.sub-menu {
    padding-left: 20px;
  }
  .canvas_close {
      position: absolute;
      top: 33px;
      right: 40px;
      font-size: 18px;
  }
  .canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    line-height: 50px;
    border: 1px solid  var(--headding-color);
    border-radius: 50%;
    color: var(--headding-color);
    transition: all 0.3s;
  }
  .canvas_close a i {
    line-height: inherit;
  }
  .canvas_close a:hover {
    background: var(--primary-color);
    border: 1px solid  var(--primary-color);
    color: var(--white-color);
  }
  .mobile-logo {
    margin-bottom: 80px;
  }
  .offcanvas_menu {
    display: block;
  }


@keyframes tpswing {
	0% {
		transform: rotate(6deg);
	}
    100% { 
        transform: rotate(-6deg);
	}
}
@keyframes cmupdown {
    0% {
		transform: translateY(0);
	}
    100% { 
        transform: translateY(-20px);
	}
}
.cm-updown{
    animation: cmupdown 1s ease-in-out 1s forwards infinite alternate;
}
@keyframes cmrotate {
	0%{
		transform: rotate(0deg);
	}
	100%{
        transform: rotate(360deg);
	}
}
.cm-rotate{
	animation: cmrotate 3s ease-in-out 3s forwards infinite alternate;
}
/*=============================
32. Preloader
===============================*/

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    #loading-center-absolute {
      width: 40%;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #loading-center-absolute {
      width: 40%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    #loading-center-absolute {
      width: 45%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    #loading-center-absolute {
      width: 50%;
    }
  }
  @media (max-width: 575px) {
    #loading-center-absolute {
      width: 90%;
    }
  }
  #loading {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
  }
  
  #loading-center {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  #loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .cm-preloader-logo {
    width: 180px;
    height: 180px;
    line-height: 180px;
    position: relative;
    text-align: center;
    margin: auto;
  }
  .cm-preloader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .cm-preloader-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: cm-rotate 5s linear infinite;
  }
  .cm-preloader-circle svg circle:last-child {
    stroke: var(--cm-green);
    stroke-dashoffset: 0;
    stroke-dasharray: 1128, 3150;
    -webkit-animation: cm-loading 4s linear infinite;
    -moz-animation: cm-loading 4s linear infinite;
    -ms-animation: cm-loading 4s linear infinite;
    -o-animation: cm-loading 4s linear infinite;
    animation: cm-loading 4s linear infinite;
    transform-origin: center center;
  }
  @keyframes cm-loading {
    0% {
      stroke-dashoffset: 0;
      stroke-dasharray: 0, 3150;
    }
    100% {
      stroke-dashoffset: -1131;
      stroke-dasharray: 1128, 3138;
    }
  }
  @keyframes cm-rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .cm-preloader-circle img {
    vertical-align: middle;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
  }
  .cm-preloader-content {
    text-align: center;
  }
  .cm-preloader-title {
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
  }
  @media (max-width: 575px) {
    .cm-preloader-title {
      font-size: 70px;
    }
  }
  .cm-preloader-subtitle {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--cm-common-black);
  }
  
  @keyframes cm-loading {
    0%{
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100%{
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}
/*=============================
33. backtotop
===============================*/
.back-to-top-wrapper {
    position: fixed;
    right: 20px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s 0s ease-out;
  }
  @media (max-width: 575px) {
    .back-to-top-wrapper {
      right: 20px;
      bottom: 20px;
    }
  }
  .back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
  }
  
  .back-to-top-btn {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--cm-green);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--white-color);
    border-radius: 50%;
    border: none;
    transition: transform 0.3s 0s ease-out;
  }
  .back-to-top-btn svg {
    transform: translateY(-2px);
  }
  .back-to-top-btn:hover {
    transform: translateY(-4px);
  }
  
/*=============================
34. faq-area-start
===============================*/
.cm-faq-title h2 {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 36px;
    font-weight: 700;
}
.cm-faq-wrapper-1 {
    margin-top: -15px;
}
.cm-faq-wrapper .accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-icon: none;
    --bs-accordion-btn-active-icon: none;
}
.cm-faq-wrapper .accordion-item {
    border-bottom: 1px solid #ededed;
}
.cm-faq-btn-2 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 25px;
    color: var(--cm-black);
    font-weight: 700;
    padding: 20px 0;
}
.cm-faq-btn-2:not(.collapsed) {
    color: var(--cm-black);
}
.cm-faq-wrapper .accordion-button:not(.collapsed) {
    color: var(--cm-black);
    background: none;
    box-shadow: none;
}
.cm-faq-btn-2 .accordion-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 14px;
    height: 14px;
}
.cm-faq-btn-2:not(.collapsed)::after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.cm-faq-btn-2 .accordion-btn::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    background-color: var(--cm-black);
    transform: translateX(-50%);
    border-radius: 2px;
    transition: all 0.4s ease;
}
.cm-faq-btn-2 .accordion-btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--cm-black);
    border-radius: 2px;
    transition: all 0.4s ease;
}
.cm-faq-btn-2:not(.collapsed) .accordion-btn::before {
    -webkit-transform: translateX(-50%) rotate(90deg);
    -moz-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
    -o-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    color:  var(--cm-black);
}
.cm-faq-btn-2.accordion-button:focus {
    border-color: inherit;
    box-shadow: none;
}
.cm-faq-para p {
    font-size: 16px;
    line-height: 30px;
    color: #6a6a6a;
    font-weight: 400;
    padding-bottom: 44px;
    margin-bottom: 0;
}
.cm-faq-para {
    padding: 0;
}


@keyframes tpupdown {
	0% { 
		transform: translateY(0);
	}
    100% { 
        transform: translateY(-20px);
	}
}
  @keyframes tprotate {
	0% { 
		transform: rotate(0deg);
	}
    100% { 
        transform: rotate(360deg);
	}
}
.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

@keyframes spinaround {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
@keyframes tpupdown {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-20px)
    }
}
.up-down{
    animation: tpupdown 1.5s infinite alternate;
}

@keyframes img-anim-right {
	0% {
		transform: translateX(5%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.img-custom-anim-left {
	animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}
.img-custom-anim-right {
	animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}

@keyframes img-anim-left {
	0% {
		transform: translateX(-5%);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.img-custom-anim-top {
	animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}

@keyframes img-anim-top {
	0% {
		transform: translateY(-5%);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
</pre></body></html>