/*==============================================
    About One
===============================================*/
.about-one {
    position: relative;
    display: block;
    padding: 60px 0px 60px;
    z-index: 1;
}

.about-one__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    z-index: 1;
}

.about-one__img img {
    width: 100%;
}

.about-one__shape-1 {
    position: absolute;
    bottom: 120px;
    left: -68px;
    animation: topBottom 3s ease-in-out infinite;
}

.about-one__shape-1 img {
    width: auto;
}

.about-one__shape-2 {
    position: absolute;
    top: 0px;
    right: -60px;
    animation: leftRight 4s ease-in-out infinite;
}

.about-one__shape-2 img {
    width: auto;
}

.about-one__right {
    position: relative;
    display: block;
    margin-left: -10px;
}

.about-one__right .section-title {
    margin-bottom: 31px;
}

.about-one__point-box {
    position: relative;
    display: block;
    margin-top: 31px;
    margin-bottom: 31px;
}

.about-one__point {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-one__point li {
    position: relative;
    display: flex;
    max-width: 315px;
    width: 100%;
    gap: 15px;
}

.about-one__point-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 65px;
    transition: all 500ms ease;
    z-index: 1;
}

.about-one__point-icon img {
    width: 65px;
    height: 65px;
}

.about-one__point li:hover .about-one__point-icon {
    background-color: var(--tanspot-black);
}

.about-one__point-icon span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--tanspot-white);
    transition: all 500ms ease;
}

.about-one__point li:hover .about-one__point-icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@keyframes wobble-horizontal-hover {
    16.65% {
        transform: translateX(5px);
    }

    33.3% {
        transform: translateX(-3px);
    }

    49.95% {
        transform: translateX(4px);
    }

    66.6% {
        transform: translateX(-2px);
    }

    83.25% {
        transform: translateX(1px);
    }

    100% {
        transform: translateX(0);
    }
}

.about-one__point-content {
    position: relative;
    display: block;
    flex: 1;
}

.about-one__point-content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 2px;
}

.about-one__point-content p {
    font-size: 16px;
    line-height: 22px;
}

.about-one__point-box-two {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-one__point-two {
    position: relative;
    display: block;
    max-width: 315px;
    width: 100%;
}

.about-one__point-two li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-one__point-two li+li {
    margin-top: 9px;
}

.about-one__point-two li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
}

.about-one__point-two li .icon span {
    position: relative;
    display: inline-block;
    font-size: 10px;
    color: var(--tanspot-white);
}

.about-one__point-two li .text {
    position: relative;
    font-size: 16px;
    display: block;
    flex: 1;
}

.about-one__btn-and-author-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 38px;
}

.about-one__btn-box {
    position: relative;
    display: block;
}

.about-one__author-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-one__author-details {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.about-one__author-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    width: 82px;
    border: 2px dashed var(--tanspot-base);
    border-radius: 50%;
}

.about-one__author-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 72px;
    border-radius: 50%;
    overflow: hidden;
}

.about-one__author-img img {
    width: 100%;
    border-radius: 50%;
}

.about-one__author-content {
    position: relative;
    display: block;
    flex: 1;
}

.about-one__author-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 6px;
}

.about-one__author-sign {
    position: relative;
    display: block;
    margin-left: 25px;
    padding-left: 25px;
}

.about-one__author-sign:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 1px;
    background-color: var(--tanspot-bdr-color);
}

.about-one__author-sign img {
    width: auto;
}

.about-one__review-and-experience-box {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--tanspot-base);
    border-radius: 39px;
    padding: 30px 20px 30px;
    z-index: 2;
    width: 44%;
    border: 5px solid var(--tanspot-white);
}

.about-one__review-box {
    position: relative;
    display: block;
}

.about-one__review-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-one__review-list li {
    position: relative;
    display: block;
}

.about-one__review-list li+li {
    margin-left: -15px;
}

.about-one__review-img {
    position: relative;
    display: block;
    /* height: 54px; */
    /* width: 54px; */
    /* border-radius: 50%; */
    overflow: hidden;
}

.about-one__review-img img {
    /* width: 100%; */
    height: 80px;
    /* border-radius: 50%; */
    /* border: 2px solid var(--tanspot-white); */
}

.about-one__review-star {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.about-one__review-star span {
    font-size: 15px;
    color: #FFD25D;
    position: relative;
    display: inline-block;
}

.about-one__review-text {
    font-weight: bold;
    color: var(--tanspot-white);
}

.about-one__review-text.mt-4 {
    font-size: 22px;
}

.about-one__experience-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.about-one__experience-count {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__experience-count h3 {
    font-size: 40px;
    color: var(--tanspot-white);
    font-weight: 700;
    line-height: 40px !important;
    font-family: var(--tanspot-font-two) !important;
}

.about-one__experience-count span {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    color: var(--tanspot-white);
    font-family: var(--tanspot-font);
}

.about-one__experience-count-text {
    color: var(--tanspot-white);
    font-weight: 500;
}

.about-one__video-link {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    z-index: 3;
}

.about-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: var(--tanspot-black);
    background-color: rgba(var(--tanspot-white-rgb), 1);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    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-one__video-icon:hover {
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
}

.about-one__video-link .ripple,
.about-one__video-icon .ripple:before,
.about-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--tanspot-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--tanspot-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--tanspot-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--tanspot-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.about-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.about-one__video-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    color: var(--tanspot-white);
}

/* ==================== */
.filter-wrapper__circle-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filter-wrapper__round-text-box {
    position: relative;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background-color: var(--tanspot-base);
    z-index: 5;
}

.filter-wrapper__round-text-box .inner {
    position: relative;
    display: block;
    width: 135px;
    height: 135px;
}

.filter-wrapper__curved-circle {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    color: var(--tanspot-white);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--tanspot-font-two);
    letter-spacing: 0px;
    word-spacing: 1px;
    transform: rotate(0deg);
    height: 135px !important;
}

.filter-wrapper__round-text-box .overlay-icon-box {
    position: absolute;
    top: 25px;
    left: 25px;
    bottom: 25px;
    right: 25px;
    background-color: var(--tanspot-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.filter-wrapper__round-text-box:hover .overlay-icon-box {
    background-color: var(--tanspot-white);
}

.filter-wrapper__round-text-box .overlay-icon-box a {
    position: relative;
    display: inline-block;
    color: var(--tanspot-white);
    font-size: 45px;
}

.filter-wrapper__round-text-box:hover .overlay-icon-box a {
    color: var(--tanspot-base);
}

.filter-wrapper__title {
    font-size: 40px;
    font-weight: bold;
    color: var(--tanspot-base);
    padding-top: 15px;
    padding-bottom: 15px;
}

.filter-wrapper__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.filter-wrapper__button button {
    font-size: 20px;
    color: var(--tanspot-base);
    font-weight: bold;
    border: 1px solid var(--tanspot-base);
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    width: 28%;
}

.filter-wrapper__button button.active {
    background: linear-gradient(to right, #FF050F, #990309);
    color: var(--tanspot-white);
}

.filter-wrapper__filter {
    margin: 15px 0 5px;
    padding: 0 20px;
    width: 100%;
}

.filter-wrapper__filter-container {
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--tanspot-base);
}

.filter-wrapper__filter-container-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 15px;
    color: var(--tanspot-base);
    padding-left: 10px;
}

.filter-wrapper__filter-container input {
    padding: 10px 10px;
    width: 100%;
    outline: none;
    font-size: 20px;
    color: var(--tanspot-base);
}

.filter-wrapper__filter-container .nice-select {
    height: 48px;
    outline: none;
    font-size: 20px;
    background-color: transparent;
    color: var(--tanspot-base);
}

.filter-wrapper__filter-container .nice-select .current {
    margin-left: 10px;
    margin-right: 10px;
}

.filter-wrapper__filter-container .nice-select::after {
    border-color: var(--tanspot-base);
}

/* ==================== */

.about-one__round-text-box {
    position: absolute;
    bottom: -12px;
    left: -10px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--tanspot-base);
    z-index: 5;
    border: 3px solid var(--tanspot-white);
}

.about-one__round-text-box .inner {
    position: relative;
    display: block;
    width: 180px;
    height: 180px;
}

.about-one__curved-circle {
    position: absolute;
    top: 0px;
    left: -5px;
    bottom: 0;
    right: 0;
    color: var(--tanspot-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--tanspot-font-two);
    letter-spacing: 0px;
    word-spacing: 2px;
    transform: rotate(0deg);
    height: 173px !important;
}

.about-one__round-text-box .overlay-icon-box {
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    background-color: var(--tanspot-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-one__round-text-box:hover .overlay-icon-box {
    background-color: var(--tanspot-white);
}

.about-one__round-text-box .overlay-icon-box a {
    position: relative;
    display: inline-block;
    color: var(--tanspot-white);
    font-size: 45px;
}

.about-one__round-text-box:hover .overlay-icon-box a {
    color: var(--tanspot-base);
}

/*==============================================
    About Two
===============================================*/
.about-two {
    position: relative;
    display: block;
    padding: 90px 0 0px;
    z-index: 1;
}

.about-two__left {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-right: 280px;
}

.about-two__img-box {
    position: relative;
    display: block;
}

.about-two__img {
    position: relative;
    display: block;
    z-index: 2;
}

.about-two__img::before {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    background: var(--tanspot-base);
    border-radius: var(--tanspot-bdr-radius);
    content: "";
    z-index: -1;
}

.about-two__img img {
    width: 100%;
    border-radius: var(--tanspot-bdr-radius);
}

.about-two__img-two {
    position: absolute;
    bottom: -244px;
    right: -200px;
}

.about-two__img-two img {
    width: auto;
    border-radius: var(--tanspot-bdr-radius);
    border: 10px solid var(--tanspot-base);
}

.about-two__counter {
    position: absolute;
    top: 45px;
    right: -80px;
    background: var(--tanspot-base);
    padding: 25px 20px 29px;
    z-index: 5;
}

.about-two__counter .shape1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.about-two__counter::before {
    position: absolute;
    top: -15px;
    right: 0px;
    width: 25px;
    border-bottom: 15px solid #e14110;
    border-left: 0px solid transparent;
    border-right: 70px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.about-two__counter .count-text-box {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__counter .count-text-box h2 {
    color: var(--tanspot-white);
    font-size: 36px;
    line-height: 45px;
    font-weight: 600;
}

.about-two__counter .count-text-box .plus {
    position: relative;
    display: inline-block;
    color: var(--tanspot-white);
    font-size: 30px;
    font-weight: 600;
    margin-left: 2px;
}

.about-two__counter p {
    color: var(--tanspot-white);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-transform: capitalize;
}

.about-two__shape-2 {
    position: absolute;
    top: 0;
    right: -135px;
}

.about-two__shape-2 img {
    width: auto;
}

.about-two__shape-3 {
    position: absolute;
    top: 60px;
    left: -100px;
    z-index: -1;
}

.about-two__shape-3 img {
    width: auto;
    animation: topBottom 3s ease-in-out infinite;
}

.about-two__shape-4 {
    position: absolute;
    bottom: -160px;
    left: 0;
    z-index: -1;
}

.about-two__shape-4 img {
    width: auto;
}

.about-two__right {
    position: relative;
    display: block;
}

.about-two__right .section-title {
    margin-bottom: 31px;
}

.about-two__progress-box-outer {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 32px;
    margin-bottom: 37px;
}

.about-two__progress-single {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__progress-box {
    position: relative;
    display: inline-block;
    height: 100px;
}

.about-two__progress-box canvas {
    transform: rotate(72deg);
}

.about-two__progress-box .about-two__pack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.about-two__progress-box .about-two__pack p {
    font-size: 20px;
    font-weight: 600;
    color: var(--tanspot-black);
    line-height: 20px;
}

.about-two__progress-box .about-two__pack span {
    font-size: 20px;
    font-weight: 600;
    color: var(--tanspot-black);
    line-height: 20px;
}

.about-two__progress-content {
    margin-left: 25px;
}

.about-two__progress-content p {
    font-size: 20px;
    color: var(--tanspot-black);
    font-weight: 600;
    line-height: 30px;
    font-family: var(--tanspot-font-two);
}


.about-two__point-box-one {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-two__point-one {
    position: relative;
    display: block;
    max-width: 315px;
    width: 100%;
}

.about-two__point-one li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.about-two__point-one li+li {
    margin-top: 9px;
}

.about-two__point-one li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
}

.about-two__point-one li .icon span {
    position: relative;
    display: inline-block;
    font-size: 10px;
    color: var(--tanspot-white);
}

.about-two__point-one li .text {
    position: relative;
    display: block;
    flex: 1;
}

.about-two__btn-and-author-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 38px;
}

.about-two__btn-box {
    position: relative;
    display: block;
}

.about-two__author-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about-two__author-details {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.about-two__author-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    width: 82px;
    border: 2px dashed var(--tanspot-base);
    border-radius: 50%;
}

.about-two__author-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 72px;
    border-radius: 50%;
    overflow: hidden;
}

.about-two__author-img img {
    width: 100%;
    border-radius: 50%;
}

.about-two__author-content {
    position: relative;
    display: block;
    flex: 1;
}

.about-two__author-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 6px;
}

.about-two__video-link {
    position: relative;
    display: block;
    z-index: 3;
}

.about-two__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: var(--tanspot-white);
    background-color: rgba(var(--tanspot-base-rgb), 1);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    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-two__video-icon:hover {
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--tanspot-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.about-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

/*==============================================
   About Three
===============================================*/
.about-three {
    position: relative;
    display: block;
    padding: 120px 0px 0px;
    z-index: 1;
}

.about-three__left {
    position: relative;
    display: block;
    margin-right: 160px;
    margin-left: 100px;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--tanspot-bdr-radius);
}

.about-three__img::before {
    background: rgba(var(--tanspot-white-rgb), .50);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    pointer-events: none;
}

.about-three__img:hover::before {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.about-three__img>img {
    width: 100%;
    border-radius: var(--tanspot-bdr-radius);
}

.about-three__img-2 {
    position: absolute;
    top: 214px;
    right: -130px;
    max-width: 320px;
    width: 100%;
    border-radius: var(--tanspot-bdr-radius);
    background-color: var(--tanspot-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
    z-index: 1;
}

.about-three__img-2::before {
    background: rgba(var(--tanspot-white-rgb), .50);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    border-radius: var(--tanspot-bdr-radius);
}

.about-three__img-2:hover::before {
    width: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.about-three__img-2>img {
    width: 100%;
    border-radius: 20px;
    border: 10px solid rgba(var(--tanspot-white-rgb), 1);
}

.about-three__experience-box {
    position: absolute;
    top: 80px;
    left: -80px;
    background-color: var(--tanspot-white);
    border: 5px solid var(--tanspot-base);
    max-width: 160px;
    width: 100%;
    text-align: center;
    padding: 20px 15px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    z-index: 1;
}

.about-three__experience-box::before {
    content: "";
    bottom: -76px;
    left: -5px;
    position: absolute;
    border-left: 40px solid transparent;
    border-right: 40px solid #f14d1c;
    border-bottom: 37px solid transparent;
    border-top: 34px solid #f14d1c;
}

.about-three__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-three__count-box h3 {
    font-size: 40px;
    line-height: 40px !important;
    font-family: var(--tanspot-font-two) !important;
    color: var(--tanspot-black);
    font-weight: 700;
}

.about-three__count-box span {
    font-size: 40px;
    line-height: 40px;
    font-family: var(--tanspot-font-two);
    color: var(--tanspot-black);
    font-weight: 700;
}

.about-three__experience-text {
    margin-top: 5px;
}

.about-three__shape-1 {
    position: absolute;
    top: -30px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(var(--tanspot-base-rgb), .20);
    border-radius: 20px;
    z-index: -1;
}

.about-three__shape-2 {
    position: absolute;
    left: -20px;
    bottom: -40px;
    opacity: .30;
    z-index: -1;
}

.about-three__shape-2 img {
    width: auto;
}

.about-three__right {
    position: relative;
    display: block;
}

.about-three__right .section-title {
    margin-bottom: 30px;
}

.about-three__points-box {
    position: relative;
    display: block;
    margin: 27px 0 27px;
}

.about-three__points {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-three__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-three__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(var(--tanspot-base-rgb), .60);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-three__points li .icon:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.about-three__points li:hover .icon:before {
    background-color: rgba(var(--tanspot-black-rgb), 1);
}

.about-three__points li:hover .icon {
    background-color: rgba(var(--tanspot-black-rgb), .60);
}

.about-three__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--tanspot-white);
    transition: all 500ms ease;
}

.about-three__points li:hover .icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.about-three__points li .content {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__points li .content h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-three__points-two {
    position: relative;
    display: block;
}

.about-three__points-two li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-three__points-two li+li {
    margin-top: 5px;
}

.about-three__points-two li .icon {
    position: relative;
    display: inline-block;
}

.about-three__points-two li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--tanspot-base);
}

.about-three__points-two li p {
    color: var(--tanspot-black);
    font-weight: 500;
}

.about-three__btn-and-video {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.about-three__btn-box {
    position: relative;
    display: block;
}

.about-three__video-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.about-three__video-link {
    position: relative;
    display: block;
}

.about-three__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: var(--tanspot-white);
    background-color: var(--tanspot-base);
    border-radius: 50%;
    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;
    z-index: 1;
}

.about-three__video-icon:hover {
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
}

.about-three__video-link .ripple,
.about-three__video-icon .ripple:before,
.about-three__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--tanspot-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--tanspot-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--tanspot-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--tanspot-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.about-three__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-three__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.about-three__video-text {
    font-weight: 600;
    color: var(--tanspot-black);
    font-family: var(--tanspot-font-two);
}
















/*==============================================
    End
===============================================*/