/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-one {
    position: relative;
    overflow: hidden;
}

.main-slider .swiper-slide {
    position: relative;
}

.main-slider .auto-container {
    position: relative;
    padding-top: 136px;
    padding-bottom: 225px;
    z-index: 30;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.main-slider .image-layer:before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";
    background-color: #000000;
    opacity: 0.70;
    z-index: -1;
}

.main-slider-one__content {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider-one__content .title {
    position: relative;
    display: block;
    margin-bottom: 16px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-one__content .title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-one__content .title h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1em;
}

.main-slider-one__content .title h2 span {
    color: var(--thm-base);
}

.main-slider-one__content .text {
    position: relative;
    display: block;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-one__content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-one__content .text p {
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
}

.main-slider-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-one__content .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}


.main-slider__nav {
    position: absolute;
    top: 50%;
    left: 0%;
    right: 0;
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px;
    transform: translateY(-50%);
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    opacity: 1;
    margin: 0;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-prev {
    float: left;
    left: 0;
}

.main-slider__nav .swiper-button-next {
    float: right;
    right: 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background: var(--thm-base);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    margin-bottom: 0px;
}

.main-slider__nav .swiper-button-prev i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}

.main-slider__nav .swiper-button-next i::before {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Main Slider Style2
--------------------------------------------------------------*/
.main-slider-one--two {
    position: relative;
    display: block;
}

.main-slider.main-slider-one--two .auto-container {
    position: relative;
    padding-top: 186px;
    padding-bottom: 245px;
    z-index: 30;
}

.main-slider__nav--two {
    position: absolute;
    top: 41%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    max-width: 1320px;
    width: 100%;
    padding: 0 15px;
    height: 0;
    line-height: 0;
}

.main-slider__nav.main-slider__nav--two .swiper-button-prev {
    margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Main Slider Style3
--------------------------------------------------------------*/
.main-slider-three {
    position: relative;
    display: block;
    background: #cdcdcd;
    z-index: 1;
}

.main-slider-three .shape1 {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: -1;
    position: absolute;
    top: 85px;
    right: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) translateY(-100%);
    -ms-transform: perspective(400px) translateY(-100%);
    transform: perspective(400px) translateY(-100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .shape1 {
    opacity: 1.0;
    -webkit-transform: perspective(400px) translateY(0px);
    -ms-transform: perspective(400px) translateY(0px);
    transform: perspective(400px) translateY(0px);
    -webkit-transition-delay: 2300ms;
    -moz-transition-delay: 2300ms;
    -ms-transition-delay: 2300ms;
    -o-transition-delay: 2300ms;
    transition-delay: 2300ms;
}

.main-slider-three .shape2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: -1;
}

.main-slider-three .shape3 {
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: -1;
}

.main-slider-three .shape5 {
    position: absolute;
    left: 41%;
    bottom: -20px;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) translateY(100%);
    -ms-transform: perspective(400px) translateY(100%);
    transform: perspective(400px) translateY(100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .shape5 {
    opacity: 1.0;
    -webkit-transform: perspective(400px) translateY(0px);
    -ms-transform: perspective(400px) translateY(0px);
    transform: perspective(400px) translateY(0px);
    -webkit-transition-delay: 2300ms;
    -moz-transition-delay: 2300ms;
    -ms-transition-delay: 2300ms;
    -o-transition-delay: 2300ms;
    transition-delay: 2300ms;
}

.main-slider-three.main-slider .auto-container {
    position: relative;
    padding-top: 65px;
    padding-bottom: 166px;
    z-index: 30;
}

.main-slider-three__content {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 135px;
}

.main-slider-three__content .sub-title {
    position: relative;
    display: block;
    margin-bottom: 1px;
    line-height: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-three__content .sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-three__content .sub-title span {
    color: var(--thm-base);
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-slider-three__content .title {
    position: relative;
    display: block;
    margin-bottom: 2px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-three__content .title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-three__content .title h2 {
    color: var(--thm-black);
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1em;
}

.main-slider-three__content .text {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-three__content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-three__content .text p {
    font-size: 18px;
    line-height: 32px;
}

.main-slider-three__content .btn-box {
    position: relative;
    display: block;
    margin-top: 15px;
    line-height: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-three__content .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1800ms;
    -moz-transition-delay: 1800ms;
    -ms-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.main-slider-three__img {
    position: relative;
    display: block;
    min-height: 475px;
    z-index: 1;
}

.main-slider-three__img .inner {
    position: absolute;
    bottom: -166px;
    right: -60px;
    z-index: 1;
}

.main-slider-three__img .inner .shape6 {
    position: absolute;
    bottom: 115px;
    left: -115px;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) translateY(100%);
    -ms-transform: perspective(400px) translateY(100%);
    transform: perspective(400px) translateY(100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider-three__img .inner .shape6 {
    opacity: 1.0;
    -webkit-transform: perspective(400px) translateY(0px);
    -ms-transform: perspective(400px) translateY(0px);
    transform: perspective(400px) translateY(0px);
    -webkit-transition-delay: 2200ms;
    -moz-transition-delay: 2200ms;
    -ms-transition-delay: 2200ms;
    -o-transition-delay: 2200ms;
    transition-delay: 2200ms;
}

.main-slider-three__img .inner .shape7 {
    position: absolute;
    bottom: 55px;
    left: -80px;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) translateY(100%);
    -ms-transform: perspective(400px) translateY(100%);
    transform: perspective(400px) translateY(100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1800ms ease;
    -moz-transition: all 1800ms ease;
    -ms-transition: all 1800ms ease;
    -o-transition: all 1800ms ease;
    transition: all 1800ms ease;
}

.main-slider .swiper-slide-active .main-slider-three__img .inner .shape7 {
    opacity: 1.0;
    -webkit-transform: perspective(400px) translateY(0px);
    -ms-transform: perspective(400px) translateY(0px);
    transform: perspective(400px) translateY(0px);
    -webkit-transition-delay: 2700ms;
    -moz-transition-delay: 2700ms;
    -ms-transition-delay: 2700ms;
    -o-transition-delay: 2700ms;
    transition-delay: 2700ms;
}

.main-slider-three__img .inner .shape8 {
    position: absolute;
    top: 50px;
    right: 120px;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) translateY(-100%);
    -ms-transform: perspective(400px) translateY(-100%);
    transform: perspective(400px) translateY(-100%);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider .swiper-slide-active .main-slider-three__img .inner .shape8 {
    opacity: 1.0;
    -webkit-transform: perspective(400px) translateY(0px);
    -ms-transform: perspective(400px) translateY(0px);
    transform: perspective(400px) translateY(0px);
    -webkit-transition-delay: 2200ms;
    -moz-transition-delay: 2200ms;
    -ms-transition-delay: 2200ms;
    -o-transition-delay: 2200ms;
    transition-delay: 2200ms;
}

.main-slider-three__img .inner .img-box {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateX(100%);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider-three__img .inner .img-box {
    opacity: 1;
    transform: translateX(0);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider-three__img .inner .img-box img {
    width: 100%;
}


.main-slider__nav--three {
    position: absolute;
    top: 39%;
    left: 46%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
    height: 0;
    line-height: 0;
}

.main-slider__nav--three .swiper-button-prev {
    margin-bottom: 10px;
}/*** 
=============================================
    About Style1 Css   
=============================================
***/
.about-style1 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0 0px;
    z-index: 1;
}


.about-style1__content {
    position: relative;
    display: block;
    max-width: 600px;
    width: 100%;
}

.about-style1__content .sec-title {
    padding-bottom: 31px;
}

.about-style1__content .sec-title h2 span {
    color: var(--thm-base);
}

.about-style1__content-text {
    position: relative;
    display: block;
}

.about-style1__content-text p {
    margin: 0;
}

.about-style1__content-signature {
    position: relative;
    display: block;
    margin-top: 16px;
}

.about-style1__content-list {
    position: relative;
    display: block;
    margin-top: 23px;
}

.about-style1__content-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.about-style1__content-list li:last-child {
    margin-bottom: 0;
}

.about-style1__content-list li .icon-box {
    position: relative;
    display: block;
}

.about-style1__content-list li .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 18px;
    font-weight: 700;
}

.about-style1__content-list li .text-box {
    position: relative;
    display: block;
    margin-left: 12px;
}

.about-style1__content-list li .text-box p {
    color: var(--thm-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}

.about-style1__content-btn {
    position: relative;
    display: block;
    margin-top: 40px;
    line-height: 0;
}

.about-style1__content-btn .btn-one {
    box-shadow: 0px 15px 50px rgba(235, 41, 44, 0.3);
}

.about-style1__img {
    position: relative;
    display: block;
    margin-left: 30px;
    max-width: 600px;
    width: 100%;
    z-index: 1;
}

.about-style1__img .shape1 {
    position: absolute;
    top: 235px;
    left: 20px;
    z-index: -1;
}

.about-style1__img .shape2 {
    position: absolute;
    top: 90px;
    right: -50px;
    z-index: -1;
}

.about-style1__img .shape3 {
    position: absolute;
    left: 350px;
    right: -999999px;
    bottom: 100px;
    height: 320px;
    background: var(--thm-base);
    content: "";
    z-index: -1;
}

.about-style1__img-inner {
    position: relative;
    display: block;
}

.about-style1__img-inner img {
    width: auto;
}

.about-style1__img .experience-box {
    position: absolute;
    top: 140px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    height: 200px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.about-style1__img .experience-box h2 {
    color: var(--thm-base);
    font-weight: 600;
    font-size: 50px;
    line-height: 36px;
    font-family: var(--thm-font-2);
}

.about-style1__img .experience-box .odometer.odometer-auto-theme,
.about-style1__img .experience-box .odometer.odometer-theme-default {
    font-family: var(--thm-font-2);
    line-height: 0.8em;
}

.about-style1__img .experience-box .title {
    position: relative;
    display: block;
    margin-top: 10px;
}

.about-style1__img .experience-box .title h3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}

.about-style1__img-client-info {
    position: absolute;
    bottom: 70px;
    left: -60px;
    padding-left: 50px;
    padding-top: 26px;
    width: 300px;
    height: 120px;
    background: #FFFFFF;
    border: 7px solid rgba(235, 41, 44, 0.5);
    box-shadow: 0px 20px 60px 10px rgba(0, 0, 0, 0.17);
    border-radius: 310px;
}

.about-style1__img-client-info h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.about-style1__img-client-info p {
    font-weight: 500;
    color: #6E6E6E;
}


/*** 
=============================================
    About Style2 Css   
=============================================
***/
.about-style2 {
    position: relative;
    display: block;
    background: #F6F6F6;
    padding: 120px 0px 120px;
}

.about-style2__img {
    position: relative;
    display: block;
    max-width: 440px;
    width: 100%;
    margin-left: 110px;
    z-index: 1;
}

.about-style2__img .shape1 {
    position: absolute;
    top: -105px;
    right: 40px;
    z-index: -1;
}

.about-style2__img .shape2 {
    position: absolute;
    left: -150px;
    bottom: 20px;
    z-index: -1;
}

.about-style2__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.about-style2__img .inner img {
    width: 100%;
}

.about-style2__img-video-box {
    position: absolute;
    top: -50px;
    right: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    height: 200px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    z-index: 2;
}

.about-style2__img-video-box-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--thm-base);
    background-color: #ffffff;
    border: 4px solid var(--thm-base);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.about-style2__img-video-box-icon span::before {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.about-style2__img-video-box-icon .ripple,
.about-style2__img-video-box-icon .ripple:before,
.about-style2__img-video-box-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1.0);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1.0);
    box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 1.0);
    -webkit-animation: ripple2 3s infinite;
    animation: ripple2 3s infinite;
    border-radius: 50%;
}

.about-style2__img-video-box-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-style2__img-video-box-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.about-style2__img-video-box .title {
    position: relative;
    display: block;
    margin-top: 14px;
}

.about-style2__img-video-box .title h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}

.about-style2__experience-box {
    position: absolute;
    left: -110px;
    bottom: 60px;
    display: flex;
    align-items: center;
    width: 320px;
    height: 120px;
    border-radius: 60px;
    background: #FFFFFF;
    box-shadow: 0px 20px 60px 10px rgba(0, 0, 0, 0.17);
    padding-left: 50px;
    z-index: 2;
}

.about-style2__experience-box h2 {
    color: var(--thm-base);
    font-weight: 600;
    font-size: 50px;
    line-height: 36px;
    font-family: var(--thm-font-2);
}

.about-style2__experience-box .odometer.odometer-auto-theme,
.about-style2__experience-box .odometer.odometer-theme-default {
    font-family: var(--thm-font-2);
    line-height: 0.8em;
}

.about-style2__experience-box .title {
    position: relative;
    display: block;
    margin-left: 20px;
}

.about-style2__experience-box .title h3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}


.about-style2__content {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-top: -55px;
}

.about-style2__content .sec-title {
    padding-bottom: 36px;
}

.about-style2__content-bottom {
    position: relative;
    display: block;
    margin-top: 41px;
}

.about-style2__content-bottom .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.about-style2__content-bottom .inner ul {
    position: relative;
    display: block;
}

.about-style2__content-bottom .inner ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 10px;
}

.about-style2__content-bottom .inner ul li:last-child {
    margin-bottom: 0px;
}

.about-style2__content-bottom .inner ul li .icon {
    position: absolute;
    top: 3px;
    left: 0;
}

.about-style2__content-bottom .inner ul li .icon span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    font-weight: 700;
}

.about-style2__content-bottom .inner ul li .text {
    position: relative;
    display: block;
}

.about-style2__content-bottom .inner ul li .text p {
    color: var(--thm-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.about-style2__content-bottom-img {
    position: relative;
    display: block;
    max-width: 220px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 80px;
}

.about-style2__content-bottom-img img {
    width: 100%;
}

.about-style2__content-bottom .btn-box {
    position: relative;
    display: block;
    margin-top: 51px;
    line-height: 0;
}

/*** 
=============================================
    About Style3 Css   
=============================================
***/
.about-style3 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
}

.about-style3__img {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 120px;
    right: 0;
    width: calc((100% - 32px) / 2);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 1;
}

.about-style3__img::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.3);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: -1;
    content: "";
}

.about-style3__img-video-box {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-style3__img-video-box-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    background-color: transparent;
    border: 5px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.about-style3__img-video-box-icon:hover {
    color: var(--thm-base);
    border-color: var(--thm-base);
}

.about-style3__img-video-box-icon span::before {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.about-style3__img-video-box-icon .ripple,
.about-style3__img-video-box-icon .ripple:before,
.about-style3__img-video-box-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1.0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1.0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1.0);
    -webkit-animation: ripple2 3s infinite;
    animation: ripple2 3s infinite;
    border-radius: 50%;
}

.about-style3__img-video-box-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-style3__img-video-box-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.about-style3__content {
    position: relative;
    display: block;
    max-width: 600px;
    width: 100%;
    float: right;
}

.about-style3__content .sec-title {
    padding-bottom: 31px;
}

.about-style3__content-text {
    position: relative;
    display: block;
}

.about-style3__content-text p {
    margin: 0;
}


.about-style3__content-list {
    position: relative;
    display: block;
    margin-top: 34px;
}

.about-style3__content-list li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 10px;
}

.about-style3__content-list li:last-child {
    margin-bottom: 0px;
}

.about-style3__content-list li .icon {
    position: absolute;
    top: 3px;
    left: 0;
}

.about-style3__content-list li .icon span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    font-weight: 700;
}

.about-style3__content-list li .text {
    position: relative;
    display: block;
}

.about-style3__content-list li .text p {
    color: var(--thm-black);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.about-style3__content-btn {
    position: relative;
    display: block;
    margin-top: 42px;
    line-height: 0;
}

.about-style3__content-btn .btn-one {
    box-shadow: 0px 15px 50px rgba(235, 41, 44, 0.3);
}

/*** 
=============================================
    About Style2 About Css   
=============================================
***/
.about-style2--about {
    position: relative;
    display: block;
    background: #ffffff;
}

.about-style2--about .about-style2__content .sec-title {
    padding-bottom: 21px;
}

.about-style2--about .about-style2__img {
    position: relative;
    display: block;
    max-width: 500px;
    width: 100%;
    margin-left: 100px;
    z-index: 1;
}

.about-style2--about .about-style2__img-video-box {
    top: auto;
    right: auto;
    left: -100px;
    bottom: 60px;
    background: var(--thm-base);
}

.about-style2--about .about-style2__img-video-box-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--thm-base);
    border: 4px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.about-style2--about .about-style2__img .shape1 {
    top: -55px;
    right: -25px;
    z-index: -1;
}

.about-style2--about .about-style2__img .shape2 {
    left: -50px;
    bottom: -70px;
}

.about-style2--about .about-style2__img-video-box .title h3 {
    color: #ffffff;
}

.about-style2--about .about-style2__content {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-top: 0px;
}

.about-style2--about .about-style2__content-bottom {
    margin-top: 21px;
}

.about-style2--about__social-links {
    position: relative;
    display: block;
    margin-top: 38px;
}

.about-style2--about__social-links li {
    position: relative;
    display: inline-block;
    margin-right: 16px;
}

.about-style2--about__social-links li:last-child {
    margin-right: 0px;
}

.about-style2--about__social-links li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #F1F1F1;
    border-radius: 50%;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-style2--about__social-links li a:hover {
    background: var(--thm-base);
}

.about-style2--about__social-links li a span {
    position: relative;
    display: block;
}

.about-style2--about__social-links li a span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-style2--about__social-links li a:hover span::before {
    color: #ffffff;
}