*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    max-width: 100%;
    border-style: none;
    border: 0;
}
body{
    color: white;
    font-family: 'Roboto',sans-serif;
}
a{
    text-decoration: none;
}
.spad{
    padding: 40px 0;
}
.wrap-content{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    position: relative;
    display: block;
}

.go-top {
    position: fixed;
    color: white;
    right: 20px;
    bottom: 50px;
    width: 60px;
    height: 60px;
    background: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    display: none;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    z-index: 60;
    animation: Start 1s steps(1, end) 0s 1 normal both;
}
.go-top svg {
    width: 80%;
    height: 80%;
    margin: 10%;
}
.go-top.show {
    opacity: 1;
    display: block;
}
@media screen and (max-width: 1100px)
{
    .go-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        border: none;
        right: 17px;
        background-color: rgba(0, 0, 0, 0.5);
    }
}
.fill-white {
    fill: white;
}

.mask {
    width: 100%;
    height: 200vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    pointer-events: none;
    transition: all 1s ease-in-out;
}
.mask::before {
    content: '';
    background-image: url(../img/bg-menu.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: block;
    width: 100%;
}
.mask.show {
    transform: translateY(-100%);
}


.loadicon {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 20vw;
    height: 20vw;
    margin: -10vw 0 0 -10vw;
    z-index: 110000;
  }
  
  .load-present {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .load-present {
    z-index: 0;
  }
  
  .stroke-line {
    fill-opacity: 0;
    stroke: #248382;
    stroke-miterlimit: 10;
    stroke-width: 1;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    fill: #248382;
  }
  
  .stroke-line.stroke-orange {
    fill: #FF7257;
  }
  
  .stroke-line.stroke-blue {
    fill: #2EADFF;
  }
  
  .stroke-line.stroke-bluep {
    fill: #291C7A;
  }
  
  .stroke-line.stroke-yellow {
    fill: #E8FF55;
  }
  
  .stroke-line.stroke-yellowp {
    fill: #FACF5C;
  }
  
  .loading .stroke-line {
    animation-name: DrawStroke;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
  }
  .loadicon.show .stroke-line {
    transition: all 0.3s ease-in-out;
    fill-opacity: 1;
    stroke-opacity: 0;
  }
  @media screen and (max-width: 1100px) {
    .loadicon {
      width: 180px;
      height: 180px;
      margin: -90px 0 0 -90px;
    }
  }
  
  @media screen and (max-width: 540px) {
    .loadicon {
      width: 200px;
      height: 200px;
      margin: -100px 0 0 -100px;
    }
  }
/* Start code */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 80px;
  }
  
  .header::after {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #93d6e1;
  }
  
  .logo {
    position: absolute;
    top: 6px;
    left: 30px;
    width: 230px;
    height: 65px;
    z-index: 95;
  }
  
  .logo::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: url(../img/logo.png) no-repeat 50%/contain;
    width: 100%;
    height: 100%;
  }

  .slogan{
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
  }
  
  .hotline {
    color: white;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease-in-out;
    position: relative;
    z-index: 50;
    font-size: 22px;
    font-weight: bold;
  }
  
  .hotline:after {
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    left: -5px;
    top: -5px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: -2;
  }
  
  .hotline:hover {
    color: #248382;
  }
  .language {
    padding: 0 15px !important;
  }
  
  .language::before, .language::after {
    content: "";
    width: 1px;
    height: 8px;
    position: absolute;
    right: -1px;
    top: 50%;
    margin-top: -4px;
    background-color: white;
  }
  
  .language a {
    margin: 0 !important;
    text-align: center;
    pointer-events: none;
  }
  
  .language::before {
    right: auto;
    left: -1px;
  }
  .call {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    color: #eedfc6;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #edc97d, #47c4c3, #edc97d);
    background-size: 300% 300%;
  }
  
  .call svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  @media screen and (min-width: 1100px) {
    .call {
      animation: BorderBox 3s infinite;
    }
  }

  .right-header {
    position: fixed;
    right: 50px;
    top: 30px;
    z-index: 98;
  }
  .subscribe {
    width: 120px;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 2;
    color: white;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    z-index: 100;
    text-align: center;
    margin-right: 20px;
  }
  
  .subscribe:hover {
    color: #248382;
  }
  
  .subscribe::before {
    width: calc(100% - 6px);
    height: calc(100% + 4px);
    left: 3px;
    top: -2px;
    border: 1px solid white;
    border-radius: 18px;
    opacity: .5;
  }
  
  .subscribe::after {
    width: 100%;
    height: calc(100% + 8px);
    left: 0;
    top: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, #edc97d, #47c4c3, #edc97d);
    background-size: 300% 300%;
    z-index: -1;
    animation: BorderBox 3s infinite;
  }
  
  .subscribe::after, .subscribe::before {
    transition: all .3s ease-in-out;
  }
  
  .subscribe::after, .subscribe::before {
    content: '';
    position: absolute;
  }
  @media (min-width: 1100px) {
    .logo {
      opacity: 0;
    }
    .show .logo {
      animation: fadeInDown;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      pointer-events: auto;
    }
  }
  @media screen and (max-width: 1100px) {
    .right-header {
      top: 25px;
    }
    .navigation {
      height: calc(100% - 60px);
      top: 60px;
      width: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .navigation .navi li::after {
      display: none;
    }
    .header.show:after {
      top: 0;
    }
    .header:after {
      content: "";
      width: 100%;
      height: 70px;
      position: absolute;
      left: 0;
      top: -100%;
      pointer-events: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      background-color: #93d6e1;
      transition: top .3s ease-in-out;
      z-index: 20;
    }
    .logo {
      width: 200px;
      height: 55px;
      left: 5px;
      top: 5px;
      z-index: 110;
    }
    .show .logo {
      animation: fadeInDown;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      pointer-events: auto;
    }
  }



  @media screen and (max-width: 767px) {
    .navigation .navi li a {
      font-size: 16px;
      padding: 10px;
    }
    .right-header {
      z-index: 200;
      right: 15px;
      top: 15px;
      width: 120px;
    }
    .slogan{
      margin-right: 0;
    }
    .hotline {
      position: fixed;
      left: 10px;
      bottom: 15px;
    }
    .hotline span:nth-child(2) {
      display: none;
    }
    .subscribe {
      font-size: 13px;
      position: fixed;
      right: 35px;
      top: 20px;
    }
    .logo {
      width: 150px;
      height: 50px;
    }
  }

.main{
    padding: 80px 0 0 0;
}

.title{
    text-align: center;
    margin-bottom: 40px;
}
.title h3{
    font-size: 40px;
}
.title h3 span{
  white-space: nowrap;
}
.product-home{
    background-color: black;
    overflow: hidden;
}
.list-product{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.item-product{
    width: calc(50% - 15px);
    box-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
    border: 8px solid white;
    margin-bottom: 30px;
}
.pic-product{
    position: relative;
    display: block;
    padding-top: 67%;
}
.pic-product img{
    object-fit: cover;
    object-position: center center;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}



.widget {
  position: fixed;
  bottom: 15px;
  left: 25px;
  z-index: 9;
}
.news-hotline{
  position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    margin: 0 0 12px;
    cursor: pointer;
    z-index: 10;
}
.news-hotline::after{
  content: '';
  position: absolute;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  top: -7px;
  left: -7px;
  border-radius: 50%;
  border: 1px solid #93d6e1;

  transition: all .3s ease-in-out;
  z-index: -2;
}
.icon-news-regis {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: 0 0;
    border: 1px solid #93d6e1;
    backdrop-filter: unset;
    transition: all .3s ease-in-out,backdrop-filter 0s;
    background-color:#93d6e1;
    color: white;
    border-color: transparent
}
.icon-news-regis svg {
  position: relative;
  display: block;
  width: 55%;
  animation: Callicon 3s infinite;
}
.text-news-regis {
  display: block;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  position: absolute;
    padding: 10px 15px 7px 42px;
    background-color: #93d6e1;
    border-radius: 30px;
    left: calc(100% - 35px);
    white-space: nowrap;
    top: calc(50% - 19px);
    z-index: -1;
}

@keyframes DrawStroke {
    0% {
      stroke-dashoffset: 800;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
@keyframes fadeInUp{
    0% {
        opacity: 0;
        transform: translate3d(0,200px,0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInDown{
    0% {
        opacity: 0;
        transform: translate3d(0,-200px,0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLeft{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
@keyframes fadeInRight{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes Callicon {

    0% {
      transform: scale(1) rotate(0);
  }
  40% {
      transform: scale(1.1) rotate(40deg);
  }
  45% {
      transform: scale(1.2) rotate(20deg);
  }
  50% {
      transform: scale(1.3) rotate(40deg);
  }
  55% {
      transform: scale(1.2) rotate(20deg);
  }
  60% {
      transform: scale(1.1) rotate(40deg);
  }
  100% {
      transform: scale(1) rotate(0);
  }
  
}
@media screen and (min-width: 1100px)
{
  .ani-item{
    opacity: 0;
  }
    .ani-item.on-show {
        animation-name: fadeInLeft;
        animation-duration: 1.2s;
        animation-delay: .3s;
        animation-fill-mode: forwards;
    }
    .ani-item:nth-child(2n).on-show {
        animation-name: fadeInRight;
        animation-duration: 1.2s;
        animation-delay: .3s;
        animation-fill-mode: forwards;
    }
}
@media (max-width:1100px){
  .main {
    padding: 70px 0 0 0;
  }
}

@media (max-width:767px){
  .title h3 {
    font-size: 25px;
  }
  .item-product{
    width: 100%;
    margin-bottom: 20px;
  }
}