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

html,body{
  padding: 0;
  margin: 0; 
  height: 100%; 
 
}  
body{    
  background-color:#fff;
  
  margin:0;
  padding:0;  

  position: relative;
  overflow-x: hidden;

  overscroll-behavior: contain;
}

.modal-open{
  touch-action: none; 
  overscroll-behavior: contain;
}
 

.modal-backdrop{
  overscroll-behavior: contain;
}

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

 

@media (max-width:991.98px){}
 
a{
  color:inherit;
  text-decoration: none; 
  transition: all 0.2s ease-in-out;
}
a:hover{ text-decoration: underline; color:var(--red);  }
 
.star{ color: #bc0000 }

.form-control,
.form-select{
 -webkit-appearance: none;
   
  padding:0 15px;

  color:var(--black-medium);
  font-weight:400; 
  font-family:inherit; 
  font-size: var(--f-14);

  height:40px;
  line-height:38px;  
  background:#fff;
  border-color:#a2a3a2;
  border-radius: 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;
}
  
.form-control:disabled, 
.form-control[readonly] {
background: #e2e2e2;
border-color: #c7c7c7;
} 

.rounded{
  border-radius: 50px!important;
}
.form-select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23595959' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-size: 18px 15px;
  background-repeat: no-repeat;
}

textarea.form-control{
  height: 150px;
  line-height: normal;
  padding-top: 10px; 
}
textarea.h-200{
  height: 200px;
} 
.form-group{
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.form-group label.title{
  text-align: left;
  display: block; 

  font-weight: 600;
  font-size: var(--f-10); 
  margin-bottom:2px;
  padding: 0 0 10px 0;
  text-transform: uppercase;
} 
  
.form-group label.title .star{
  color:#ED1C24;
  margin-right: 3px;
}

.form-group span.error{
  color:#ED1C24;
  font-size: 14px;
  padding-top: 3px;
}
 
.form-group .group{
  position: relative;
  display: block;
} 
.form-group .group .icons{
  position: absolute;
  top: 0 !important;
  right: 15px;
  bottom: 0 !important;
} 
.form-group .group .icons.left{
  left: 10px;
  right: auto;
}
.form-group .group .icons.left + .form-control{
  padding-left: 35px;
}
  
.form-control::-webkit-input-placeholder {
  color: inherit;
  font-weight: inherit;
  opacity:1; 
}

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

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

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

.form-control::placeholder {
  color:inherit;
  font-weight: inherit;
  opacity:1; 
} 
.form-check .form-check-input{
  width: 16px;
  height: 16px;
  margin-right: 10px; 
  border-width: 1px;
  position: relative;
  top: 3px;
}
.form-check label{
  margin-bottom:0;
  font-weight: 400;
  font-size: inherit;
  padding-top: 3px; 
}
.form-check-input:checked[type=checkbox],
.form-check-input.rounded:checked[type=radio] { 
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
  
.btn{
  position: relative; 
  padding:0 25px;   
  font-size: var(--f-18); 
  font-weight: 600;  
  height:50px;
  line-height: 48px;
  border-radius:50px;  
  background-color: var(--red);
  border-color: var(--red);
  transition: all 0.25s ease-in-out;
  color:#fff; 
  overflow: hidden;
} 
 
.pc .btn:hover{  
  color: #fff;
  background-color:var(--black-medium);
  border-color:var(--black-medium);
} 

.w-200{
  width: 200px;
  text-align: center;
  padding: 0;
}
  
.btn[disabled]{
  border-color: #D4EAEA;
  background-color:#D4EAEA;
  color:#A1C9C9;
  line-height: 56px;
  pointer-events: none;
  opacity: 1;
} 
.btn.disabled, .btn:disabled{opacity: 0.35; pointer-events: none;}
.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{}

.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;
}
.buttons.d-flex {
  -ms-flex-pack: center;
justify-content: center;
}
.buttons.d-flex .btn{
  margin: 0 7px; 
}
 
 
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;
} 

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

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

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

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

@media (max-width:991.98px) {
  .btn{
    height:45px;
    line-height: 43px;
  }
  .btn.w-200{
    width: 170px;
  } 
}

@media (max-width:576px) {
  .btn.btn-sm{
    height: 23px;
    line-height: 23px;
    font-size: 11px;
  }

  .btn{
    font-size: var(--f-16);
    height:40px;
    line-height:38px;
  }

  .btn.w-200{
    width: 150px;
  } 
  
}
/*==================================================
    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.2s ease-in-out;
  opacity: 1;
}
.icons.before:before,
.icons.before:after{
  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.2s ease-in-out;
  opacity: 0;
}
.btn .icons.before:before{ opacity: 1; }
.btn .icons.before:after{ opacity: 0; }
.pc .btn:hover .icons.before:before{ opacity: 0; }
.pc .btn:hover .icons.before:after{ opacity: 1; }
 
/**/

.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:100%; 
  padding-left:75px;
  padding-right:75px; 
  position: relative;
  z-index: 9;  
}

.container{ 
  max-width:calc(1366px + 150px); 
  padding-left:75px;
  padding-right:75px; 
  position:relative;
  z-index:9; 
}

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

.section{
  display: block;
  position: relative;
}
 

@media (max-width:1280px) {
  .section{
    padding: 60px 0;
  }
}

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

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

@media (max-width: 576px) {
  .container,
  .container-fluid{ 
    padding-left:15px;
    padding-right: 15px;
  } 
}
   
.compensate-for-scrollbar{ margin-right: 0 !important } 
.compensate-for-scrollbar .header{ right: 0 } 
body.fancybox-active{ overflow: visible !important;padding-right: 0 !important  }


.fancybox-button--arrow_left > div,
.fancybox-button--arrow_right > div,
.fancybox-button--zoom,
.fancybox-button--play{opacity: 0 !important; pointer-events: none;} 
/*==================================================
    Header Setup
==================================================*/  
 
:root {    

  --bs-body-color:var(--black-medium);
  --bs-body-text-align:left;
  --bs-body-font-weight:400;
  --bs-body-line-height:1.55;
  --bs-body-font-size:var(--f-16);
  --bs-body-font-family:'Poppins','Kanit', sans-serif;
   
  --font-poppins:'Poppins','Kanit', sans-serif; 

  --red:#b11629; 
  --black-medium:#4d4d4d;  
  --blue-medium:#263e68;
  --bg-light:#efefef;
  
  --f-40:40px;
  --f-36:36px;
  --f-30:30px;
  --f-24:24px;
  --f-18:18px;
  --f-16:16px;
  --f-14:14px;

  --animate-duration-2s: all 0.2s ease-in-out;
  --animate-duration-35s: all 0.35s ease-in-out;
  --animate-duration-40s: all 0.40s ease-in-out;
  --animate-duration-45s: all 0.45s ease-in-out;
   
  --f-300:200;
  --f-400:300;
  --f-500:400;
  --f-600:500; 
  --f-700:600; 
} 

/*
font-family: 'Kanit', sans-serif;
font-family: 'Poppins', sans-serif;
*/

b, strong{
  font-weight: bold; 
  font-family: inherit;
}
.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6{   
  margin:0;  
  color:inherit;  
  font-weight: 600;
  font-style: normal; 
  line-height: 1.4;   
  position: relative;
}   
.nowrap{ white-space: nowrap; }
.f-18{font-size: var(--f-18);}
.f-12{font-size: var(--f-12);}
.red{color:var(--red);}

 
@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-300:300;
    --f-400:400;
    --f-500:500;
    --f-600:600; 
  }

} 
 
@media (max-width:1440px) {
  :root{ }
}
 
@media (max-width:1280px) {
  :root{
    --f-40:35px;
    --f-36:32px;
    --f-30:26px;
    --f-24:20px;
    --f-18:16px;
    --f-16:15px;
  }
}

@media (max-width:1024px) {
  :root{
    --f-40:26px;
    --f-36:26px;
    --f-30:20px;
    --f-24:18px;
    --f-18:15px;
    --f-16:13px;
  }
}

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

@media (max-width:576px) {
  :root{
    --f-40:24px;
    --f-36:24px; 
    --f-30:18px;
    --f-18:15px; 
  }
}
  

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

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding:0 0;
  height: auto;
  z-index: 1040;      
  display: block;    
   background-color:#fff;    
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
 
.header .container,
.header .container-fluid{  
  display: flex;   
  align-items: center; 
} 
 

.navbar-toppage{
  display: block;
  background-color: #d0d0d0;
  padding:2px 0;
}
.navbar-toppage h6{
  font-size:12px;
  margin: 0;
  color: #545454;
  font-weight: 400;
}
 
.navbar-brand{
  margin:auto 0; 
  padding: 0;  
  position: relative; 
  width:94px;
  flex-shrink: 0;
  z-index: 100;
}
.navbar-brand a{
  display: block;
  position: relative;
}
.navbar-brand img,
.navbar-brand svg{width: 100%; height: auto;} 

.navbar-main .form-group.search{
  margin: auto 0; 
  width: 180px;
}
.form-group.search .form-control{
  height: 28px;
  line-height: 26px;
}
.form-group.search .btn{
  padding: 0;
  width: 28px;
  height: 28px;
  border: 0;


  position: absolute;
  top: 0;
  right:0;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px;
  background-image: url(../img/icons/icon-search.svg);
}


.btn.btn-icon{
  padding: 0;
  background-color: transparent !important;
  width: auto;  
  display: inline-block;
  vertical-align: middle;
  z-index: 999; 
 
   height: auto;
   line-height: normal;
   border:0;
   overflow: visible; 
   position: absolute;
   left:30px; 

   display: none;
   margin:auto 0; 
}
.btn-icon:before{
  content: 'Close';
  font-size: 10px;
  text-transform: uppercase;

  position: absolute;
  top: 2px;
  left: 20px;
  opacity: 0;
  pointer-events: none;
  color: var(--black-medium);
  font-weight: 400;
  transition: all 0.3s;
}
.nav-opened .btn-icon:before{
  left:35px;
  opacity: 1;
}
.btn-icon .group{
  display: block;
  position: relative;
  width: 32px; 
  height:17px;
  margin: 0 auto 0
}
.btn-icon .group span{ 
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform-origin: 25px, 1px;
  -ms-transform-origin: 25px, 1px;
  transform-origin: 25px, 1px
}

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

.btn-icon .group span:nth-child(3) {
    top: 16px;
    -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)
}


.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(5px, 5px, 0);
    transform: rotate(45deg) translate3d(5px, 5px, 0)
}

.nav-opened .btn-icon .group span:nth-child(2){
    -webkit-transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0)
}

.nav-opened .btn-icon .group span:nth-child(3) {
    -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, -7px, 0);
    transform: rotate(-45deg) translate3d(6px, -7px, 0)
}

.navbar-slide{display: none;}

 
@media (min-width:992px) {
  
  .navbar-main{
    margin-top: 0;
    padding:15px 0 15px; 
    transition: all 0.35s;
    position: relative;
  }
  .navbar-main .container{
    position: static;
  }
  .navbar-toppage h6{
    font-size: 12px;
  }
  
  .nav-main{
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom: -15px; 
    padding-right:75px;
    padding-left:140px;

  }
 
  .nav-main > li > a{
    display: flex;  
    height: 100%;
    padding: 0 12px 4px; 
    text-decoration: none;
    position: relative;
    color: var(--black-medium);
    font-size: 15px;
  }
  .nav-main > li > a span{
    margin: auto;
    display: inline-block;
    position: relative;
  }
  .nav-main > li > a span:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid var(--red);
    opacity: 0;
    transition: all 0.3s;
  }
  .nav-main > li.active > a span:before,
  .pc .nav-main > li:hover > a span:before{opacity: 1;}
  .nav-main > li.dropdown{
    position: static;
  }

  .nav-main > li.dropdown > a:after{
    content: '';
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: auto 0 auto 10px;
    transform: rotate(90deg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/icons/icon-arrow.svg);


  }

  .nav-main li.nav-search{display: none;}
  

  .nav-main .dropdown-menu{
    margin-top: 0;
    border-radius: 0;
    border:0;
    background-color: var(--blue-medium);
    left: 0;
    right: 0;

    display: block;
    opacity: 0;
    top: 110%;
    transition: all 0.35s;
    pointer-events: none;
  }

  .pc .nav-main li:hover .dropdown-menu,
  .nav-main li .dropdown-menu.show{
    opacity: 1;
    pointer-events: all;
    top: 100%;
  }

  .nav-main .dropdown-menu .inner{
    width: 475px;
    margin: auto;
    display: flex;
    padding:15px 0; 
    position: relative;
    left:10px;
  }
  .nav-main .dropdown-menu ul{
    display: flex;
    flex-direction: column;
    padding: 0 40px 0 0;
    margin:0;
    list-style-type: none;
  }
  .nav-main .dropdown-menu li a{
    display: block;
    color: #fff;
    font-size: var(--f-14);
    padding:3px 0;
    text-decoration: none;
  }

  .pc .nav-main .dropdown-menu li a:hover{
    opacity: 0.8;
  }
} 

@media (min-width:992px) {
  .navbar-main{
    margin-top: 25px;
    padding: 0 0 10px; 
  }
  .scrolling .navbar-main{margin-top: 10px;}
  .nav-main{
    right: 0;
    bottom:0;
    padding-right: 0;
  }
  .nav-main > li > a{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }

  .navbar-toppage h6{
    font-size: var(--f-14);
  }
  .nav-main .dropdown-menu .inner{left: 0;}

  .pc .nav-main li:hover .dropdown-menu,
  .nav-main li .dropdown-menu.show{ 
    top: 100%;
  }
}
@media (min-width:1025px) {
  .nav-main{padding-left: 190px;}
  
}
@media (min-width:1199px) {
  .nav-main > li > a{
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width:1300px) {
  .nav-main{
    justify-content: center;
    padding-left: 0; 
  } 
}
 
@media (max-width:991.98px) {

  .page-slideout,
  .header-slideout {
      transition: -webkit-transform .6s ease;
      transition: transform .6s ease;
      transition: transform .6s ease, -webkit-transform .6s ease;
  }
  .page-slideout{
      position: relative;
      z-index: 1010; 
      background-color: #fff;
      overflow: hidden;
  }
  .closing .page-slideout,
  .nav-opened .page-slideout{z-index: 1040;}
  .closing .header-slideout,
  .nav-opened .header-slideout{z-index: 1043;}

  .page-blocker{
    position: fixed;
    top: 0;
    left: 0; 
    bottom: 0;
    width: 100%;
    background-color:rgba(0,0,0,0);
    z-index: 1050;

    pointer-events: none; 
    transition: -webkit-transform .6s ease;
      transition: transform .6s ease;
      transition: transform .6s ease, -webkit-transform .6s ease;

  }

  /**/ 
  .nav-opened .page-slideout,
  .nav-opened .header-slideout,
  .nav-opened .page-blocker {
    -webkit-transform: translate(380px, 0);
    -ms-transform: translate(380px, 0);
    transform: translate(380px, 0);
    -webkit-transform: translate3d(380px, 0, 0);
    transform: translate3d(380px, 0, 0);
  } 
  .nav-opened .page-blocker{
    pointer-events: auto;
    display: block;
    cursor: pointer;
  }
 /*Menu Device*/

 .navbar-slide{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 380px;
    overflow: hidden; 
    padding: 0 25px;
    display: block;

    background-color: #253e64;
    align-items:normal;
    -ms-flex-align:normal; 

     -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);

      transition: -webkit-transform .6s ease;
      transition: transform .6s ease;
      transition: transform .6s ease, -webkit-transform .6s ease;
  }

  .nav-opened .navbar-slide{
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .navbar-toppage h6{
    font-size: 12px;
  }
  .header .nav-main{
    display: none;
  }

  .navbar-main{
    padding: 15px 0;
  }

  .btn.btn-icon{
    display: block;
  }

  .nav-main{
    flex-direction:column;
  }
  .nav-main > li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  .nav-main  li a{
    display: block;
    color: #fff;
  }

  .nav-main > li > a{
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
  }

  .nav-main h3{
    font-size: 20px;
    font-weight:400;
    text-transform: uppercase;
    color: #fff;
    padding:20px 10px 8px 0;
  }
  .nav-main .dropdown-menu{
    position: relative;
    background-color: transparent;
    border-radius: 0;
    padding:5px 0 15px;
    display: block;
    margin: 0;
    border:0;
  }
  .nav-main .dropdown-menu .inner{
    display: block;
    margin-top: -10px;
  }
  .nav-main .dropdown-menu ul{
    padding: 0;
    margin: 0 0 0 20px;
    list-style-type:none;
    display: flex;
    flex-direction: column;

  }
  .nav-main .dropdown-menu a{
    font-size: 14px;
    display: block;
    padding: 4px 0;
  }
  .nav-main .nav-search{
    padding: 15px 0 15px 0;
    border: 0 !important;
  }
  .nav-main .nav-search h6{
    font-size:10px;
    font-weight: 400;
    color: #fff;
  }

  .nav-main .nav-search .form-group.search{
    display: block;
    margin-bottom: 0;
    margin-top:8px;
  }
  .nav-main .nav-search .form-group.search .form-control{
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    height: 30px;
    line-height: 28px;
  }

   
}
@media (max-width:991.98px) {
  .navbar-brand{
    margin: auto;
  }
  .form-group.search{
    display:none;
  }
}
@media (max-width:767px) {
  .navbar-main{
    padding: 10px 0;
  }
  .navbar-brand{
    max-width: 70px; 
  }
 
  .navbar-toppage h6{
    font-size: 10px;
  }

 
}
@media (max-width:576px) {
  .btn.btn-icon{left: 15px;}
  .navbar-slide{
    width: calc(100% - 100px);
    padding: 0 15px;
  }
  .nav-opened .page-slideout,
  .nav-opened .header-slideout,
  .nav-opened .page-blocker {
    -webkit-transform: translate(calc(100% - 100px), 0);
    -ms-transform: translate(calc(100% - 100px), 0);
    transform: translate(calc(100% - 100px), 0);
    -webkit-transform: translate3d(calc(100% - 100px), 0, 0);
    transform: translate3d(calc(100% - 100px), 0, 0);
  } 

  .nav-main h3{
    padding-left: 0;
  }
  .nav-main .dropdown-menu a{
    font-size: 12px;
    padding: 2px 0;
  }
  .nav-main .dropdown-menu ul{
    margin-left: 20px;
  }
  .nav-main > li > a{
    font-size: 14px;
    padding: 10px 0;
  }
  .nav-main .nav-search{
    padding-left: 0;
  }
}
/*==================================================
   Menu
==================================================*/  
 
/*==================================================
   Section
==================================================*/  
 
.page{
  display: block;
  position: relative;
  overflow: hidden;  
  padding-top:112px;
}
 

@media (max-width:991.98px) {
  .page{
    padding-top: 104px;
  }
}

@media (max-width:767px) {
  .page{
    padding-top:77px;
  }
}
  
 
.preload{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; 
  z-index: 1090; 
  display:flex;   
  background-color: #fff;
} 


.loader {
  width: 40px;
  height:40px;
  margin:  auto;
  display: block;
  border-top: 3px solid var(--red);
  border-right: 3px solid rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid rgba(0, 0, 0, 0.3);
  border-left: 3px solid rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  animation: spin 1s infinite linear;
}
 
 
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.section-full{
  min-height: 100vh;
  min-height: calc(var(--vhs, 1vh) * 100) !important;
  display: flex;
}
 
.background{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.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{
  padding:80px 0;
  position: relative;
}

.section.h-full{
  min-height: 100vh;
}

.section-title{ 
  display: block;
  position: relative; 
  padding:0 0 25px;
} 
.section-title h2{
  font-size: var(--f-36);
  color: var(--red);
  font-weight: 600;
  text-align: center;
  line-height: 1;
}   

.section-title.py-5{
  padding: 60px 0 40px !important;
}
.bg-light{
  background-color: var(--bg-light) !important;
}
.bg-red{
  background-color: var(--red) !important;
}
.card{
  border:0;
  border-radius: 0;
  background-color: transparent;
  position: relative;
}
.card-photo{
  position: relative;
  overflow: hidden;
  display: block; 
}

.card-photo .photo{
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.35s ease 0s;  
}
.card-photo img{
  width: 100%
}

.card-photo.rounded,
.card-photo.rounded .photo{
  border-radius: 10px;
}
 
.card-link{
  position: absolute !important;
  top: 0;
  left: 0; 
  right: 0;
  height: 100%;
  z-index: 100;
}
.card h3,
.card p,
.card .card-body{transition: all 0.2s ease 0s;}
 
strong{font-weight: 500;}
 
@media (max-width: 1280px){
  .section-title{
    padding: 20px 0;
  }
  .section-title.py-5{
    padding: 40px 0 30px !important;
  }
}

@media (max-width: 991.98px){
  .section-title{
    padding-top: 0; 
  }
  .section-title h2{line-height: 1;}
  .section{
    padding:60px 0;
  }
}

@media (max-width: 576px){
  .section{
    padding:45px 0;
  } 
  .section-title{
    padding:20px 0;
  }

  .section-title.py-5{
    padding: 35px 0 25px !important;
  }

  .pt-xs-1{padding-top: 25px;}

  .section-title h2{line-height: 1.4;}
}
 
/*==================================================
   Banner
==================================================*/ 

.section-body{ 
  padding:  0;
}

.section-banner.medium{
  height:30vw;
  position: relative;
}

.card-feature{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
}

.card-feature .card-icon{
  display: block;
  margin: auto;
  max-width: 50%;
}
.card-feature .card-body{
  font-size: var(--f-16);
  padding-left: 0;
  padding-right: 0;
}
.card-feature h3{
  color: var(--blue-medium);
  font-size: var(--f-24);
  font-weight: 600;
  margin: 5px 0;
}
.card-feature p{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
.img-800,
.img-1000{
  display: block;
  margin: auto;
  width: 100%;
  max-width:800px;
  margin-top:45px;
  margin-bottom:10px;
}
.img-1000{
  max-width: 1000px;
}
.w-80{width: 80%; margin-left: auto; margin-right: auto;}
.mapbox{
  display: block;
  background-color: #ccc;
  width: 100%;
  height:480px ;
}
.mapbox iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1280px){
  .card-feature .card-icon{
    max-width:40%;
  }
  .mapbox{height: 380px;}
}

@media (max-width: 991.98px){
  .card-feature .card-body{
    padding-left: 0;
    padding-right: 0;
  }
  .mapbox{
    height: 300px;
  } 

  .img-800{
    margin-bottom: 0;
    margin-top:40px;
  }
  .w-80{width:100%;}

  .section-banner.medium{height: 40vw;}
}

@media (max-width:576px){
  .card-feature{
    max-width: 300px;
  }
  .card-feature .card-icon{
    max-width: 32%;
  }
  .card-feature .card-body{
    padding-top: 10px;
  }

  .img-800{
    margin-top: 35px;
  }

  .section-banner.medium{height:55vw;}
}


/*==================================================
   Contact
==================================================*/ 

.table-form{
  margin: auto;
  margin-top: 0;
}
.table-form th{
  font-weight: 500;
  font-size: var(--f-16);
}
.table-form th,
.table-form td{
  padding: 10px 15px;
}

.table-form .form-control{
  width: 460px;
}

.article p{
  margin-bottom: 20px;
}

@media (max-width:991.98px){
  .table-form{
    margin-top: 20px;
  }
}

@media (max-width:670px){
  .table-form tr th,
  .table-form tr td{
    display: block;
    width: 100%;
    padding: 0;
  }
  .table-form tr th{padding-bottom: 10px;}
  .table-form tr td{padding-bottom: 20px;}

  .table-form .form-control,
  .table-form .form-select{
    width: 100%;
  }

  .article p{
    margin-bottom:15px;
  }
}

/*==================================================
   service
==================================================*/ 

.card-service{
  display: flex;
  background-color: var(--bg-light);
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.card-service .card-photo,
.card-service .card-body{
  flex: 0 0 auto;
  width: 50%;
}
.card-service .card-photo .photo{
  height: 100%;
}
.card-service .card-body{
  padding: 30px;
}

.card-service h3{
  font-size: var(--f-30);
  color: var(--blue-medium);
  font-weight: 600;
  padding: 15px 0;
}


@media (max-width:1280px){
  .card-service h3{
    padding: 10px 0;
  }
}

@media (max-width:991.99px){
  .card-service{
    margin-bottom: 10px;
  }
  .card-service .card-body{
    padding:20px 25px;
  }
  .card-service h3{
    padding:5px 0 10px;
  }
}

@media (max-width:670px){
  .card-service{
    flex-direction: column;
  }
  .card-service .card-photo,
  .card-service .card-body{
    width: 100%;
  }
}

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

.breadcrumb{
  margin: 0 -20px;
  padding:10px 0;
  color: #fff;
  font-size: var(--f-16);
}
.breadcrumb li a{
  display: block;
  color: #fff;
  padding: 0 20px;
  position: relative;
}
.breadcrumb li a:before{
  content: '/';
  position: absolute;
  right:5px;
}
.section-column{
  padding: 20px 0;
}
.section-column .container{
  display: flex;
}
.section-column .sidebar{
  display: flex;
  flex-direction: column;
  width: 300px;
  flex-shrink: 0;
}
.section-column .content{
  display: block;
  width: 100%;
  padding-left:20px;
}

.section .content.w-700{
  padding:0;
  margin: 0 auto;
  max-width: 700px;
}

.card-menu{
  display: flex;
  width: 100%;
  flex-direction: column;
  background-color: var(--bg-light);
  margin-bottom: 10px;
}
.card-menu .card-title{
  background-color: var(--red);
  font-size:var(--f-18);
  color: #fff;
  padding: 10px 25px;
  margin-bottom: 0;
}
.card-menu .card-body{
  padding: 15px 25px;
}
.card-menu ul.nav{
  flex-direction: column;
}
.card-menu ul.nav li{
  width: 100%;
}
.card-menu ul.nav li a{
  display: block;
  padding:3px 0;
  text-decoration: none; 
}

.card-menu ul.nav li.active a{
  color: var(--red);
}

.product-infos{
  display: block;
  font-size: var(--f-16);
}
.product-infos + hr{margin-bottom: 25px;}
.product-infos p{
  margin-bottom: 10px;
}
.product-infos h2{
  font-size: var(--f-40);
  color: var(--red);
  margin-bottom:5px;
}

.product-infos .nav{
  margin:0 -5px;
  margin-bottom: 10px;
}
.product-infos .nav li{
  padding: 0 5px;
}
.product-infos .nav.hashtag li a{
  color: #456596;
}
.product-infos .nav.color{margin: 0 -2px;}
.product-infos .nav.color li{padding: 0 2px;}
.product-infos .nav.color li span{
  display: block;
  width: 35px;
  height: 35px;
  border:1px solid #a2a3a2;
  position: relative;
  cursor: pointer;
}
.product-infos .nav.color li span:before{
  content: '';
  position: absolute;
  left: -1px;
  top:  -1px;
  right:  -1px;
  bottom:  -1px;
  border:2px solid var(--red);
  transition: all 0.2s;
  opacity: 0;
}
.product-infos .nav.color li span.active:before,
.pc .product-infos .nav.color li span:hover:before{opacity: 1;}

.product-infos .nav.download .icons{
  width: 17px;
  height: 17px;
  background-image: url(../img/icons/icon-download.png);
  background-size: contain;
  margin-right: 4px;
}
.product-infos .table-infos{
  width: 100%;
  table-layout: auto;
}
.product-infos .table-infos th{
  font-weight: 400;
  width: 130px;
  vertical-align: top;
}

.product-infos .table-infos th,
.product-infos .table-infos td{
  padding: 10px 0;
}

.card-photo.texture{
  width: 105px;
  height: 67px;
  border:1px solid #a2a3a2
}

hr.black{
  opacity: 1;
  background-color: #000;
  height: 1px;
}

.btn-menu-filter{ 
  border-radius: 0;
  background-color:transparent;
  border:1px solid rgba(0, 0, 0, 0.5);
  padding: 0;
  height: 35px;
  line-height: 34px;
  font-weight: 400;
  width: 175px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom:20px;
}

.btn-menu-filter .icons{
  position: absolute;
  top: 50%;
  right:10px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-image: url(../img/icons/icon-arrow.svg);
  opacity: 0.7;
}
.sidebar-slide,
.sidebar .card-close,
.btn-menu-filter{display: none;}

@media (max-width:1024px){
  .section-column .sidebar{
    width: 250px;
  }

  .product-infos .nav.download .icons{
    width: 14px;
    height: 14px;
  }
  .product-infos .nav.color li span{
    width: 30px;
    height: 30px;
  }
}

@media (max-width:991.98px){
  .section-column .sidebar{
    width: 220px;
  }

  .card-menu .card-title{
    padding: 10px 20px;
  }
  .card-menu .card-body{
    padding: 15px 20px;
  }

  .product-infos .table-infos th{
    width: 100px;
  }
}

@media (max-width:760px){
  .breadcrumb{
    font-size: 11px;
    padding: 10px 0 7px;
  }
  .section-column .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background-color: #fff;
    z-index: 1093;
    display: none;
  }

  .section-column .content{
    padding-left: 0;
  }

  .sidebar-slide{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background-color: #fff;
    z-index: 1093;

    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
  }

  .filter-opened .sidebar-slide{
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .filter-blocker{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }

  .filter-opened .filter-blocker{
    opacity: 1;
    pointer-events: all;
  }

  .sidebar-slide  .sidebar{
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .card-menu{
    margin-bottom: 0;
    background-color: transparent;
  }

  .card-menu .card-title{
    font-size: 14px;
    pointer-events: none;
    font-weight: 400;
  }

  .card-menu .collapse,
  .card-menu .collapsing{
    display: block !important;
  }

  .card-menu ul.nav li a{
    font-size: 13px;
    padding: 2px 0;
  }
  
  .sidebar .card-close{
    display: flex;
    background-color: #969a9d;
  }
  .sidebar .card-close h4{
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    padding:10px 20px;
  }

  .sidebar .card-close .btn-close{
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    background-color: var(--red);
    width: 32px;
    height: 32px;
    margin: auto;
    margin-right: 8px;
    opacity: 1;
    padding: 0;
    border-radius: 0;
  }

  .btn-menu-filter{ display: block;}

  .product-infos .table-infos th, .product-infos .table-infos td{
    padding: 5px 0;
  }
}



.pagination{
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.nav-page li {
  margin: 0 2px;
}
.nav-page li a{
  width: auto;
  height: auto;
  line-height: 42px;
  border-radius: 50%;
  color:#b2b2b2;
  display: block;
  font-weight: 500;
  text-align: center; 
  font-size: var(--f-18);
}
.nav-page li.active a{ 
  color: var(--red) !important;
}
.pc .nav-page li a:hover{color: var(--red);}

.nav-page .arrow{
  margin-left: 15px;
  margin-right: 15px;
}

.nav-page .arrow .icons{
  width:15px;
  height: 15px;
  top: -2px;
  
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239D9D9D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-size:95%;
}

.nav-page .arrow.prev .icons{
  transform:rotate(90deg);
}
.nav-page .arrow.next .icons{
  transform:rotate(-90deg);
}
.pc .nav-page .arrow:hover .icons{opacity: 0.6;}

@media (max-width:1024px){
  .pagination{
    padding-top: 10px;
  }
}


@media (max-width:760px){
  .pagination{
    padding-top: 10px;
  }
}
.lang-group {
  display: flex;
  margin-left: auto;
  margin-right:15px;
}
.lang-group .btn{
  width: 28px;
  height: 28px;
  line-height: 26px;
  border-radius: 50%;
  padding: 0;
  background-color: transparent;
  border-color:#a2a3a2;
  color:#a2a3a2;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;

}
.lang-group .btn.active,
.pc .lang-group .btn:hover{
  background-color: var(--blue-medium);
  border-color: var(--blue-medium);
  color: #fff;
}

@media (max-width:991.98px){
  .lang-group{
    position: absolute;
    right:16px;
    top:12px;
  }
}
@media (max-width:767px){
  .lang-group{top: 6px;}
}

@media (max-width:576px){
  .lang-group{
    top: 6px;
    right: 0;
  }
}


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

.footer{
  background-color:#f0f0f0;
  padding: 70px 0;
}

.footer-infos{
  display: flex;
  font-weight: 500;
  padding-left: 80px;
}
.footer-infos .cols{
  padding: 0 25px;
}
.footer-infos h6{
  font-size: var(--f-14);
  color: #b5b5b5;
  font-weight: 500;
}

.nav-footer{
  flex-direction: column;
  min-width: 150px;
}
.nav-footer li a{
  display: block;
  width: 100%;
  text-decoration: none; 
  color: var(--blue-medium);
  padding: 2px 0;
  
}
.nav-footer li a:hover{
  color: var(--red);
}

@media (max-width:991.98px){
  .footer-infos{
    padding-left: 0;
  }
  .nav-footer{
    min-width: 100px;
    margin-left: -15px;
  }
  .footer-infos .cols{
    padding: 0 15px;
  }
  .footer-infos .cols:nth-child(1){padding-right:40px;}

  .footer{
    padding: 60px 0;
  }
}

@media (max-width:576px){
  .footer-infos{
    flex-wrap: wrap;
  }
  .footer-infos .cols:nth-child(1){
    width: 100%;
    padding: 0 0 15px;
  }
  .footer-infos .cols:nth-child(2){
    width: 30%;
  }
  .footer-infos .cols:nth-child(3){
    margin-left: auto;
    padding-right: 0;
  }
  .nav-footer{
    min-width: 0;
  }
  .nav-footer li a{
    padding:0;
  }
  .footer{
    padding:30px 10px;
  }
  .footer-infos h6{
    font-size: 12px;
  }
}

/*==================================================
   18/10
==================================================*/ 

.fsc-box{
  display:flex;
  padding: 35px 0 0;
}
.fsc-box .img-fsc{
  width: 140px;
  margin-right: 35px;
  flex-shrink: 0;
}

.followus{
  display: flex;
  flex-direction: column;
}
.followus > a{
  display: flex;
  align-items: center;
  margin: 8px 0;
  margin-right: auto !important;
  white-space: nowrap;
  text-decoration: none !important;
}
.followus > a .icons{
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 15px;
}
.followus > a .icon-facebook{background-image: url(../img/icons/icon-facebook.png);}
.followus > a .icon-line{background-image: url(../img/icons/icon-line.png);}

 
.followus.md{
  padding-top: 10px;
}
 
.followus.md > a .icons{
  margin-right: 12px;
  width:26px;
  height:26px; 
}

.sdgs-images{
  display: flex;
  margin: 0 -5px;
}
.sdgs-images > div{
  padding: 0 5px;
}

.goals-box{
  display: flex;
  align-items: center;
}
.goals-box .img{
  width: 290px;
  flex-shrink: 0;
  margin-right: 20px;
}

.line-qrcode{
  display: block;
  width: 115px;
  margin-top: 15px;
}
.mw-800{
  max-width: 800px;
  width: 100%;

  margin:0  auto;
}
@media (max-width: 1440px){
  .goals-box .img{
    width: 270px;
  }
}

@media (max-width: 1280px){
  .goals-box .img{
    width: 240px;
  }
}


@media (max-width: 1199px){ 
  .followus > a{
    margin: 5px 0;
  }
  .followus > a .icons,
  .followus.md > a .icons{ 
    width:22px;
    height:22px; 
    margin-right: 10px;
  }

  .goals-box .img{
    width: 200px;
    margin-right: 10px;
  }

  .line-qrcode{max-width: 90px;}
}

@media (max-width: 991.98px){
  .fsc-box{
    padding-top: 25px; 
  }
  .fsc-box .img-fsc{
    width: 120px;
    margin-right: 25px;
  }
}
@media (max-width: 670px){
  .fsc-box{
    padding-top: 20px; 
  }
  .fsc-box .img-fsc{
    width:90px;
    margin-right: 20px;
  }
  .sdgs-images{margin: 0 -2px}
  .sdgs-images > div{padding: 0 2px;}

  
}
@media (max-width:576px){
  .goals-box{
    flex-direction: column;
  }
  .goals-box .img{
    margin: 10px auto 30px;
  }
}
