:root{
    --cl-x: #123B65;
    --cl-y: #DBB222;
    --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.15rem + 0.5vw, 1.75rem);

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

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

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

/*background*/
.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.25rem;
    line-height: 1.5;
    font-weight: 600;
    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-outline-x{
    border: 1px 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: 1px 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{
    position: relative;
    padding: var(--py-content) var(--px-content);
}

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

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

/*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.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--cl-x);
}

.navbar-top .nav .nav-link{
    color: #fff;
}


.navbar-top-right .social-contact .item{
    color: #fff;
}

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}

.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-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 1rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
}

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

.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 .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;
    margin-left: 0;
    align-items: center;
    border: 2px solid #fff;
    box-shadow: none !important;
    color: #fff;
}


/*===*/
.box-search-header{
    display: flex;
    padding: 0.125rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 50rem;
    overflow: hidden;
}

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

.box-search-header input::placeholder{
    color: rgba(18, 59, 101, 0.66);
}

.box-search-header button{
    padding: 0.25rem;
    background-color: transparent;
    border: 0;
    box-shadow: none !important;
}

.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{
    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{
    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 ============*/
.main-slide{
    position: relative;
}

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

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

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

/*Home========================*/

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

.box-title-main h3{
    margin-bottom: 0;
    font-family: 'MTD-Colatin';
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
}


/*===*/
.grid-container{
    --w-item: clamp(10rem, 8rem + 10vw, 20rem);
    --gap-grid: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    margin: auto;
}

.grid-container .grid-item{
    /*height: var(--w-item);*/
}

.grid-container .grid-item > *{
    width: 100%;
    height: 100%;
}

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

/*===*/
.box-banner{
    position: relative;
    overflow: hidden;
}

.box-banner img{
    transition: all .3s ease-out;
}

.box-banner:hover img{
    filter: brightness(0.5);
    transform: scale(1.1);
}

.box-banner .banner-content{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    padding: 5%;
    color: #fff;
    text-align: center;
}

.box-banner .banner-content h3{
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.box-banner .btn-custom{
    padding: 0.25rem 1rem;
    background-color: #fff;
    color: #123B65;
    font-size: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
}


.icon-play-video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    height: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.icon-play-video svg{
    width: clamp(1rem, 0.8rem + 1vw, 2rem);
}

/*===*/
.tab-category{
    gap: 1.25rem;
    border-bottom: 0;
}

.tab-category .nav-link{
    padding: 0.5rem 0;
    border: 0;
    color: var(--cl-x);
    font-weight: 500;
}

.tab-category .nav-link.active{
    border-bottom: 2px solid var(--cl-y);
    color: var(--cl-y);
}


/*===*/
.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.5rem, 0.4rem + 0.5vw, 1rem);
}

.wrapper-slide .swiper-pagination-bullet{
    background-color: var(--cl-x);
}


/*===*/
.box-category{
    height: 100%;
    background-color: #FFF7DB;
}
.box-category .box-content{
    padding: 0.75rem;
}

.box-category .box-content .title{
    margin-bottom: 0;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 600;
    text-align: center;
    color: var(--cl-x);
}


/*===*/
.box-product{
    height: 100%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.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{
    padding: clamp(0.25rem, 0.15rem + 0.5vw, 0.75rem);
    text-align: center;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.box-product .title{
    margin-bottom: 0.25rem;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 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-material{
    color: #939393;
    font-family: "Lora", serif;
}

.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-content{
    margin-top: 0.5rem;
}

.box-blog .title{
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-date{
    margin-bottom: 0.5rem;
    color: #CFCFCF;
    font-size: var(--fs-14);
}

.box-blog .box-excerpt{
    color: #585858;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    line-height: 1.3;
    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;
    color: #fff;
}

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

.footer a{
    color: #fff;
}

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

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

.logo-footer{
    width: clamp(4rem, 3.4rem + 3vw, 7rem);
}

.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.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: clamp(2rem, 1.95rem + 0.25vw, 2.25rem);
    height: clamp(2rem, 1.95rem + 0.25vw, 2.25rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: var(--cl-x);
    color: #fff;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

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

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

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


/*===*/
/*===*/
.box-icon-contact{
    --w-icon: 3.5rem;
    --pd: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box-icon-contact .icon{
    width: var(--w-icon);
    height: var(--w-icon);
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-x);
    border-radius: 50%;
    color: #fff;
    z-index: 1;
}

.box-icon-contact .content{
    flex: 1;
    margin-top: calc(-1 * var(--w-icon) /2);
    padding: calc(var(--w-icon) / 2 + var(--pd)) var(--pd) var(--pd);
    border: 1px dashed var(--cl-x);
    border-radius: 0.75rem;
    text-align: center;
}

.box-icon-contact .title{
    font-size: var(--fs-24);
    font-weight: 700;
}


#contact-form{
    padding: 10%;
    background-color: #eef6ff;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}

#contact-form .form-control{
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    box-shadow:none !important;
    font-size: inherit;
}

#contact-form .form-control:focus{
    border: 1px solid var(--cl-x);
}

#contact-form .btn-custom{
    width: 100%;
}

.g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: centers;
}

.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact{
    height: 100%;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    overflow: hidden;
}
.box-iframe-contact iframe{
    height: 100%;
}



/*===*/
.nav-chill-cate{
    gap: 0.5rem;
}

.nav-chill-cate .nav-link{
    border: 1px solid var(--cl-x);
    color: var(--cl-x);
    font-weight: 600;
}

.nav-chill-cate .nav-link.active,
.nav-chill-cate .nav-link:hover{
    background-color: var(--cl-x);
    color: #fff;
}


/*===*/
.box-icon-policy{
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 1rem;
    background-color:rgba(18, 59, 101, 0.08);
    clip-path: polygon(5% 0, 95% 0, 100% 15%, 100% 85%, 95% 100%, 5% 100%, 0 85%, 0 15%);
}

.box-icon-policy .icon{
    width: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    height: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
}

.box-icon-policy .content{
    flex: 1;
}

.box-icon-policy .content .title{
    margin-bottom: 0.125rem;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 600;
}

.col-icon-policy:first-child .box-icon-policy{
    clip-path: polygon(0 0, 95% 0, 100% 15%, 100% 85%, 95% 100%, 0 100%);
}

.col-icon-policy:last-child .box-icon-policy{
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 5% 100%, 0 85%, 0 15%);
}


/*====*/
.box-img-about-cover-1{
    position: absolute;
    right: -2%;
    bottom: 30%;
    width: clamp(4rem, 2.4rem + 8vw, 12rem);
    height: clamp(4rem, 2.4rem + 8vw, 12rem);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-img-about-cover-2{
    position: absolute;
    left: -2%;
    top: 10%;
    width: clamp(4rem, 2.4rem + 8vw, 12rem);
    height: clamp(4rem, 2.4rem + 8vw, 12rem);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}


/*===*/
.box-icon-quality{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

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

.box-icon-quality .content{
    text-align: center;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.box-icon-quality .content .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 500;
    font-family: "Lora", serif;
}


.box-img-about-service{
    position: relative;
}

.box-img-about-service .inner-img{
    border-top-left-radius: 50rem;
    border-top-right-radius: 50rem;
    overflow: hidden;
}

.box-img-about-service .shape-cover{
    position: absolute;
    left: -1rem;
    bottom: 1rem;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-top-left-radius: 50rem;
    border-top-right-radius: 50rem;
    border: 2px solid var(--cl-x);
}


.box-img-about-service .img-cover{
    position: absolute;
    bottom: 2rem;
    width: clamp(4rem, 3.2rem + 4vw, 8rem);
    height: clamp(4rem, 3.2rem + 4vw, 8rem);
    border-radius: 50%;
    overflow: hidden;
}

.box-img-about-service.odd .img-cover{
    left: 0;
    transform: translateX(-50%);
}

.box-img-about-service.even .img-cover{
    right: 0;
    transform: translateX(50%);
}


.content-about-service{
    color: #585858;
}

.content-about-service h2{
    color: #000;
}