:root{
    --cl-x: #05111F;
    --cl-y: #40AC36;
    --cl-gray: #F5F5F5;
    --fs-12: 12px;
    --fs-14: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
    --fs-18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    --fs-20: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    --fs-24: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    --fs-28: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
    --fs-36: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
    --fs-title: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);

    --px-content: 8%;
    --py-content: 60px;
}

body{
    font-family: "Roboto", sans-serif;
}

p{
    font-weight: 300;
}

p:last-of-type{
    margin-bottom: 0;
}

a{
    color: #000;
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

.fs-12{
    font-size: var(--fs-12) !important;
}

.fs-14{
    font-size: var(--fs-14) !important;
}

.fs-18{
    font-size: var(--fs-18) !important;
}

.fs-20{
    font-size: var(--fs-20) !important;
}

.fs-24{
    font-size: var(--fs-24) !important;
}

.fs-28{
    font-size: var(--fs-28) !important;
}

.text-x{
    color: var(--cl-x) !important;
}

.text-y{
    color: var(--cl-y) !important;
}

.bg-x{
    background-color: var(--cl-x) !important;
}

.bg-y{
    background-color: var(--cl-y) !important;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-weight: 500;
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
}

.btn-custom:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}


.btn-x{
    background-color: var(--cl-x);
    color: #fff;
    border: 1px solid var(--cl-x);
}

.btn-x:hover{
    color: #fff;
}

.btn-y{
    background-color: var(--cl-y);
    color: #fff;
    border: 1px solid var(--cl-y);
}

.btn-y:hover{
    color: #fff;
}

.btn-white{
    background-color: #fff;
    color: var(--cl-x);
}

.image-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block{
    position: relative;
    padding: var(--py-content) var(--px-content);
}

.block-large{
    --py-content: 120px;
}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.svg-clip-path{
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}


/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cl-x);
}

.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-main{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: animate 1s;
    transition: all 2s ease-in-out;
    z-index: 30;

}

@keyframes animate {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(0px); }
}


.navbar-nav{
    width: 100%;
    align-items: center;
    gap: 5%;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: #fff;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: var(--cl-y);
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: var(--cl-y);
}

/*===*/
.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.375rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav .dropdown-menu .dropdown-item:active{
    background-color: var(--cl-y);
}

.navbar-nav .toggle-menu{
    margin-left: 0.5rem;
}

.navbar-brand{
    margin: 0;
    padding: 0;
}

.logo{
    width: 120px;
    transition: all .3s ease-in-out;
}

.navbar-toggler{
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    justify-content: center;
    margin-left: 0;
    align-items: center;
    border: 1px solid #fff;
    box-shadow: none !important;
    color: #fff;
}

.box-search-header{
    display: flex;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0.5rem;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.75rem 1rem;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: rgba(64, 64, 64, 0.3);
    border: 0;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    box-shadow: none !important;
}

.box-search-header button{
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border-radius: 0 6px 6px 0;
}

.btn-popup-search{
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: var(--cl-x);
}

.btn-popup-search svg{
    fill: #fff;
}

.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--cl-x);
    font-size: var(--fs-18);
    position: relative;
}

.label-quantity{
    position: absolute;
    top: -6px;
    right: -10px;
    width: 1rem;
    height: 1rem;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--cl-x);
}


.index{
    .navbar{
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 10;
        background-color: transparent;
    }

    .navbar-fixed.navbar{
        background-color: var(--cl-x);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .navbar:not(.navbar-fixed) .navbar-nav .nav-item .nav-link,
    .navbar:not(.navbar-fixed) .navbar-nav .nav-item .nav-link a{
        color: #fff;
    }

    .translate button{
        color: #000 !important;
    }

    .line-header{
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 50%, rgba(0, 0, 0, 0) 100%);
    }
}


/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*banenr-page*/
.banner-page{
    min-height: 15rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-page .title{
    position: relative;
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-transform: uppercase;
    text-align: center;
}

.banner-page .breadcrumb{
    margin-bottom: 0;
    justify-content: center;
}

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
    font-weight: 300;
    font-size: 0.875rem;
}

.banner-page .breadcrumb .breadcrumb-item.active{
    color: #fff;
}

/*===*/
.box-hover-zoom .box-thumbnail,
.box-hover-zoom-long .box-thumbnail{
    overflow: hidden;
}

.box-hover-zoom .box-thumbnail img{
    transition: all 0.3s ease-in-out;
}

.box-hover-zoom:hover .box-thumbnail img,
.box-hover-zoom-long:hover .box-thumbnail img{
    transform: scale(1.1);
}

.box-hover-zoom-long .box-thumbnail img{
    transition: all 1s ease-in-out;
}

.wrapper-slide{
    position: relative;
} 

.wrapper-slide .swiper-button-next,
.wrapper-slide .swiper-button-prev{
    width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    color: var(--cl-x);
    transition: all .3s ease-in-out;
    pointer-events: all;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 700;
}

/* Home ============*/
.main-slide{
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.main-slide .swiper-slide{
    position: relative;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 7%;
    right: 7%;
    transform: translateY(-50%);
    color: #fff;
}

.main-slide .banner-slide h2{
    margin-bottom: 0;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
}


/*====*/
.marquee-image{
    --f-carousel-gap: 24px;
    --f-carousel-slide-width: calc(100% / 11);
    --f-carousel-slide-padding: 16px;
}

.marquee-image.white img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(4923%) hue-rotate(213deg) brightness(107%) contrast(64%);
}

.marquee-image.dark{
    background: linear-gradient(to right, #F4F4F4 0%, #9A9A9A 25%, #FFFDFD 50%, #9A9A9A 75%,#E1E1E1 100%);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.box-title-main h1,
.box-title-main h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    font-family: "Play", sans-serif;
    font-weight: 700;
}

.main-title{
    position: relative;
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    text-transform: uppercase;
    font-family: "Play", sans-serif;
}

.line-title{
    width: 70px;
}


/*====*/
.text-orientation{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Scheherazade New", serif;
    font-size: clamp(2rem, 1.4rem + 3vw, 5rem);
    line-height: 1;
    letter-spacing: 20px;
    color: #fff;
}


.grid-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px); 
    gap: 12px;
    grid-auto-flow: column;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.grid-item img{
    transition: transform 0.3s ease;
}

.grid-item:hover img{
    transform: scale(1.05);
}

.grid-item:nth-child(1){
    grid-row: span 2;
}

.grid-item:last-child {
    grid-row: span 2;
}



/*===*/
.box-commit{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
    height: 100%;
    color: #fff;
}

.box-commit .box-icon{
    width: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    height: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
}

.box-commit .box-content{
    text-align: center;
    font-weight: 300;
    line-height: 1.2;
}

.box-commit .title{
    font-size: 1.125rem;
}



/*===*/
.box-category{
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.box-category .box-content{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(to top, #05111F 0%, rgba(5, 17, 31, 0%) 100%);
    font-weight: 300;
    color: #fff;
}

.box-category .box-content .title{
    font-size: var(--fs-18);
    font-weight: 700;
}

.box-category .box-content .icon{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #40AC36;
    border-radius: 50%;
    color: #40AC36;
    flex-shrink: 0;
    transition: all .3s ease;
}

.box-category .box-content .icon i{
    transition: all .3s ease;
}


.box-category:hover .box-content .icon{
    background-color: #40AC36;
}

.box-category:hover .box-content .icon i{
    color: #fff;
    transform: translateX(0.5rem);
}



/*===*/
.box-service{
    position: relative;
}

.box-service .box-thumbnail{
    border-radius: 1rem;
    overflow: hidden;
}

.box-service .box-content{
    position: absolute;
    inset: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(255, 249, 249, 50%);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all .5s ease;
}

.box-service .title{
    font-size: 1.25rem;
}

.box-service .excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    line-height: 1.3;
}

.box-service:hover .box-content{
    opacity: 1;
    transform: scale(1.0);
}


/*===*/
.box-blog .box-thumbnail{
    position: relative;
    border-radius: 0.25rem;
}

.box-blog .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    padding-top: 0.75rem;
}

.box-blog .title{
    margin-bottom: 0;
    font-size: var(--fs-18);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-excerpt{
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    line-height: 1.3;
}

.box-blog .box-date{
    position: absolute;
    top: 0;
    left: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--cl-x);
    color: #fff;
    transform: translateY(-100%);
}

.box-blog:hover .title{
    color: var(--cl-y);
}

/**/
.box-blog.box-blog-horizontal{
}

.box-blog.box-blog-horizontal .box-thumbnail{
    flex-shrink: 0;
    border-radius: 1rem;
}

.box-blog.box-blog-horizontal .inner-thumbnail{
    --bs-aspect-ratio: 50%;
}

.box-blog.box-blog-horizontal .box-content{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    justify-content: center;
    padding: 1rem;
    color: #fff;
    background-color: rgba(5, 17, 31, 60%);
}

.box-blog.box-blog-horizontal .view-more{
    color: var(--cl-y);
}


/**/
.box-blog-overlay{
    position: relative;
}

.box-blog-overlay .box-thumbnail{
    border-radius: clamp(1.5rem, 1.4rem + 0.5vw, 2rem) 0;
}

.box-blog-overlay .box-thumbnail:after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0C61C4 0%, rgba(12, 97, 196, 0) 100%);
}


.box-blog-overlay .box-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    color: #fff;
}

.box-blog-overlay .box-content .title{
    color: #fff;
}

.box-blog-overlay .box-date{
    left: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    background-color: #000;
}


/*===*/
.box-product .box-content{
    padding: 1rem;
}

.box-product .box-content .title{
    text-align: center;
    font-size: var(--fs-20);
}




/*===*/
.footer{
    position: relative;
    color: #fff;
}

.footer a{
    color: #fff;
    text-decoration: none;
}

.footer a:hover{
    color: var(--cl-y);
}

.title-footer{
    position: relative;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    font-weight: bold;
}

.list-footer ul{
    list-style: none;
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li{
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    transition: transform .2s ease-in-out;
}

.list-footer ul li + li{
    margin-top: 0.25rem;
}

.list-footer ul li a{
    position: relative;
}

.list-footer ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -4px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}

.list-footer ul li a:hover::before{
  transform-origin: left;
  transform: scaleX(1);
}


.list-footer ul li:hover{
    transform: translateX(5px);
}

.list-footer ul li i{
    margin-right: 6px;
    color: var(--cl-x);
}

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-contact .item{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-radius: 5rem;
    background-color: #fff;
    color: var(--cl-x);
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 700;
    color: var(--cl-x);
}

.social-contact-footer .item:hover{
    animation: scale-icon 0.5s;
    background-color: var(--cl-y);
    color: #fff;
}

@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    text-align: center;
    color: #fff;
}

.coppyright a{
    color: #fff;
}

.form-footer .form-group{
    display: flex;
    background-color: rgba(255, 255, 255, 10%);
    border-radius: 0.75rem;
    overflow: hidden;
}

.form-footer .form-group .form-control{
    padding: 0.625rem 1rem;
    flex: 1;
    border: 0;
    color: #fff;
}

.form-footer .form-group .form-control::placeholder{
    color: rgba(255, 255, 255, 0.5);
}

.form-footer .form-group .btn-custom{
    border-radius: inherit;
    padding-left: 1.25rem;
    padding-right: 1rem;
    background-color: #fff;
}


/*===*/
.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact iframe{
    /*height: 100%;*/
}

.contact-information{
    padding: 5% 20%;
    border-radius: 1rem;
    background-color: var(--cl-x);
}

.contact-information li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-align: center;
}

.contact-information li + li{
    margin-top: 1.5rem;
}

.contact-information li span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cl-x)
}


/*===*/
.box-icon-vm{
    min-height: 400px;
    padding: 6rem 3rem;
    background-color: rgba(12, 97, 196, 80%);
}

.box-icon-vm .icon{
    width: 4rem;
    height: 4rem;
}

.box-icon-vm .text-stroke{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    font-size: 3vw;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: 100%;
    text-align: center;
}


.text-stroke-mission{
    position: absolute;
    bottom: 0;
    left: 50%;
    text-align: center;
    z-index: 1;
    font-size: 5vw;
    transform: translateX(-50%);
    line-height: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}


.box-image-vc{
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(12, 97, 196, 0.7);
    outline: 1px solid #D9D9D9;
    outline-offset: 1rem;
}

.box-image-vc .inner-image{
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    border: 1rem solid rgba(12, 97, 196, 0.7);
}

.box-image-vc .box-text{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background-color: rgba(12, 97, 196, 0.7);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/*===*/
.icon-core-value .icon{
    width: 4rem;
    height: 4rem;
}

.icon-core-value .title{
    font-size: var(--fs-18);
    font-weight: 700;
}


.form-register-consultation{
    padding: 3rem;
    background-color: rgba(0, 0, 0, 80%);
}

.form-register-consultation  .form-group label{
    margin-bottom: 0.25rem;
    color: #fff;
}

.form-register-consultation  .form-group label span{
    color: #EA0000;
}

.form-register-consultation .form-control{
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.7rem 1rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: unset !important;
}


/*===*/
.box-content-contact{
    padding: 3rem 2rem;
    background-color: #2A2A2A;
    color: #fff;
    border-radius: 0 2rem;
}

.box-content-contact ul{
    list-style: none;
    padding-left: 0;
}

.box-content-contact ul li{
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.box-content-contact ul li + li{
    margin-top: 0.5rem;
}


.form-contact .form-control{
    background-color: rgba(33, 33, 33, 0.3);
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 0;
    box-shadow: none !important;
    border: 0;
}

.form-contact .form-control::placeholder{
    color: #fff;
}





.swiper-gallery-wrapper .swiper-pagination{
    /*position: unset;*/
}

.swiper-gallery-wrapper .swiper-pagination-bullet{
    width: 0.5rem;
    height: 0.5rem;
    background-color: #000;
}

.swiper-gallery-wrapper .swiper-button-next,
.swiper-gallery-wrapper .swiper-button-prev{
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    border-radius: 50rem;
}

.swiper-gallery-wrapper .swiper-button-next:after,
.swiper-gallery-wrapper .swiper-button-prev:after{
    font-size: 1rem;
}

.image-victory-slide .swiper-slide{
    width: 22%;
}

.swiper-gallery-wrapper .gallery-thumb{
    height: 100px;
}

.swiper-gallery-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
