:root {
    --font-theme: 'Roboto', sans-serif;
    --font-heading: 'Anton', sans-serif;
    --bs-white: #ffff;
    --red: #b62831;
    --redHover: #992129;
    --red-rgb: #fcf3f3;
}

.page-body {
    line-height: 1.5;
    font-size: 16px;
}

.p-50 {
    padding: 50px 0;
}

.bg-white {
    background-color: #ffffff;
}

.overflow-hidden {
    overflow: hidden;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.text-color {
    color: var(--red) !important;
}

.text-color-2 {
    color: var(--redHover) !important;
}

.text-white {
    color: var(--bs-white) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-content-center {
    justify-content: center;
    align-items: center;
}

.align-items-center {
    align-items: center;
}

.container-wrap {
    max-width: 930px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    position: relative;
}

.theme-link {
    display: inline-flex;
    padding: 7px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    border: 1px solid rgba(95, 99, 104, 0.50);
    background-color: transparent;
    color: #5F6368;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.theme-link svg {
    transition: all 0.3s ease;
}

.theme-link:hover {
    border: 1px solid var(--redHover);
    background-color: #fcf3f3;
    color: var(--red);
}

.theme-link:hover svg path {
    stroke: var(--redHover);
}

.theme-link:hover svg {
    transform: translateX(3px);
}

.heading-2 {
    margin-bottom: 50px;
}

.heading-2 .heading-2__subtitle {
    max-width: 650px;
    margin-top: 20px;
}

.heading-2 .heading-2__title {
    font-size: 30px;
    font-weight: 500;
    color: #202124;
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.25;
}

.heading-2 .heading-2__title > span,
.heading-2 .heading-2__title .heading-2__title___red {
    font-weight: 500;
    font-family: var(--font-heading);
}
.heading-2 .heading-2__title .heading-2__title___red{
	color:var(--red);
}

.heading-2 .heading-2__desc {
    font-size: 18px;
    margin-top: 15px;
}

.heading-2__line {
    display: inline-flex;
    width: 40%;
    height: 1px;
    background-color: var(--bs-white);
}

@media (max-width: 1200px) {
    .container-wrap {
        max-width: unset;
    }
}

@media (max-width: 1024px) {
    .heading-2 .heading-2__title {
        font-size: 27px;
    }

    .heading-2 .heading-2__desc {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .heading-2 .heading-2__title {
        font-size: 25px;
    }

    .container-wrap {
        flex-direction: column;
    }
}

/*================================
         section-counselors
 ===================================*/
.section-counselors__wrap::after {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(10%);
    width: 1920px;
    height: 1920px;
    border-radius: 50%;
    display: block;
    background: linear-gradient(180deg, rgba(249, 249, 249, 0.95) 0%, rgba(242, 242, 242, 0.00) 34.38%);
}

.section-counselors__left,
.section-counselors__right {
    z-index: 2;
    position: relative;
}

.section-counselors__right {
    width: 350px;
    flex-shrink: 0;
}

.section-counselors__right > img {
    animation: flying 3s linear infinite;
}

@keyframes flying {
    0% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    50% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    100% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }
}

.section-counselors__logo {
    display: inline-flex;
    padding: 11px 20px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border-radius: 25px;
    font-size: 14px;
    color: #605b5b;
    background: var(--red-rgb);
}

.section-counselors__button {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-counselors__button .button-contact {
    display: flex;
    padding: 15px 25px;
    align-items: center;
    gap: 15px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.section-counselors__button .button-contact .icon {
    flex-shrink: 0;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.section-counselors__button .hotline.button-contact img {
    animation: run 1s infinite ease-in-out;
}

@keyframes run {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

.section-counselors__button .button-contact:hover {
    border: 1px solid var(--redHover);
    box-shadow: 0px 14px 64px -4px rgba(24, 39, 75, 0.12), 0px 8px 22px -6px rgba(24, 39, 75, 0.12);
}

.section-counselors__button .button-contact .content {
    display: flex;
    flex-direction: column;
}

.section-counselors__button .button-contact .content .title {
    font-size: 16px;
    display: flex;
    font-weight: 600;
    color: var(--redHover);
}

.section-counselors__button .button-contact .content > span {
    color: rgba(0, 0, 0, 0.50);
    font-weight: 500;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .section-counselors__wrap {
        width: unset;
    }
}

@media (max-width: 992px) {
    .section-counselors__wrap {
        flex-wrap: wrap;
        justify-content: center;
    }


    .section-counselors__button {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .section-counselors__left {
        order: 2;
    }

    .section-counselors__right {
        order: 1;
    }

    .section-counselors .container-wrap {
        display: unset;
    }

    .section-counselors__right,
    .section-counselors__button .button-contact {
        width: 100%;
    }
    .section-counselors__button .button-contact{
        padding: 12px 15px;
    }
}

/*================================
      section-responsive-web
==================================== */
.section-responsive-web {
    padding: 50px 0 20px;
}

.responsive-web__image {
    position: relative;
    flex-shrink: 0;
}

.responsive-web__image .image-default {
    z-index: 2;
    position: relative;
    width: 360px;
    height: auto;
}

.responsive-web__image .image-animation {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: auto;
    z-index: 1;
    animation: rotate-360 30s infinite linear;
}

@keyframes rotate-360 {
    100% {
        transform: rotate(360deg);
    }
}

.responsive-web__link {
    margin-top: 20px;
}

/*==============================
            section-map
=====================================*/
.object-fit-cover {
    object-fit: cover;
}

.section-map {
    background: #f0f7ff;
}

.section-map__left {
    width: 40%;
}

.section-map__right {
    width: 60%;
}

.section-map__gird {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;

}

.section-map__gird .card-number {
    width: calc(100% / 2 - 10px);
}

.card-number {
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 24px 32px 0 rgba(63, 71, 99, .05);
    padding: 20px 0;
    text-align: center;
    transition: all .5s;
}

.card-number__icon {
    font-size: 35px;
}

.card-number__total {
    font-weight: 700;
}

.map-image__wrap,
.map-image__img {
    width: 760px;
    height: 620px;
}

.image-pc {
    display: block;
}

.image-mobile {
    display: none;
}

.line-1 {
    bottom: 109px;
    left: 269px;
}

.line-2 {
    bottom: 81px;
    left: 297px;
    transform: rotate(-43deg);
}

.line-3 {
    bottom: 88px;
    left: 338px;
}

.line-4 {
    bottom: 103px;
    left: 341px;
    transform: rotate(12deg);
}

.line-5 {
    bottom: 115px;
    left: 338px;
    transform: rotate(-61deg);
}

.line-6 {
    top: 150px;
    left: 204px;
}

.line-7 {
    top: 239px;
    left: 269px;
}

.line-8 {
    top: 322px;
    left: 328px;
}

.line-9 {
    top: 182px;
    left: 293px;
}

.line-image__wrap .circle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 100px;
    z-index: 2;
}

.line-image-1 .circle {
    bottom: 105px;
    left: 330px;
}

.line-image-5 .circle {
    bottom: 138px;
    left: 374px;
}

.line-image-6 .circle {
    bottom: 471px;
    left: 333px;
}

.line-image-7 .circle {
    bottom: 380px;
    left: 333px;
}

.line-image-8 .circle {
    left: 417px;
    bottom: 301px;
}

.line-image-9 .circle {
    bottom: 412px;
    left: 312px;
}

.line-image-1 .circle::after,
.line-image-5 .circle::after,
.line-image-6 .circle::after,
.line-image-7 .circle::after,
.line-image-8 .circle::after,
.line-image-9 .circle::after {
    position: absolute;
    content: '';
    left: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid #8aebfb;
    border-radius: 50%;
    animation: Ani 2s infinite;
    z-index: 3;

}


@keyframes Ani {
    0% {
        box-shadow: 0 0 0 var(--redHover);
        border: 1px solid var(--redHover);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 30px var(--bs-white);
        border: 1px solid var(--bs-white);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 40px #8aebfb;
        border: 0 solid #8aebfb;
        transform: scale(2)
    }
}

.line-image__partner {
    position: absolute;
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 10px;
    width: 335px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    box-shadow: 0 24px 32px 0 rgba(63, 71, 99, .05);
    z-index: 5;
    border: 1px solid #2f7bc630;
    transition: all 0.35s cubic-bezier(.97, 0, .21, 1);
    transform: rotate(10deg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.line-image-1 .line-image__partner {
    bottom: 128px;
    left: 165px;
}

.line-image-5 .line-image__partner {
    bottom: 162px;
    left: 210px;
}

.line-image-8 .line-image__partner {
    bottom: 325px;
    left: 252px;
}

.line-image-6 .line-image__partner {
    bottom: 381px;
    left: 167px;
}

.line-image-9 .line-image__partner {
    bottom: 321px;
    left: 149px;
}

.line-image-7 .line-image__partner {
    bottom: 291px;
    left: 168px;
}

.line-image__partner::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    z-index: 1;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bs-white);
}

.line-image-6 .line-image__partner::after,
.line-image-7 .line-image__partner::after,
.line-image-9 .line-image__partner::after {
    position: absolute;
    content: '';
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--bs-white);
    border-top: unset;
}

.line-image__partner::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 100px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.line-image-9 .line-image__partner::before {
    top: -29%;
}

.line-image-7 .line-image__partner::before {
    top: -21%;
}

.line-image-6 .line-image__partner::before {
    top: -21%;
}

.line-image__partner .item {
    width: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.35s ease-in;
    transition-delay: 0.1s;
}

.line-image__partner .item a:hover {
    color: var(--red);
}

.line-image__wrap {
    cursor: pointer;
}

.line-image__wrap:hover .line-image__partner {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: rotate(0deg);
    z-index: 3;
}

.line-image__wrap:hover .line-image__partner::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


@media (max-width: 1200px) {
    .map-image__wrap {
        margin: 0 auto;
    }

    .section-map .container-wrap {
        flex-direction: column;
    }

    .section-map__left,
    .section-map__right {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .section-map__gird .card-number {
        width: calc(100% / 4 - 15px);
    }
}

@media (max-width: 768px) {
    .section-map__gird {
        gap: 15px;
    }

    .section-map__gird .card-number {
        width: calc(100% / 2 - 8px);
    }

    .section-map .heading-2 {
        text-align: center;
    }

    .map-image__wrap,
    .map-image__img {
        width: 350px;
        height: 480px;
    }

    .image-pc {
        display: none;
    }

    .image-mobile {
        display: block;
    }

    .line-1 {
        bottom: 82px;
        left: 99px;
        width: 45px;
    }

    .line-2 {
        bottom: 61px;
        left: 123px;
        transform: rotate(-43deg);
        width: 27px;
    }

    .line-3 {
        bottom: 70px;
        left: 155px;
        width: 16px;
    }

    .line-4 {
        bottom: 91px;
        left: 150px;
        transform: rotate(-21deg);
        width: 28px;
    }

    .line-5 {
        bottom: 79px;
        left: 155px;
        transform: rotate(-32deg);
        width: 20px;
    }

    .line-6 {
        top: 113px;
        left: 40px;
        height: 282px;
    }

    .line-7 {
        top: 187px;
        left: 92px;
        height: 205px;
    }

    .line-8 {
        top: 248px;
        left: 134px;
        height: 144px;
    }

    .line-9 {
        top: 142px;
        left: 89px;
        height: 234px;
    }

    .line-image__wrap .circle::before {
        position: absolute;
        content: '';
        width: 25px;
        height: 25px;
        left: -10px;
        top: -10px;
        border-radius: 50%;
        background-color: transparent;

    }

    .line-image-1 .circle {
        bottom: 81px;
        left: 147px;
    }

    .line-image-5 .circle {
        bottom: 106px;
        left: 181px;
    }

    .line-image-6 .circle {
        bottom: 365px;
        left: 149px;
    }

    .line-image-7 .circle {
        bottom: 294px;
        left: 149px;
    }

    .line-image-8 .circle {
        left: 214px;
        bottom: 232px;
    }

    .line-image-9 .circle {
        bottom: 318px;
        left: 133px;
    }

    .line-image__partner {
        width: 300px;
        padding: 8px;
    }

    .line-image__partner .item {
        width: 90px;
        font-size: 10px;
    }

    .line-image-1 .line-image__partner {
        bottom: 105px;
        left: 0px;
    }

    .line-image-5 .line-image__partner {
        bottom: 129px;
        left: 35px;
    }

    .line-image-8 .line-image__partner {
        bottom: 257px;
        left: 67px;
    }

    .line-image-7 .line-image__partner {
        bottom: 212px;
        left: 2px;
    }

    .line-image-9 .line-image__partner {
        bottom: 239px;
        left: -15px;
    }

    .line-image-6 .line-image__partner {
        bottom: 283px;
        left: 1px;
    }

}

@media (max-width: 376px) {
    .line-image__partner {
        width: 290px;
        padding: 6px;
    }

    .line-image__partner .item {
        width: 85px;
        font-size: 11px;
    }

    .line-image-1 .line-image__partner {
        bottom: 104px;
        left: 4px;
    }

    .line-image-5 .line-image__partner {
        left: 38px;
    }

    .line-image-8 .line-image__partner {
        bottom: 258px;
        left: 71px;
    }

    .line-image-7 .line-image__partner {
        bottom: 218px;
        left: 6px;
    }

    .line-image-9 .line-image__partner {
        bottom: 242px;
        left: -10px;
    }

    .line-image-6 .line-image__partner {
        bottom: 288px;
        left: 5px;
    }

}

@media (max-width: 358px) {
    .line-image__partner {
        display: none !important;
    }
}

/*=====================================
          section-project
======================================*/
.section-project::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(249, 249, 249, 0.95) 0%, rgba(242, 242, 242, 0.00) 34.38%);
}

.project-gird {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 16px;
    align-items: center;
    justify-content: center;
}

.project-gird__item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.06), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    transition: .3s ease-in-out;
}

.project-gird__item:hover {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: 0px 10px 32px -4px rgba(24, 39, 75, 0.20), 0px 6px 14px -6px rgba(24, 39, 75, 0.30);
    transform: translateY(-5px);
}

.project-item__image > img {
    width: 100% !important;
    height: auto !important;
}

.project-item__body {
    padding: 15px 0;
    text-align: center;
}

.project-item__inner {
    margin-bottom: 0;
}

.project-item__title {
    color: #202124;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
    line-height: normal;
    font-style: normal;
    text-transform: capitalize;
}

.project-item__url {
    font-size: 16px;
    font-weight: 400;
    color: #2563EB;
}

.project-item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--red);
    transition: all 0.3s ease;
}

.project-item__link > span {
    transition: all 0.3s ease;
}

.project-item__link:hover > span {
    transform: translateX(3px);
}

.project-item__link:hover {
    color: var(--red);
}

.section-project__link {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 991px) {
    .project-gird {
        display: grid;
        gap: 16px;
        grid-template-columns: 220px 220px 220px;
    }

    .section-project::before {
        position: unset;
        content: unset;
    }

    .project-item__title {
        font-size: 16px;
    }

}

@media (max-width: 768px) {
    .project-gird {
        display: grid;
        gap: 10px;
        grid-template-columns: 220px 220px 220px;
    }
}

@media (max-width: 768px) {
    .project-gird {
        display: grid;
        gap: 10px;
        grid-template-columns: 190px 190px 190px;
    }
}
@media (max-width: 600px) {
    .project-gird {
        display: grid;
        gap: 10px;
        grid-template-columns: 190px 190px;
    }
}

@media (max-width: 400px) {
    .project-gird {
        display: grid;
        gap: 10px;
        grid-template-columns: 170px 170px;
    }
}
@media (max-width: 370px) {
    .project-gird {
        display: grid;
        gap: 16px;
        grid-template-columns: 220px;
    }
}

/*================================
   section-introduce-4
==================================== */
.section-introduce-4 {
    padding: 100px 0;
    background: linear-gradient(rgb(252 243 243) 0%, rgba(217, 217, 217, 0) 100%);
}

.section-introduce-4 .section-heading {
    margin-bottom: 50px;
}

.section-introduce-4 .section-heading .heading {
    color: rgb(32, 33, 36);
}

.section-introduce-4__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

}

.introduce-4__item {
    width: calc(100% / 3 - 15px);
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background-color: var(--bs-white);
    box-shadow: 0px 14px 64px -4px rgba(24, 39, 75, 0.12), 0px 8px 22px -6px rgba(24, 39, 75, 0.12);
}

.introduce-4__image {
    width: 74px;
    height: 74px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.10);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bs-white);
    padding: 16px;
    transition: vall 0.3s ease;
    overflow: hidden;
}

.introduce-4__item:hover .introduce-4__image {
    box-shadow: 0 10px 30px rgb(17 17 17 / 11%);
}

.introduce-4__item:hover .introduce-4__image > img {
    animation: 350ms ease-in-out 1 slideInLeft;
}

@keyframes slideInLeft {

    33.33% {
        transform: translateX(100px);
    }

    66.66% {
        transform: translateX(-100px);
        opacity: 0;
        visibility: hidden;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

.introduce-4__body {
    padding: 47px 25px 26px 25px;
}

.introduce-4__title {
    color: #202124;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.3;
}

.introduce-4__text {
    color: rgba(32, 33, 36, 0.80);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .section-introduce-4 {
        padding: 50px 0;
    }

    .section-introduce-4__wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    .introduce-4__item {
        width: calc(100% / 2 - 15px);
    }

    .introduce-4__item:last-child {
        margin-top: 30px;
    }

}

@media (max-width: 576px) {
    .introduce-4__item {
        width: 100%;
        margin-bottom: 30px;
    }

    .introduce-4__item:last-child {
        margin-top: unset;
    }

    .section-introduce-4 {
        padding-bottom: 0;
    }
}

/* ==============================
       section-rental
=================================*/
.section-rental {
    padding: 100px 0 50px;
}

.section-rental .heading-2__title {
    font-size: 40px;
}

.section-rental .heading-2__desc {
    font-size: 20px;
}

@media (max-width: 1200px) {
    .section-rental .heading-2__title {
        font-size: 35px;
    }

    .section-rental .heading-2__desc {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .section-rental .heading-2__title {
        font-size: 30px;
    }

    .section-rental .heading-2__desc {
        font-size: 17px;
    }
}

/* ==============================
       section-why
=================================*/
.page-body .section-rental + .section-why{
	padding-top: 50px !important;
}
.section-why {
    padding: 50px 0 !important;
}

.section-why__inner .image-phone {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.section-why__inner .image-phone img {
    animation: circleRotate 7s infinite;
    -webkit-animation: circleRotate 7s infinite;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes circleRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circleRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.section-why__inner .content {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;

}

.section-why .section-why__inner .content .why-flex_left,
.section-why .section-why__inner .content .why-flex_right {
    width: calc((100% - 270px) / 2);
    padding: 35px 15px;
}

.why-box-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.why-box-item + .why-box-item {
    margin-top: 30px;
}

.why-box-item .head {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-box-item .title {
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 0;
    width: 100%;
}

.why-box-item .icon {
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bs-white);
    width: 60px;
    height: 60px;
    border-radius: 5px;
    font-size: 22px;
}

.why-flex_left .why-box-item {
    text-align: right;
}

.why-flex_right .why-box-item .head {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .why-box-item .title {
        font-size: 18px;
    }

    .why-box-item .icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .section-why .section-why__inner .content .why-flex_left,
    .section-why .section-why__inner .content .why-flex_right {
        width: 100%;
        padding: 0;
    }

    .section-why__inner .content {
        flex-direction: column;
        gap: 20px;
    }

    .why-flex_left .why-box-item {
        text-align: left;

    }

    .why-flex_left .why-box-item .head {
        flex-direction: row-reverse;
    }

}
