:root{
    --cl-x: #0042AC;
    --cl-y: #F20000;
    --cl-gray: #F8F8F8;
    --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.25rem, 1.1rem + 0.75vw, 2rem);

    --bg-grd: linear-gradient(180deg, #0056E1 0%, #0042AC 100%);

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

body{
    background-color: #F4F4F4;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

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-justify{
    text-align: justify !important;
}

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

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

.text-gray{
    color: var(--cl-gray);
}

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

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

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

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    line-height: 1.5;
    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: var(--bg-grd);
    color: #fff;
    border: 1px solid var(--cl-x);
}

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

.btn-y{
    background: linear-gradient(180deg, #FE0E27 0%, #980817 100%);
    color: #fff;
    border: 1px solid var(--cl-y);
}

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

.btn-outline-x{
    border: 2px solid var(--cl-x);
    background-color: transparent;
    color: var(--cl-x);
}

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

.btn-outline-y{
    border: 2px solid var(--cl-y);
    background-color: transparent;
    color: var(--cl-y);
}

.btn-outline-y:hover{
    background-color: var(--cl-y);
    color: #fff;
}

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

.block{
    padding: var(--py-content) var(--px-content);
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

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

.sub-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 32px;
}

/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}
.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-top{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    color: var(--cl-x);
    font-weight: 500;
}

.navbar-main{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: var(--bg-grd);
}

.navbar-fixed{
    position: sticky;
    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-fixed.navbar{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

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

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 1rem;
    font-weight: 400;
    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: 60px;
    transition: all .3s ease-in-out;
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--cl-x);
    box-shadow: none !important;
    color: var(--cl-x);
}

.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.4rem;
    border: 2px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #fff;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent;
    font-size: var(--fs-14);
}

.box-search-header button{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: none;
    border-radius: 50%;
    font-size: var(--fs-14);
}

.btn-popup-search{
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

.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);
}

.translate .lang-item{
    display: inline-block;
    width: 36px;
    color: #000;
    transition: all .3s ease-in-out;
    filter: brightness(0.8);
}

.translate .lang-item.active,
.translate .lang-item:hover{
    filter: brightness(1.0);
}


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

/*banenr-page*/
.banner-page{
    min-height: clamp(11rem, 10rem + 5vw, 16rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
}

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

.simple-breadcrumb{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #e9e9e9;
}
.simple-breadcrumb .breadcrumb{
    margin-bottom: 0;
}

.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #AEAEAE;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.simple-breadcrumb .breadcrumb-item.active{
    color: #000;
}


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

.main-slide-pagination.swiper-pagination-horizontal{
    position: relative;
    bottom: 0;
    margin-top: 0.25rem;
}

.main-slide-pagination .swiper-pagination-bullet{
    width: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    height: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    background-color: #E6E6E6;
    border: 1px solid var(--cl-x);
    border-radius: 50rem;
    opacity: 1;
    transition: all .3s ease-in-out;
}

.main-slide-pagination .swiper-pagination-bullet-active{
    width: clamp(2rem, 1.8rem + 1vw, 3rem);
    background-color: var(--cl-x);
}


/*Home========================*/
.box-title-main h1,
.box-title-main h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    color: var(--cl-x);
}

.box-title-main h3{
    margin-bottom: 0;
    color: var(--cl-y);
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

/**/
.block-our-service .bg-cover{
    bottom: -50%;
}

.box-icon-service{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5%;
    background-color: #fff;
    border: 2px dashed var(--cl-x);
    border-radius: 0.5rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.box-icon-service .icon{
    width: clamp(3rem, 2.6rem + 2vw, 5rem);
    height: clamp(3rem, 2.6rem + 2vw, 5rem);
}

.box-icon-service .content{
    margin-top: 0.5rem;
}

.box-icon-service .title{
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    color: var(--cl-x);
    font-weight: 700;
}

.box-icon-service:hover{
    transform: translateY(-0.5rem);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/*===*/
.has-hover.box-thumbnail{
    position: relative;
    overflow: hidden;
}

.box-hover-circle.box-thumbnail:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%, -100%);
    width: 100px;
    height: 100px;
    background-color: rgba(255 255 255 / 0.3);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.box-hover-circle.box-thumbnail:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(100%, 100%);
    width: 100px;
    height: 100px;
    background-color: rgba(255 255 255 / 0.3);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.box-hover-circle.box-thumbnail:hover:before,
.box-hover-circle.box-thumbnail:hover:after{
    transform: scale(7);
    opacity: 0;
}

.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: rgba(30, 30, 30, 0.73);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    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{
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    inset: 5px;
}

.wrapper-slide .swiper-button-next:after{
    background-image: url('../images/next.svg');
}

.wrapper-slide .swiper-button-prev:after{
    background-image: url('../images/prev.svg');
}



.swiper-button-circle.hover-show-button .swiper-button-next,
.swiper-button-circle.hover-show-button .swiper-button-prev{
    opacity: 0;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-next,
.swiper-button-circle.hover-show-button:hover .swiper-button-prev{
    opacity: 1;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-disabled{
    opacity: 0.5;
}


/*===*/
.box-category{
    padding: 0.5rem;
    background-color: #fff;
}

.box-category .box-thumbnail .inner-thumbnail{
    --bs-aspect-ratio: 56.25%;
    transition: all .3s ease-in-out;
}

.box-category .box-content{
    margin-top: 1rem;
}

.box-category .view-more{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    padding: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem) clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    border: 1px solid #fff;
    border-radius: 0.5rem;
    background: rgba(30, 30, 30, 0.73);
    color: #fff;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
    opacity: 0;
    transition: all .3s ease-in-out;
}

.box-category .box-title .title{
    margin-top: 1rem;
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    color: var(--cl-x);
}

.box-category:hover .box-thumbnail .inner-thumbnail{
    filter: brightness(0.5);
}

.box-category:hover .view-more{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.box-category .view-more:hover{
    background: rgba(30, 30, 30, 1);
}


.box-line{
    width: 100%;
    height: 0.25rem;
    position: relative;
}

.box-line:before,
.box-line:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 49.5%;
}

.box-line:before{
    left: 0;
    background-color: #D9D9D9;
    clip-path: polygon(0 0, 98% 0, 100% 100%, 0% 100%);
}

.box-line:after{
    right: 0;
    background-color: var(--cl-x);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
}


/*===*/
.card-service{
    transition: all .3s ease-out;
}
.card-service .thumbnail{  }

.card-service .content{
    padding: 1rem;
    text-align: center;
}
.card-service .title{
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: var(--fs-20);
    transition: all .3s ease-out;
}
.card-service .description{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-service .btn-custom{
    margin-top: 1rem;
    padding: 0.25rem 0.5rem;
    font-size: var(--fs-14);
}

.card-service:hover .title{
    color: var(--cl-x);
}


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

.box-blog-project .box-thumbnail{
    border-radius: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
}

.box-blog-project .box-content{
    position: absolute;
    left: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    right: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    bottom: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    padding: clamp(0.25rem, 0.1rem + 0.75vw, 1rem);
    background: rgba(255, 255, 255, 0.89);
    border-radius: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
}

.box-blog-project .box-title .title{
    margin-bottom: 0;
    font-size: clamp(0.625rem, 0.5rem + 0.625vw, 1.25rem);
}


/*===*/
.box-product{
    overflow: hidden;
}

.box-product .box-thumbnail{
    position: relative;
}

.box-product .box-badge{
    position: absolute;
    left: 0;
    top: 1rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--cl-x);
    font-size: var(--fs-18);
    color: #fff;
}

.box-product .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.box-product .box-title{
    max-height: 2.5rem;
}

.box-product .title{
    margin-bottom: 0rem;
    font-size: var(--fs-20);
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-product .box-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-product .box-price{
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
}

.box-product .box-price .label-sale-price{
    color: #000;
}

.box-product .box-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
    font-size: var(--fs-14);
}

.box-product:hover .title{
    color: var(--cl-x);
}

/*===*/
.box-blog .box-thumbnail{
    position: relative;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
}

.box-blog .box-badge{

}

.box-blog .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background-color: #fff;
    border-radius: 0.5rem;
}

.box-blog .box-title{
    max-height: 2.5rem;
}

.box-blog .title{
    margin-bottom: 0;
    font-size: clamp(0.625rem, 0.5rem + 0.625vw, 1.25rem);
    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{
    margin-top: clamp(0rem, -0.1rem + 0.5vw, 0.5rem);
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-view-more{
    font-style: italic;
    color: var(--cl-x);
}

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


/*===*/
.footer{
    position: relative;
    padding-top: 1.5rem;
    color: #fff;
}

.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

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

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

.footer p{
    margin-bottom: 0.7rem;
}

.logo-footer{
    width: clamp(8.75rem, 8rem + 3.75vw, 12.5rem);
}

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

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

.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{
    transition: transform .2s ease-in-out;
}

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

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

.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;
    border-radius: 0.25rem;
    transition: all .2s ease-out;
}

@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;
}

/**/
.form-booking-footer{
    display: flex;
    gap: 0.5rem;
    flex: 1;
}

.form-booking-footer .form-group{
    display: flex;
    flex: 1;
    align-items: center;
    padding: clamp(0.125rem, 0.05rem + 0.375vw, 0.5rem) 1rem;
    background: rgba(255, 255, 255, 0.69);
    border-radius: 50rem;
    color: #838383;
}

.form-booking-footer .form-control{
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #000;
}

.form-booking-footer .form-control::placeholder{
    color: #838383;
}

.form-booking-footer button{
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.g-recaptcha-contact{
    transform: scale(0.7);
    transform-origin: 0 0;
}    

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

.contact-information{
    padding: 5% 14%;
    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)
}



.nav-tabs-child-category{
    border-bottom: 0;
}
.nav-tabs-child-category .nav-item .nav-link{
    background-color: transparent;
    border: 0;
    color: #000;
    font-weight: 700;
}

.nav-tabs-child-category .nav-item .nav-link.active{
    color: var(--cl-x);
    border-bottom: 1px solid var(--cl-x);
}

/*===*/
.box-equipment{
    transition: all .3s ease-in-out;
}

.box-equipment .box-content{
    background-color: #fff;
    cursor: pointer;
}

.box-equipment .box-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    /*padding: 0.5rem 0.5rem 0.5rem 1rem;*/
    padding-top: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    padding-bottom: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    padding-right: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    padding-left: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: #3676BB;
    border-top-right-radius: 50rem;
    border-bottom-right-radius: 50rem;
    position: relative;
    margin-top: -1.5rem;
}

.box-equipment .box-title .title{
    margin-bottom: 0;
    font-size: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    color: #fff;
}

.box-cover-title{
    width: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    height: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    background-image: url('../images/title-equipment.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-equipment .box-excerpt{
    padding: 0.75rem;
}

.box-equipment:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.box-core-value{
    height: 100%;
    padding: 15% 10%;
    border-radius: 1rem;
    background: #F6F6F6;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.box-core-value .box-top{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.box-core-value .box-top .thumbnail{
    width: clamp(1.625rem, 1.2rem + 2.125vw, 3.75rem);
}

.box-core-value .box-top .title{
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--cl-x);
    font-size: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    font-weight: 900;
}

.box-core-value:hover{
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.375);
}

.core-value-slide .swiper-slide{
    transition: all .3s ease-in-out;
}

.core-value-slide .swiper-slide-active{
    z-index: 1;
    transform: translateY(-0.5rem) scale(1.1);
}


.text-vertical{
    /*writing-mode: sideways-lr;*/
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    font-weight: 700;
    color: rgba(242, 0, 0, 0.30);
}