:root{
    --cl-x: #0043A5;
    --cl-y: #DD0E0E;
    --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.125rem, 1rem + 0.625vw, 1.75rem);

    --px-content: 5%;
    --py-content: 50px;
}

body{
    font-family: "Inter", 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.375rem 1rem;
    background-color: var(--cl-bg);
    border-bottom: 2px solid var(--cl-border);
    border-right: 2px solid var(--cl-border);
    border-radius: 0.375rem 0.375rem 0 0.375rem;
    font-weight: 500;
    color: var(--cl-text);
    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-custom:disabled,
.btn-custom[disabled] {
    filter: brightness(0.8);
}


.btn-x{
    --cl-border: #012C6B;
    --cl-bg: var(--cl-x);
    --cl-text: #fff;
}

.btn-x:hover{

}

.btn-y{
    --cl-border: #660505;
    --cl-bg: var(--cl-y);
    --cl-text: #fff;
}

.btn-y:hover{

}

.btn-outline-y{
    --cl-border: var(--cl-y);
    --cl-bg: transparent;
    --cl-text: var(--cl-y);
}

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

.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 .container-fluid{
    max-width: 1900px;
}

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

.bg-cover.has-gradient:before,
.bg-cover.has-gradient:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%; /*50%*/
}

.bg-cover.has-gradient:before{
    top: 0;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}

.bg-cover.has-gradient:after{
    bottom: 0;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}

.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: #fff;
}

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

.navbar-top{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    z-index: 1;
}

.navbar-top-right:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    background-color: var(--cl-x);
    clip-path: polygon(2% 0, 100% 0, 100% 99%, 0% 99%);
    transform: translateX(-2%);
}

.navbar-top-right:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    background-color: var(--cl-y);
    clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
    transform: translateX(-3%);
}

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: animate 1s;
    transition: all 0.3s ease-in-out;
    z-index: 30;
    background-color: #fff;
}

@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: 1rem 0.5rem;
    font-weight: 700;
    white-space: nowrap;
}

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

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

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: #2f7901;
}

/*===*/
.navbar-nav .dropdown-menu{
    background-color: #F3F3F3;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.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: 150px;
    transition: all .3s ease-in-out;
}

.navbar-fixed .logo{
    width: 100px;
}

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

.box-search-header .form-group{
    display: flex;
    width: 100%;
    padding: 0.125rem;
    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-shadow: none !important;
}

.box-search-header button{
    width: 3.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1.2rem ;
    border: none;
    clip-path: url('#clip-path-btn-search');
}

.box-search-header .suggest-keyword{
    margin-top: 0.25rem;
    color: #fff;
    font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
    text-align: center;
}


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

.btn-popup-search svg{
    fill: var(--cl-x);
}


/*===*/
.header-icon{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.625rem;
}

.header-icon .icon{
    width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    height: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
}

.header-icon .label{
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 700;
    line-height: 1;
}

.header-icon .sub-label{
    font-size: 0.75rem;
    font-weight: 700;
}


.translate .lang-item{
    padding-left: 0.25rem;
    color: #000;
}

.translate .lang-item + .lang-item{
    border-left: 1px solid #000;
}

.translate .lang-item.active{
    color: var(--cl-x);
}


/*============*/
.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: #f4f4f4;
}
.simple-breadcrumb .breadcrumb{
    flex-wrap: none;
    justify-content: center;
    margin-bottom: 0;
}

.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.simple-breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Home ============*/
.wrapper-content{
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.wrapper-content.wrapper-consulting-support{
    height: 100%;
}

.box-consulting-support{
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 1px solid #EEE;
    border-radius: 0.75rem;
}

.box-consulting-support .box-thumbnail{
    width: 4rem;
    border-radius: 50%;
    overflow: hidden;
}

.box-consulting-support .box-content{
    flex: 1;
    font-size: 0.75rem;
}

.box-consulting-support .box-content .title{
    font-size: 1rem;
    font-weight: 700;
}

/*===*/
.main-slide{
    height: clamp(12.5rem, 6.25rem + 31.25vw, 43.75rem);
    overflow: hidden;
    position: relative;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

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

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

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


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

.main-title.has-underline{
    display: inline-block;
}

.main-title.has-underline:before{
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--cl-x);
}

.main-title.has-underline:after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 30%;
    height: 4px;
    background-color: #FFC238;
}

.main-title.has-shadown{
    font-weight: 900;
    color: #0043A5;
    font-style: italic;
    text-shadow: 3px 2px 0 #FFC238;
}


.box-main-title h1,
.box-main-title h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    position: relative;
}

/*====*/
.box-category .box-thumbnail{
    border-radius: 0.5rem;
}

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

.box-category .box-content .title{
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}


/*===*/
.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: 1rem;
}



/*===*/
.box-product{
    padding: 0.75rem;
    border: 1px solid #DFDFDF;
    border-radius: 0.75rem 0.75rem 0 0.75rem;
    overflow: hidden;
}

.box-product .box-thumbnail{
    border-radius: 0.5rem;
}

.box-product .box-content{
    margin-top: 0.75rem;
}

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

.box-product .box-content-bottom{
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.box-product .box-badge{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-y);
    color: #fff;
    font-size: 0.75rem;
    clip-path: url('#clip-path-badge-product');
}

.box-product .box-price{
    display: flex;
    flex-direction: column;
    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 .btn-add-cart{
    margin-left: auto;
    padding: 0.375rem  0.75rem;
    background-color: var(--cl-y);
    border-radius: 0.5rem 0.5rem 0 0.5rem;
    border: 0;
}


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

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

.box-project .box-content{
    position: absolute;
    inset: 0;
    padding: 0.5rem;
    background: linear-gradient(90deg, #051F45 2.99%, rgba(5, 31, 69, 0.00) 100%);
    color: #fff;
}

.box-project .box-title{
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: linear-gradient(90deg, #0043A5 0%, rgba(0, 67, 165, 0.00) 100%);
    border-radius: 0.5rem;
}

.box-project .box-title img{
    width: 40px;
}

.box-project .box-title .title{
    flex: 1;
}

.box-project .box-title h3{
    margin-bottom: 0;
    font-size: var(--fs-18);
}

.box-project .box-excerpt{
    padding: 1rem;
    font-size: 0.875rem;
}

.project-prev{
    left: 0;
    transform: translateX(-50%);
}

.project-next{
    right: 0;
    transform: translateX(50%);
}

.project-prev:after,
.project-next:after{
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}


/*===*/
.box-blog .box-thumbnail{
    border-radius: 0.5rem;
}

.box-blog .box-badge{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: #A1A1A1;
    font-size: 0.875rem;
}

.box-blog .box-content{
    margin-top: 0.75rem;
}

.box-blog .title{
    margin-bottom: 0.25rem;
    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;
}

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


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

.box-gallery .box-content{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease-in-out;
    opacity: 0;
    transform: scale(0.7);
}

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

.box-gallery img{
    transition: all .2s ease-in-out;
}

.box-gallery:hover img{
    filter: brightness(0.5);
}


/*===*/
.footer{
    position: relative;
}

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

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

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

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

.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 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.625rem;
}

.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.25rem;
}

.social-contact .item{
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50rem;
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.social-contact-footer .item{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: var(--fs-20);
}

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

/*===*/
.form-footer .form-group{
    display: flex;
    gap: 0.5rem;
}

.form-footer .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    background-color: #fff;
    border-radius: 0.25rem;
    box-shadow: none !important;
    font-size: inherit;
}

.form-footer button{
    background-color: #fff;
    color: var(--cl-y);
    border: 0;
    border-radius: 0.25rem;
}

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

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


/*===*/
.box-solution .box-thumbnail{
    border-radius: 0.5rem;
}
.box-solution .box-content{
    margin-top: 0.75rem;
}

.box-solution .box-content .title{
    font-size: var(--fs-18);
    font-weight: 700;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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



/*===*/
.project-show{
    height: 600px;
    border-radius: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.wrapper-project-thumb{
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    width: 40%;
}

.project-thumb .swiper-slide{
    border-radius: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    overflow: hidden;
    filter: brightness(0.5);
    transition: all .3s ease-in-out;
}

.project-thumb .swiper-slide-thumb-active{
    filter: brightness(1);
}


.project-swiper-pagination{
    bottom: -2rem !important;
}

.project-swiper-pagination .swiper-pagination-bullet{
    width: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    height: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    border-radius: 50rem;
    transition: all .3s ease-in-out;
}

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


/*===*/
.form-agent-registration .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    border-radius: clamp(0.375rem, 0.35rem + 0.125vw, 0.5rem);
    box-shadow: none !important;
    font-size: inherit;
}


/*====*/
#contact-form .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    border-radius: clamp(0.375rem, 0.35rem + 0.125vw, 0.5rem);
    box-shadow: none;
    font-size: inherit;
}

.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}

.box-iframe-contact iframe{

}


/*===*/
.box-content-vission{
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
    border-radius: clamp(1rem, 0.8rem + 1vw, 2rem);
    background: rgba(0, 67, 165, 0.10);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.box-img-vision{
    border-radius: clamp(1rem, 0.8rem + 1vw, 2rem);
    overflow: hidden;
}

/*===*/
.box-core-value{
    display: flex;
    align-items: center;
    gap: 2.5rem;
    height: 100%;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    background: rgba(0, 67, 165, 0.10);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.box-core-value .icon{
    font-size: 8rem;
    font-weight: 900;
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.75));
    color: var(--cl-x);
    font-style: italic;
    line-height: 1;
}

.box-core-value .content{
    flex: 1;
    line-height: 1.3;
}

.box-core-value .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
}

/*===*/
.box-sales-channel{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    padding: 1rem;
    border: 1px solid #FFF;
    background: radial-gradient(266.78% 266.78% at 50% 50%, rgba(255, 255, 255, 0.05) 0%, #FFF 100%);
    color: #fff;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.box-sales-channel .icon{
    width: 3rem;
    height: 3rem;
    transition: all .3s ease-in-out;
}

.box-sales-channel .content{
    text-align: center;
}

.box-sales-channel .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.box-sales-channel:hover{
    transform: translateY(-0.5rem);
}

.box-sales-channel:hover .icon{
    transform: translateY(-0.25rem);
}


/*===*/
.btn-tracking{
    position: fixed;
    top: 30%;
    right: 1rem;
    z-index: 1;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #a5b2c5;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50%;
    border: 0;
    padding: 0.25rem;
}

#modalQuickView .btn-close{
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

.wrapper-form-results{
    margin-top: 0.5rem;
}

.form-order-tracking .form-control{
    flex: 1;
    box-shadow: none;
}

.dots {
    display: inline-block;
    margin-top: 0.5rem;
   width: 40px;
   height: 19.2px;
   background: radial-gradient(circle closest-side,#0043a5 90%,#0000) 0%   50%,
          radial-gradient(circle closest-side,#0043a5 90%,#0000) 50%  50%,
          radial-gradient(circle closest-side,#0043a5 90%,#0000) 100% 50%;
   background-size: calc(100%/3) 9.6px;
   background-repeat: no-repeat;
   animation: dots-7ar3yq 1s infinite linear;
}

@keyframes dots-7ar3yq {
   20% {
      background-position: 0%   0%, 50%  50%,100%  50%;
   }

   40% {
      background-position: 0% 100%, 50%   0%,100%  50%;
   }

   60% {
      background-position: 0%  50%, 50% 100%,100%   0%;
   }

   80% {
      background-position: 0%  50%, 50%  50%,100% 100%;
   }
}


#accordionOrder .accordion-button::after{
    margin-left: 1rem;
}