.section-gap {
    padding: 40px 0;
}

.button-theme {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: var(--transition-default);
    font-size: 1.1em;
    overflow: hidden;
    color: var(--bs-white);
    box-shadow: 0 10px 30px rgba(213, 210, 210, 0.19);
}

.button-theme.button-theme_primary,
.button-theme.button-theme__secondary:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
    border: 1px solid var(--primary-color);
}


.button-theme.button-theme_primary:hover,
.button-theme.button-theme__secondary {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.button-theme.button-theme_primary:hover i {
    color: var(--bs-white);
    animation: translate-x 0.25s ease-in-out forwards;
}

@keyframes translate-x {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50%);
        opacity: 0;
    }
    51% {

        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.button-theme.button-theme_primary > i {
    color: var(--bs-white);
    transition: var(--transition-default);
}

.button-swiper {
    background-color: var(--bs-gray-200);
    height: 42px;
    width: 42px;
    font-size: 20px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: var(--transition-default);
    -webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    color: var(--bs-gray-800);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
}

.section-swiper:hover .button-swiper {
    opacity: 1;
    overflow: visible;
}

.button-swiper::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: var(--transition-default);
    background-color: var(--primary-color);
}

.button-swiper:hover::after {
    transform: scale(1);
}

.button-swiper:hover, .button-swiper:focus {
    color: var(--bs-white) !important;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.button-swiper.btn-prev {
    left: -25px;
}

.button-swiper.btn-next {
    right: -25px;
}

.button-swiper:disabled {
    opacity: 0;
    visibility: hidden;
    position: relative;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading .heading-title {
    margin-bottom: 0;
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: capitalize;
}

.section-heading .heading-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--bs-gray-700);
    margin-top: 12px;
}

.section-heading .heading-description p:last-child,
.section-heading .heading-description ul:last-child,
.section-heading .heading-description ol:last-child {
    margin-bottom: 0;
}

.section-heading .heading-title-2 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
}

.section-heading .heading-line {
    display: block;
    height: 1px;
    background-color: var(--primary-color);
    width: 15%;
}

.header {
    z-index: 12;
    -webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.page-home .header.is-scroll {
    will-change: transform;
    animation: stickySlideDown .95s ease forwards;
}

@keyframes stickySlideDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-120%);
    }
    100% {
        transform: translateY(0);
    }
}

.header-social > a {
    color: var(--bs-white);
    font-size: 1.3em;
}

.hamburger-button {
    width: 36px;
    height: 36px;
    gap: 5px;
}

.hamburger-button:focus {
    border: 1px solid transparent;
}

.hamburger-button > span {
    background-color: var(--bs-gray-100);
    height: 1px;
    border-radius: 3px;
    display: flex;
    width: 22px;
}

.header-logo {
    width: 80px;
    height: 65px;
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
}


.header .header-navigation > ul > li > a,
.header .header-navigation > ul > li > ul > li > a,
.header .header-navigation > ul > li > ul > li > ul > li > a {
    color: var(--bs-gray-800);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);

}

.header .header-navigation > ul > li > a {
    white-space: nowrap;
    font-weight: 700;
    font-size: 1.05em;
    padding: 30px 15px;
}


.header .header-navigation > ul > li > ul > li:not(:last-child),
.header .header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .header-navigation > ul > li > ul > li:hover > a,
.header .header-navigation > ul > li > ul > li > ul > li:hover a {
    color: var(--accent-color);
}

.header .header-navigation > ul > li > ul,
.header .header-navigation > ul > li > ul > li > ul {
    background-color: var(--bs-white);
    position: absolute;
    left: 0;
    width: 250px;
    top: 100%;
    z-index: 2;
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-navigation > ul > li > ul > li > ul {
    left: 100%;
    top: 0;
}

.header .header-navigation > ul > li:hover > ul,
.header .header-navigation > ul > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-navigation > ul > li:hover > a {
    color: var(--primary-color);
}

.header .header-navigation > ul > li > a > i {
    transition: var(--transition);
}

.header .header-navigation > ul > li:hover > a i {
    transform: rotate(180deg);
}

.header-logo__mobile > img {
    width: 100px;
    height: auto;
}

.header .header-overlay {
    background: rgb(0 0 0 / 91%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.is-navigation .header .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-navigation {
    background-color: transparent;
    border: 1px solid transparent !important;
    color: var(--bs-white);
    font-size: 25px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-search {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    gap: 6px;
    width: 36px;
    height: 36px;
    color: var(--text-color);
}

.tool-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 5;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.show-search .header-search .fa-search:before {
    content: "\f00d";
}

.show-search .tool-search {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.header .tool-search .tool-search_inner {
    padding: 10px 12px;
    -webkit-box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
}

.header .tool-search .tool-search_inner input {
    position: relative;
    width: 100%;
    height: 44px;
    padding-right: 115px;
    font-size: 15px;
}

.header .tool-search .tool-search_inner input::-webkit-input-placeholder,
.header .tool-search .tool-search_inner input::-moz-placeholder,
.header .tool-search .tool-search_inner input:-ms-input-placeholder,
.header .tool-search .tool-search_inner input::-ms-input-placeholder {
    color: var(--bs-gray-100);
    opacity: .9;
}

.header .tool-search .tool-search_inner input::placeholder {
    color: var(--bs-gray-100);
    opacity: .9;
}


.tool-search .tool-search_inner button {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    min-width: 100px;
    height: 34px;
    padding: 5px 20px;
    font-size: 13px;
    border-radius: 3px;
    font-weight: 600;
    -webkit-box-shadow: rgba(var(--bs-white-rgb), 0.16) 0 10px 36px 0, rgba(var(--bs-white-rgb), 0.06) 0 0 0 1px !important;
    box-shadow: rgba(var(--bs-white-rgb), 0.16) 0 10px 36px 0, rgba(var(--bs-white-rgb), 0.06) 0 0 0 1px !important;
}

.hero-item .hero-item_image video,
.hero-item .hero-item_image img {
    width: 100% !important;
    height: auto !important;
    vertical-align: middle;
}

.hero-content .hero-content_title {
    color: var(--bs-white);
    font-size: 2.5em;
    text-transform: capitalize;
    font-weight: 700;
}

.hero-content .hero-content_desc {
    font-size: 1.2em;
    color: var(--bs-white);
}

.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;
}

.section-breadcrumb {
    padding: 100px 0;
}

.section-breadcrumb__title {
    font-size: 2em;
    color: var(--primary-color);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item,
.section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
    color: var(--text-color);
    position: relative;
    font-weight: 500;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 12px;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item.active {
    color: var(--bs-gray-600);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-color);
}

.page-detail .section-breadcrumb .breadcrumb-list .breadcrumb-item:last-child {
    display: none;
}

.section-pagination {
    margin-top: 48px;
}

.section-pagination .pagination .page-item {
    border: 0;
    background-color: var(--bs-gray-100);
    color: var(--text-color);
    position: relative;
}

.section-pagination .pagination .page-item .page-link {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 36px;
    height: 36px;
    border: 0;
    background: rgb(var(--primary-rgb), 0.1);
    color: inherit;
    font-size: 0.95em;
    font-weight: 600;
    transition: var(--transition-default);

}

.section-pagination .pagination .page-item.pageactive .page-link,
.section-pagination .pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}


.empty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 15px;
    color: var(--bs-gray-700);
}

.page-article .article-content .article-title {
    font-size: 1.9em;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;

}

.page-article .article-content .article-meta {
    color: var(--bs-gray-600);
    position: relative;
}

.page-article .article-content .article-meta .article-meta_item + .article-meta_item {
    padding-left: 8px;
}

.page-article .article-content .article-meta .article-meta_item + .article-meta_item:before {
    color: #c0c4cb;
    margin-right: 8px;
    content: "|";
    position: relative;
    top: -1px;
}

.page-article .article-content .article-desc {
    background-color: #eee;
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    margin-top: 30px;
}

.sidebar-right .sidebar-heading .heading-title-2 {
    font-weight: 700;
    font-size: 1.7em;
    padding-bottom: 5px;
    position: relative;
}

.sidebar-right .sidebar-heading .heading-title-2::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    height: 2px;
    background-color: var(--primary-color);
    width: 15%;
}

.sidebar-right .card-blog__title {
    font-size: 1.1em;
}

#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: 700 !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;
}

.footer-column__title {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.3em;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

.title-decor::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: var(--secondary-color);
    display: block;
}

.footer-contact .footer-contact__item .icon {
    width: 30px;
    height: 30px;
}

.footer-column__text,
.footer-column__text a {
    color: var(--text-color);
}

.footer-column ul > li > a {
    color: var(--text-color);
    transition: var(--transition);

}

.footer-column ul > li > a:hover {
    color: var(--primary-color);
}

.footer-social > a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: var(--bs-white);
    transition: var(--transition);
    background-color: var(--primary-color);
}

.footer-social > a:hover {
    color: var(--bs-white);
}

.footer-copyright {
    padding: 12px 0;
    border-top: 1px solid rgb(28 68 109 / 14%);
}

.card-article-2__title {
    font-weight: 600;
    color: var(--bs-gray-700);
    height: 45px;
    font-size: 1.15em;
    line-height: normal;
}

.card-article-2__title:hover {
    color: var(--primary-color);
}

.card-article-2__date {
    font-size: 0.9em;
    color: var(--bs-gray-600);
}

.card-article-2:hover .card-article-2__image img,
.card-blog:hover .card-blog__image img {
    transform: scale(1.05);
    opacity: 0.9;
}

.card-article-2:hover .card-article-2__title,
.card-article-2__title:hover,
.card-blog__title:hover,
.card-blog:hover .card-blog__title {
    color: var(--primary-color);
}

.card-article-2__text {
    color: var(--bs-gray-600);
}

.view-all {
    position: relative;
    border-radius: 5px;
    color: var(--primary-color);
    padding: 6px 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    width: max-content;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}

.view-all > span {
    position: relative;
    z-index: 2;
}

.view-all::before {
    position: absolute;
    content: '';
    width: 140%;
    height: 350%;
    transform: skew(20deg);
    top: -20px;
    left: -160%;
    transition: all .3s ease-in-out;
    background-color: var(--primary-color);
}

.view-all:hover {
    color: var(--primary-color);
}

.view-all:hover > span {
    color: var(--bs-white);
}

.view-all:hover::before {
    left: -30%;
}

.page-category__section:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-200);
}

.section-wrap__heading {
    border-radius: 5px 5px 0 0;
    padding: 12px;
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.section-wrap__link {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bs-white);
    transition: var(--transition-default);
}

.section-wrap__link i {
    transition: var(--transition-default);
}

.section-wrap__link:hover {
    color: var(--bs-white);
}

.section-wrap__link:hover i {
    transform: translateX(3px);
}

.section-wrap__scroll {
    height: 410px;
    overflow-y: auto;
    overflow-x: hidden;
}

.section-wrap__scroll::-webkit-scrollbar {
    width: 8px;
}

.section-wrap__scroll::-webkit-scrollbar-track {
    background-color: var(--bs-gray-200);
}

.section-wrap__scroll::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}


.card-blog__image {
    width: 120px;
    height: 80px;
}

.card-blog__title {
    font-size: 1.05em;
    font-weight: 600;
    color: var(--bs-gray-700);
    display: block;
    margin-bottom: 4px;
    line-height: normal;

}

.card-blog .date {
    font-size: 0.9em;
    color: var(--bs-gray-600);
}

.card-blog__date {
    color: #e5121b;
    background-color: #faedee;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 13px;
}

.card-blog__date .date {
    font-size: 1.2em;
    color: #e5121b;
}

.list-blog .card-blog:not(:last-child) {
    border-bottom: 1px solid #d5e5f487;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.scroll-top {
    right: 10px;
    bottom: 20px;
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    font-size: 1.1em;
    box-shadow: 10px 6px 14px -17px rgb(24 39 75 / 59%), 0 10px 32px -4px rgba(24, 39, 75, 0.1);
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.is-show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-hover);
}

.float-group {
    position: fixed;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    right: 10px;
    bottom: 80px;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.float-group.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.float-group .float-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.float-group .float-btn.float-btn__phone::before {
    content: '';
    display: block;
    position: absolute;
    border: 1px #bb5f63 solid;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    border-radius: 100%;
    animation-name: hover-ripple-out;
    animation-iteration-count: infinite;
}

@keyframes hover-ripple-out {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1.2);
    }
}


.page-contact__top {
    border: 1px solid #cfe5f3;
    background-color: #eef3f9;
    color: rgba(72, 69, 69, 0.81);
    font-weight: 500;
}

.col:not(:last-child) .card-contact {
    border-right: 1px solid rgb(203 223 247);
}

.card-contact {
    padding: 20px;
    color: var(--text-color);
    font-size: 15px;
}

.card-contact .title {
    font-weight: 700;
    font-size: 1.15em;
    color: var(--bs-gray-800);
    margin-bottom: 4px;
}

.card-contact .text {
    font-weight: 500;
    color: var(--bs-gray-700);
}

.card-contact .icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
}

.card-contact:hover .icon i {
    transform: rotateY(360deg);
}

.card-contact .text:hover {
    color: var(--primary-color);
}

.page-contact .contact-item {
    color: var(--text-color);
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1em;
}

.page-contact .contact-item:hover {
    color: var(--primary-color);
}

.contact-form_item {
    position: relative;
}

.contact-form_item .invalid-feedback {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
}

.contact-form_item label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-form_item .form-control,
.contact-form_item .form-select {
    height: 44px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 400;
    color: var(--bs-gray-700);
}

.contact-form_item .form-control::placeholder,
.contact-form_item .form-select option {
    color: var(--bs-gray-700);
}

.contact-form_item .textarea-input {
    height: auto;
    resize: none;
}

.contact-iframe iframe {
    width: 100% !important;
    height: 400px;
}

.page-form__box {
    font-size: 15px;
    border: 1px solid #cfe5f3;
    background-color: #eef3f9;
}

.page-form__box ul {
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0;
}

.page-form__box ul li {
    position: relative;
    padding-left: 20px;
}

.page-form__box ul li + li {
    margin-top: 8px;
}

.page-form__box ul li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f336";
    left: 0;
    top: 1px;
    color: #2575d9;
    font-size: 15px;
    font-weight: bold;
}

.search-table .search-table__title {
    font-size: 1.15em;
}

.search-table .search-table__title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    display: block;
}

.search-table table {
    font-size: 15px;
}

.search-table table tr th,
.search-table table tr td {
    padding: 12px 8px;
}

.search-table table tr th {
    color: var(--text-color);
}

.section-feedback__bg {
    max-width: 80%;
}

.section-feedback::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to left, #1c446d 40%, #c24242d4);
}

.card-feedback {
    border: 1px solid white;
    background-color: rgb(255 255 255 / 82%);
    backdrop-filter: blur(10px);
}

.card-feedback__star i {
    color: #E19342;
}

.card-feedback__image {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-color);
}

.card-feedback__text {
    font-style: italic;
    color: var(--text-color);
}

.card-feedback__title {
    font-size: 1.05em;
}

.card-feedback__desc {
    color: var(--bs-gray-700);
}

.card-feedback .icon {
    font-size: 24px;
    color: var(--secondary-color);
}

.section-introduce__image {
    padding: 10px;
}

.section-introduce__image > img {
    border-radius: 10px;
}

.section-introduce__image::before,
.section-introduce__image::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
}

.section-introduce__image::before {
    background-color: var(--bs-white);
    border-radius: 15px;
    z-index: 2;
    right: 0;
    bottom: 0;
}

.section-introduce__image::after {
    right: -10px;
    bottom: -10px;
    height: 80%;
    width: 80%;
    background-color: #c5def7;
    border-radius: 20px;
    z-index: 1;
}

.gallery-item .layer {
    background-color: #332b1e9c;
    opacity: 0;
}

.gallery-item .layer .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    font-size: 20px;
}

.gallery-item .layer .icon svg {
    width: 50px;
}

.gallery-item .layer .icon svg path {
    fill: var(--bs-white);
}

.gallery-item .icon {
    transform: rotate(45deg) scale(0);
    transition: all 400ms ease;
}

.gallery-item:hover {
    cursor: zoom-in;
}

.gallery-item:hover .icon {
    transform: rotate(0deg) scale(1);
    transition-delay: 400ms;
}

.gallery-item:hover .layer {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.modal-theme .modal-content {
    border: 1px solid transparent;
}

.modal-theme .modal-body {
    padding: 30px 25px;
}

.modal-theme .heading-title-2 {
    color: var(--bs-gray-800);
}

.modal-theme .button-theme {
    height: 45px;
    font-size: 15px;
}

.modal-theme__close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}

.modal-theme__close:hover {
    border: 1px solid var(--secondary-color);
}

.modal-theme__close:hover i {
    transform: rotate(90deg);
}

.modal-theme__text {
    font-size: 14px;
    color: var(--bs-gray-700);
}

.modal-theme__text a {
    font-weight: 700;
    color: var(--primary-color);
}
