

/*==================================================
    General
==================================================*/

html,body{
  padding: 0;
  margin: 0; 
  height: 100%
}  
body{  
  font-family: 'Prompt', sans-serif;
  font-size:var(--f-18);
  font-weight: 300; 
  color:var(--gray);  
  line-height: 1.50;
  background-color: #fff;
  
  margin:0;
  padding:0;  

  position: relative;
  overflow-x: hidden;
}

.pc body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
  image-rendering: -webkit-optimize-contrast;
}

b, strong{
  font-weight: bold; 
  font-family: inherit;
}
h1,h2,h3,h4,h5,h6{   
  margin:0;  
  color:inherit; 
  line-height: 1.4; 
  font-weight: 500;
  font-style: normal;  
  color: #111111;
}  

.nowrap{ white-space: nowrap; }
 
a{
  color:inherit;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
a:hover{ text-decoration: none; color:inherit; }
 
.star{ color: #bc0000 }

.form-control{
 -webkit-appearance: none;
   
  padding:0 20px;

  color:var(--black);
  font-weight: normal;
  font-size:inherit;

  height:55px;
  line-height:539px; 
  border-radius:0; 
  border:1px solid #f1eeea;  
  background-color:#ffffff; 
  font-family: inherit;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}

textarea.form-control{
  height: 150px;
  line-height: normal;
  padding-top: 15px;
}


.radio-group, 
.checkbox-group{ 
  padding-left:0; 
  position:relative;
  list-style-type:none;
  margin:0px;
  padding:0px;
  text-align:center;
  display:inline-block;
  vertical-align:top
}
.radio-group{ display:inline-block; position:relative}
.radio-group.block{display: block; margin-left:0 !important }


.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  /*display: none;*/
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  width: 0;
 
}
.checkbox-group label:before,
.radio-group label:before {
  content: "";
  display: inline-block;

  margin-right: 5px;
  position: absolute;
  left:0;
  top:0px;
  background-color:#fff;
  border:1px solid #cecece;
  width:24px;
  height:24px; 

  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}

.radio-group label:before ,
.checkbox-group.radio label:before { 
  top:4px; 
  width:17px;
  height:17px; 
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
 

.radio-group label,
.checkbox-group label {
  position:relative;
  padding-left:40px;
  padding-right:15px;
  text-align:left;
  margin:1px 0;
  display:block; 
  font-size:inherit;
  line-height:1.3;
  cursor:pointer;
 
}

.checkbox-group label{color: inherit;} 
.radio-group label{color: inherit; padding-left: 30px} 

 
.radio-group input[type="radio"]:checked + label:after,
.checkbox-group.radio input[type="checkbox"]:checked + label:after{
  content: "";
  color: #ea6f21;
  background-color:#65666e; 
  position:absolute;
  left: 4px;
  top: 8px;
  width: 11px;
  height: 11px;

  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.checkbox-group:not(.radio) input[type="checkbox"]:checked + label:after,
.checkbox-group:not(.radio)input[type="checkbox"]:checked + span + label:after {
  content: "";
  color: #ea6f21; 
  background-image: url(../img/icons/icon-checker-white.svg);
  background-color: var(--red);
  background-repeat: no-repeat;
  background-position: center center;
  background-size:65%;
 
  position:absolute;

  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px; 
  border-radius: 3px;
}
 
.radio-group.no-text,
.checkbox-group.no-text{
  width: 29px;
  height: 29px;
  margin-top:-2px; 
} 

.checkbox-group label a{text-decoration: underline;}
.pc .checkbox-group label a:hover{color: var(--red)}

.checkbox-group .error{/*display: none !important;*/ opacity: 0; pointer-events: none; position: absolute;}
.checkbox-group .error + label{color: var(--red)}

.checkbox-group input[type="checkbox"]:checked + span + label{ color: var(--black) !important }
 
.form-control::-webkit-input-placeholder {
  color: inherit;
  font-weight: inherit;
  opacity:0.5;
}

.form-control::-moz-placeholder {
  color: inherit;
  font-weight: inherit;
  opacity:0.5;
}

.form-control:-ms-input-placeholder {
  color: inherit;
  font-weight: inherit;
  opacity:0.5;
}

.form-control::-ms-input-placeholder {
  color: inherit;
  font-weight: inherit;
  opacity:0.5;
}

.form-control::placeholder {
  color: inherit;
  font-weight: inherit;
  opacity:0.5;
}

.form-control:disabled, 
.form-control[readonly] {
  background-color: #e2e2e2;
  border-color: #c7c7c7;
}
 
.custom-select{
  background:transparent !important;
  border:0; 
  padding: 0 10px;
  height: 40px;
  line-height: 39px;
  margin-top: -1px;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  font-weight: var(--f-400);
  font-size: 13px;
  outline:0 !important;
  box-shadow: none !important;
} 

.btn{
  position: relative;
  border:0;
  padding: 0 10px; 
  height:58px;
  line-height: 58px;
  font-family:inherit;   
  font-size:var(--f-18);
  color:#ffffff ; 
  background-color:#fbbe2e; 
  border:1px solid #fbbe2e; 
  border-radius:100px;

  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
} 

.pc .btn:hover{
  color: #fff;
  background-color:var(--yellow); 
  border:1px solid var(--yellow); 
}


.btn-outline{
  background-color:transparent !important; 
  border:0 !important;
}
 
.btn[disabled]{
  border-color: #D4EAEA;
  background-color:#D4EAEA;
  color:#A1C9C9;
  line-height: 56px;
  pointer-events: none;
  opacity: 1;
} 
.btn svg,
.btn img{
  position: relative;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
 
.btn-link, 
.btn-link:hover, 
.btn-link:focus, 
.btn-link:active{
  background-color: transparent;
}
 
.btn:focus,.btn:active,
button:focus,button:active,
a:focus,a:active {
   outline: none !important;
   box-shadow: none!important;
} 
.buttons{
  display: block; 
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
} 
 
.buttons.center .btn{
  margin: 0 auto;
}

svg path,
svg rect,
svg line,
svg circle,
svg polygon{ 
  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
 
/*==================================================
    Icon Setup
==================================================*/  

.icons{
  display:inline-block;
  position:relative;
  vertical-align:middle; 
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center center;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.icons.before:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.pc .btn:hover .icons.before:before{ opacity: 1; }
.inline-black{
  display: inline-block;
  padding: 0 10px
}

/**/

.arrow-left,
.arrow-right,
.arrow-up,
.arrow-down{
  position: absolute;
  left: 0;
  top: 0;
  width:5px;
  height:5px;
  vertical-align:top;

  border-top: 1px solid #676767;
  border-left: 1px solid #676767;

   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.arrow-left{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);  
}

.arrow-right{
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);  
}

.arrow-up{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
.arrow-down{
   margin-left:1px; 
   -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}
 
 
.container-fluid{
  max-width:calc(1920px); 
  padding-left:100px;
  padding-right:100px; 
  position: relative;
  z-index: 9; 
}

.container{
  max-width:1450px; 
  padding-left:50px;
  padding-right:50px; 
  position:relative;
  z-index:9; 
}

.section-target{
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 1680px) {
   
  .container{ max-width: 1240px }
}

@media (max-width: 1440px) { 

  .container-fluid,
  .container{
    padding-left:70px;
    padding-right:70px; 
  }

  .container{ max-width: 1140px }

  .btn{
    height: 50px;
    line-height: 50px
  }
}
 

@media (max-width:1199px) {
  .btn{
    height: 45px;
    line-height: 45px
  }
}

@media (max-width: 991.98px) {
  .container-fluid{
    padding-left: 50px;
    padding-right: 50px
  }

  .container{
    padding-left: 50px;
    padding-right: 50px
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid{ 
    padding-left: 25px;
    padding-right: 25px;
  }

  .btn{
    height: 40px;
    line-height: 40px;
    font-size: inherit; 
  }

  .section-target{top: -70px}

  .form-control{
    height: 45px;
    line-height: 43px
  }
}
   
.compensate-for-scrollbar{ margin-right: 0 !important } 
.compensate-for-scrollbar .header{ right: 0 } 
body.fancybox-active{ overflow: visible !important;padding-right: 0 !important  }
 
/*==================================================
    Header Setup
==================================================*/  

:root {  

  --blue:#00b7ee;
  --yellow:#ffee00;
  --white:#ffffff; 
  --orange:#fbbe2e;
  --purple:#61408c;
  --gray:#676767;
  --black:#000;

  /*--f-48:48px;
  --f-36:36px;
  --f-30:30px;
  --f-22:22px;
  --f-20:20px;
  --f-18:18px;*/

  --f-48:40px;
  --f-36:32px;
  --f-30:26px;
  --f-22:18px;
  --f-20:16px;
  --f-18:15px;

  --f-300:200;
  --f-400:300;
  --f-500:400;
  --f-600:500; 
}

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 
  
  :root{
    --f-400:400;
    --f-500:500;
    --f-600:600; 
  }

}
@media (max-width:1680px) {
  :root{
    /*--f-48:40px;
    --f-36:32px;
    --f-30:26px;
    --f-22:18px;
    --f-20:16px;
    --f-18:16px;*/
  }
}
@media (max-width:1440px) {
  :root{
    --f-48:36px;
    --f-36:26px;
    --f-30:22px;
    --f-22:18px;
    --f-20:16px;
    --f-18:15px;
  }
}
 
@media (max-width:1199px) {
  :root{
    --f-48:30px;
    --f-36:22px;
    --f-30:18px;
    --f-22:16px;
    --f-20:15px;
    --f-18:14px;
  }
}

@media (max-width:991.98px) {
  :root{
    --f-48:26px;
    --f-36:20px;
    --f-30:16px;
    --f-22:14px;
    --f-20:14px;
    --f-18:14px;
  }

}

@media (max-width:767px) {
  :root{
    --f-48:22px;
    --f-36:18px;
    --f-30:16px;
    --f-22:14px;
    --f-20:14px;
    --f-18:14px;
  }
}

.page{
  position: relative; 
  display: block;   
  overflow: hidden;   
}   

.header,  
.navbar-brand,
.navbar-brand img{ 
   -webkit-transition: all 0.25s ease-in-out;
     -moz-transition: all 0.25s ease-in-out;
     -o-transition: all 0.25s ease-in-out;
     -ms-transition: all 0.25s ease-in-out;
     transition: all 0.25s ease-in-out;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding:0;
  z-index: 1010;  
  padding:20px 0; 
  background-color: var(--blue) 
} 
.navbar-brand img,
.navbar-brand svg{ width: 100%; height: auto; }
 
@media (min-width:768px) {

  .navbar-brand{
    width: 250px;
    padding: 0;
    margin: 0;
  }

  .nav-main{
    margin-left: auto;
    margin-right: -12px;
    font-weight: 400
  }
  .nav-main > li > a{
    font-size: 18px;
    color: var(--yellow);
    text-transform:uppercase;
    display: block;
    padding: 10px 40px;
  }

  .nav-main > li.active > a,
  .pc .nav-main > li:hover > a{color: #ffffff;}

  .nav-icons{
    margin-right:0px;
    padding-left: 40px;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .nav-icons a{
    width: 25px;
    height: 25px;
    margin: 0 12px;
  }
  .nav-icons a.icon-globe{background-image: url(../img/icons/icon-globe.svg);background-size: 90%}
  .nav-icons a.icon-phone{background-image: url(../img/icons/icon-phone.svg); background-size: 80%}
  .nav-icons a.icon-video{background-image: url(../img/icons/icon-video.svg);}

   
  .nav-main .dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 0;
    margin-left: -95px;
    width: 190px;
    display: block;
    
    background-color: rgba(255,255,255,0.85);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    border:0;
    border-radius: 15px;
    padding:10px 25px 25px; 

    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
  }
  .nav-main .dropdown-menu ul.nav{
    flex-direction: column;
  }
  .nav-main .dropdown-menu ul.nav li a{
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: block;
    padding: 8px 0;
    font-size: 15px;
  }
  .pc .nav-main .dropdown-menu ul.nav li a:hover{color: var(--blue)}
  
  .nav-main li.dropdown.show .dropdown-menu,
  .pc .nav-main li.dropdown:hover .dropdown-menu{
    opacity: 1;
    pointer-events: auto;
    top: 100%;
  }
  
 
}
@media (min-width:768px) { 
   
  .nav-main{ margin-right: -8px }
  .nav-main > li > a{ padding: 10px 10px; }
}

@media (min-width:768px) and (max-width:991.98px){
  .nav-main > li > a{font-size: 15px}
  .nav-icons{padding-left: 20px}
  .nav-icons a{
    width: 18px; 
    height: 18px;
     margin: 0 5px;
  }

  .navbar-brand{width: 200px;}
}

@media (min-width:992px) and (max-width:1199px){
  .navbar-brand{width: 250px;}
  .nav-main > li > a{ padding: 10px 15px; }
  .scrolling .navbar-brand{ width: 150px; } 
  .nav-icons{padding-left: 20px}
}

@media (min-width:1200px) {
  .navbar-brand{width: 300px;}

  .nav-icons a{width: 25px; height: 25px}
  .nav-main > li > a{ padding: 10px 30px; font-size: 20px  }

  .scrolling .navbar-brand{ width: 220px; }

  .nav-main .dropdown-menu{
    width: 220px;
    margin-left: -110px;
  }
}
 
@media (min-width:1441px) {
  .navbar-brand{width: 400px;}
  
  .nav-main > li > a{ padding: 10px 30px; font-size: 22px }
  .nav-icons a{width: 30px; height: 30px}
  .scrolling .navbar-brand{ width: 300px; }
  .scrolling .nav-main > li > a{ padding-top: 10px; padding-bottom: 10px; }
}

 
@media (min-width:1920px) {
  .nav-main > li > a{ padding: 10px 40px; }
  .nav-icons a{width: 34px; height: 34px}
}

/*==================================================
    Header - Mobile
==================================================*/ 
 

@media (max-width:991px) {}

@media (max-width:767px) {
  .btn.btn-icon{
    padding: 0 !important;
    border:0 !important;
    background-color: transparent !important;
    display: inline-block;
    vertical-align: middle;
    z-index: 1090;
    float: left;
    border-radius: 0;
    position: absolute;
    top:0;
    right: 25px; 
    overflow: visible;
  }

  .btn.btn-icon.in-sidebar{
    position: absolute;
    display: none;
  }
 
  .btn-icon:before{display: none;}
  .btn-icon .group{
    display: block;
    position: relative;
    width: 28px;
    height:10px;
    margin: 0 auto 0
  }
  .btn-icon .group span{
    height: 2px;

    position: absolute;
    left: 0;
    right: 0;
    border-radius: 10px;
    -webkit-transform-origin: 25px, 1px;
    -ms-transform-origin: 25px, 1px;
    transform-origin: 25px, 1px
  }
  .btn-icon .group span:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:var(--yellow);
    transition: all 0.25s ease-in-out;
  }
  .btn-icon .group span:nth-child(1):before{ width: 100%; }
  .btn-icon .group span:nth-child(2):before{ width: 17px; }

  .pc .btn-icon:hover span:nth-child(1):before { width: 17px }
  .pc .btn-icon:hover span:nth-child(2):before { width: 100% }

  .btn-icon .group span:nth-child(1) {
      top: 0;
      -webkit-transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98)
  }

  .btn-icon .group span:nth-child(2) {
      top: 9px;
      -webkit-transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98)
  }

  .nav-opened .btn-icon .group span:nth-child(1) {
     -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      -webkit-transform: rotate(45deg) translate3d(6px, 6px, 0);
      transform: rotate(45deg) translate3d(2px, 2px, 0)
  }

  .btn-icon.close .group span:nth-child(2),
  .nav-opened .btn-icon .group span:nth-child(2) {
       -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
      -webkit-transform: rotate(-45deg) translate3d(4px, -4px, 0);
      transform: rotate(-45deg) translate3d(4px, -4px, 0)
  }

  .nav-opened .btn-icon .group span:nth-child(3){ opacity: 0 }
  .pc .btn-icon:hover span:nth-child(1):before { width: 17px }
  .pc .btn-icon:hover span:nth-child(2):before { width: 100% }

  .btn-icon.close span:nth-child(1):before,
  .nav-opened .btn-icon span:nth-child(1):before   { width: 100% !important }

  .btn-icon.close span:nth-child(2):before,
  .nav-opened .btn-icon span:nth-child(2):before  { width: 100% !important }

  .navbar-brand{width: 150px}
  .header .nav-main{display: none;}

  .nav-main{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    background-color:var(--blue); 

    display: flex;
    flex-direction: column;

    opacity: 0;
    transition: all 0.4s ease-in-out;
    pointer-events: none;

    transform: scale(3);
  }

  .nav-opened .nav-main{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
 
  .nav-main li{
    width: 100%
  }
  .nav-main li a{
    display: block;
    text-align: center;
    color:var(--yellow);
    font-size: 20px;
    font-weight:500;
    text-transform: uppercase;
    padding: 1.6vh 0;
    position: relative;
    z-index: 10;
  }

  .nav-main li.active a{
    color: #fff; 
  }

  .nav-main li:first-child{margin-top: auto;}
  .nav-main li:last-child{ margin-bottom: auto; }

  .nav-icons{
    margin-right:0px;
    padding-left: 0;
    padding-top: 40px;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .nav-icons .d-flex{margin: 0 auto}
  .nav-icons a{
    width: 30px;
    height: 30px;
    margin: 0 12px;
  }
  .nav-icons a.icon-globe{background-image: url(../img/icons/icon-globe.svg);background-size: 90%}
  .nav-icons a.icon-phone{background-image: url(../img/icons/icon-phone.svg); background-size: 80%}
  .nav-icons a.icon-video{background-image: url(../img/icons/icon-video.svg);}

  .navbar-device .btn-icon{top: 20px; position: fixed;}

  .dropdown-menu{
    background-color: transparent;
    position: relative;
    border:0;
    top: 0;
    margin:0;
    padding: 0;
    float: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }  
  .dropdown-menu li a{
    display: block;
    color: #fff;
    padding: 1px 0;
    font-size: 16px;
    font-weight: 300
  }
}
 
   
/*==================================================
    Section - setup
==================================================*/ 
 
.navbar .container, 
.navbar .container-fluid, 
.navbar .container-lg, 
.navbar .container-md, 
.navbar .container-sm, 
.navbar .container-xl{
  display: block;
}
 
.section{
  display: block;
  position: relative;   
  padding:50px 0;
}  
 
.section-title{
  display: block;  
  padding:0;
  text-align: center;
}

.section-title .line{
  display: block;
  width: 33px;
  height: 8px;
  margin: 15px auto 25px;

  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icons/icon-wave.png);
}
.section-h100{
  height: 100vh;
  display: flex;
}
 
.title-xl{
  font-size: var(--f-48);
  font-weight: 600;
}
.title-md{
  font-size: var(--f-36);
  font-weight: 500;
}

.section-title{
  padding: 30px 0;
  display: block;
  position: relative;

}
.section-title .title-md{color: var(--orange);line-height:  1.3; margin-bottom: 3px}
.section-title .title-xl{color: var(--blue);line-height: 1.3}

.hgroup{
  display: block;  
}
 
.background{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none; 
}
.background.contain{background-size: contain;}   
.background.fixed{background-attachment: fixed;}  

.device .background.parallaxie{
  background-attachment: scroll !important;
  background-position: center center !important;
}
@media (max-width:1199px) {
  .background.parallaxie{
    background-attachment: scroll !important;
    background-position: center center !important;
  }

  .section-title{padding: 20px 0}
} 

@media (max-width:991.98px) {
  .header-space{height: 85px}
  .section{padding: 30px 0}
}

@media (max-width:767px) {
  .header-space{height: 78px}

  .section-title{padding: 20px 0 10px}
  .section-title .title-md{margin-bottom: 5px}

  .section-title .line{
    width: 25px;
    margin: 10px auto 20px
  }
}

.row.space-0{ margin:0}
.row.space-0 > div{ padding:0}
 
.row.space-5{ margin:0 -5px !important}
.row.space-5 > div{ padding:0 5px !important} 

.row.space-10{ margin:0 -10px}
.row.space-10 > div{ padding:0 10px}
 
.row.space-20{ margin:0 -20px}
.row.space-20 > div{ padding:0 20px} 

.row.space-25{ margin:0 -25px}
.row.space-25 > div{ padding:0 25px} 

.row.space-30{ margin:0 -30px}
.row.space-30 > div{ padding:0 30px} 
  
.light{ font-weight: 300 !important }
.regular{ font-weight: 400 !important }
.medium{ font-weight: 500 !important }
.semibold{ font-weight: 600 !important }
.bold{font-weight: bold !important }
.italic{font-style: italic;}

.card{
  border:0;
  border-radius: 0;
}
.card-photo{
  position: relative;
}

.card-photo .photo{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.card-photo img{
  width: 100%
}

.card-photo:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-color: rgba(0,0,0,0.3);
  transition: all 0.2s ease-in-out;
}

.pc a.card:hover .card-photo:before{opacity: 1}
 
@media (max-width:1440px) {}

@media (max-width:1024px) { }

@media (max-width:991.98px) {}

@media (max-width:767px) {}

/*==================================================
    Section - Intro
==================================================*/  

.preload{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:var(--blue);
  z-index: 1060;

  background-size:300px;
  background-repeat: no-repeat;
  background-position: center center; 
}
@media (max-width:767px) {
  .preload{background-size:150px;}
}

.preloading{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1060;

  background-size:300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/thumb/preload.gif);
}
@media (max-width:767px) {
  .preloading{background-size:150px;}
}

.img-spin {
    -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
 
/*==================================================
    Banner
==================================================*/  

.section-banner{
  background-color: var(--blue); 
  padding-top: 240px;
}

.banner-images{
  display: flex;
  padding: 0 100px;
  position: relative;
}

.banner-images .img-title-vitamins{
  width:510px;
  height: auto;
  margin-bottom: 0
}

.banner-images .img-title-special-lid{
  width:300px;
  height: auto;
  margin-bottom: auto;
  margin-left: auto; 
}

.banner-images .img-bottle{
  position: absolute;
  top: 0;
  left: 50%;

  width:500px;
  margin-left: -70px;
  animation: zoom 15s infinite;
  animation-direction: alternate;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease
}

.banner-images > div svg,
.banner-images > div img{width: 100% ; height: auto;}

.wave-images{
  display: block;
  position: relative; 
  margin-top: 30px;
}

.wave-images > div{
  width: 100%;
  position: absolute;
  height: auto;

  animation-direction: alternate;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease
  
}

.wave-images .wave-1{top: 0;}
.wave-images .wave-2{top: 50px;}
.wave-images .wave-3{top: 50px}

.wave-images img,
.wave-images svg{ 
  width: 100%;
}
.wave-images .wave-1 {
    animation: float3 25s infinite;
}
.wave-images .wave-2 {
    animation: float2 25s infinite;
}
.wave-images .wave-3 {
    animation:float 6s ease-in-out infinite;
}

@keyframes float {
  0% { 
    transform: translatey(0px);
  }
  50% { 
    transform: translatey(-20px);
  }
  100% { 
    transform: translatey(0px);
  }
}

@keyframes float2 {
  0% { 
    transform: translatey(0px);
  }
  50% { 
    transform: translatey(50px);
  }
  100% { 
    transform: translatey(0px);
  }
}

@keyframes float3 {
  0% { 
    transform: translatey(0px);
  }
  50% { 
    transform: translatey(-20px);
  }
  100% { 
    transform: translatey(0px);
  }
}

@keyframes zoom {
    0% {
        transform: rotate(0deg)
    }
    30% {
        transform: rotate(10deg)
    }
    60% {
        transform: rotate(-5deg)
    }
    80% {
        transform: rotate(5deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

@keyframes zoom2 {
    0% {
        transform: rotate(0deg)
    }
    30% {
        transform: rotate(-15deg)
    }
    60% {
        transform: rotate(0deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

@media (min-width:1024px) {
  @keyframes float {
  0% { 
    transform: translatey(0px);
  }
  50% { 
    transform: translatey(-50px);
  }
  100% { 
    transform: translatey(0px);
  }
}

}


.article-introduction{
  color:#00b0d3;
  padding: 180px 0 0 180px;
}
.section-banner:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom:0;
  height: 10vw;
  background-color: #ffffff;
}

.article-introduction .title-xl{color: inherit;}
.article-introduction ul{
  padding-left: 17px;
}
.article-introduction ul li{
  margin: 14px 0;
}
.article-introduction .buttons{
  text-align: left;
}
.article-introduction .btn{
  width: 220px;
}

@media (max-width:1680px) {
  .section-banner{padding-top: 10vw}

  .banner-images .img-title-vitamins{width: 29vw}
  .banner-images .img-title-special-lid{width: 17vw;}
  .banner-images .img-bottle{width: 25vw; margin-top: 0}

  .article-introduction{ padding-top:120px;}
}

@media (max-width:1440px) {
  .banner-images{padding: 0 50px}
  .article-introduction{padding-left: 50px}
  .article-introduction ul li{margin: 10px 0}
  .article-introduction .buttons{padding: 20px 0}
  .article-introduction .btn{ width: 200px; }
}
@media (max-width:1199px) {
  .section-banner::before {
    height: 20vw
  }
}

@media (max-width:1024px) {
  .section-banner{padding-top: 130px}

  .banner-images .img-bottle{left: 60%}
  .article-introduction{padding-top:80px }

  .wave-images{margin-top: 50px}
  .wave-images .wave-2{top: 0}
  .wave-images .wave-3{top: 30px}

  .section-banner::before {
    height: 30vw
  }

  .article-introduction ul{max-width: 50%}
  .wave-images .wave-1 {
    animation: float4 25s infinite;
  }
  .wave-images .wave-3 {
    animation:float4 6s ease-in-out infinite;
  }
  @keyframes float4 {
    0% { 
      transform: translatey(0px);
    }
    50% { 
      transform: translatey(-13px);
    }
    100% { 
      transform: translatey(0px);
    }
  }
}

@media (max-width:767px) {
  .section-banner {padding-top: 0; overflow: hidden;}
  .section-banner::before {display: none; top: 93vw; bottom: 0; height: auto; }
  .banner-images{padding:33vw 0 10vw}
  .banner-images .img-title-special-lid{width: 21vw}
  .banner-images .img-title-vitamins{width: 32vw}
  .banner-images .img-bottle {
    width: 36vw;
    left: 61%;
    top: 30%;
    margin-top: 0;
  }

  .wave-images{
    display: block;
    margin: 10vw -70px 0;
  }
  .wave-images .wave-3 {
    top: 20px;
  }

  .article-introduction{
    padding: 20vw 0 0;
    position: relative;
  }
  .article-introduction ul{max-width: 100%}
  .article-introduction .buttons{padding-top: 10px; padding-bottom: 0}
  .article-introduction .btn{ width: 180px }
  .article-introduction:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    top: 30%;
    background-color: #fff
  }
}


/*==================================================
    Section - Vitamins
==================================================*/

.vitamins-images{
  display: block;
  text-align: center;
  padding: 30px 0;
}
.vitamins-images .img-vitamins{
  width: 100%;
  height: auto;
  max-width: 1000px;
  display:block;
  margin: 0 auto;
}

.vitamins-images .icon-plus{
  display: block;
  margin:-50px auto 0;
  width:70px;
  height: 70px;
  background-image:url(../img/icons/icon-plus-yellow.svg);
}
.vitamins-images h3{
  color: var(--black);
  font-size: 62px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}


@media (max-width:1680px) {
  .vitamins-images .img-vitamins{max-width: 68%}
  .vitamins-images .icon-plus{width: 60px; height: 60px;}
  .vitamins-images h3{font-size: 50px}
}

@media (max-width:1440px) {
  .vitamins-images .icon-plus{width: 3.5vw; height: 3.5vw;margin-top: 0}
  .vitamins-images h3{font-size: 3.2vw}
}

@media (max-width:1024px) {
  .vitamins-images{padding: 0}

  .vitamins-images .img-vitamins{max-width: 90%}
  .vitamins-images .icon-plus{width: 5vw; height:5vw;margin-top: 0}
  .vitamins-images h3{font-size: 4.5vw}
}
@media (max-width:767px) {
  .vitamins-images .img-vitamins{max-width: 100%}

  .vitamins-images h3{font-size: 7.5vw;}
  .vitamins-images .icon-plus {
    width: 9.5vw;
    height:9.5vw;
    margin-bottom: 10px;
  }

}

/*==================================================
    Section - About us
==================================================*/

.section-about{}

.article-about{
  font-size: var(--f-20);
  color: var(--gray);
  padding-bottom: 100px;
}
.article-about .buttons{
  padding: 10px 0;
}
.slogan{
  display: block;
  text-align: center;
  font-size: var(--f-36);
  font-weight: 600;
  font-style: italic;
  color: var(--purple);
  line-height: 1.2;
  position: relative;
  padding: 20px 0px 20px 30px;
  margin-top: 40px;
  position: relative;
}
.slogan:before,
.slogan:after{
  content: '';
  position: absolute; 
  font-size: 90px;
  color: #97b8be;
  font-weight: 400;
  line-height: 0.8;

  width: 32px;
  height: 32px;

  background-image: url(../img/icons/icon-quote.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.slogan:before{ 
  left: -10px;
  top: 0;
}
.slogan:after{ 
  right: -10px;
  bottom:0;
}


.about-imgage > div{
  position: absolute;

  animation-direction: alternate;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease
}
.about-imgage > .bg{
  width: 1050px;
  right: 20px;
  bottom: 0;

   animation: zoom 25s infinite;
}
.about-imgage > .bottle{
  width: 450px; 
}
.about-imgage > .bottle-1{
  right: 228px;
  bottom: 83px;

  animation: float2 15s infinite;
}
.about-imgage > .bottle-2{
  right: 105px;
  bottom: -123px;

  animation: float3 15s infinite;
}
.about-imgage > .bottle-3{
  right: 480px;
  bottom: 72px;

  animation: float 15s infinite;
}
.readmore{
  display: flex;
  color: var(--orange) !important;
  font-size: var(--f-18);
  text-transform: uppercase;
  font-weight: 500;
}
.readmore .icons{
  width: 16px;
  height: 16px;

  position: relative;
  left: 0;
  background-image: url(../img/icons/icon-readmore.svg);
  transition: all 0.2s ease-in-out;
}
.pc .readmore:hover .icons{left: 10px}

.readmore svg{
  width: 16px;
  height: 16px;
  transition: all 0.2s ease-in-out;
  position: relative;
  left: 0;

  margin-top: auto;
  margin-bottom: auto;
  margin-left: 10px;
}
.readmore svg path{ fill: var(--orange) !important }
.pc .readmore:hover svg{left: 10px}

@media (max-width:1680px) {
  .about-imgage > .bg{
    width:57vw;
    right: 10px;
    bottom: 0;
  }
  .about-imgage > .bottle{
    width: 24vw; 
  }
  .about-imgage > .bottle-1{
    right: 14vw;
    bottom: 5vw;
  }
  .about-imgage > .bottle-2{
    right: 5vw;
    bottom: -4vw;
  }
  .about-imgage > .bottle-3{
    right: 28.5vw;
    bottom: 0;
  }

  .article-about{padding-bottom: 50px}
}

@media (max-width:1024px) {
  .slogan:before,
  .slogan:after{
    width: 28px;
    height: 28px;
  }

  .readmore svg{width: 13px; height: 13px}
}
@media (max-width:991.98px) {
   .about-imgage{
    position: absolute;
    top:72%;
    right: 0
   }

   .slogan{margin-top: 30px}

   .article-about{padding-bottom: 30px}
}

@media (max-width:767px) { 
  .about-imgage{
    position: relative;
    top: auto;
    right: auto;
    left: 9vw;
    display: block;
    margin:33vw auto 20px;
    width: 90vw;
    height: 50vw;

  }

  .about-imgage > .bg{
    width:110vw;
    right: 10px;
    bottom: 0;
  }
  .about-imgage > .bottle{
    width: 42vw; 
  }
  .about-imgage > .bottle-1{
    right: 26vw;
    bottom: 16vw;
  }
  .about-imgage > .bottle-2{
    right: 11vw;
    bottom: -11vw;
  }
  .about-imgage > .bottle-3{
    right:55.5vw;
    bottom: 0;
  }

  .article-about{padding-bottom: 0}
  .article-about .buttons{padding: 0}

  .slogan{
    padding: 20px;
    display: block;
    margin:20px auto 0;
    max-width: 320px;
  }
  .slogan::before,
  .slogan::after {right: 0; width: 24px; height: 24px}
}


/*==================================================
    Section - More Benefits
==================================================*/

.section-benefits{
  background-color: #f9fafd;
  margin-top: 80px;
  padding-bottom: 0 !important;
  overflow: hidden;
}
.benefits-content {
  padding-top: 100px;
  position: relative;
  margin-top: 20px; 
  min-height: 789px
}
.benefits-content .row > div:nth-child(odd) .benefits-items {padding-right: 240px}
.benefits-content .row > div:nth-child(odd) .benefits-items p {padding-right: 55px}
.benefits-content .row > div:nth-child(odd) .benefits-items .hgroup{-ms-flex-direction: row-reverse;flex-direction: row-reverse}
.benefits-content .row > div:nth-child(odd) .benefits-items h4{margin-right: auto;}

.benefits-content .row > div:nth-child(even) .benefits-items {padding-left: 240px}
.benefits-content .row > div:nth-child(even) .benefits-items p {padding-left: 55px}
.benefits-content .row > div:nth-child(even) .benefits-items{text-align: right;}
.benefits-content .row > div:nth-child(even) .benefits-items h4{margin-left: auto;}

.benefits-items{
  display: block;
  position: relative;
  font-size: var(--f-22); /*--f-18*/
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 40px;
}
.benefits-items .hgroup{
  display: flex;
  position: relative;

  -ms-flex-align: center;
  align-items: center;
}
.benefits-items .hgroup .icon{
  width: 72px; 
}
.benefits-items h4{
  font-size: var(--f-30);
  color: var(--purple);
  font-weight: 600; 
}
.benefits-items p{margin-bottom: 0}
.benefits-water-bottle{
  position: absolute;
  left: 50%;
  top: 0;
  width:420px;
  margin-left: -210px;
  padding-bottom: 60px; 
}
 
.benefits-water-bottle img.number6{
  width:460px;
  top:-70px;
  left:-30px; 
  position: absolute;
}
.benefits-water-bottle img.bottle{
  width: 88%; 
  z-index: 1;
  position: relative;
  margin:60px auto 0;
  left: 51px; 
}

.benefits-water-bottle .line{
  position: absolute;
  top: -20px;
  left: 50%;
  width: 4px;
  height: 80px;
  margin-left: -2px;
  background-color: #61408c;
  z-index: 100
}

@media (max-width:1680px) {
  .benefits-items{margin-bottom: 20px; font-size: 17px}
  .benefits-items .hgroup .icon{
    width: 55px; 
  }

  .benefits-content {min-height:650px}
  .benefits-content .row > div:nth-child(odd) .benefits-items {padding-right: 200px}
  .benefits-content .row > div:nth-child(even) .benefits-items {padding-left: 200px}
  .benefits-content .row > div:nth-child(odd) .benefits-items p {padding-right:35px}
  .benefits-content .row > div:nth-child(even) .benefits-items p {padding-left: 35px}

  .benefits-water-bottle{width: 360px; margin-left: -180px;}
  .benefits-water-bottle img.bottle{margin: 45px auto 0;}

  .benefits-water-bottle img.number6{
    width: 360px;
    left: -15px
  }
}

@media (max-width:1440px) {
  .benefits-content{padding-top: 50px; min-height:550px}
  .benefits-water-bottle{width: 300px; margin-left: -150px;}
  .benefits-water-bottle .line{ height: 65px; }
  .benefits-water-bottle img.bottle{
    
    margin: 40px auto 0;
    
  }

  .benefits-water-bottle img.number6{
    width: 300px;
    left: 0;
  } 

  .benefits-items{margin-bottom: 25px} 

  .benefits-content .row > div:nth-child(odd) .benefits-items {padding-right: 160px}
  .benefits-content .row > div:nth-child(even) .benefits-items {padding-left: 160px}
}

@media (min-width:1200px) and (max-width:1440px) {
  .benefits-items{ font-size: 14px }
}

@media (max-width:1024px) { 
  .benefits-items{font-size: 14px}
}

@media (max-width:991.98px) {
  .section-benefits{margin-top: 0}
  .benefits-content{
    margin-top: 0;
    padding-top: 20px; 
    padding-bottom: 30px; 
    min-height:0;
  }
  .benefits-content .row > div:nth-child(odd) .benefits-items {padding-right: 100px}
  .benefits-content .row > div:nth-child(even) .benefits-items {padding-left: 100px }
  .benefits-content .row > div:nth-child(odd) .benefits-items p {padding-right:0}
  .benefits-content .row > div:nth-child(even) .benefits-items p {padding-left: 0}

  .benefits-items .hgroup .icon{
    width: 35px; 
  }
 
  .benefits-items{ font-size: 13px }

  .benefits-water-bottle{width:170px; margin-left: -85px;}
  .benefits-water-bottle .line{ height: 45px; width: 2px; margin-left: -1px; top: 0 }
  .benefits-water-bottle img.bottle{
   left: 4.8vw;
   margin-top: 60px;
  }
  .benefits-water-bottle img.number6{width: 100%;top:0px}
}

@media (max-width:767px) {
  .benefits-water-bottle{
    position: relative;
    left: auto;
    margin: 0 auto;
    width: 120px;
    padding-top: 1px;
    padding-bottom: 0;
  }

  .benefits-water-bottle img.bottle{margin-top: 0px; width: 65%; left: 31px}
  .benefits-water-bottle .line{
    height: 36px;
    top: -20px;
    display: none;
  }
  .benefits-water-bottle img.number6{top: -40px}

  .benefits-content .row > div:nth-child(odd) .benefits-items {padding-right: 0}
  .benefits-content .row > div:nth-child(even) .benefits-items {padding-left: 0}

  .benefits-content .row > div:nth-child(even) .benefits-items h4{margin-left: 0}
  .benefits-content .row > div:nth-child(odd) .benefits-items h4{margin-right: 0}
  .benefits-content .row > div:nth-child(even) .benefits-items{text-align: left;}
  .benefits-content .row > div:nth-child(odd) .benefits-items .hgroup {
    -ms-flex-direction: unset;
    flex-direction: unset;
  }

  .benefits-items .hgroup {padding-bottom: 10px}
  .benefits-items .hgroup .icon{margin-right: 10px}
}


/*==================================================
    Section - Wter Taste
==================================================*/

.water-taste-box{
  display: block;
  position: relative;
  padding:90px 75px 80px;
}

.water-taste-box .box{
  display: block;
  width: 100%;
  max-width: 670px;
  height: 310px;
  border:6px solid rgba(255,255,255,0.8);
  position: relative;
}
.water-taste-box .circle{
  position: absolute;
  top: 35px;
  right: 35px;

  width: 405px;
  height: 405px;

  border-radius: 50%;
  background-color: #fffab0
}
.water-taste-box img.bottle{
  position: absolute;
  top: -78px; 
  width: 278px;
}
.water-taste-box .hgroup{
  position: absolute;
  top: 40px;
}
.water-taste-box .hgroup h3{
  font-size: var(--f-30);
  color: #211334;
  margin-bottom: 5px;
  line-height: 1.7
}
.water-taste-box .hgroup .title-xl{
  background-color: var(--purple);
  color: #fff;
  font-style: italic;
  text-transform:uppercase;
  font-weight: 500;
  padding: 9px 20px;
  position: relative;
}
.water-taste-box .hgroup .title-xl:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  background-color: var(--purple);
}
.water-taste-box .hgroup .title-xl span{
  position: relative;
  z-index: 10;
}
.water-taste-box .bubbles{
  mix-blend-mode: luminosity;
}
.water-taste-box .bubbles > img{
  position: absolute;
  opacity: 0.72;

  animation-direction: alternate;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease
}
.water-taste-box.sweet{
  background-color: #feea64;
}
.water-taste-box.orignal{
  background-color: #8b67ba;
}

.water-taste-box.sweet .box{margin-left: auto;}
.water-taste-box.orignal .box{margin-right: auto;}

.water-taste-box.sweet img.bottle{
  right: -50px;
}
.water-taste-box.sweet .hgroup{
  right: 214px; 
  text-align: right; 
  left: 55px;
}
.water-taste-box.sweet h3{padding-right: 50px;}
.water-taste-box.sweet .hgroup .title-xl{padding-right: 50px;}
.water-taste-box.sweet .hgroup .title-xl:before{
   transform: skewX(-15deg);
   left: -15px;
   right: 40px;
}

.water-taste-box.sweet .bubbles img.icon-1{
  width: 140px;
  top: -45px;
  left: -60px;
}
.water-taste-box.sweet .bubbles img.icon-2{
  width: 40px;
  top: 90px;
  left: 60px;
}
.water-taste-box.sweet .bubbles img.icon-3{
  width: 64px;
  top: -50px;
  left: 50%;
}
.water-taste-box.sweet .bubbles img.icon-4{
  width:140px;
  bottom: -50px;
  left: 35%;
}

.water-taste-box.orignal .bubbles img.icon-1{
  width: 140px;
  bottom:20px;
  right: -120px;
}
.water-taste-box.orignal .bubbles img.icon-2{
  width: 40px;
  top: 60px;
  right: 90px;
}
.water-taste-box.orignal .bubbles img.icon-3{
  width: 84px;
  top: -50px;
  left: 50%;
}
.water-taste-box.orignal .bubbles img.icon-4{
  width:120px;
  bottom: -50px;
  left: 38%;
}

.water-taste-box.orignal .circle{
  background-color: #9687d5;
  right: auto;
  left: 35px;;
}
.water-taste-box.orignal img.bottle{
  left: -50px;
  width: 270px
}
.water-taste-box.orignal .hgroup{
  left: 215px;
  right: 55px;   
}
.water-taste-box.orignal h3{padding-left: 50px;}
.water-taste-box.orignal .hgroup .title-xl{
  padding-left: 50px;
  background-color: var(--yellow);
  line-height: 0.95
}
.water-taste-box.orignal .hgroup .title-xl:before{
   transform: skewX(15deg);
   right: -15px;
   left: 40px; 
   background-color: var(--yellow)
}

@media (max-width:1580px) {
  .water-taste-box.sweet img.bottle{right: -90px}
  .water-taste-box.orignal img.bottle{left: -90px}
  .water-taste-box.orignal .hgroup{left: 175px;}
  .water-taste-box.sweet .hgroup{right: 174px;}

  .water-taste-box.sweet .bubbles img.icon-1{
    width: 8vw; 
  }
  .water-taste-box.sweet .bubbles img.icon-2{
    width: 2.5vw;
    top: 3.6vw;
    left: 4.5vw;
  }
  .water-taste-box.sweet .bubbles img.icon-3{
    width:5vw;
    top: -50px;
    left: 50%;
  }
  .water-taste-box.sweet .bubbles img.icon-4{
    width:8vw;
    bottom: -50px;
    left: 35%;
  }

  .water-taste-box.orignal .bubbles img.icon-1{
    width: 8vw;
    bottom:20px;
    right: -6vw;
  }
  .water-taste-box.orignal .bubbles img.icon-2{
    width: 3vw;
    top: 2vw;
    right: 7vw;
  }
  .water-taste-box.orignal .bubbles img.icon-3{
    width: 6vw;
    top: -70px;
    left: 50%;
  }
  .water-taste-box.orignal .bubbles img.icon-4{
    width:6.7vw;
    bottom: -50px;
    left: 38%;
  }
}

@media (max-width:1440px) {
  .water-taste-box{padding: 70px 55px 50px}
  .water-taste-box .hgroup h3{line-height: 1.5}
  .water-taste-box img.bottle{width:210px; top: -60px}
  .water-taste-box .box{height: 240px}
  .water-taste-box .circle {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 305px;
    height: 305px;
  }

  .water-taste-box.sweet img.bottle{right: -45px}
  .water-taste-box.orignal img.bottle{left: -45px}
  .water-taste-box.orignal .hgroup{left: 150px;}
  .water-taste-box.sweet .hgroup{right: 154px;}

  .water-taste-box.sweet h3,
  .water-taste-box.sweet .hgroup .title-xl{padding-right: 30px}

  .water-taste-box.orignal img.bottle{ width: 200px }
  .water-taste-box.orignal h3,
  .water-taste-box.orignal .hgroup .title-xl{padding-left: 30px}
  .water-taste-box.orignal .circle {left: 25px}
}

@media (min-width:992px) and (max-width:1024px) {
  .water-taste-box{padding-left: 40px; padding-right: 40px;}
  .water-taste-box .hgroup .title-xl{font-size: 25px; line-height: 0.95}
}

@media (min-width:768px) and (max-width:991.98px) {
  .water-taste-box .hgroup .title-xl{font-size: 35px;}
  .water-taste-box .hgroup h3{font-size: 24px}
  .water-taste-box{padding-left: 60px; padding-right: 60px;}
}

@media (max-width:1280px) {
  .water-taste-box.sweet .bubbles img.icon-3{left: 40%; top: -41px}
  .water-taste-box.orignal .bubbles img.icon-3 {
    width: 6vw;
    top: -50px;
    left: 52%;
  }
  .water-taste-box.orignal .bubbles img.icon-4{bottom: -35px}
}

@media (max-width:991.98px) {
  .water-taste-box.sweet .bubbles img.icon-1{
    width: 14vw;
    left: -35px 
  }
  .water-taste-box.sweet .bubbles img.icon-2{
    width: 4.5vw;
    top: 6.6vw;
    left: 10.5vw;
  }
  .water-taste-box.sweet .bubbles img.icon-3{
    width: 9vw;
    top: -42px;
    left: 36%;
  }
  .water-taste-box.sweet .bubbles img.icon-4 {
    width: 13vw;
    bottom: -45px;
    left: 54%;
  }

  .water-taste-box.orignal .bubbles img.icon-1{
    width: 12vw;
    bottom: 54px;
    right: -9vw
  }
  .water-taste-box.orignal .bubbles img.icon-2{
    width: 5vw;
    top: 4vw;
    right: 10vw;
  }
  .water-taste-box.orignal .bubbles img.icon-3{
    width: 10vw;
    top: -55px;
    left: 29%;
  }
  .water-taste-box.orignal .bubbles img.icon-4{
    width: 11.7vw;
    bottom: -45px;
    left: 37%;
  }
}

@media (max-width:767px) {
  .water-taste-box {
    padding:45px 45px 35px;
  }
  .water-taste-box .box{
    height: 150px;
    border-width: 4px
  }

  .water-taste-box .circle{
    width: 195px;
    height:195px;
  }
  .water-taste-box img.bottle{
    width: 132px;
    top: -39px;
  }
  .water-taste-box .hgroup{top: 20px}

  .water-taste-box.sweet img.bottle{right: -25px;}
  .water-taste-box.sweet .hgroup{right: 100px; left: 40px}
  .water-taste-box.sweet h3, 
  .water-taste-box.sweet .hgroup .title-xl{padding-right: 20px}
  .water-taste-box.sweet .hgroup .title-xl{font-size: 18px}

  .water-taste-box.orignal img.bottle{width: 130px;left: -25px} 
  .water-taste-box.orignal .hgroup{left: 102px; right: 40px}
  .water-taste-box.orignal h3, 
  .water-taste-box.orignal .hgroup .title-xl{padding-left: 20px}
  .water-taste-box.orignal .hgroup .title-xl{font-size: 18px}

  .water-taste-box.orignal .bubbles img.icon-3 {
    width: 13vw;
    top: -39px;
    left: 42%;
  }
  .water-taste-box.orignal .bubbles img.icon-4 {
    width: 13.7vw;
    bottom: -30px;
    left: 58%;
  }
}
 
@media (max-width:480px) {
  .water-taste-box {
    padding:45px 25px 35px;
  }
}
/*==================================================
    Section - News
==================================================*/

.news-wrap{
  display: block;
  padding-top: 20px;
  background-color: transparent !important;
}
.card-news{margin-bottom: 30px;}
.card-news .card-body{
  padding-left: 0;
  padding-right: 0;
}
.card-news h3{
  font-size: var(--f-20);
  font-weight: 600;
  margin-bottom: 5px;
}

.card-news .more{
  display:inline-block;
  position: relative;
  color: var(--purple);
  text-transform: uppercase;
  padding-left: 65px;
  font-weight: 500;
  transition: all 0.2s ease-in-out
}
.card-news .more:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 2px;
  margin-top: -1px;
  background-color:#898989;
  transition: all 0.2s ease-in-out
}
.card-news .buttons{
  text-align: left;
  padding: 0;
}

.pc .card-news:hover .more{
  color: var(--orange);
  padding-left: 85px
}
.pc .card-news:hover .more:before{width: 70px;}

.paging{
  display: flex;
  padding:50px 0;
  margin: 0;
  list-style-type: none;
  justify-content: center;
}

.paging li{
  padding: 7px;
}

.paging li a{
  display: block;
  width: 42px;
  height: 42px;
  line-height: 40px;
  border:1px solid #f1eeea;
  border-radius: 3px;
  text-align: center;
  color: var(--gray);
  font-weight: 400
}

.paging li.active a,
.pc .paging li:hover a{
  background-color: #fdb901;
  border-color:  #fdb901;
  color: #fff;
}
.paging li.prev{margin-right: 10px;}
.paging li.next{margin-left: 10px;}
.paging li.prev a,
.paging li.next a{
  width: auto;
  border:0;
  background-color: transparent !important;
  color: var(--gray) !important;
}
.paging li .arrow{
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  margin: 0 5px;
  left:0;

  transition: all 0.1s ease-in-out;
}
.paging li .arrow span{
  width: 100%;
  height: 100%;
  top: -1px
}

.pc .paging li.prev:hover .arrow {left: -3px;}
.pc .paging li.next:hover .arrow {left: 3px}

.news-content{
  display: block;
}
.news-content h2{
  font-size: var(--f-36);
  margin-bottom: 15px
}
.news-content p{
  margin-bottom: 25px
}
.news-content img{
  margin: 10px 0
}

.news-footer{
  display: flex;
  padding: 60px 0;
  margin:60px 0;
  border-top: 1px solid #dbdbdb;

}
.news-footer h5{
  font-weight: 500;
  font-size: inherit;
   transition: all 0.2s ease-in-out;
   color: var(--gray)
}
.news-footer .goback{
  display: flex;
  transition: all 0.2s ease-in-out;
}
.news-footer .goback h5{color: var(--orange)}
.news-footer .goback .icon{
  width: 16px;
  height: 16px;
   
  margin-right: 10px;
  position: relative;
  top: -2px;
  left: 0;
  transition: all 0.2s ease-in-out;
}
.news-footer .goback .icon img,
.news-footer .goback .icon svg{
  width: 100%;
  height: 100%;
}
.news-footer .goback .icon svg path{fill:var(--orange)}
.pc .news-footer .goback:hover .icon{ left: -5px }

.news-footer .share-wrap{
  margin-left: auto;
  display: flex;
  align-items: center !important;
}
.pc .news-footer .share-wrap:hover h5 {color: var(--orange)}
.news-footer .share-wrap .icon{
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
   
  margin-right: 15px;
  position: relative;
  top: -2px;
  left: 0;
  transition: all 0.2s ease-in-out;
}
.news-footer .share-wrap .icon img,
.news-footer .share-wrap .icon svg{
  width: 50%;
  height: 50%;
  margin: auto;
}
.news-footer .share-wrap .icon svg path{fill:#fff}



@media (max-width:991.98px) {
  .news-wrap .row{margin: 0 -10px}
  .news-wrap .row > div{padding: 0 10px;}

  .card-news .more{padding-left: 55px}
  .card-news .more::before { width: 40px }
}

@media (max-width:991.98px) {
  .card-news{
    margin-bottom: 20px
  }
  .news-footer{
    padding: 40px 0;
    margin: 40px 0;
  }
  .news-footer .share-wrap .icon{
    width: 35px;
    height: 35px;
  }
}

@media (max-width:767px) {
  .card-news{
    margin-bottom: 10px
  } 
  .paging{padding: 30px 0 50px}
  .paging li{padding: 5px}
  .paging li a{width: 38px; height: 38px}

  .news-content img{margin: 0}
  .news-footer .share-wrap .icon {
    width: 28px;
    height: 28px;
    margin-right: 10px
  }
}

/*==================================================
    Page title
==================================================*/

.page-title{
  display: block;
  background-color: var(--blue);
  padding-top:160px;
  padding-bottom:230px;
  text-align: center;
  color: #fff;
}

.page-title h2{
  text-transform: uppercase;
  font-weight: 600;
  color: inherit;
  margin-bottom: 3px
}


.breadcrumb{
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  display: block;
}
.breadcrumb .line{
  padding: 0 10px;
}
.pc .breadcrumb a:hover{ color: var(--yellow) }
.breadcrumb a.active{ color:#ffffff }

.page-title .wave-images{margin-top: -2vw}


@media (max-width:1440px) {
  .page-title{ padding-top: 140px; padding-bottom: 200px;}
}
@media (max-width:1024px) {
  .page-title{ padding-top: 140px; padding-bottom:120px;}
}
@media (max-width:767px) {
  .page-title{ padding-top: 100px; padding-bottom:80px;}
  .breadcrumb{font-size: 12px}
  .breadcrumb .line{padding: 0 5px}
}
/*==================================================
    About us
==================================================*/

.article.about{
  margin: 0 auto;
  max-width: 1100px;
 
  line-height: 1.7;
}
.article.about p{
  text-indent: 50px;
}
.article.about ol,
.article.about ul{
  padding-left:65px;
}
.article.about li{
  padding-top: 5px;
  padding-bottom: 5px
}

.article.about h3{
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 30px
}


.article.about .about-icons{
  display: block;
  max-width:590px;
  margin: 0 auto 0;
  padding-top: 20px
}

.section-factory{
  background-color: #f9fafe;
  margin-top: 70px;
}
.section-factory .slogan{
  max-width: 600px;
  margin: 0 auto
}


@media (max-width:1024px) {
  .article.about .about-icons{max-width:440px; padding-top: 10px; padding-bottom: 40px}
}

/*==================================================
    contact
==================================================*/

.section-body{
  padding-top: 60px;
}

.mapbox{
  height: 520px;
  display: block;
  position: relative;
}
.mapbox iframe{
  display: block;
  width: 100%;
  height: 100%
}

.contact-wrap{
  display: block;
  max-width: 1150px;
  margin: 0 auto;
}

.contact-item{
  display: block;
  position: relative;
  text-align: center;
  padding: 90px 0 70px;
}
.contact-item h5{
  font-size: var(--f-20);
  color: #222222;
  text-transform: uppercase;
  margin-bottom: 5px
}
.contact-item p{
  font-size: var(--f-18);
  color: var(--gray);
}
.contact-item .link{
  color: var(--orange);
  text-decoration: underline;
}
.pc .contact-item .link:hover{ color: var(--purple) }
.contact-item .icons{
  width: 30px;
  height: 30px;
  margin: 0 auto 20px;
} 
.contact-item .icons svg,
.contact-item .icons img{
  width: 100%;
  height: 100%;
}
.contact-item .icons svg path,
.contact-item .icons svg polygon{ fill: var(--purple) }

.section-contact{
  background-color: #f9fafe
}
.section-contact:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12vw;
  height: 12vw;
  background-color: #f9fafe
}

.input-block{
  display: block;
  padding-bottom: 20px;
}

.input-text{
  display: block;
  padding-bottom: 20px;
  font-weight: 400;
}

.form-contact textarea.form-control{
  height: 230px
}
.form-contact .btn[type="submit"]{
  width: 250px;
  margin: 0 auto;
  height: auto;
  line-height: 1;
  padding:22px 10px
}

@media (max-width:1680px) {
  .contact-wrap{max-width: 1030px}
}
@media (max-width:1440px) {
  .section-body{padding-top: 30px}
  .mapbox{height: 490px;}

  .contact-item{padding: 70px 0 50px}
  .contact-item br{display: none;}
}

@media (max-width:991.98px) {
  .contact-wrap{padding-top: 40px; padding-bottom: 40px}
  .contact-item{padding: 30px 0 0}
}
@media (max-width:767px) {
  .section-body{
    padding-top: 5px
  }

  .mapbox{height: 280px}

  .input-text{padding-bottom: 10px}
  .form-contact textarea.form-control{height: 180px}
  .form-contact .buttons{padding-top: 10px}
  .form-contact .btn[type="submit"]{padding:18px 0; width: 220px}
}

/*==================================================
    Product
==================================================*/

.section-product{
  background-color: var(--blue);
  color: #fff;
  padding-top:160px;
  padding-bottom: 0
}

.section-product + .footer{
  background-color: var(--blue);
  margin-top: -390px;
  padding-top: 23vw
}
.swiper-caption.pd {
  max-width: 450px;
  margin-left: 0;
  padding-bottom: 300px;
}
.swiper-caption.pd .hgroup{
  display: block;
  padding-bottom: 20px;

}
.swiper-caption.pd h5{
  font-size: var(--f-36);
  color: inherit;
  font-weight: 500;
  line-height: 1.3
}
.swiper-caption.pd h3{
  font-size: var(--f-48);
  color: inherit;
  font-weight: 600;
   line-height:1.3;
   text-transform:uppercase;
}
.swiper-caption.pd .hgroup p{
  position: relative;
  margin-bottom: 0;
  padding-left: 80px;
  font-size: var(--f-30);
  color: #ffff00;
  font-style: italic;
  font-weight: 500;
}
.swiper-caption.pd .hgroup p:before{
  content: '';
  width: 60px;
  height: 3px;
  background-color: #fdb901;

  position: absolute;
  top:17px;
  left: 0;
}
.swiper-caption.pd .icon-pdf{
  width: 14px;
  height: 14px;
  background-image: url(../img/icons/icon-pdf.svg);
  margin-right: 5px;
  top: 10px
}
.swiper-caption.pd ul.list{
  padding:20px 0 0;
  margin:0;
  list-style-type: none;
  font-size: 18px;
}
.swiper-caption.pd ul.list li{
  display: flex;
}
.swiper-caption.pd ul.list li a{
  display: block;
  padding: 3px 0;
  text-decoration: underline;
}
.pc .swiper-caption.pd ul.list li a:hover{ color: var(--yellow) }
.swiper-caption.pd img.vitamin-bcd{
  width: 100%;
  margin: 25px 0 35px;
  display: block;
}
.swiper-caption.pd ul.vitamin-list{
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  list-style-type: none;
}

.swiper-pagination.pd{display: none;}
.swiper-product .container{
  display: flex;
}
.swiper-product .img-main{
  top: 0;
  right: 0;
  width: 750px;
  margin-left:auto;
  margin-right: -50px;
  display: flex;
}
.swiper-product .img-main img{margin-top: auto; width: 100%}

.swiper-product .img-main,
.swiper-product .vitamin-bcd,
.swiper-product .vitamin-list,
.swiper-product .list,
.swiper-product div.text,
.swiper-product div.hgroup{
   -webkit-animation-delay: 700ms;
    animation-delay: 700ms;
      -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.swiper-product .swiper-slide-active .img-main{ 
    opacity: 1;
    visibility: visible;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-delay: 1000ms;
    animation-delay: 1000ms;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
} 
.swiper-product .swiper-slide-active div.text,
.swiper-product .swiper-slide-active div.hgroup{ 
    opacity: 1;
    visibility: visible;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.swiper-product .swiper-slide-active .vitamin-bcd,
.swiper-product .swiper-slide-active .vitamin-list,
.swiper-product .swiper-slide-active .list{ 
    opacity: 1;
    visibility: visible;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-delay: 700ms;
    animation-delay: 700ms;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
 
.swiper-button.pd{
  width: 90px;
  height: 90px;
  margin-top: -50px;
  top: 40%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.swiper-button-prev{background-image: url(../img/icons/icon-prev.png);}
.swiper-button-next{background-image: url(../img/icons/icon-next.png);}

.swiper-product:hover .swiper-button.pd{
  opacity: 0.7
}
.swiper-product:hover .swiper-button.pd:hover{
  opacity: 1
}

.swiper-product:hover .swiper-button-prev{left: 70px}
.swiper-product:hover .swiper-button-next{right: 70px}


@media (max-width:1680px) {
  .swiper-caption.pd{
    margin-left: 0
  }

  .swiper-product .img-main{margin-right: -7vw; width: 640px}

  .section-product + .footer{margin-top: -350px}
}

@media (max-width:1440px) {
  .swiper-caption.pd{max-width: 400px}
  .swiper-caption.pd ul.vitamin-list{font-size: 28px}
  .swiper-product .img-main{width: 41vw}
  .section-product + .footer{margin-top: -22vw}

  .swiper-caption.pd ul.list{font-size: 16px}
}
@media (max-width:1280px) {
  .swiper-caption.pd img.vitamin-bcd{width: 80%; margin-bottom:25px }
   .swiper-caption.pd ul.vitamin-list{font-size: 20px}
}

@media (max-width:1024px) { 
  .swiper-caption.pd{max-width: 500px; padding-bottom: 26vw}
  .swiper-product .img-main {width: auto; margin-right: auto;}
  .swiper-product .img-main img{width: 45vw;margin-right: -5vw} 
  .swiper-caption.pd ul.vitamin-list{font-size: 18px}
  .swiper-caption.pd ul.list{font-size: 15px}
}

@media (max-width:991.98px) {
  .swiper-product .img-main img{width: 52vw;}

  .swiper-pagination.pd{
    display: block;
    text-align: left;
    padding-left: 44px;
    bottom: 19vw;
  }
  .swiper-pagination.pd .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    margin: 0 5px
  }
}

@media (max-width:767px) {
  .section-product{
    padding-top: 80px;
    
  }
  .swiper-product .container{
    display: block;
  }
  .swiper-caption.pd{padding-bottom: 35vw; position: relative;}
  .swiper-caption.pd .hgroup{
    padding-bottom: 15px
  }
  .swiper-caption.pd .hgroup p{
    padding-left: 50px
  }
  .swiper-caption.pd .hgroup p::before {
    height: 2px;
    width: 40px;
    top: 12px
  }

  .swiper-caption.pd img.vitamin-bcd{
    width: 50%;
    margin: 0 0 20px
  }
  .swiper-caption.pd ul.vitamin-list{
    font-size: 14px;
  }

  .swiper-product .img-main{
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    padding-top: 10px
  }

  .section-product + .footer{padding-top: 32vw}
  .section-product + .footer:before{top: 30vw}

  .swiper-pagination.pd{
    padding-left: 25px;
    bottom: 22vw
  }
  .swiper-caption.pd ul.list{ 
    margin-bottom: 20px; 
    padding-top:15px;
    font-size: 12px  
  }
  .swiper-caption.pd .icon-pdf{
    top: 5px
  }
}


/*==================================================
    footer
==================================================*/

.footer{
  position: relative;
  display: block;
  padding-top: 15vw
}

.footer img.gmp{ 
  width: 150px;
  float:right;
  margin-bottom:25px;
}

.footer-wave-images{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.footer-wave-images > div{
  position: absolute;
  left:-10px;
  right:-10px;
  top: 0;

  animation-direction: alternate;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer-wave-images > div img{width: 100%}
.footer-wave-images .wave-1 {
    animation: float 15s infinite;
}
.footer-wave-images .wave-2 {
  top: 0;
  animation: float3 12s infinite;
}

/*.footer-wave-images .wave-1,
.footer-wave-images .wave-2{animation:unset !important;}
.footer-wave-images .wave-2{top: 11vw}*/

.footer{
  color: #fff; 

}
.footer:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--blue);
  height:10vw;
  z-index: 9
}
.footer h3{
  font-size: var(--f-36);
  color: var(--yellow);
  font-weight: 500;
}
.footer p{margin-bottom: 25px}
.footer p.info{
  font-size: var(--f-22);
  white-space: nowrap;
}
.footer p.tel{
  font-size: var(--f-48);
  color: inherit;
  font-weight: 500;
  line-height: 1.1
}
.footer p.mail{margin-bottom: 10px;}
.footer p.mail a{
  color: var(--yellow);
  position: relative;
}
.footer p.mail a:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  border-bottom: 1px solid rgba(255,238,0,0.8);
}
.pc .footer p.mail a:hover{ opacity: 0.8 }

.followus{
  display: flex;
  margin: 0 -15px 15px;
}
.followus a{
  display: block; 
  padding: 10px 15px
}
.followus svg,
.followus img {
  width: 30px;
  height: 30px;
}
.followus svg path{fill: #fff}

.followus svg.fb,
.followus img.fb {width: 26px}

.followus svg.tw,
.followus img.tw {width: 28px}

.pc .followus a:hover svg path{fill:var(--yellow)}

.followus-sidebar{
  position: fixed;
  bottom: 25px;
  right:65px;
  width:25px;
  display: block;
  z-index: 100;
  background-color: transparent !important;
}
.followus-sidebar svg path{fill: #000}
.followus-sidebar > a{
  display: flex;
  position: relative;
  padding:  0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 4px
}
.followus-sidebar svg,
.followus-sidebar img {
  width: 14px;
  height: 14px;
  margin: auto;
} 
 
.pc .followus-sidebar a svg path{fill:var(--blue)}
.footer .copyright{
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.16);;
  padding: 30px 0;
  -ms-flex-align: center;
  align-items: center;
}

.footer .partner{
  display: flex;
  margin-left: auto;
  -ms-flex-align: center;
  align-items: center;
}
.footer .partner .logo{
  margin-left: 10px;
}

@media (max-width:1440px) {
  .footer{padding-top: 17vw}
}

@media (max-width:1024px) {
  .footer img.gmp{ 
    width: 135px;
  }
}

@media (max-width:991.98px) {
  .footer:before{height: 18vw;}

  .footer .copyright{font-size: 12px; padding: 15px 0}
  .footer .partner .logo{width: 140px}

  .followus svg, .followus img{width: 25px; height: 25px}
}
@media (max-width:767px) {
  .footer::before {
    height: auto;
    top: 25vw;
    bottom: 0;
  }
  .footer{
    font-size: 12px; 
    padding-top: 23vw;
    text-align: center;
  }
  .footer h3{font-size: 16px}
  .footer p{margin-bottom: 20px}
  .footer p.info{white-space: normal;}
  .footer p.tel{font-size: 18px}
  .followus{
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .followus svg, 
  .followus img{width: 20px; height: 20px;}
  .followus a {
    display: block;
    padding:5px;
  }
  .footer .copyright{
    display: block;
    text-align: center;
    padding: 20px 0
  }

  .footer .partner{
    display: block;
    padding-top: 15px;
  }
  .footer .partner .logo{
    display: block;
    margin: 5px auto 0 ;
  }

  .footer img.gmp{
    width: 80px;
    float: none;
    margin:0 auto 20px;
  }
}