:root{
    --cl-x: #23315B;
    --cl-y: #13273F;
    --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.25rem, 1.1rem + 0.75vw, 2rem);

    --px-content: 6%;
    --py-content: 50px;

    --height-space-top: 72px;
}

@font-face {
    font-family: 'Abang';
    src: 
        url('../fonts/Abang.woff') format('woff');
        font-weight: 500;
}

@font-face {
    font-family: 'UTM-CopperplateB';
    src: 
        url('../fonts/UTM-CopperplateB.woff') format('woff');
        font-weight: 500;
}

body{
    overflow-x: hidden;
    background-color: #0c1827;
    color: #fff;
    font-family: "UTM-CopperplateB", serif;
}

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{
    
}

.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-icon-translate{
    padding: 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.btn-icon-translate .label-icon{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: all .3s ease-in-out;
}

.btn-icon-translate:hover .label-icon{
    transform: translateY(0);
}


.btn-icon-translate .label-text{
    padding: 0.5rem 1rem;
    text-decoration: underline;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.btn-icon-translate:hover .label-text{
    transform: translateY(100%);
}


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

.block.page{
    margin-top: var(--height-space-top);
    padding-bottom: 60px;
}

.block-full-screen{
    display: flex;
    align-items: center;
    min-height: 100vh;
}

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

/*nav menu*/
.navbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}
.navbar>*{
    width: 100%;
    max-width: 100%;
}

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

.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 1s ease-in-out;
    z-index: 30;
}

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

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

.navbar-main .offcanvas{
    top: var(--height-space-top); !important;
    max-width: 300px;
    background-color: #0c1827;
}

.navbar-main .offcanvas-header{
    margin-top: 30%;
}

.navbar-main .offcanvas-body{
    display: flex;
    flex-direction: column;
}

.navbar-main .offcanvas-body::-webkit-scrollbar {
    width: 1px;
    background-color: #F5F5F5;
}

.navbar-main .offcanvas-body::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.navbar-main .offcanvas-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}


.navbar-nav{
    width: 100%;
}

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

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

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: rgba(255, 255, 255, 0.7);
}

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

.navbar-nav .dropdown-menu .dropdown-item:hover{
    background-color: var(--cl-x);
    color: #fff;
}

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

.navbar-nav .nav-item.dropdown .dropdown-menu{
    animation: menu 0.3s;
}

.navbar-nav .dropdown:hover > .dropdown-menu{
    display: block;
}

.navbar-nav .dropdown .dropdown-menu .dropdown .dropdown-menu{
    top: 0;
    left: 98%;
}

@keyframes menu {
    0% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}

*/

.navbar-nav .dropdown-menu{
    margin-left: 1.5rem;
    padding: 0 0 0 0;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: normal;
    color: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.navbar-nav .dropdown-menu .dropdown-item a{
    color: #fff;
}

.navbar-nav .dropdown-menu .dropdown-item:hover{
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}


.toggle-menu{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.toggle-menu:before,
.toggle-menu:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    background-color: #fff;
    transition: all .3s ease-in-out;
}

.toggle-menu:before{
    transform: translate(-50%, -50%) rotate(90deg);
}

.toggle-menu.show:before{
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}


/*===*/
.navbar-brand{
    margin: 0;
    padding: 0;
}

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

.navbar-fixed .logo{

}

.navbar-toggler{
    width: 3rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border: 1px solid #2B2828;
    border-radius: 0;
    box-shadow: none !important;
    color: #fff;
    font-size: 1.5rem;
}

.icon-bar-custom .line{
    width: 2rem;
    height: 2px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.icon-bar-custom{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
}

.navbar-toggler.menu-show .icon-bar-custom .line:nth-child(1){
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.menu-show .icon-bar-custom .line:nth-child(2){
    transform: rotate(-45deg) translate(0px, 0px);
}

.navbar-toggler.menu-show .icon-bar-custom .line:nth-child(3){
    opacity: 0;
}

.navbar-toggler:hover .icon-bar-custom .line:nth-child(3){
    width: 50%;
}


/*===*/
.page-loader{
    position: absolute;
    inset: 0;
    background-color: #fff;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-img-logo{
    padding: 1rem;
    border: 1px solid #000;
}

.box-img-logo img{
    width: clamp(18rem, 15.2rem + 14.000000000000002vw, 32rem);
}

.box-img-logo .inner-img{
    position: relative;
    z-index: 1;
}

.box-img-logo .inner-img:after{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    width: 100%;
    height: 400%;
    display: block;
    background: #fff;
    z-index: -1;
    animation: outerRotate1 15s infinite linear;
}

@keyframes outerRotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.nav-link-filter{
    gap: 0.75rem;
}

.nav-link-filter .nav-link{
    position: relative;
    padding: 0;
    color: #fff;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    cursor: pointer;
}

.nav-link-filter .nav-link:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transition: all .2s cubic-bezier(0.18, 1, 1, 1);;
}

.nav-link-filter .nav-link:hover:after,
.nav-link-filter .nav-link.active:after{
    transform: scaleX(1);
}

.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: var(--cl-x);
}

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


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

.main-slide .swiper-button-next:after,
.main-slide .swiper-button-prev:after{
    color: #fff;
    font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
}

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    z-index: 2;
    padding: 3%;
    background-color: rgba(255, 255, 255, 0.25);
    font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
    color: var(--cl-x);
}

.main-slide .swiper-slide .defaul-banner{
    top: 50%;
    left: 10%;
    right: 10%;
    transform: translateY(-50%);
    text-shadow: 1px 0px 0px #fff;
}

.main-slide .banner-slide h2{
    margin-bottom: 0;
    font-size: clamp(3rem, 2.4rem + 3vw, 6rem);
    font-family: 'Abang', sans-serif;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1s ease-in-out;
}

.main-slide .swiper-slide-active .banner-slide h2{
    transform: translateX(0);
    opacity: 1;
}

.main-slide .banner-slide>*{
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1.2s ease-in-out;
}

.main-slide .swiper-slide-active .banner-slide>*{
    transform: translateX(0);
    opacity: 1;
}

.main-slide .custom-banner-slide{
    max-width: 100%;
}

.main-slide .logo-slide{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(15rem, 9rem + 30vw, 45rem);
    z-index: 1;
    opacity: 0.70;
}



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

.card-hover-zoom .thumbnail,
.card-hover-zoom-long .thumbnail{
    overflow: hidden;
}

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

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

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

.swiper-button-circle .swiper-button-next,
.swiper-button-circle .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);
    opacity: 1;
    transition: all .3s ease-in-out;
    pointer-events: all;
}
.swiper-button-circle .swiper-button-next:after,
.swiper-button-circle .swiper-button-prev:after{
    content: "";
}

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




/*===*/
.card-product{
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.card-product .thumbnail{
    border-radius: 1.5rem;
    overflow: hidden;
}

.card-product .thumbnail img{
    transition: all .5s ease-in;
}

.card-product .content{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.card-product .title{
    margin-bottom: 0rem;
    height: 2.5rem;
    font-size: 1rem;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
}

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

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

.cart-group-action{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.75rem;
}
.cart-group-action [class*='item-']{
    background-color: #ccc;
    width: 2rem;
    height: 2rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.cart-group-action [class*='item-'],
.cart-group-action [class*='item-'] a{
    color: var(--cl-x);
}

.cart-group-action [class*='item-']:hover{
    color: #fff;
    background-color: var(--cl-x);
}
.cart-group-action [class*='item-']:hover a{
    color: #fff;
}


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

.card-project .thumbnail{
    position: relative;
}

.card-project .thumbnail:after{
    content: "";
    position: absolute;
    inset: 20%;
    background-image: url('../images/watermark.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-in-out;
}

.card-project:hover .thumbnail:after{
    opacity: 1;
}

.card-project .thumbnail img{
    filter: grayscale(1);
    transition: all .4s ease-in-out;
}

.card-project:hover .thumbnail img{
    filter: grayscale(0);
}

.card-project .content{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 30%);
    color: #fff;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.card-project:hover .content{
    opacity: 1;
}

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

.card-project .time{
    font-size: var(--fs-12);
    font-style: italic;
}


/*===*/
.card-video{
    position: relative;
}

.card-video .thumbnail img{
    filter: grayscale(1);
    transition: all .4s ease-in-out;
}

.card-video:hover .thumbnail img{
    filter: grayscale(0);
}

.card-video .content{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 30%);
    color: #fff;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.card-video:hover .content{
    opacity: 1;
}

.card-video .title{
    margin-bottom: 0;
    font-size: var(--fs-18);
}


/*===*/
.card-blog .thumbnail{
    overflow: hidden;
}

.card-blog .content{
    margin-top: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.card-blog .date{
    margin-bottom: 0.25rem;
}

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

.card-blog .description{
    font-size: 15px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*===*/
.card-gallery{
    display: block;
    position: relative;
}

.card-gallery .title{
    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);
}
.card-gallery:hover .title{
    opacity: 1;
    transform: scale(1);
}

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

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

/*===*/
.footer{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    color: #fff;
}

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

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

.footer a:hover{
    color: rgba(255, 255, 255, 0.7);
}

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

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

.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{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 300;
    transition: all .2s ease-out;
}

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

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

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

.box-iframe-contact iframe{
    height: 300px;
}