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;
}
 
a{
  color:inherit;
  text-decoration: none; 
  transition: all 0.2s ease-in-out;
}
a:hover{ text-decoration: none;   }
 
.star{ color: #bc0000 }

.form-control,
.form-select{
 -webkit-appearance: none;
   
  padding:0 15px;
 
  font-weight:400; 
  font-family:inherit;  
  border-color: #dbdade;
  font-size: var(--f-14);

  height:42px;
  line-height:40px;   
  border-radius:6px;   
 
    -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-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.55rem center;
  background-size: 10px;
  background-repeat: no-repeat;
}
  
textarea.form-control{
  height: 150px;
  line-height: normal;
  padding-top: 10px; 
}
 
.form-group{
  display: block;
  position: relative; 
}
 
.form-group .icons.float{
  position: absolute;
  top: 0 !important;
  right: 15px; 
  width: 22px;
  height: 100%;
} 
.form-group .icons.float.left{
  left: 10px;
  right: auto;
}
.form-group .icons.float.left + .form-control{
  padding-left: 35px;
}
 

.form-check {
  position: relative;
  padding-left: 2.1em;
}
.form-check-input{
  width: 16px;
  height: 16px;
  margin-right: 10px; 
  border-width: 1px;
  position: absolute;
  top: 0;
  margin-left: -2em;
  border-radius: 3px;
  border: 1px solid #C1BED3
}
.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-color:transparent;
  border-color: var(--primary-color);
  background-size: contain;
  background-position:center center;
  background-color: var(--primary-color);

  
}
.form-check-input[type=radio]{
  border-radius: 50%;
}
.form-check{
  padding-left: 30px;
}
.form-check .form-check-input{
  margin-left:-28px;
  margin-top: 7px;
}
.btn{
  position: relative; 
  padding:0 25px;    
  font-weight: 500;   
  height: 50px;
  line-height:48px;
  font-size: var(--f-18);
  border-radius:50px;   
  transition: all 0.25s ease-in-out; 
  overflow: hidden; 
  border:1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #ffffff;

  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg:#EA690D;
  --bs-btn-hover-border-color:#EA690D;
} 
.btn > span{
  position: relative;
  z-index: 100; 
}
.btn-black{
  background-color: #000;
  border-color: #000;
}
 
.btn-link{
  color: inherit;
  text-decoration: none;
}

.btn-outline{
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn.btn-outline:hover{
  background-color: var(--primary-color);
  color: #fff;
}

.btn.w-310{
  width: 100%;
  max-width: 310px;
}

.btn[disabled]{
  border-color: #C9D9F1;
  background-color:#C9D9F1;
  color:#fff; 
  pointer-events: none;
  opacity: 1 !important;
} 
.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.rounded {border-radius: 50px !important;}
 
.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.d-flex {
  -ms-flex-pack: center;
justify-content: center;
}

.buttons.fill{
  display: flex;
  gap: 10px;
}
.buttons.fill .btn{
  flex: 1 1 auto;
}

a.link:hover{text-decoration: underline; color: inherit;}
 
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:1550px) {}

@media (max-width:576px) { 

  .form-control,
  .form-select{
    height: 42px;
    line-height: 40px;
  }

  .btn.w-310{
    max-width:220px ;
  }
}


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

.container{ 
  max-width:calc(1340px + 200px); 
  padding-left:100px;
  padding-right:100px;
  position:relative;
  z-index:9; 
}

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

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

.section-title{
  padding:30px 0;
  text-align: center;
}

.bg-primary{
  background-color:var(--primary-color) !important;
}
.section-title.bg-primary{
  border-radius: 15px;
  color: #fff;
  padding: 15px 0;
}
.section-title.bg-primary h2{
  color:#fff;
  font-size: 50px;
}
.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;} 

@media (max-width:1440px) {
  .section-title.bg-primary h2{
    font-size: 40px;
  }
}

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

  .section-title.bg-primary{
    border-radius: 10px;
  }
  .section-title.bg-primary h2{
    font-size: var(--h2);
  }
}

@media (max-width:1199px) {
  .container,
  .container-fluid{
    padding-left:50px;
    padding-right: 50px;
    max-width: 100%;
  }
}

@media (max-width:991.98px) {
  .section-title.bg-primary h2{
    font-size: var(--h3);
  }
}

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

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

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

  .section-title.bg-primary h2 .nowrap{
    display: block;
  }
  
}


/*==================================================
    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; }
 


/*==================================================
    Header Setup
==================================================*/  
 
:root {    

  --bs-body-color:var(--almost-black);
  --bs-body-text-align:left;
  --bs-body-font-weight:400;
  --bs-body-line-height:1.6;
  --bs-body-font-size:var(--f-14);
  --bs-body-font-family:'Kanit', sans-serif;
 
  --primary-color:#F67416;  
  --black:#2F2F2F;
  --black50:#7E7E7E;

  --h1:85px;
  --h2:53px;
  --h3:40px;
  --h4:38px; 

  --f-18:18px;
  --f-20:20px;
  --f-22:22px;
  --f-24:24px;
  --f-32:32px;
  --f-36:36px;
  --f-38:38px;
  --f-45:45px;
  --f-14:14px;
   
  --f-300:200;
  --f-400:300;
  --f-500:400;
  --f-600:500;  
  --f-700:600;  

  
} 

.fs-18{font-size: var(--f-18) !important}
.fs-17{font-size: var(--f-17) !important}
.fs-16{font-size: var(--f-16) !important}
.fs-12{font-size: var(--f-12) !important}
.fs-13{font-size: var(--f-13) !important}
.fs-14{font-size: var(--f-14) !important}
.fs-15{font-size: var(--f-15) !important}
.fs-18{font-size: var(--f-18) !important}
.fs-20{font-size: var(--f-20) !important}
.fs-30{font-size: var(--f-30) !important}
 
b, strong{
  font-weight: bold; 
  font-family: inherit;
}
.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6{   
  margin:0;  
  color:var(--almost-black);  
  font-weight:600;
  font-style: normal; 
  line-height: 1.5;   
  position: relative;
}  
  
.nowrap{ white-space: nowrap; }   

.fw-semibold{font-weight: 600;}
.fw-medium{font-weight: 500;} 
.orange{color: var(--primary-color) !important;}
.white{color: #fff !important}
.black{color: var(--black)}
.black50{color: var(--black50)}

h1, .h1{
  font-size: var(--h1); 
}
h2, .h2{
  font-size: var(--h2);  
}
h3, .h3{
  font-size: var(--h3); 
}
h4, .h4{
  font-size: var(--h4); 
}
  
@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:1550px) {
  :root{
    --h1:65px;
    --h2:45px;
    --h3:35px;
    --h4:24px; 

    --f-18:16px;
    --f-22:20px;
    --f-20:18px;
    --f-24:22px;
    --f-32:28px;
    --f-36:32px;
  }
}

@media (max-width:1440px) {
  :root{ 
    --h2:38px;  
    --h3:30px;
    --h4:21px; 

    
    --f-20:16px;
    --f-22:18px;
    --f-24:20px;
    --f-32:24px;
    --f-36:28px;
  }
}

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

@media (max-width:1024px) {
  :root{
    --h2:32px;
    --h3:26px;
    --h4:20px;   

    --f-18:15px;
    --f-20:15px;
    --f-22:16px;
  }
}

@media (max-width:767px) {
  :root{
    --h2:24px;
    --h3:20px;
    --h4:18px;   

    --f-18:14px;
    --f-22:15px;

  }
}
 
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding:20px 0;
  height: auto;
  z-index: 1040;      
  display: block;       
  background-color:#fff;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.07);
} 
.header *{
  z-index: 100;
}
 
.header .container,
.header .container-fluid{  
  display: flex;   
  max-width: 100%; 
} 

.navbar-brand{
  width:189px;
  display: block;
  margin: auto 0;
  flex-shrink: 0;
  transition: all 0.25s;
}
.navbar-brand img{
  width: 100%;
}
 
 
.btn.btn-icon{
  padding: 0 !important;
  border:0 !important;   
  z-index: 1060; 
  border-radius: 0;
  position: relative; 
  margin: auto 35px auto 0; 
  width: auto; 
  height: auto;
  background-color:transparent !important;
  overflow: visible;  
}

.btn.btn-icon{ 
  opacity: 1 !important
} 
.btn-icon .group{
  display: block;
  position: relative;
  width:28px;
  height:25px;
  margin: 0 auto 0
}
.btn-icon .group::before{
  content: 'Menu';
  font-size: 12px;
  color: #818181;
  position: absolute;
  left: 0;
  bottom: -10px;
  top: auto;
  line-height: 1;
}
.btn-icon .group span{
  height: 3px;

  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;
  right: 0;
  height: 100%;
  width: 100%;
  background:#000;
  transition: all 0.25s ease-in-out;
} 
 

.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: 7px; 
    -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: 14px;
    -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 span:nth-child(1):before { width: 100% !important }
.nav-opened .btn-icon span:nth-child(2):before { width: 100% !important }
.nav-opened .btn-icon span:nth-child(3):before { width: 100% !important }

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

.nav-general{
  gap:30px;
  margin: auto;
  align-items: center;
}
.nav-general > li > a{
  font-size: var(--f-18);
  color: #000;
  display: block;
}
.nav-general li.calling a{
  font-size:25px;
  font-weight: 600;
  display:flex;
  align-items: center;
}
.nav-general li.calling .icons{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  flex-grow: 0;
  margin-right: 12px;
  background-color: var(--primary-color);
  background-image: url(../img/icons/icon-phone-white-2.svg);
  background-size:45%;
}
.nav-general .btn{
  height: 38px;
  line-height: 34px;
  border-width: 2px;
  border-radius: 12px;
}

.offcanvas{
  border:0;
  transition: transform .4s ease-in-out;
  --bs-offcanvas-bg:#ED5E2F;
  --bs-offcanvas-color:#FFC9B8;
  --bs-offcanvas-width:320px;
}
.offcanvas.offcanvas-start{
  border:0 !important
}
.offcanvas-body{
  padding:30px 0 ;
 
  width: 100%;
}
.offcanvas .btn-close{
  width: 30px;
  height: 30px;
  opacity: 1;
  background-image: url(../img/icons/icon-close-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 0 35px;
  transition: all 0.25s;
}
.pc .offcanvas .btn-close:hover{
  opacity: 0.8;
}
.nav-menu{
  flex-direction: column;
  max-width: 165px;
  margin: 0 auto;
}
.nav-menu li a{
  display: block;
  font-size:20px;
  font-weight: 500;
  position: relative;
  padding:12px 0;
  margin-bottom: 0;
  white-space: nowrap;
  display: inline-flex;
}
.nav-menu li a:before{
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #fff;
  transform: rotate(-45deg);
  left: 50%;
  margin-left: -3px;
  bottom: 0;
  opacity: 0;
  transition: all 0.25s;
}
.nav-menu li.active a{
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 6px;
  margin-bottom: 15px;
  margin-bottom: 15px;
}
.nav-menu li a:hover{
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.nav-menu li.active a:before{
  opacity: 1;
  
}

@media (max-height:650px) { 
  .nav-menu li a{
    padding: 8px 0;
  }
}

@media (max-width:1440px) { 
  .nav-general li.calling a{
    font-size: 22px;
  }
}

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

  .nav-general li.calling a{
    font-size: 20px;
  }
  .nav-general li.calling .icons{
    width: 30px;
    height: 30px;
  }
}
@media (max-width:1280px) {
  
  .navbar-brand {
    width: 170px;
  }
  .nav-general{
    gap: 20px;
  }
  .nav-general > li > a{
    font-size: 14px;
  }

  .nav-general .btn{
    font-size: 14px;
    height: 32px;
    line-height: 28px;
    border-radius: 10px;
  }
  .nav-general .d-flex{gap: 10px !important;}
  .nav-general .btn{
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width:1100px) {
  .header{padding:15px 0}
  .btn.btn-icon{margin-right: 20px;}
  .navbar-brand {width: 140px;}
  .nav-general li.calling a{
    font-size: 16px;
  }
  .nav-general li.calling .icons {
    width: 26px;
    height: 26px;
  }
}

@media (max-width:1024px) {
  .nav-general.menu{
    display: none;
  }
  .header .nav-general:last-child{margin-left: auto !important;}

  .nav-menu li a{
    font-size: 18px; 
  }
  .offcanvas .btn-close {
    width:25px;
    height: 25px;
  }
}

@media (max-width:991.98px) { 
  .nav-general{gap: 15px;}
  
  .btn.btn-icon{
    margin-right: 30px;
  }
}

@media (max-width:767px) {
  .nav-general {gap: 0;}
  .nav-general .d-flex.gap-3{display: none !important;}

  .nav-general li.calling a{
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding:5px 15px;
    display: flex;
    font-weight: 400;
    color: var(--primary-color);
    font-size: 14px;
  }
  .nav-general li.calling a .icons{
    width: 20px;
    height: 20px;
    background-size: 10px;
  }
  
}

@media (max-width:670px) {
  .header{padding: 15px 0;}
  .header .container-fluid{
    padding-left:20px;
    padding-right:20px;
  }

  .btn.btn-icon{
    margin-right: 20px;
  }
  .btn-icon .group::before{
    display: none;
  }
  .btn-icon .group{height: 16px;}
  .navbar-brand {
    width: 120px;
  }

  .nav-general li.calling a{
    border-radius: 8px;
    padding: 0 10px 0 8px;
    font-size: 13px;
    line-height:30px;
  }
  .nav-general li.calling .icons{
    margin-right: 8px;
  }

  .nav-menu li a{
    font-size: 17px;
    padding: 8px 0;
  }
  .nav-menu li.active a,
  .nav-menu li a:hover{
    font-size: 22px;
    margin-bottom: 5px;
  }

  .offcanvas{
    --bs-offcanvas-width: 280px;
  }
  .offcanvas .btn-close {
    width: 22px;
    height: 22px;
    margin-bottom: 25px;
  }
  .offcanvas-body{
    padding: 20px 0;
  }
}

.page{
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: calc(80px + 5px);
}

@media (max-width:1440px) {
  .page{padding-top: calc(78px + 5px);}
}
@media (max-width:1280px) {
  .page{padding-top: calc(72px + 5px);}
}
@media (max-width:1100px) {
  .page{padding-top: calc(62px + 5px);}
}
@media (max-width:767px) {
  .page{padding-top: calc(64px + 5px);}
}
@media (max-width:670px) {
  .page{padding-top: calc(62px + 5px);}
}
.preload{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:#fff;
  z-index: 1090; 
  display:flex;   
} 


.loader {
  width: 40px;
  height:40px;
  margin:  auto;
  display: block;
  border-top: 3px solid var(--primary-color);
  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(--vh, 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;
}
.background.relative{position: relative;}
.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;
  }
 
}
 
/*==================================================
   Modal
==================================================*/ 
.modal{z-index: 1098;}
.modal-backdrop{z-index: 1095;}
.modal .btn-close{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;

  border:0;
  border-radius:0;
  width: 44px;
  height: 44px;
  padding: 0;
  opacity: 0.4; 
  transition: all 0.2s; 
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.pc .modal .btn-close:hover {opacity: 1;}

 
.modal-dialog{
  max-width: 700px;
}
.modal-content{
  border-radius:20px;
  border:0;
  background-color: #fff;
  padding:30px 25px;
}
  
 
@media (max-width:670px) {
  .modal-content{border-radius: 18px;}
}
  

/*==================================================
   Banner
==================================================*/  
 
.section-banner{  
  position: relative;
  background-color: #000; 
  padding: 1px 0;
 
} 
.section-banner .background:before,
.section-banner .background:after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%; 
} 

.section-banner .background:before{
  left: 0;
  background: linear-gradient(88.55deg, rgba(247, 116, 22, 0.351) 21.05%, rgba(246, 116, 22, 0) 86.29%);
}
.section-banner .background:after{
  right: 0;
  background: linear-gradient(88.55deg, rgba(247, 116, 22, 0.351) 21.05%, rgba(246, 116, 22, 0) 86.29%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.swiper-banner.main{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} 
.swiper-banner.main .swiper-slide{
  height: 100%; 
}

.swiper-banner.main .bg1{display: block;}
.swiper-banner.main .bg2{display: none;}

.banner-caption{
  position: relative;
  z-index: 1000;
  display: flex;
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 400;   
  height: 100%;
  min-height: calc(100vh - 78px);
  
}
.banner-caption h1{
  color: #fff !important;
  font-weight: 600;
  font-size: 75px;
}
.banner-caption h3{
  color: #fff !important;
  font-weight: 400;
}

.banner-caption .btn{
  font-size: 40px;
  height: auto;
  line-height: normal;
  padding:15px 40px;
  font-weight: 500;
  border-radius: 15px;
}

.banner-caption .logo{
  display: flex;
  
}
.banner-caption .logo img{
  height: 33px;
  margin: auto;
}
@media (max-width: 1550px){
  .banner-caption .btn{
    font-size:35px;
    padding:12px 40px;
  }
}

@media (max-width: 1440px){
  .banner-caption{
    font-size: 25px
  }
  .banner-caption h1{
    font-size: 60px;
  }
  .banner-caption .btn{
    font-size: 30px;
    padding:15px 30px;
  }
}
 

@media (max-width:1280px){
  .banner-caption h1{font-size: 50px} 

  .swiper-pagination.banner{bottom: 20px !important}
  .banner-caption .btn{font-size: 24px;}
}
@media (max-width:1024px){
  .banner-caption{font-size:20px;}
  .banner-caption h1{font-size: 45px} 
  
}

@media (max-width:991.98px){
  .banner-caption{
    font-size: 22px;
    height: 90vw;
    min-height: 0;
  } 
  .banner-caption .logo{margin-bottom:40px;}
  .banner-caption .btn{font-size: 27px; line-height: normal;}

  .swiper-banner.main .bg1{display: none;}
  .swiper-banner.main .bg2{display: block;}
}

@media (max-width:670px){
  .banner-caption{font-size:16px;}
  .banner-caption h1{font-size:25px} 
  .banner-caption .logo{margin-bottom:20px;}
  .banner-caption .logo img{height: 22px;}
  .banner-caption .btn{
    font-size: 15px;
    padding: 10px 20px;
    margin-top:10px !important;
  }

  .swiper-pagination.banner{bottom:15px !important}

}


/*==================================================
   section 1
==================================================*/  
.g-6{
  --bs-gutter-x: 4rem;
}
.card-infos{
  border-radius:18px;
  display: flex;
  flex-direction: column;
  padding: 25px 15px;
  text-align: center;
}
.card-infos.bg-grey{
  background-color: #F6F6F6;
}
.card-infos p{
  margin: 0;
  font-weight: 300;
}
.card-infos h2{
  /* font-size: 59px; */
  color: var(--primary-color);
  line-height: 1.4;
}

.customer-care-box{
  display: flex;
  padding:30px 0;
}
.customer-care-box .image{
  flex-grow: 0;
  width: 436px;
}
.customer-care-box .article{
  width: 100%;
  font-size: var(--f-22);
  margin: auto 0;
  padding-left: 130px;
}
ul.check-list{
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
ul.check-list li{
  position: relative;
  padding-left: 55px;
  margin: 15px 0;
}
ul.check-list li:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width:32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center; 
  background-size: contain;
  background-image: url(../img/icons/icon-check-list.svg);
}
@media (max-width:1366px){
  .g-6 {--bs-gutter-x: 3.5rem;}
  ul.check-list li{
    padding-left: 50px;
  }
  ul.check-list li:before{
    width: 28px;
    height: 28px;
  }
}
@media (max-width:1199px){
  .g-6 {--bs-gutter-x: 2.5rem;}
}

@media (max-width:1024px){
  ul.check-list li:before {
    width: 24px;
    height: 24px;
  }
  ul.check-list li{
    padding-left: 40px;
  }

  .customer-care-box .article{
    padding-left: 80px;
  }
}

@media (max-width:991.98px){
  .g-6 {--bs-gutter-x: 1.5rem;     --bs-gutter-y: 1.5rem;}

  .card-infos p{font-size: 14px !important;}
  .customer-care-box .article{
    padding-left: 40px;
  }
  ul.check-list li:before {
    width: 20px;
    height: 20px;
  }
  ul.check-list li{
    padding-left: 35px;
    margin: 10px 0;
  }
  .customer-care-box .image{
    width: 380px;
  }
}

@media (max-width:576px){
  .g-6 {--bs-gutter-x: 1rem; --bs-gutter-y: 1rem;}

  .customer-care-box{
    flex-direction: column;
  }
  .customer-care-box .article{
    padding-left: 0;
  }

  ul.check-list li:before {
    width:18px;
    height: 18px;
    top: 2px;
  }
  ul.check-list li{
    padding-left: 30px;
    margin: 5px 0;
  }
}

/*==================================================
   section 2
==================================================*/  
.py-60{
  padding: 60px 0;
}
.py-80{
  padding: 80px 0;
}
.py-100{
  padding: 100px 0;
}
.px-80{
  padding: 0 80px;
}
.px-60{
  padding: 0 60px;
}
.card-photo{
  position: relative;
  overflow: hidden;
}

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

.card-infos.service{
  background-color: #fff; 
  align-items: center; 
  position: relative;
  transition: all 0.25s; 
  height: calc(100% - 20px);
  margin: 10px 0;
}
.pc .card-infos.service:hover{
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.card-infos.service h4{
  font-size: var(--f-22);
  color: var(--primary-color);
  font-weight: 400;
  line-height: 1.2;
  margin-top: auto;
  margin-bottom: auto;
}
.card-infos.service .card-icon{
  width: 100px;
  height: 100px;
  display: flex;
  margin-bottom: 10px;
  transition: all 0.2s;
  position: relative;
  top: 0;
}
.card-infos.service:hover .card-icon{top: -8px;}
.card-infos.service .card-icon img{
  margin: auto;
  width: 100%;
  height: auto;
}


.service-list{
  padding: 0 40px; 
} 

.card-service p,
.card-service h3,
.card-service .btn{
  position:relative;
  z-index: 10; 
}
.card-service{
  display: flex;
  flex-direction: column; 
  border-radius:0 0 20px 20px;
  padding:0;   
  background-color: #F7F7F7;
  height: calc(100% - 0px);
  margin:0 auto;
  transition: all 0.24s;
  color: #000;

  transform: scale(0.8);
}
.card-service .card-photo{
  border-radius: 0;
}
.card-service .card-body{
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;

}
.card-service h3{
  font-size:28px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 10px;  
}
.card-service p{
  font-size: 17px;
  font-weight: 300; 
  margin-bottom: 0;
}
.card-service:hover{
  background-color:var(--primary-color);
  color: #fff;
  transform: scale(1);
}

.card-link{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.card-blog{
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
.card-blog .card-body{
  padding: 20px 0 0;
}
.card-blog h4{
  font-size: var(--f-22);
  margin-bottom: 5px;
  transition: all 0.2s;
}
.card-blog:hover h4{
  color: var(--primary-color);
}
.card-blog p{
  margin: 0;
  font-size: var(--f-18);
  font-weight: 300;
}

.card-blog:hover .card-photo .photo{
  transform: scale(1.1);
}
.fb_iframe_widget_fluid_desktop, .fb_iframe_widget_fluid_desktop span, .fb_iframe_widget_fluid_desktop iframe {
  max-width: 100% !important;
  width: 100% !important;
}
 
@media (max-width:1440px){
 
  .card-service h3{
    font-size: 22px;
  }
  .card-service p{
    font-size: 16px;
  }

  .card-blog p{
    font-size: var(--f-16);
  }
}

@media (max-width:1330px){
  .px-60{padding: 0;}
  .service-list{
    padding: 25px 0 0;
  }
  .service-list .row{
    --bs-gutter-y: 3rem;
    --bs-gutter-x: 3rem;
  }
  .card-service{
    transform: scale(1); 
  }
  .card-service h3{
    font-size: 20px;
  }
  .card-service p{
    font-size: var(--f-18);
  }
}
@media (max-width:1199px){
  .card-service h3{
    font-size: 18px;
  }
}
@media (max-width:1100px){
  .service-list .row{
    --bs-gutter-y: 2rem;
    --bs-gutter-x: 2rem;
  }
}
@media (max-width:991.98px){
 

  .card-service h3{
    font-size: 18px;
  }
  .card-service p{
    font-size: 13px
  }
}

@media (max-width:670px){
  .py-80,
  .py-60{
    padding: 40px 0;
  }
}
@media (max-width:576px){
  .service-list{
    padding: 15px 30px 0;
  }

  .card-service h3 br{display: none;}
  .card-service p{font-size: 14px;}

  .card-infos.service{margin: 0; height: 100%;}

  
  .card-blog .card-body{
    padding: 15px 0;
  }
  .col-6  .card-blog p{font-size: 13px;}
  .col-6  .card-blog p br {display: none;}
}



.faq-wrapper{
  display: block;
  margin: 0 auto;
  padding-bottom: 40px;
  width: 100%;
  max-width: 1330px;
}

.accordion{ 
  display: block; 
  padding: 0 100px 0 150px;
  position: relative;
  font-size:17px
}
.card-accordion{
  border-bottom: 1px solid #E2E2E2;
}
.card-accordion .card-header{
  background-color: transparent;
  border:0;
  display: flex;
  padding: 20px 60px  20px 0;
  position: relative;
  overflow: hidden;
}
.accordion:before{
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 95px;
  height: 95px;

  background-repeat: no-repeat;
  background-size:contain; ;
  background-position: center center;
  background-image: url(../img/icons/icon-quote-2.svg);
}
.card-accordion .card-header h4{
  font-size:21px;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.card-accordion .card-header .icons{
  min-width: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/icon-quote-2.svg);
  margin: 7px 20px 0 0;
}

.card-accordion .card-header .arrow-down{
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  width: 14px;
  height: 14px;
  left: auto;
  right: 10px;
  top: 25px;
}


.card-accordion .card-body{
  padding:0 0 20px;
}

.card-accordion ul{
  padding-left: 21px
}

.card-accordion .card-header[aria-expanded="true"] .icons{
  /*margin-left: -40px;*/
}

.card-accordion .card-header[aria-expanded="true"] .arrow-down{
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
  margin-top: 5px
}

@media (max-width:1680px){
  .faq-wrapper{
    max-width: 85%
  }
  .accordion{
    padding-left: 120px;
    padding-right:10%
  }
  .accordion::before {
    width: 85px;
    height: 85px;
    left: 0;
  }
}

@media (max-width:1440px){  
  .accordion{font-size: var(--f-18);}
  .card-accordion .card-header h4{
    font-size: 18px
  }

  .card-accordion .card-header .arrow-down{
    width: 12px;
    height: 12px;
  }
}


@media (max-width:1280px){
  .faq-wrapper{
    max-width: 100%
  }
  .accordion{
    padding-left: 90px;
    padding-right: 20px
  }
  .accordion::before {
    width: 70px;
    height: 70px;
    left: 0;
  }
  .card-accordion .card-header{
    padding-right: 45px
  }
}

@media (max-width:1199px){
 
  .accordion{
    padding-left: 70px;
    padding-right: 20px
  }
  .accordion::before {
    width:50px;
    height: 50px;
    left: 0;
  }
  .card-accordion .card-header{
    padding-right: 45px
  }
  .card-accordion .card-header .arrow-down{
    width: 10px;
    height: 10px;
  }
}

@media (max-width:991.98px){ 
  .card-accordion .card-header h4{
    font-size: 16px;
  }
}

@media (max-width:670px){
  .accordion{font-size: 14px; margin-bottom: 40px;}
  .card-accordion .card-header h4{
    font-size: 15px;
  }

  .card-accordion .card-header{
    padding: 15px 40px 15px 0;
  }

  .accordion{
    padding-left: 50px;
    padding-right: 20px
  }
  .accordion::before {
    width:30px;
    height: 30px;
    left: 0;
  }

  .card-accordion .card-header .arrow-down{
    width: 9px;
    height: 9px;
  }

}

@media (max-width:576px){
  .faq-wrapper{
    padding-bottom: 0;
  }
  .accordion{
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .accordion::before {
    left: 50%;
    top: 0px;
    margin-left: -15px;
  }
}

/*==================================================
   Service Center
==================================================*/  
.service-center{
  display: flex;
  padding: 20px 0 60px;
}
.service-center .cols{
  width: 20%;
}
.service-center h4{
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}
.service-center .nav {
  font-size: var(--f-18);
  flex-direction: column;
  padding: 0 0;
}
.service-center .nav li a{
  display: block;
  color: #1A83BE;
}
.service-center .nav li a:hover{
  color: #000;
}

@media (max-width:1440px){
  .service-center{
    padding-top:0;
  }
  .service-center h4{
    font-size: 23px
  }
}

@media (max-width:1024px){
  .service-center h4{
    font-size: var(--f-22)
  }
  .service-center .nav {
    font-size: 14px;
  }
}
@media (max-width:991.98px){
  .service-center{
    flex-wrap: wrap;

  }
  .service-center .cols{
    width: 33.333%;
    margin-bottom: 30px;
  }

  .service-center h4{
    margin-bottom: 10px;
  }
}

@media (max-width:576px){
  .service-center .cols{
    width:50%;
  }

  .service-center{
    padding-bottom: 0;
    padding-top: 0;
  }
}
/*==================================================
   Footer
==================================================*/  

.footer{
  background-color: #171717; 
  padding: 0; 
  color: #fff;
  font-size: 14px; 
  display: flex;
}

.footer .cols-left{
  width:585px;
  display: flex;

  background-image: url(../img/thumb/photo-1000x945--1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .cols-right{
  width:calc(100% - 585px);
  padding:40px 70px 0px 70px; 
  display: flex;
  flex-direction: column;
}

.footer h5{
  color: var(--primary-color);
  font-size: 16px;
  font-weight:500;
  margin:40px 0 20px;
  text-transform: uppercase;
}

.nav-footer{
  flex-direction: column;
}
.nav-footer li a{
  display: inline-block;
  padding: 5px 0;
  font-weight: 300;
}
.pc .nav-footer li a:hover{color: var(--primary-color)}

.contact-box{
  border:1px solid #000000;
  margin:0;
  padding:30px 40px;
  margin-bottom: 40px;
  font-size: 15px;
  width: 344px;
  font-weight: 300;
}

.contact-box h3{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;

  margin-bottom: 15px;
}

.contact-box h3 .icons{
  min-width:32px;
  height:32px;
  margin-right:20px;
  background-image: url(../img/icons/icon-buildings.svg);
}

.nav-contact{
  flex-direction: column;
}
.nav-contact li a{
  display: flex;
  margin:6px 0;
  font-weight: 400;
}
.nav-contact li a .icons{
  width:18px;
  height: 18px;
  flex-grow: 0;
  top: 2px;
  
  margin: auto 25px auto 0; 
}
.pc .nav-contact li a:hover{opacity: 0.8; color: #fff;}
.nav-contact li a .icon-mobile{background-image: url(../img/icons/icon-mobile.svg);}
.nav-contact li a .icon-mobile2{background-image: url(../img/icons/icon-mobile-2.svg);}
.nav-contact li a .icon-phone{background-image: url(../img/icons/icon-phone.svg);}
.nav-contact li a .icon-email{background-image: url(../img/icons/icon-email.svg);}

.nav-contact li a .icon-facebook{background-image: url(../img/icons/icon-facebook.svg); }
.nav-contact li a .icon-line{background-image: url(../img/icons/icon-line.svg);}
.nav-contact li a .icon-youtube{background-image: url(../img/icons/icon-youtube.svg);}

.footer .followus{
 
  margin-left: -3px;
}


.footer-links{
  width:calc(100% - 344px);
}

.footer-copyright{
  border-top:1px solid rgba(196, 196, 196, 0.4);
  padding: 25px 0;
  font-size: 11px
}

.nav-copyright{
  margin-left: auto;
  margin-right: -10px;
}
.nav-copyright li a{
  display: block;
  padding: 0 10px;
  position: relative;
}
.nav-copyright li a:before{
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  height: 12px;
  border-left: 1px solid rgba(196, 196, 196, 0.4);
}
.nav-copyright li:first-child a:before{display: none;}

.pc .nav-copyright li a:hover{opacity: 0.6}

.footer-infos{
  width: 350px;
  margin: auto;
  color: #CDCDCD;
  font-size: 14px;
  padding-top: 70px;
  padding-bottom: 30px;
}
.footer-infos .logo{
  width: 190px
}

.footer-infos h4{
  color: #fff;
  font-size: 29px;
  margin: 30px 0;
  font-weight: 400;
}


.followus{
  display: flex;
  margin: 0 -8px
}
.followus .icons{
  width: 25px;
  height: 25px;
  margin: 0 8px
}
.pc .followus .icons:hover{opacity: 0.8}
.followus .icons.circle{
  width: 35px;
  height: 35px;
  margin: 0 10px;
}
.followus .icon-facebook.circle{background-image: url(../img/icons/icon-circle-facebook.svg);}
.followus .icon-line.circle{background-image: url(../img/icons/icon-circle-line.svg);}
.followus .icon-instagram.circle{background-image: url(../img/icons/icon-circle-instagram.svg);}

.followus .icon-facebook{background-image: url(../img/icons/icon-facebook.svg); background-size:13px}
.followus .icon-line{background-image: url(../img/icons/icon-line.svg);background-size: 19px}
.followus .icon-youtube{background-image: url(../img/icons/icon-youtube.svg);}

.followus.lg {
  margin: 0 -10px;
  margin-top: 40px
}
.followus.lg .icons{
  width:76px;
  height:76px;
  margin: 0 10px;
  background-size: contain;
}
.followus.lg .icon-facebook{background-image: url(../img/icons/icon-facebook-circle.svg);}
.followus.lg .icon-line{background-image: url(../img/icons/icon-line-circle.svg);}


.footer .followus.lg{
  position: relative;
  height: 76px; 
}

.footer .followus.lg .group{
  display: flex;
   position: fixed;
  left: auto;
  bottom: 30px;
  z-index: 1000;
}

.footer-copyright{
  display: flex;
  border-top: 1px solid rgba(196, 196, 196, 0.5);
  padding: 20px 70px;
  margin: 0 -70px;
  margin-top: auto;
}

.footer-wrapper{
  display: flex;
  width: 100%;
  height: calc(100% - 10px);
}

.button-fixed{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1030; 
}

.button-fixed .btn{
  width: 75px;
  height: 75px;
  padding: 0;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; 
 
  margin-top:20px;
  opacity: 1;
  border:0;
}
.button-fixed .btn.close{
  background-color:#AD9A5B;
  display: flex;
  pointer-events: auto;
}
.button-fixed .btn.close .icons{
  width: 25px;
  height: 25px;
  background-image: url(../img/icons/icon-close.svg);
  margin: auto;
}
.button-fixed .btn.close .icons{
  transform: rotate(45deg);
}
.button-fixed .btn.messenger{
  background-color:#1CDED2;
 background-size:30px;
  background-image: url(../img/icons/icon-messenger-white.svg);
}

.button-fixed.show .btn.close .icons{
  transform: rotate(0);
}
 
.button-fixed.show .btn.messenger{
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.dbd-logo{
  width: 100%;
  max-width: 188px;
  margin-top: 30px;
  padding-right:20px;
}
.dbd-logo img{
  width: 100%;
}

.button-fixed,
.footer .followus.lg .group{ 
  opacity: 0;
  transition: all 0.35s;
}
.scrolling .button-fixed,
.scrolling .footer .followus.lg .group{opacity: 1;}

@media (max-width:1680px){
  .footer .cols-left{
    width: 500px;
  }
  .footer .cols-right {
    width: calc(100% - 500px);
  }
}

@media (max-width:1440px){
  .footer .cols-right{
    padding: 20px 50px 0px 50px;
  }
  .footer-copyright{
    padding: 20px 50px;
    margin: 0 -50px;
  }

  .contact-box{
    width: 300px;
    padding-left: 30px;
    padding-right: 30px
  }
  .footer-links {
    width: calc(100% - 300px);
  }

  .footer h5{
    margin: 40px 0 15px;
  }

  .contact-box h3{
    margin-bottom: 5px
  }
  .footer-infos{
    padding-top: 55px;
  }
  .footer-infos h4{
    font-size: 25px;
    margin: 20px 0;
  }

  .followus.lg .icons,
  .button-fixed .btn{
    width: 65px;
    height: 65px;
  }

}

@media (max-width:1366px){
  .footer .cols-left {
    width:460px;
  }
  .footer-infos{
    width: 320px
  }
  .footer .cols-right{
    width: calc(100% - 320px);
  }
}

@media (max-width:1280px){
  .contact-box{
    margin-left: 30px;
    margin-right: -20px;
  }
}

@media (max-width:1199px){ 
  .footer-wrapper{
    flex-direction: column;
  }
  .contact-box{
    width: 100%;
    margin:30px 0 40px;
  }

  .footer-links{
    width: 100%;
  }

  .footer-infos{
    padding-top:50px;
    margin-top: 0;
  }
  .followus.lg{margin: 0; }
  .followus.lg .icons{margin: 0;}
  .followus.lg .icons, .button-fixed .btn{
    width: 55px;
    height: 55px;
  }
  .footer .followus.lg .group{gap: 10px;}
}

@media (max-width:991.98px){
  .footer{
    flex-direction: column;
  }
  .footer .cols-left,
  .footer .cols-right{
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }

  .footer-infos{
    width: auto;
    padding: 50px 0;
  }
  .footer-copyright{
    padding-left: 50px;
    padding-right: 50px;
    margin: 0 -50px;
  }

  .footer h5{
    margin-top: 30px;
  }

  .footer-infos .followus.lg{height: 0;}
  .button-fixed,
  .footer .followus.lg .group{
    bottom: 50px;
    opacity: 0; 
  } 

  .followus.lg .icons, .button-fixed .btn{
    width: 45px;
    height: 45px;
  }
 
}

@media (max-width:576px){
  .footer{font-size: 13px;}
  .footer .cols-left,
  .footer .cols-right{
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-copyright{
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 -20px;
  }

  .footer-infos .logo{
    width: 130px;
  }
  .footer-infos h4{
    font-size: 18px;
  }
  .followus{margin: 0 -5px;}
  .followus .icons {
    width: 22px;
    height: 22px;
    margin: 0 5px;
  }
}
@media (max-width:400px){
  .footer-links .col-4{
    width: 50%;
  }
}
