
.section-gap {
    padding: 65px 0;
}

@media (max-width: 1200px) {
    .section-gap {
        padding: 55px 0;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1950px) {
    .page-introduce .container {
        max-width: 80% !important;
    }
}


@media screen and (max-width: 992px) {
    .section-gap {
        padding: 45px 0;
    }
}


.section-heading .heading-subtitle {
    position: relative;
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-heading .heading-desc {
    margin-top: 12px;
    font-size: 1.15em;
}


.section-introduction .introduction-center {
    right: -125px;
    bottom: 0;
    width: 250px;
    padding: 10px;
    z-index: 1;
}

.section-introduction .introduction-image::before {
    position: absolute;
    content: "";
    display: block;
    right: -30px;
    top: 0;
    height: 50%;
    width: 15px;
    background: var(--primary-color);
}

.section-introduction .introduction-center:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #F2F4F7;
    border-radius: 15px;
    z-index: -1;
    right: 0;
    bottom: 0;
}


.point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 70px;
    background-color: var(--primary-color);
    border-radius: 30% 70% 62% 38% / 30% 41% 59% 70%;
    transition: all 500ms ease;
    z-index: 1;
}

.point-icon i {
    font-size: 25px;
    color: var(--bs-white);
    transition: all 500ms ease;
}

.about-box:hover .point-icon i {
    -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-point {
    padding: 10px 0;
}

.point-content {
    flex: 1;
}

.point-content h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 6px;
    color: #222;
}

.point-content .point-desc {
    font-size: 15px;
    line-height: 1.6em;
    color: #555;
    max-width: 60%;
}

@media screen and (max-width: 1200px) {
    .section-introduction .introduction-center {
        width: 200px;
        right: -75px;
    }

    .about-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .point-content h4 {
        font-size: 16px;
    }

    .point-content .point-desc {
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 992px) {
    .section-introduction .introduction-image {
        max-width: 85%;
        margin: 0 auto;
    }

    .section-introduction .introduction-image:before {
        width: 10px;
        right: -20px;
    }

    .section-heading .heading-desc {
        font-size: 1.075em;
    }

    .section-introduction .introduction-center {
        width: 150px;
        right: -45px;
    }

}

@media screen and (max-width: 425px) {
    .section-introduction .introduction-center {
        display: none;
    }

    .point-title {
        height: 45px;
    }

}


.section-service .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.section-service .img-box img {
    transition: all 500ms ease;
}

.service-item:hover .img-box img {
    transform: scale(1.1);
}

.section-service .service-content {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--bs-white);
    box-shadow: 0 10px 60px 0 rgb(0 0 0 / 7%);
    padding: 30px 30px 10px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 1;
}

.service-content .service-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    margin: -70px auto 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 8px solid var(--bs-white);
    transition: all 500ms ease;
    z-index: 1;
}

.section-service .service-item:hover .service-icon {
    background-color: var(--bs-dark);
}

.section-service .service-item:hover .service-icon i {
    -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);
    }
}

.section-service .service-icon span {
    position: relative;
    display: inline-block;
    font-size: 25px;
    color: var(--bs-white);
    transition: all 500ms ease;
}

.section-service .service-subtitle {
    font-weight: 600;
    margin-bottom: 5px;
}

.service-content .service-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
}

.section-service .service-desc {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 16px;
}


@media (max-width: 768px) {
    .section-service .service-content {
        padding: 20px;
    }

    .service-content .service-icon {
        height: 70px;
        width: 70px;
        border-width: 6px;
        margin: -50px auto 12px;
    }

    .section-service .service-icon span {
        font-size: 26px;
    }

    .service-content .service-title {
        font-size: 18px;
        height: 25px;
    }

    .section-service .service-desc {
        font-size: 14px;
    }
}


.section-why .why-choose-one__right-bg {
    position: absolute;
    right: 0;
    width: calc((100% - -197px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    z-index: 1;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 74.5% 100%, 74.5% 100%, 9.5% 100%, 0 74%);
}

.section-why .why-choose-one__right-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.38);
    z-index: 2;
}


.section-why .sliding-text__title {
    height: 170px;
}

.section-why .sliding-text__title .marquee {
    display: inline-block;
    white-space: nowrap;
    font-size: 150px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(217, 2, 2, .10) 0%, rgba(217, 2, 2, 0) 67.4%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.section-why .why-right {
    position: relative;
    display: block;
    margin-left: 120px;
    margin-right: 0;
    margin-top: 50px;
    z-index: 2;
}


.why-count .count-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 300ms ease;
}

.why-count:hover .count-icon {
    transform: scale(0.9);
}

.why-right .why-count {
    position: relative;
    display: block;
    text-align: center;
    background-color: rgba(17, 17, 17, .90);
    padding: 20px 20px 17px;
    border-radius: 10px;
}

.count-content .content-box {
    font-size: 20px;
    font-weight: 800;
    color: var(--bs-white);
    line-height: 1;
    margin-bottom: 8px;
}

.count-content .content-text {
    font-size: 18px;
    line-height: 28px;
    color: var(--bs-white);
    text-transform: capitalize;
}

.why-box ul li .icon i {
    font-size: 25px;
    color: var(--primary-color);
}

.why-box ul li p {
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-gray-800);
    margin: 0;
}


@media (max-width: 1200px) {
    .section-why .why-choose-one__right-bg {
        display: none !important;
    }

    .section-why .why-right {
        margin-left: 0 !important;
        margin-top: 20px;
    }

    .why-right .section-heading {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .section-why .sliding-text__title {
        height: 120px;
    }

    .section-why .sliding-text__title .marquee {
        font-size: 100px;

    }
}


.section-vision {
    padding: 50px 0 0;
}

.section-vision .section-main .section-nav-tab .nav-item .nav-link {
    background-color: var(--bs-gray-400);
    font-weight: 600;
    color: var(--bs-gray-800);
    padding: 8px 25px;
    transform: skew(-20deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.section-vision .section-main .section-nav-tab .nav-item .nav-link span {
    transform: skew(20deg);
}

.section-vision .section-main .section-nav-tab .nav-item .nav-link.active {
    color: var(--bs-white);
    background: var(--primary-color);
    font-weight: 700;
}


#pills-tabContent {
    min-height: 400px !important;
}

.section-vision .section-heading {
    margin-bottom: 5px;
}

.section-vision .line-vision {
    display: inline-flex;
    width: 100%;
    height: 3px;
    position: relative;
    background-color: var(--bs-gray-200);
}

.section-main .tab-content .section-heading .heading-desc ul {
    list-style: none;
    padding-left: 0;
}

.section-main .tab-content .section-heading .heading-desc ul > li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.section-main .tab-content .section-heading .heading-desc ul > li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .section-vision {
        padding: 30px 0 0;
    }

    #pills-tabContent {
        min-height: auto !important;
    }
}

@media (min-width: 1285px) {
    .section-service .row {
        padding: 0 80px;
        max-width: 90%;
        transform: translateX(85px);
    }
}


@media (min-width: 1200px) and (max-width: 1285px) {

    .section-introduction .introduction-center {
        right: -100px;
        width: 150px;
    }

    .about-point {
        gap: .5rem !important;
    }

    .point-content .point-desc {
        max-width: 100%;
    }

    .section-why .why-choose-one__right-bg {
        right: -40px;
    }

    .section-why .why-right {
        margin-top: 15px;
        margin-left: 75px;
    }
}