.header-logo {
    width: 200px;
}

.close-navigation {
    display: none;
}

.header .header-overlay {
    background: #283741ad;
    backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation ul {
    display: flex;
    align-items: center;
}

.header-navigation > ul > li > a,
.header-navigation > ul > li > button {
    text-transform: uppercase;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7px 20px;
    color: var(--bs-gray-800);
    white-space: nowrap;
}

.header-navigation > ul > li > a i {
    transition: var(--transition-default);
}

.header-navigation > ul > li:hover > a {
    background-color: var(--bs-gray-200);
    color: var(--primary-color) !important;
    border-radius: 5px;
}

.header-navigation > ul > li:hover > a i {
    transform: rotate(180deg);
}

.header-navigation > ul > li > ul,
.header-navigation > ul > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    width: 250px;
    border-bottom: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 32px 48px -8px rgba(0, 0, 0, 0.10), 0px 0px 14px -4px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: top;
}

.header-navigation > ul > li > ul > li,
.header-navigation > ul > li > ul > li > ul > li {
    width: 100%;
    position: relative;
}

.header-navigation > ul > li > ul > li > a,
.header-navigation > ul > li > ul > li > ul > li > a {
    color: var(--bs-gray-700);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
    padding: 12px 15px;
    font-weight: 500;
    transition: var(--transition-default);
}

.header-navigation > ul > li > ul > li > ul {
    left: 100%;
    top: 0;
}

.header-navigation > ul > li:hover > ul,
.header-navigation > ul > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scaleY(1);
}

.header-navigation > ul > li > ul > li:hover > a {
    color: var(--primary-color);
    padding-left: 25px;
    background: rgba(var(--primary-rgb), 0.1);
}

.header-navigation > ul > li > ul > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.header-navigation > ul > li > ul > li:hover > a::before {
    width: 12px;
}


.header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 20;
    left: 0;
    transition: top 0.3s ease-in;
}

.header.is-scroll {
    position: fixed;
    animation: header-scroll 0.5s forwards;
    transition: top 0.3s ease-in;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
}

.header.is-scrolled .header-bottom .header-navigation > ul > li > a {
    color: var(--bs-white);
}

.header.is-scroll {
    background: var(--bs-white);
}

.header .header-navigation {
    margin-left: auto;
    margin-right: auto;
}

.header .header-toolbars {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding-left: 35px;
    position: relative;
}

.header .header-toolbars .header-button:hover {
    color: var(--primary-color);
}

.header .header-language_item > img {
    width: 30px;
    height: 30px;
}


@keyframes header-scroll {
    0% {
        top: -50px;
    }

    100% {
        top: 0;

    }
}

.header-bars {
    width: 38px;
    height: 35px;
}

.header-bars svg {
    width: 30px;
    height: 30px;
}

.header-bars:hover svg .one,
.header-bars:hover svg .four {
    width: 0;
}

.header-bars:hover svg .two {
    transform: translate3d(-5px, -15px, 0);
    width: 90px;
}

.header-bars:hover svg .three {
    transform: translate3d(-30px, 15px, 0);
    width: 90px;
}


/*--section-hero---*/

.section-hero {
    margin-top: -101px;
}

.section-hero::before {
    position: absolute;
    content: '';
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 87%) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.hero-item .hero-item_image video,
.hero-item .hero-item_image img {
    width: 100% !important;
    height: 100% !important;
    vertical-align: middle;
}

.hero-content .hero-content_title {
    color: var(--bs-white);
    font-size: 2em;
    font-family: var(--font-heading);
    margin-bottom: 0;
    font-weight: 600;
    line-height: normal;
}

.hero-content .hero-content_desc {
    font-size: 1.2em;
    color: var(--bs-white);
    font-family: var(--font-heading);
    line-height: 24px;
}

.hero-content .hero-content_desc p:last-child,
.hero-content .hero-content_desc ul:last-child,
.hero-content .hero-content_desc ol:last-child {
    margin-bottom: 0;
}

.swiper-pagination {
    position: absolute;
    right: 40px;
    transform: translateY(-50%);
    z-index: 3;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    background: #999;
    opacity: 1;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Active */
.swiper-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--primary-color);
}

.section-hero .slider-button_next,
.section-hero .slider-button_prev {
    opacity: 0;
}

.section-hero:hover .slider-button_next,
.section-hero:hover .slider-button_prev {
    opacity: 1;
}


/*section-intro*/

.section-introduce__layer {
    font-weight: 500;
    padding: 20px 30px;
    font-size: 16px;
    color: var(--bs-gray-700);
}

.section-introduce__layer .icon {
    width: 60px;
    height: 60px;
}

.section-introduce__layer .number {
    font-weight: 600;
    font-size: 2em;
    font-family: var(--font-sub);
}

/*-----------slider-button-------------*/

.slider-button_next,
.slider-button_prev {
    font-size: 1.1em;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    width: 44px;
    height: 44px;
    outline: none;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: var(--primary-color);
    border-radius: 5px;
    color: var(--bs-white);
}


.section-hero .slider-button_prev {
    left: 30px;
}

.section-hero .slider-button_next {
    right: 30px;
}

.slider-button_next:disabled,
.slider-button_prev:disabled,
.slider-button_next.swiper-button-disabled,
.slider-button_prev.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}


.slider-button_next:hover,
.slider-button_prev:hover {
    background-color: var(--secondary-color);
}

.slider-shadow {
    margin: -10px !important;
}

.slider-shadow > .swiper {
    padding: 10px !important;
}


/*section-choose*/
.choose-main::before {
    content: '';
    height: 70%;
    width: 1px;
    background-color: var(--primary-color);
    position: absolute;
    top: 49px;
    left: 25px;
    z-index: 0;
}

.choose-main .choose-item {
    position: relative;
    margin-bottom: 23px;
    text-align: left;
    gap: 15px;
    z-index: 1;
}

.choose-main .choose-item .choose-item__icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    border-radius: 999px;
    font-size: 24px;
    font-weight: 600;
    background-color: var(--bs-white);
    -webkit-transition: var(--transition-default);
    transition: var(--transition-default);
}

.choose-main .choose-item .choose-item__content .choose-item__title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--bs-black);
    transition: var(--transition-default);
}

.choose-main .choose-item .choose-item__content {
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    padding-bottom: 15px;
}

.choose-main .choose-item:last-child .choose-item__content {
    border-bottom: none;
    padding-bottom: 0;
}

.choose-main .choose-item:hover .choose-item__icon {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.choose-main .choose-item:hover .choose-item__content .choose-item__title {
    color: var(--primary-color);
}


/*article-card*/


.article-card__title {
    font-size: 1.1em;
    color: var(--bs-black);
}

.article-card__text {
    font-weight: 500;
    color: var(--bs-gray-600);
}

.article-card__meta {
    font-size: 14px;
    border-top: 1px solid rgb(var(--primary-rgb), 0.2);
}

.article-card__meta {
    color: var(--bs-gray-700);
}

.article-card__date-wrapper {
    background: var(--bs-white);
    border-radius: 5px;
    padding: 5px 10px;
    top: 10px;
    right: 10px;
}

.article-card__date-wrapper .date-day {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 700;
}

.article-card__date-wrapper .date-meta {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 500;
}

.article-card:hover .card-body .article-card__title {
    color: var(--primary-color);
}

.article-card:hover .article-card__image img {
    transform: scale(1.1) rotateX(6deg) rotateY(-6deg);
}

.blog-card_action > a,
.article-card .article-card_action > a {
    color: var(--bs-gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    width: max-content;
}

/*section-article*/


.section-article__home .list-article .article-card {
    flex-direction: row;
}

.section-article__home .list-article .article-card .article-card__header {
    width: 250px;
    flex-shrink: 0;
}

.section-article__home .list-article .article-card .article-card__image {
    height: 100%;
}

.section-article__home .list-article .article-card .article-card__dateMobile {
    font-size: 0.95em;
    color: var(--bs-gray-600);
}

/*======================================
               section-course
===========================================*/

.course-main .course-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.course-main .course-item .content-header {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    transition: color 0.4s ease;
}

.course-main .course-item:hover img {
    transform: scale(1.05);
}

/*section-contact-main*/


.section-contact_main .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px 0 0 20px;
}

.section-contact_main .form-inner {
    background: var(--bs-white);
    border-radius: 0 20px 20px 0;
}


/*section-map*/

.section-map .contact-map iframe {
    width: 100%;
    height: 360px;
    vertical-align: middle;
}


/*footer */

.footer-subscribe .button-subscribe {
    width: 45px;
    height: 45px;
    top: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 5px;
}

.footer-subscribe .frm-email {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    position: relative;
    height: 50px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 0 60px 0 20px;
    border-radius: 5px;
}

.footer-bottom .row > [class*="col-"] {
    position: relative;
    padding: 60px 50px;
}

.footer-bottom .row > [class*="col-"]:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 1px;
    height: 100%;
    background: #ffffff2e;
}

.footer {
    background: var(--secondary-color);
    color: #e6ffff;
}

.footer-top {
    padding: 60px 0 20px 0;
}

.footer-logo {
    width: 100px;
    filter: brightness(0) invert(1);
}

.footer-heading {
    font-size: 1.1em;
    line-height: 1.5;
}

.footer-title {
    color: var(--bs-white);
    text-transform: uppercase;
    position: relative;
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 10px;
}

.footer .footer-column .footer-divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    margin-bottom: 28px;
}

.footer .footer-column .footer-divider span {
    height: 4px;
    border-radius: 5px;
    background: var(--bs-white);
}

.footer .footer-column .footer-divider span:nth-of-type(1) {
    width: 80px;
    background: var(--bs-white);
}

.footer .footer-column .footer-divider span:nth-of-type(2) {
    width: 15px;
}

.footer .footer-column .footer-divider span:nth-of-type(3) {
    width: 6px;
}

.footer-content li > a {
    color: #e6ffff;
    display: block;
}

.footer-social > a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #ffffff2e;
    color: var(--primary-color);
}

.footer-social > a:hover {
    color: var(--bs-white);
    background-color: var(--primary-hover);
}

.footer-bottom {
    border-top: 1px solid #ffffff2e;
}

.footer-contact__bg {
    background: linear-gradient(to top, #ffffff33, #c5d7d64f);;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
    border: 1px solid var(--primary-color);
}

.footer-contact .title {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--bs-white);
    width: max-content;
    border-bottom: 1px solid #ffffff73;
}

.footer-contact a {
    color: #e6ffff;
}

.footer-contact a:hover {
    color: var(--bs-white);
}

.footer-copyright {
    border-top: 1px solid #ffffff2e;
}


/*----------detailContent-------*/

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

.detailContent iframe {
    max-width: 100% !important;
}

.detailContent strong {
    font-weight: 700 !important;
}

.detailContent h1, .detailContent h2, .detailContent h3, .detailContent h4, .detailContent h5, .detailContent h6, .detailContent strong, .detailContent b {
    font-weight: 600 !important;
    margin-bottom: 1rem;
}

.detailContent h1 {
    font-size: 1.5em;
}

.detailContent h2 {
    font-size: 1.45em;
}

.detailContent h3 {
    font-size: 1.4em;
}

.detailContent h4 {
    font-size: 1.35em;
}

.detailContent h5 {
    font-size: 1.3em;
}

.detailContent h6 {
    font-size: 1.25em;
}

.page-detail .detail-article .article-meta {
    color: var(--bs-gray-600);
    position: relative;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.page-detail .detail-article .article-meta .article-meta_item + .article-meta_item {
    padding-left: 8px;
}

.page-detail .detail-article .article-meta .article-meta_item + .article-meta_item:before {
    color: #c0c4cb;
    margin-right: 8px;
    content: "|";
    position: relative;
    top: -1px;
}

.card-blog__image {
    width: 120px;
    height: 80px;
}

.card-blog__title {
    font-size: 1em;
    color: var(--bs-gray-700);
    margin-bottom: 4px;
    line-height: normal;
}

.card-blog__date {
    font-size: 0.9em;
    color: var(--bs-gray-600);
}

.card-blog:hover .card-blog__image img {
    transform: scale(1.1);
    opacity: 0.9;
}

.sidebar-right__list .card-blog + .card-blog {
    border-top: 1px dashed var(--bs-gray-300);
    margin-top: 12px;
    padding-top: 12px;
}

/*section-breadcrumb*/

.section-breadcrumb {
    padding: 80px 0 0;
    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;
    overflow: hidden;
}

.section-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.breadcrumb-list {
    background: var(--bs-white);
    padding: 20px 30px;
    width: max-content;
    border-radius: 5px 5px 0 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-detail .section-breadcrumb {
    margin: 0;
}

.section-breadcrumb .breadcrumb-item {
    position: relative;
    margin-right: 10px;
}

.section-breadcrumb .breadcrumb-item,
.section-breadcrumb .breadcrumb-item > a {
    text-transform: capitalize;
    color: var(--bs-black);
    font-weight: 600;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.section-breadcrumb .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

.section-breadcrumb .breadcrumb-item::before {
    position: unset;
    content: unset;
}

.section-breadcrumb .breadcrumb-item:not(:first-child)::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--bs-black);
}

.section-breadcrumb__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-breadcrumb__title {
    color: var(--bs-white);
    font-weight: 700;
    margin-bottom: 80px;
    font-size: 2em;
}

/*project-card*/

.project-card__title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--bs-black);
}

.project-card__text {
    font-weight: 500;
    color: var(--bs-gray-600);
}

.project-card__category-wrapper {
    position: absolute;
    top: -10px;
    left: 10px;
}

.project-card__category-wrapper .category-title {
    font-size: 1em;
    color: var(--bs-black);
    background: var(--bs-gray-200);
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #d7d7d74f;
    font-weight: 500;
}

.project-action a {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    transition: var(--transition-default);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
}

.project-card .project-action a > i {
    transition: var(--transition-default);
    transform: rotate(-45deg);
}

.project-card:hover .project-card__image img {
    transform: scale(1.05);
}

.project-card:hover .project-action a > i {
    transform: rotate(0deg);
}


/*detail-project*/

.detail-project__title {
    font-weight: 700;
    font-size: 1.15em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.detail-project__category {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.detail-project__category li {
    padding: 0 14px;
}

.detail-project__category li:first-child {
    padding-left: 0;
}

.detail-project__category li:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.3;
    color: var(--bs-black);
}

.detail-project__category li > a,
.detail-project__map {
    color: var(--bs-gray-700);
}

.detail-project__category li > a:hover,
.detail-project__map:hover {
    color: var(--bs-black);
}

.detail-project__desc .detail-desc__title {
    position: relative;
    font-weight: 700;
    font-size: 1.15em;
    text-transform: uppercase;
    margin-bottom: 3px;
    padding-bottom: 5px;
    border-bottom: 1px solid #b8b6b6;
}

.detail-project__desc .detail-desc__title::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: 15px;
    width: 30px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.detail-project__button-wrapper {
    right: 10px;
    bottom: 10px;
}

.project-right__wrapper .project-detail_content .button-theme_primary {
    background: linear-gradient(268deg, rgba(240, 90, 41, 1) 0%, rgba(240, 90, 41, 0.87) 99%) !important;
}

.project-right__wrapper .project-detail_content .button-theme::after,
.project-right__wrapper .project-detail_content .button-theme::before {
    background: linear-gradient(268deg, #ff6100 0%, #ff9e79 100%) !important;
}

/*---page-contact----*/

.contact-info_list__item {
    padding: 15px 0;
}

.contact-info .contact-info_list__item .contact-info_list__item__icon {
    height: 35px;
    width: 35px;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.contact-info .contact-info_list__item .contact-info_list__item__icon i {
    font-size: 2rem;
    color: var(--bs-white);
}

.contact-info .contact-info_list__item .contact-info_list__item__icon svg {
    height: 100%;
    width: 100%;
    fill: var(--primary-color);
}

.contact-info .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--bs-black);
    margin-bottom: 5px;
}

.contact-info .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___value {
    color: var(--bs-gray-800);
    font-weight: 500;
}

.contact-info .contact-info_list__item .contact-info_list__social___media {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.contact-info .contact-info_list__item .contact-info_list__item__content .contact-info_list__social___media-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-info_list__item .contact-info_list__item__content .contact-info_list__social___media-item i {
    font-size: inherit;
}

.contact-info_list__social___media-item svg {
    width: 20px;
    height: 20px;
    z-index: 2;
    position: relative;
}

.page-contact .contact-map iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: 300px !important;
}


/*section-feedback*/

.section-feedback .section-swiper::before,
.section-feedback .section-swiper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.section-feedback .section-swiper::before {
    left: 0;
    background: linear-gradient(84deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 26%);
}

.section-feedback .section-swiper::after {
    right: 0;
    background: linear-gradient(280deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 26%);
}

.card-feedback {
    border-radius: 20px;
}

.card-feedback__image {
    width: 60px;
    height: 60px;
    z-index: 1;
}


.card-feedback__title {
    font-size: 1.1em;
}

.card-feedback__text {
    font-size: 14px;
    color: var(--bs-gray-700);
}

.card-feedback__quote {
    width: 55px;
    height: 55px;
    bottom: -7%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--bs-white);
}

.card-feedback__star i {
    color: #ffc226;
    font-size: 1em;
}

.card-feedback__desc {
    color: var(--bs-gray-700);
}

/*============section-gallery-========*/

.section-gallery {
    padding: 60px 0 0;
}

.section-gallery .gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 52.5%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
}

.section-gallery .gallery-wrapper {
    position: relative;
    display: block;
    background: #F0F5FC;
    padding: 40px 40px 70px 40px;
}

.section-gallery .gallery-wrapper .gallery-item:nth-child(1) .gallery-item_box,
.section-gallery .gallery-wrapper .gallery-item:nth-child(4) .gallery-item_box {
    margin-top: calc(var(--bs-gutter-x) * 1.75);
    margin-bottom: calc(var(--bs-gutter-x) * -1.75);
}

.section-gallery .gallery-wrapper .gallery-item:nth-child(2) .gallery-item_box,
.section-gallery .gallery-wrapper .gallery-item:nth-child(5) .gallery-item_box {
    margin-top: calc(var(--bs-gutter-x));
    margin-bottom: calc(var(--bs-gutter-x) * -0.75);
}





