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

html,body{
  padding: 0;
  margin: 0; 
  height: 100%; 
  scroll-behavior:unset !important
}  

body{      
  margin:0; 
  padding:0;  
 
  position: relative;
  overflow-x: hidden;
  background: var(--bs-body-bg);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}
  
:root {     
  --bs-body-color:#000;
  --bs-body-bg:#FFFCEF;
  --bs-body-text-align:left;
  --bs-body-font-weight:var(--fw-400);
  --bs-body-line-height:1.55; 
  --bs-body-font-size:var(--fs-14);
  --bs-body-font-family:"Noto Sans Thai", sans-serif; 
  --bs-link-hover-color:inherit; 
      
  --animation-primary: 0.4s cubic-bezier(.75, 0, .25, 1);
  --animation-navigation-fade: 0.3s ease-in-out; 

  --h1:var(--fs-30);
  --h2:var(--fs-30); 
  --h3:var(--fs-20);
  --h4:var(--fs-18);
  --h5:var(--fs-16);
  --h6:var(--fs-14);

  --fs-30:30px;
  --fs-20:20px;
  --fs-18:18px;
  --fs-16:16px;
  --fs-14:14px;
  
  --error:#FF696D;
  --color-primary:#D4B878; 
 
  --navbar-brand:130px;   
  --header-height:50px;  
  --input-h:40px;

  --fw-200:200;
  --fw-300:300;
  --fw-400:400;
  --fw-500:500;
  --fw-600:600; 
  --fw-700:700;
  --fw-800:800;
  --fw-900:900;  
 
}     
 
@media (max-width:991.98px) {
  :root{
    --header-height:80px;  
    --navbar-brand:140px;   

    --fs-30:24px;
    --fs-20:16px;
  } 
}

@media (max-width:575px) {
  :root{
    --header-height:60px;  
    --navbar-brand:120px;   

    --fs-30:18px;
    --fs-20:15px;
  } 
}

.modal-open{
  touch-action: none; 
  overscroll-behavior: contain;
}
  
.modal-backdrop{
  overscroll-behavior: contain;
  --bs-backdrop-opacity: 0.6;
  --bs-backdrop-zindex: 1051; 
}
 
a{
  color:inherit;
  text-decoration: none; 
  transition: all 0.2s ease-in-out; 
}
a:hover{ text-decoration: none;   } 
.form-control,
.form-select{ 
 -webkit-appearance: none; 
  padding:0 15px; 
  font-size:12px;
  font-weight:var(--fw-400);    
  border:1px solid #E1E1E1;   
  height:var(--input-h);
  line-height:calc(var(--input-h) - 0px);  
  background-color:#fff; 
  border-radius:50px;   
 
    -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:not(.selected){color:rgba(88, 88, 91, 0.5);}
.form-control:focus,
.form-select:focus{ 
  box-shadow: none;
  outline: 0;
}

.form-control.bg-gray{
  background-color: #F0F0F3;
  border-color: #DBDBDB;
}
.fs-14{font-size: 14px;}
.fs-16{font-size: var(--fs-16) !important;}
.fs-18{font-size: var(--fs-18);}
.fs-20{font-size: var(--fs-20);}
textarea.form-control{
  height: 110px;
  line-height: normal; 
  padding-top: 10px;
}
 
input[type="text"]::placeholder {   
  opacity:0.5;  
  color:#000;
}

input[type="text"]:-ms-input-placeholder {   
  opacity:0.5;  
  color:#000;
}

input[type="text"]::-ms-input-placeholder {   
  opacity:0.5;  
  color:#000;
} 
.form-control.disabled,
.form-control:disabled, 
.form-control[readonly],
.form-select.disabled,
.form-select:disabled, 
.form-select[readonly] {
background-color: #EDEDED !important;
border-color: #EDEDED;
color: #BDBDBD;
} 
 
.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='%238F8F8F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
 
  background-size: 12px;
  background-position: 10px .35rem center;
  padding-right: 25px;
} 
   
.form-check {
  position: relative;
  padding-left:0;
  display: flex; 
  gap: 10px; 
} 
.form-check-input{
  --bs-form-check-bg:transparent;
  width:18px;
  height:18px; 
  border-width:1.5px;
  position: relative;
  margin: 3px 0 0; 
  margin-left: 0 !important; 
  flex-shrink: 0;
  border-color:#DBDBDB;
  background-color:#fff;
  box-shadow: none !important;
  border-radius: 2px;
}
.form-check-input[type=checkbox],
.form-check-input[type=radio].square{
  border-radius: 4px; 
}
.form-check-input[type=radio],
.form-check-input[type=checkbox].circle{
  border-radius: 50%;    
}
 
.form-check-input[type=radio]:checked,
.form-check-input[type=checkbox].circle:checked {
  background-color: transparent;  
  border-color:#815AAF;
  background-color:#fff;
}
.form-check-input[type=radio]:checked{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.8' fill='%23815AAF'/%3e%3c/svg%3e"); 
}
.form-check-input[type=checkbox].circle:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='1.8' fill='%23815AAF'/%3e%3c/svg%3e"); 
}
.form-check label{
  margin-bottom:0; 
  font-size: var(--fs-16);    
  padding-top: 1px;
}
.form-check-input:checked[type=checkbox], 
.form-check-input.rounded:checked[type=radio]{
  background-color:transparent; 
}

.form-check-input:checked[type=checkbox],
.form-check-input:checked[type=radio].square{
  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='1.4' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border-color:#003522;
  background-color:#003522;
} 
.form-check-label a{
  text-decoration: underline;
}
.form-check-label a:hover{
  color: var(--color-primary);
}
label.title,
.form-group h6{  
  padding-bottom:0; 
  font-size:inherit;
  font-weight: var(--fw-400);  
  -webkit-text-stroke: 1.05px currentColor;
  display: block;   
  margin-bottom: 8px;  
  font-size:var(--fs-16);
} 

.form-group{
  position: relative;
}
.form-group .group{
  position: relative;
  display: block;
} 
.form-group .icons.left,
.form-group .icons.right{
  position: absolute;
  top: 0 !important;
  bottom: auto;
  height:var(--input-h) !important;
  right: 11px;  
  width:22px !important;  

  transition: none;
  z-index: 1;
} 
  
.form-group .icons.left{
  left: 14px;
  right: auto;
}
 
.form-group .icons.left + .form-control,
.form-group .icons.left + .form-select{
  padding-left: 45px;
}
.form-group .icons.right + .form-control{
  padding-right: 40px;
}
 
.form-group  .error[style] + .icons{bottom: 0 !important;} 
.form-group .star{color: var(--error);}
.form-group span.error{
  color:var(--error); 
  padding-top: 5px;  
  display: flex;
  font-size: 12px; 
  gap: 2px;
  margin-top: 2px;
} 
.form-control.error ,
.form-select.error {
  border-color: #FFA0A2;
  outline: 0; 
}
.btn{
  --btn-h:32px; 
  position: relative; 
  padding:2px 20px 0;       
  height:var(--btn-h); 
  line-height:calc(var(--btn-h) - 0px);  
  transition: all 0.25s;    
  font-weight: var(--fw-600);   
  display: inline-flex;
  align-items: center;
  justify-content: center;  
  font-size: var(--bs-body-font-size);   
  gap:8px;    
  max-width: var(--max-width);
  letter-spacing:1px;
  --max-width:none;
  --bs-btn-border-width:1px;
  --bs-btn-border-radius:50px; 

  --bs-btn-color:#F6F0D7; 
  --bs-btn-bg:#D4B878; 
  --bs-btn-border-color:#D4B878; 

  --bs-btn-hover-color:#D4B878; 
  --bs-btn-hover-bg:transparent;
  --bs-btn-hover-border-color:#D4B878; 

  --bs-btn-active-color:var(--bs-btn-hover-color); 
  --bs-btn-active-bg:var(--bs-btn-hover-bg);
  --bs-btn-active-border-color:var(--bs-btn-hover-border-color);

  --bs-btn-icon-color:var(--bs-btn-color);
  --bs-btn-hover-icon-color:var(--bs-btn-hover-color); 
 
}   
.rounded-16{ border-radius: 16px !important;}
.rounded-12{ border-radius: 12px !important;}
.rounded-8{ border-radius: 8px !important;}
.rounded-4{ border-radius: 4px !important;}

.btn path[fill]{fill: var(--bs-btn-icon-color)!important;}
.btn path[stroke]{stroke: var(--bs-btn-icon-color)!important;}
.btn line[stroke]{stroke:var(--bs-btn-icon-color)!important;}

.btn:hover path[fill],
.btn.active path[fill],
.btn:active path[fill]{fill: var(--bs-btn-hover-icon-color) !important;}

.btn:hover path[stroke],
.btn.active path[stroke],
.btn:active path[stroke]{stroke:var(--bs-btn-hover-icon-color)!important;}

.btn:hover line[stroke],
.btn.active line[stroke],
.btn:active line[stroke]{stroke:var(--bs-btn-hover-icon-color)!important;}
 
.btn{ 
  align-items: center;
  justify-content: center; 
}  
.btn span,
.btn .icons{
  position: relative; 
  z-index: 15;
}  
 
.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.disabled, .btn:disabled{  pointer-events: none;} 
  
.buttons{
  display: flex; 
  text-align: center; 
  justify-content: center;
  gap:15px;  
  padding:30px 0 0;
}  

.buttons.flex-column{
  align-items: center;
  gap:10px; 
}
svg path,
svg rect,
svg line,
svg circle,
svg polygon{  
 transition: all 0.25s;
} 
 
 
/*==================================================
    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;
  
  --size:24px;
  flex-shrink: 0;
  width: var(--size) !important;
  height: var(--size) !important;
  
}
.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.35s 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; }

img.icons,
svg.icons{ 
  object-fit: contain;
  object-position:center;
  flex-shrink: 0;
} 
.icons.w-16{--size:16px;}  
.container-fluid{ 
  --padding-x:50px; 
  max-width:100%;
  padding-left:var(--padding-x);
  padding-right:var(--padding-x); 
  position: relative;
  z-index: 9;    
}

.container{ 
  --padding-x:50px; 
  max-width: calc(1600px + (var(--padding-x) * 2));
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  position:relative;
  z-index:9; 
}
 
.section{
  display: block;
  position: relative;  
  overflow: hidden;
  --padding-top:50px;
  --padding-bottom:50px;

  padding: var(--padding-top) 0 var(--padding-bottom);

  background-color: var(--bs-body-bg);
}

.section-body{
  --padding-top:40px;
  flex: 1 1 auto; 
}
 
.section-body.full-h {
  display: flex;
}
  
.section-target{
  position: absolute;
  top: calc(var(--header-height) * -1);
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
 
.compensate-for-scrollbar{ margin-right: 0 !important } 
.compensate-for-scrollbar .header{ right: 0 } 
body.fancybox-active{ overflow: visible !important;padding-right: 0 !important  }
 
@media (max-width: 1280px) { 
  .container-fluid,
  .container{
    --padding-x:40px;
  }
}
@media (max-width: 1280px) { 
  .section-body{
    --padding-top:30px;
  }
   
  .section{
    --padding-top:40px;
    --padding-bottom:40px;
  }
}
 
@media (max-width: 1024px) {
  .container,
  .container-fluid{
    --padding-x:30px;
  }     
 
}
 
@media (max-width: 670px) {
  .container,
  .container-fluid{
    --padding-x:20px;
  } 
  .section{
    --padding-top:30px;
    --padding-bottom:30px;
  }
  .section-body{
    --padding-top:20px;
  }
  
}
 

/*==================================================
    Header Setup
==================================================*/   
.fw-light{font-weight: var(--fw-300) !important;}
.fw-400{font-weight: var(--fw-400) !important;}
.fw-500{font-weight: var(--fw-500) !important;}
.fw-600{font-weight: var(--fw-600) !important;}   
.fw-700{font-weight: var(--fw-700) !important;}  
.link-underline{text-decoration: underline;}
.link-primary{color:var(--main-purple) !important;}
.link-primary:hover{text-decoration: underline;color:var(--main-purple) !important;}  

.link-primary:focus, .link-primary:hover{text-decoration-color:var(--main-purple) !important}
 

 
a[class*='link-']:hover{text-decoration: underline;}

.fs-20{font-size: var(--fs-20);}
.fs-11{font-size: 11px;}
b, strong{
  font-weight:400;
  -webkit-text-stroke: 1.05px currentColor;
  font-family: inherit;
} 
  
.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6{   
  margin:0;    
  font-weight:400;
  font-style: normal;    
  line-height:1.45;    
  position: relative;     
  -webkit-text-stroke-width: 0px;
  /* -webkit-text-stroke-width: 1.05px;
  letter-spacing:0.5px; */
}   

.h1,h1{font-size: var(--h1); letter-spacing: 5px;}
.h2,h2{font-size: var(--h2);letter-spacing: 5px;}
.h3,h3{font-size: var(--h3);}
.h4,h4{font-size: var(--h4);}
.h5,h5{font-size: var(--h5);}
.h6,h6{font-size: var(--h6);} 

.text-underline{text-decoration: underline;}   
.nowrap{ white-space: nowrap; }    
  
.header,
.navbar-brand,
.navbar-brand img{
  transition: all 0.3s;
}
.header{
  position: fixed;
  top: 0;
  left:0;
  right: 0; 
  z-index: 1020;      
  display: block;  
  padding:0;  
  height: var(--header-height);     
  background-color:#fff; 
}   
 
.header .container,
.header .container-fluid{  
  display: flex;    
  align-items:center;     
  z-index: 400;
  position: relative; 
  height: 100%; 
} 

 
.navbar-brand{ 
  padding: 0;   
  flex-shrink: 0;
  z-index: 200;    
  margin: 0 0 0 -5px;
  height: 100%;
  position: relative;
  display: flex; 
  align-items: center;
  justify-content: center; 
 
}
.navbar-brand a{
  display: block;
}
.navbar-brand img,
.navbar-brand svg{ 
  height: auto;   
  margin: 0;
  position: relative;
  z-index: 10;
  width: var(--navbar-brand); 
} 
 
.dropdown [data-bs-toggle]{
  display: flex;
  align-items: center;
  gap:5px
} 

.dropdown:hover .text-white[data-bs-toggle]:after,
.dropdown .text-white[data-bs-toggle].show:after{
  transform: rotate(-180deg);
}
 
.dropdown-menu{
  --bs-dropdown-border-radius:0 0 8px 8px;
  --bs-dropdown-menu-border-radius:0; 
  --bs-dropdown-border-width:0px;
  --bs-dropdown-bg:#fff;  
  --bs-dropdown-padding-x:0;
  --bs-dropdown-padding-y:6px;
  --bs-dropdown-spacer:0;
  --bs-dropdown-min-width:100%;
  --bs-dropdown-link-hover-bg:transparent; 
  --bs-dropdown-border-width:0;
  --bs-dropdown-font-size:14px;
  
  opacity: 0;
  border: 0;
  padding: 0;
  margin-top: 0 !important;
  display: block;
  pointer-events: none;
  transition: all 0.35s;

  box-shadow: none;
  top: 100%;   
  width: auto; 
  overflow: hidden;

  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.06); */
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.06)); 
  
}  
.dropdown-menu .scrollbar-inner{
  max-height: 213px; 
}
.dropdown-menu.right{
  left: auto;
  right: 0;
}
.dropdown-menu .nav{
  width: 100%;
}
.dropdown-menu li{cursor: pointer; width: 100%;} 
  
.dropdown:hover > .dropdown-menu,
.dropdown > .dropdown-menu.show{
  opacity: 1;
  top: 100%;
  pointer-events: all;
}
.dropdown .dropdown-menu.onclick {
  opacity: 0;
  pointer-events: none;
  --bs-dropdown-spacer:2px;
}
.dropdown .dropdown-menu.onclick.show,
.form-select .dropdown-menu.onclick.show{
  opacity: 1;
  pointer-events: all;
}
.dropdown-menu li{
  position: relative;
  z-index: 10; 
  margin:  0;
}

.dropdown-menu li > a{ 
  display: flex;
  position: relative;   
  gap: 10px;
  align-items: center; 
  white-space: nowrap; 
 
  padding:10px 20px;   
}  
.dropdown-menu li > a .arrow{
  margin-left: auto;
  transform: rotate(-90deg);
  margin-right: -5px;
} 
.dropdown-menu.arrow-top{
  overflow: visible;
  margin-top: 10px !important;
}
.dropdown-menu.arrow-top:before{
  content: '';
  position: absolute;
  top: -8px;
  left: 13px;

  width: 0; 
  height: 0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  
  border-bottom: 8px solid #fff;
}

.dropdown-menu.right.arrow-top:before{
  left: auto;
  right: 13px;
}
.dropdown-menu.center.arrow-top:before{
  left: 50%;
  margin-left: -8px; 
}
.dropdown-menu.center{
  left: 50%;
  margin-left: calc(var(--width)/2 * -1);
}
.select-dropdown .dropdown-menu{
  border-radius: 10px;
}
.select-dropdown .dropdown-menu li > a{
  padding:5px 10px;
  font-size: 12px;
}
.select-dropdown .icons{--size:20px}
.select-dropdown .dropdown-menu .icons{--size:18px}
.avatar{
  --avatar-size:40px;
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} 
 
.arrow{
  width: 12px;
  height: 12px;
  display: block;

  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='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
} 
.line-animate{ 
  height:1px;
  position: relative;
}
.line-animate:before{
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  display: inline-block;
  top: 0;
  background:#fff;
 
  transition: all 0.8s;
  transition-delay: 0.04s;
} 
.line-animate.center:before{
  left: 50%;
  transform: translateX(-50%);
}
.line-animate.animated:before {width: 100%;}
  
.navbar-menu{
  display: block !important;
  opacity: 1;

  pointer-events: none;
  background-color: #fff;
}
.navbar-menu.show,
.navbar-menu.collapsing{
    opacity: 1;
    pointer-events: all;
  }
.nav-menu li a{text-transform: uppercase;}
@media (min-width:992px) {
 
  .offcanvas-menu{display: none;}
  .navbar-header{
    background-color: #fff;
    position: relative;
    z-index: 10;
  }
  .navbar-menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px !important;
    transition: all 0.5s;
    z-index: 5;
  }

  .navbar-menu.show,
  .navbar-menu.collapsing{
    top: 100%; 
  }
  .nav-menu{ 
    width: 100%;
    height:50px;
    gap:20px;
    justify-content:space-between;
  }
  .nav-menu li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #000;
    padding: 0;
    position: relative;
    flex-direction: column;
    font-size: 12px;
  }
  .nav-menu li a:hover {color: #D4B878;}
  .nav-menu a .line-animate{
    width: 100%;
  }
  .nav-menu a .line-animate:before{
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
    transition-delay: 0.02s;
  }
  .nav-menu li.active a .line-animate:before ,
  .nav-menu a:hover .line-animate:before {width: 100%;}
}
 
@media (min-width:1441px) {
  .nav-menu li a{font-size: 14px;}
}
@media (max-width:991.98px) {
  .header{
    --btn-menu-size:90px;
  }
  .navbar-header{
    background-color: #fff;
    position: relative;
    z-index: 1000;
  }
  .navbar-menu.show,
  .navbar-menu.collapsing{
    top:0; 
  }
  .navbar-menu{
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    height: 100% !important; 
    overflow: hidden;
    transition: all 0.9s;
  }
  .nav-menu{
    flex-direction: column;
    text-align: center; 
    justify-content: space-between;
    margin: auto auto;
    padding: 15px 0;
    gap:20px;
  }
  .nav-menu li a{
    font-size: 18px;
    text-align: center;
    display: block;
  } 

  .h1,h1{letter-spacing:2px;}
  .h2,h2{letter-spacing:2px;}
}
@media (max-width:670px) {
  .nav-menu li a{
    font-size: 16px;
  }
}
 
.btn-menu{
  --bs-btn-bg:transparent;
  --bs-btn-hover-bg:transparent; 
  --bs-btn-border-width:0; 
  --bs-btn-icon-color:#fff;
  --bs-btn-hover-icon-color:var(--bs-btn-icon-color);
  height: var(--header-height);
  width: var(--header-height);
  padding: 0 !important;  
  z-index: 1060; 
  border-radius: 0; 
  overflow: visible;   
  flex-shrink: 0;  
  margin-left: auto;
  margin-right: -15px;
   
}
   
.btn-menu .group{
  display: block;
  position: relative;
  width:22px;
  height:14px;
  margin: 0 auto 0
}
.btn-menu .group span{
  height: 1.5px;

  position: absolute;
  left: 3px;
  right: 0;
  border-radius: 10px;
  -webkit-transform-origin: 25px, 1px;
  -ms-transform-origin: 25px, 1px;
  transform-origin: 25px, 1px
}
.btn-menu .group span:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background:#000;
  transition: all 0.25s ease-in-out;
  border-radius: 0;
} 
 
.btn-menu .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-menu .group span:nth-child(2) {
    top: 6px; 
    -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-menu .group span:nth-child(3) {
    top: 12px;
    -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-menu .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-menu .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-menu .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(4px, -4px, 0);
  transform: rotate(-45deg) translate3d(4px, -4px, 0)
} 
@media (max-width:991.98px) {
  .btn-menu{width:30px;    margin-right: -5px;}
}


/*==================================================
   Menu Slider
==================================================*/   
.offcanvas-menu{
  --bs-offcanvas-width:100%;
  --bs-offcanvas-bg:var(--color-primary);

  --bs-offcanvas-border-width:0;
  --bs-offcanvas-padding: 30px; 
  --bs-offcanvas-transition: transform 0.5s ease-in-out;

  top: var(--header-height) !important;
}
   
.offcanvas-menu .offcanvas-body{
  padding:var( --bs-offcanvas-padding);
  color: #fff;
  display: flex;
}
/*==================================================
   Section
==================================================*/  
.page:not(.page-fullpage){
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height); 
  min-height: 100%;
  background:var(--bs-body-bg);
  overflow: hidden;
} 
.page-fullpage{
  display: flex;
  flex-direction: column;
}
.preload{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:var(--bs-body-bg);
  z-index: 1090; 
  display:flex;   
} 
   
.loader {
  width: 34px;
  height:34px;
  margin:  auto;
  display: block;
  border-top: 3px solid var(--color-primary);
  border-right: 3px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  border-left: 3px solid rgba(0, 0, 0, 0.2);
  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;
}
 
.background-color{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; 
  pointer-events: none; 
  background: var(--bg);
  --bg:transparent;
}
.background-color + .container{
  position: relative;
  z-index: 100;
}
@media (max-width:1200px) {
  .background.parallaxie{
    background-attachment: scroll !important;
    background-position: center center !important;
  }
} 
.card{ 
  position: relative; 
  display: flex;
  flex-direction: column;
  height: 100%; 
  --bs-card-border-width:0;
  --bs-card-spacer:12px 15px; 
  --bs-card-border-radius:8px; 
}
.card-photo{
  position: relative;
  overflow: hidden;
  display: block;   
  border-radius: var(--bs-card-border-radius);
} 
.card-photo .photo{
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.45s ease 0s;   
}
.card-photo  img{
  width: 100%
}
 
.card-body{
  color: inherit;
  padding: var(--bs-card-spacer);
}   
.card h3{ 
  transition: all 0.25s;
} 
.card p{ 
  margin: 0;
}
.card p.text-light{color: var(--text-light-gray-purple) !important;}
  
.card-link{
  position: absolute !important;
  top: 0;
  left: 0; 
  right: 0;
  height: 100%;
  z-index: 100;
  z-index: 40 !important;
}

.textrow{
  position: relative;
  overflow: hidden;
  display: block;
}
.textrow > span{
  display: inline-block;
}  
 
 

 

.hgroup{
  display: inline-flex;  
  flex-direction: column; 
  position: relative;
  padding-bottom:40px;
}
  
.boxed{
  margin:0 auto;
  width: 100%;
  max-width: var(--width);
  --width:100%;
}    
.boxed.rounded{border-radius: 30px !important;}

.fp-overflow{
  height: 100%;
  display: flex; 
}
.section-fullpage{
  overflow: hidden;
  padding: 0 ;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  position: relative;
  opacity: 1; 
 
}
.section-fullpage .fp-overflow{
  padding-top: var(--header-height);
}
/* .section-fullpage .fp-overflow:before{
  content: '';
  position: absolute;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: 100%; 
  background-color: #fff;
} */

/*==================================================
   banner
==================================================*/ 
.section-banner{height: 100vh;padding: 0 !important;}
.swiper-banner{
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-slide{
  height: 100%;
  position: relative;
  width: 100%; 
}
.swiper-banner .swiper-slide .background:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%; 
  background: linear-gradient(180deg, #737373 0%, rgba(115, 115, 115, 0) 100%);
  mix-blend-mode: multiply;
  opacity: 0.3;
}

.banner-caption{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top:110px;
}
.banner-caption .logo{
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 25px;
  position: relative; 
}
.banner-caption h3{
  font-size: 14px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.banner-caption h3.text-light{color: #F6F0D7 !important;}
.section-about{
  background-color: #FFFCEF; 
  padding: 0 0 80px 0;
  display: flex;
  overflow: visible;
}

.section-about .background{
  background-image: url(../img/thumb/text.svg);
  background-size: 1440px;
  background-position: center center;
}

.section-about .container{
  display: flex;
  flex-direction: column;
  justify-content: center; 
}
.section-about .boxed{
  margin: auto;
}
.section-about .key{
  display: flex;
  margin-top: -22px;
  margin-bottom: 40px;
  justify-content: center;

}
.section-about .key img{
  width:58px;
  height: auto;
  display:block;
}

.section-about .logo{
  display: flex; 
  justify-content: center;
  margin-bottom: 30px;
}
.section-about .logo img{
  width:130px;
  height: auto;
  display:block;
}

.starting-price{
  font-size: 20px;
}
.starting-price .price{
  color: #D4B878;
  font-size:50px;
  font-weight: 700;
  display: inline-flex;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
  font-family: "Playfair Display", serif;
}

@media (max-width:1280px) {
  .banner-caption{ 
    padding-top:90px;
  }
  .banner-caption .logo{
    width: 220px;
  }
}

@media (max-width:991.98px) { 

  .section-about .background{background-size: 125%;}
  .banner-caption{ 
    padding-top:140px;
  } 
}


@media (max-width:670px) {
  .section-about{padding-bottom: 50px;}
  .section-about .key{
    display: flex;
    margin-top: -18px; 
  }
  .section-about .key img{width: 48px;}  

  .section-about .logo img{width: 110px;}

  .starting-price{font-size: 18px;}

  .banner-caption{ 
    padding-top:110px;
  }
  .banner-caption .logo{
    width:180px;
    margin-bottom: 15px;
  }
  .banner-caption h3{
    font-size: 12px;
  }
}
/*==================================================
   Article
==================================================*/ 
.article h1{margin-bottom: 13px; padding-bottom: 10px;}
.article h2,
.article h3{margin-bottom: 18px;}

.article p{margin-bottom: 20px;}
.article p:last-child{margin-bottom: 0;}
.article p a,
.article table a{
  text-decoration: underline;
}

/*==================================================
   section - article
==================================================*/ 
.section-facilities-group{
  position: relative;
}
.section-article{
  --bg:#917A61;
  --color:#F6F0D7;
  color:var(--color);
  background-color: var(--bg);
  padding: 0 !important; 
}
 
.section-article .row>div{ 
  display: flex;
  position: relative;
  min-height: 650px;
}
.section-article .article{
  padding: 50px;
  margin: auto;
  width: 100%;
  max-width: 650px;
}
.section-article .article h2{
  padding-bottom: 15px;
}

.swiper-gallery{
  height: 100%;
  width: 100%;
}

.swiper-gallery>.swiper-slide{
  width: 100%;
  height: 100%;
}
:root{
  --swiper-pagination-color:transparent;
  --swiper-pagination-bullet-size:8px;
  --swiper-pagination-bullet-inactive-color:#F5F0D6;
  --swiper-pagination-bullet-inactive-opacity:1;
  --swiper-pagination-bottom:20px;
}
 
.swiper-pagination-bullet{
  border: 1px solid var(--swiper-pagination-bullet-inactive-color);
}

 
.section-lifestyle{
  --padding-top:100px;
  --padding-bottom:80px;
}

.card-infos{
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
.card-infos h3{
  display: flex;
  align-items: center;
  gap: 0 15px;
  text-transform: uppercase;
  margin-bottom:10px;
}
.card-infos h3 .icons{--size:42px}
.card-infos .table{
  margin-bottom: 0;
}
.card-infos .table p{
  margin: 0;
  line-height: 1.2;
}

.card-infos .table p small{
  font-size: 10px;
  color: #917A61;
}
.card-infos .table>:not(caption)>*>* {
  padding: .35rem 0;
}

.section-map{
  position: relative;
  height: 500px;
  padding: 0 !important;
}
.section-map iframe{
  width: 100%;
  height: 100%;
}
@media (max-width:1440px) {
  .section-article .row>div{min-height: 45vw;}
}

@media (max-width:1199px) {
  .section-article .article{
    padding: 50px 35px 60px;
  }
  .section-article .article h2{
    padding-bottom: 0;
  }
}

@media (min-width:767px) and (max-width:991.98px) {
  .section-article .article h2{font-size: 20px; letter-spacing: 1px;}
}

@media (max-width:991.98px) {
  .section-lifestyle{
    --padding-top:50px;
    --padding-bottom:60px;
  }
  .section-article .row{
    flex-direction: column-reverse;
  }
  .section-article .row>div{min-height: 0;}

  .section-article .col-gallery{height:65vw;}
}

@media (max-width: 575px) {
  .section-article .article {
      padding:40px 25px;
  }  

}
/*==================================================
   section - register
==================================================*/ 

.section.bg-color{ 
  background-color: var(--bg);
  color:#F6F0D7;
}
.section-register{
  --padding-top:80px;
  --padding-bottom:80px; 
}

.section-contact{
  text-align: center;
  font-size: 12px;
  --padding-top:60px;
  --padding-bottom:80px; 
}
.section-contact h4{
  font-size: 12px;
  letter-spacing:2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom:5px;
}
.section-contact .logo{width: 150px; height: auto;}
.input-group .select-value{
  padding: 0 7px;
  position: relative;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  cursor: pointer;
}
.input-group .select-value:after{
  content: '';

  width: 10px;
  height: 10px;
  margin-left: 4px;
  display: block;
  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='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.input-group input.form-control{
  border-left: 0;
}
.footer{
  padding:15px 0;
  background-color: #1E1E1E;
}
.footer .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #F6F0D7;
}

.footer p{
  margin: 0;
  font-size: 10px;
}

@media (max-width: 767px) {
  .card-infos{padding-bottom: 0;}
  .card-infos h3 .icons {--size:38px;}

  .section-register{
    --padding-top:60px;
    --padding-bottom:60px; 
  }
  .footer .container{
    display: flex; 
    flex-direction: column; gap: 10px;
    max-width: 550px;
    margin: 0 auto;
  }
  .footer{text-align: center;}
}

@media (max-width: 575px) {
  .section-register{
    --padding-top:50px;
    --padding-bottom:50px; 
  }
  .card-infos h3 .icons {--size:32px;}
  .card-infos h3{gap: 0 10px;}

  .section-contact { 
    --padding-top: 40px;
    --padding-bottom: 50px;
}
}
