* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #c19a5b;
  --secondary: #000;
  --light:#F7F4EF;
  --title: #161616;
  --text: #5a5650;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 141rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Inter', sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
h1,h2,h3,h4,h5,h6,.title {
  font-family: 'Cormorant Garamond', serif;
}

body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon {
  transition: all 0.3s;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
p.center .btn{
  margin-left: auto;
  margin-right: auto;
}
p.center.loading{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
}
p.center.loading::after{
  content: '';
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 3px solid rgba(193, 154, 91, 0.25);
  border-top-color: var(--primary);
  animation: load_more_spin 0.8s linear infinite;
}
@keyframes load_more_spin{
  to{
    transform: rotate(360deg);
  }
}

.swiper_btns {
  gap: 4rem;
  display: flex;
}
.swiper_btns div {
  width: 7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: var(--primary);
  border: 1px solid var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/swiper_right.svg) no-repeat center / 32%;
  filter: contrast(0) brightness(100);
}
.swiper_btns div:hover {
  background-color: var(--title);
}
.swiper_btns div.swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.4);
  opacity: 0.8;
}
.swiper_btns div.swiper-button-disabled:after{
  filter: contrast(0) brightness(0);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 170rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
  background-color: var(--primary);
}
.swiper_btns.middle div:hover {
  background-color: var(--title);
}
.swiper_btns.middle div.swiper-button-disabled {
  opacity: 1;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}


header {
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
  padding-bottom: 1.6rem;
}
header .content{
  max-width: 180rem;
  border-bottom: 1px solid #191919;
}
header.style, header.sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .logo {
  display: block;
  position: relative;
}
header .logo img {
  display: block;
  width: 20.4rem;
  height: auto;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav{
  margin-left: auto;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 3.8rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 9.2rem;
  transition: all 0.3s;
  color: #161616;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
  border-radius: 5px;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header .btns {
  gap: 1.4rem;
  display: flex;
  align-items: center;
  margin-left: 11.3rem;
}
header .btns .btn_search {
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon_search.svg) no-repeat center / 38.64%;
}
header .btns .btn_menu {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / 52.3%;
}
.btn{
  line-height: 5rem;
  padding: 0 3.3rem;
  border-radius: 20rem;
  background-color: var(--primary);
  color: white;
  transition: all 0.3s;
  display: flex;
  text-align: center;
  justify-content: center;
  width: max-content;
  cursor: pointer;
}
.btn:hover{
  background-color: #161616;
}
.border_btn{
  line-height: 5.2rem;
  padding: 0 2.9rem;
  border-radius: 20rem;
  background-color: transparent;
  color: white;
  border: 1px solid rgba(25, 25, 25, 0.36);
  color: #161616;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  text-align: center;
  width: max-content;
  justify-content: center;
  cursor: pointer;
}
.border_btn.white{
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.border_btn:hover{
  background-color: #161616;
  color: white;
  border-color: #161616;
}
header .btns .btn_search{
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
  text-indent: -99999px;
  margin-right: 1.3rem;
  background: url('../img/header_search.svg') no-repeat center/contain;
}
header .btns .btn_lang{
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  text-indent: -99999px;
  margin-right: 1rem;
  background: url('../img/header_lang.svg') no-repeat center/contain;
}
.tcon .title{
  font-size: 7.6rem;
  line-height: 7.3rem;
}
.tcon .title em{
  font-style: italic;
  color: #c19a5b;
}
.tcon h2{
  font-size: 4.8rem;
  line-height: 6.2rem;
  font-weight: 500;
}
.tcon.white h2{
  color: #fff3e4;
}
.tcon > p{
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: var(--text);
}
.tcon.white > p{
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}
.tcon > em{
  color: var(--primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.tcon.line > em{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  letter-spacing: 0.1rem;
}
.tcon.line.center > em{
  justify-content: center;
}
.tcon.line > em:before{
  content: "";
  width: 3.8rem;
  height: 1px;
  background: var(--primary);
  display: inline-block;
}
.tcon > em + h2{
  margin-top: 1.7rem;
}
.tcon > h2 + p{
  margin-top: 1.3rem;
}

.footer_contact{
  padding: 17rem 0;
  background: linear-gradient(to bottom,#4F371F,#836D5B);
  position: relative;
  overflow: hidden;
}
.footer_contact h2{
  max-width: 62.5rem;
}
.footer_contact .tcon p{
  max-width: 49.4rem;
}
.footer_contact .bg_imgs{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer_contact .bg_imgs .img{
  position: absolute;
  border-radius: 2.2rem;
  will-change: transform, translate;
  cursor: pointer;
  box-shadow: 0 1.6rem 4.5rem rgba(20, 10, 0, .28);
  transform: perspective(90rem);
  transition: transform .8s cubic-bezier(.22, .68, .2, 1), box-shadow .6s ease;
}
.footer_contact .bg_imgs .img:hover{
  z-index: 3;
  box-shadow: 0 3.2rem 8rem rgba(20, 10, 0, .5);
}


.footer_contact .bg_imgs .img img{
  transform: scale(1.08);
  transition: filter .6s ease;
}
.footer_contact .bg_imgs .img:hover img{
  filter: brightness(1.08) saturate(1.05);
}
@keyframes fc_float_1{
  0%, 100%{ translate: 0 -.8rem; }
  28%{ translate: .7rem .3rem; }
  55%{ translate: -.5rem .9rem; }
  80%{ translate: -.9rem -.3rem; }
}
@keyframes fc_float_2{
  0%, 100%{ translate: -.6rem .5rem; }
  25%{ translate: .8rem -.6rem; }
  52%{ translate: .3rem 1rem; }
  78%{ translate: -1rem -.4rem; }
}
@keyframes fc_float_3{
  0%, 100%{ translate: .7rem .6rem; }
  33%{ translate: -.9rem -.3rem; }
  62%{ translate: -.4rem .8rem; }
  85%{ translate: .9rem -.7rem; }
}
@keyframes fc_float_4{
  0%, 100%{ translate: -.8rem -.5rem; }
  22%{ translate: .4rem .9rem; }
  50%{ translate: 1rem -.2rem; }
  76%{ translate: -.3rem .7rem; }
}
.footer_contact .bg_imgs .img:nth-of-type(1){
  aspect-ratio: 271/190;
  top: 9rem;
  left: 11.97%;
  animation: fc_float_1 9s ease-in-out -2s infinite;
}
.footer_contact .bg_imgs .img:nth-of-type(2){
  aspect-ratio: 232/245;
  top: -2rem;
  right: 13.02%;
  animation: fc_float_2 12.5s ease-in-out -5s infinite;
}
.footer_contact .bg_imgs .img:nth-of-type(3){
  aspect-ratio: 347/257;
  bottom: 5rem;
  left: 10.93%;
  animation: fc_float_3 10.5s ease-in-out -7s infinite;
}
.footer_contact .bg_imgs .img:nth-of-type(4){
  aspect-ratio: 356/292;
  bottom: -3rem;
  right: 10.57%;
  animation: fc_float_4 13.5s ease-in-out -3s infinite;
}

footer{
  padding: 13.8rem 0 0;
  background-color: #48321A;
  color: white;
}
footer .footer_top{
  margin-bottom: 12rem;
}
footer .footer_top .col strong{
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3.3rem;
}
footer .footer_top .col ul li + li{
  margin-top: 1.7rem;
}
footer .footer_top .col ul li a{
  color: rgb(255, 243, 228,0.68);
  transition: all 0.3s;
}
footer .footer_top .col ul li a:hover{
  color: white;
}

footer .footer_top .col.col_btns{
  min-width: 26.7rem;
  margin-left: 8rem;
}
footer .footer_top .col.col_btns a{
  width: 100%;
  line-height: 6.4rem;
}
footer .footer_top .col.col_btns a + a{
  margin-top: 2.5rem;
}

footer .footer_bottom .social ul{
  display: flex;
  gap: 4.3rem;
  align-items: center;
  padding-bottom: 1.5rem;

}
footer .footer_bottom .social .logo img{
  width: 29rem;
  height: auto;
  display: block;
}
footer .footer_bottom .social ul li a{
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  text-indent: -99999px;
  background: url('../img/facebook.svg') no-repeat center/contain;
  transition: all 0.3s;
}
footer .footer_bottom .social ul li a:hover{
  transform: scale(1.1);
}
footer .footer_bottom .social ul li.instagram a{
  background-image: url('../img/instagram.svg');
}
footer .footer_bottom .social ul li.youtube a{
  background-image: url('../img/youtube.svg');
}
footer .footer_bottom .social ul li.linkedin a{
  background-image: url('../img/linkedin.svg');
}
footer .footer_bottom .social ul li.twitter a{
  background-image: url('../img/twitter.svg');
}
footer .copyright{
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 1.4rem;
}
footer .copyright ul{
  display: flex;
  align-items: center;
  gap: 2rem;
}

footer .copyright p{
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}
footer .copyright ul li a{
  font-size: 1.4rem;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.68);
}
footer .copyright ul li a:hover{
  color: white;
}

@media (prefers-reduced-motion: reduce){
  .footer_contact .bg_imgs .img{
    animation: none;
  }
}
.footer_contact .btns{
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 4.8rem;
}
.footer_contact .btns .btn{
  line-height: 6rem;
}
.footer_contact .btns .border_btn{
  line-height: 6.2rem;
  padding: 0 3.7rem;
}

.blog_list .item{
  display: block;
  border-radius: 2.5rem;
  background-color: white;
  border: 1px solid #dddddd;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.blog_list .item .img{
  border-radius: 2.5rem 2.5rem 0 0;
}
.blog_list .item .info{
  padding: 3.4rem;
}
.blog_list .item .info .subtitle{
  font-size: 1.4rem;
  color: var(--primary);
  text-transform: uppercase;
}
.blog_list .item .info .title{
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  color: #161616;
  display: block;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-right: 2rem;
}
.blog_list .item .info .desc{
  font-size: 1.5rem;
  line-height: 2.6rem;
  color: #5a5650;
  font-weight: 500;
  margin-bottom: 2.5rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.blog_list .item .info .flex p{
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
}
.blog_list .item .info .flex .iocn{
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  background-color: #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.blog_list .item .info .flex{
  align-items: center;
  justify-content: space-between;
}
.blog_list .item .info .flex .iocn:after{
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  display: inline-block;
  background: url('../img/plus_white.svg') no-repeat center/contain;
}
.blog_list .item:hover .info .flex .iocn{
  background-color: var(--primary);
  transform: rotate(180deg);
}



.page_find{
  padding: 11rem 0 10.6rem;
  background-color: #F7F4EF;
}
.page_find .left{
  width: 38.84%;
  padding-top: 4rem;
}
.page_find .left .tcon p{
  max-width: 38.8rem;
}
.page_find .left .tcon{
  margin-bottom: 2rem;
}
.page_find .right{
  width: 49.27%;
  padding: 3.4rem 4.8rem;
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page_find .left .img img{
  width: 100%;
  margin-left: -2.5rem;
}

.page_find .right label{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #161616;
  display: block;
  font-weight: 500;
  margin-bottom: 1rem;
}
.page_find .right label.btn{
  color: white;
  font-family: 'Inter', serif;
}
.page_find .right label i{
  color: var(--primary);
}
.page_find .right label em{
  font-size: 1.5rem;
  color: rgba(22, 22, 22, 0.74);
  display: block;
}
.page_find .right span.col2 label em{
  display: inline-block;
}
.page_find .right form{
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.2rem 0;
}
.page_find .right form span{
  display: block;
  width: 100%;
}
.page_find .right form span.col2{
  width: 48.3%;
}
.page_find .right form input:not([type="submit"]){
  line-height: 5.5rem;
  padding: 0 2rem;
  background-color: #F9F8F4;
  border-radius: 0.52rem;
  width: 100%;
}

.page_find .right form select{
  line-height: 5.5rem;
  padding: 0 2rem;
  border-radius: 0.52rem;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.7rem;
  color: #5a5650;
  background: url('../img/select_brown.svg') no-repeat right 2rem center/1.6rem;
  background-color: #F9F8F4;
}

.page_find .right form textarea{
  height: 12rem;
  padding: 2rem;
  background-color: #F9F8F4;
  border-radius: 0.52rem;
  width: 100%;
}
.page_find .right form .btn{
  line-height: 6.2rem;
  padding: 0 6rem;
  font-weight: 500;
  font-size: 1.6rem;
  display: block;
  margin-left: auto;
  position: relative;
}

.page_find .right form span.wpcf7-spinner, .contact_main .right form span.wpcf7-spinner, .support_enquiry form .btn span.wpcf7-spinner, .welcome_inquiry form .btn span.wpcf7-spinner{
  position: absolute;
  right: 10px;
  width: 24px !important;
  height: 24px !important;
  top: 20px;
}
.contact_main .right form .btn, .support_enquiry form .btn, .welcome_inquiry form .btn{
  position: relative;
}
.page_faqs .right .items{
  display: none;
}
.page_faqs .right .items.active{
  display: block;
}
.faq_search .form_con input[type="text"]{
  color: #333 !important;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon .title {
    font-size: 5.4rem;
    line-height: 6rem;
  }
  .tcon h2 {
    font-size: 4rem;
    line-height: 5rem;
  }
  header .logo img {
    width: 16rem;
  }
  .footer_contact {
    padding: 12rem 0;
  }
  .footer_contact .bg_imgs {
    opacity: 0.55;
  }
  footer {
    padding-top: 10rem;
  }
  footer .footer_top {
    margin-bottom: 8rem;
  }
  footer .footer_top .col.col_btns {
    min-width: 22rem;
    margin-left: 4rem;
  }
  .page_find {
    padding: 9rem 0;
  }
  .page_find .left {
    width: 44%;
    padding-top: 0;
  }
  .page_find .right {
    width: 52%;
    padding: 3rem 3.2rem;
  }
  .blog_list .item .info {
    padding: 2.6rem;
  }
  .blog_list .item .info .title {
    font-size: 2.2rem;
    line-height: 3rem;
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  header .btns{
    margin-left: auto;
  }
  header .btns .btn_menu {
    display: block;
  }
  header .btns .btn_search,
  header .btns .btn_lang,
  header .btns .btn {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon .title {
    font-size: 4.6rem;
    line-height: 5.2rem;
  }
  .tcon h2 {
    font-size: 3.6rem;
    line-height: 4.6rem;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  .tcon > em {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .tcon h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 12px;
  }
  div.head .btn {
    margin-top: 20px;
  }
  header {
    top: 0;
  }
  header .logo img {
    width: auto;
    height: 44px;
  }
  header .btns {
    gap: 14px;
    min-height: 60px;
  }
  header .btns .border_btn {
    display: none;
  }
  .border_btn {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .tcon .title {
    font-size: 32px;
    line-height: 1.3;
  }
  .tcon > em + h2,
  .tcon > em + h1 {
    margin-top: 10px;
  }
  .tcon > h2 + p,
  .tcon > .title + p {
    margin-top: 12px;
  }
  .tcon.line > em {
    gap: 8px;
  }
  .tcon.line > em:before {
    width: 24px;
  }
  .swiper_btns {
    gap: 12px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle {
    display: none;
  }
  .footer_contact {
    padding: 50px 0;
  }
  .footer_contact .bg_imgs {
    display: none;
  }
  .footer_contact h2,
  .footer_contact .tcon p {
    max-width: none;
  }
  .footer_contact .btns {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }
  .footer_contact .btns .btn,
  .footer_contact .btns .border_btn {
    line-height: 40px;
    padding: 0 20px;
  }
  footer {
    padding-top: 40px;
  }
  footer .footer_top {
    margin-bottom: 30px;
  }
  footer .footer_top > .flex {
    flex-wrap: wrap;
  }
  footer .footer_top .col {
    width: 100%;
  }
  footer .footer_top .col:not(.col_btns) > strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
    margin-bottom: 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  footer .footer_top .col:not(.col_btns) > strong:after {
    content: "";
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
    background: url(../img/select.svg) no-repeat center / contain;
    filter: contrast(0) brightness(100);
  }
  footer .footer_top .col:not(.col_btns).active > strong:after {
    transform: rotate(180deg);
  }
  footer .footer_top .col:not(.col_btns) > div {
    display: none;
    padding: 12px 0;
  }
  footer .footer_top .col ul li + li {
    margin-top: 12px;
  }
  footer .footer_top .col.col_btns {
    min-width: 0;
    margin-left: 0;
    margin-top: 24px;
  }
  footer .footer_top .col.col_btns strong {
    font-size: 16px;
    margin-bottom: 14px;
  }
  footer .footer_top .col.col_btns .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  footer .footer_top .col.col_btns a {
    width: auto;
    line-height: 42px;
  }
  footer .footer_top .col.col_btns a + a {
    margin-top: 0;
  }
  footer .footer_bottom > .flex {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .footer_bottom .logo img {
    width: 180px;
    height: auto;
  }
  footer .footer_bottom .social ul {
    gap: 20px;
    padding-bottom: 0;
    flex-wrap: wrap;
  }
  footer .footer_bottom .social ul li a {
    width: 20px;
    height: 20px;
  }
  footer .copyright {
    flex-direction: column-reverse;
    gap: 10px;
    text-align: center;
    padding: 16px 0;
    margin-top: 20px;
  }
  footer .copyright ul {
    gap: 16px;
    justify-content: center;
  }
  footer .copyright p,
  footer .copyright ul li a {
    font-size: 13px;
  }
  .blog_list .item,
  .blog_list .item .img {
    border-radius: 16px;
  }
  .blog_list .item .img {
    border-radius: 16px 16px 0 0;
  }
  .blog_list .item .info {
    padding: 20px;
  }
  .blog_list .item .info .subtitle {
    font-size: 12px;
  }
  .blog_list .item .info .title {
    font-size: 18px;
    line-height: 1.4;
    margin: 8px 0 12px;
    padding-right: 0;
  }
  .blog_list .item .info .desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .blog_list .item .info .flex p {
    font-size: 15px;
  }
  .blog_list .item .info .flex .iocn {
    width: 36px;
    height: 36px;
  }
  .blog_list .item .info .flex .iocn:after {
    width: 11px;
    height: 11px;
  }
  .page_find {
    padding: 50px 0;
  }
  .page_find > .content > .flex {
    flex-wrap: wrap;
  }
  .page_find .left,
  .page_find .right {
    width: 100%;
  }
  .page_find .left {
    padding-top: 0;
  }
  .page_find .left .tcon p {
    max-width: none;
  }
  .page_find .left .tcon {
    margin-bottom: 0;
  }
  .page_find .left .img {
    margin-top: 20px;
  }
  .page_find .left .img img {
    margin-left: 0;
  }
  .page_find .right {
    margin-top: 24px;
    padding: 24px 20px;
    border-radius: 16px;
  }
  .page_find .right form {
    gap: 16px 0;
  }
  .page_find .right form span.col2 {
    width: 100%;
  }
  .page_find .right label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .page_find .right label em {
    font-size: 13px;
  }
  .page_find .right form input:not([type="submit"]),
  .page_find .right form select {
    line-height: 44px;
    font-size: 14px;
    padding: 0 14px;
  }
  .page_find .right form select {
    background-position: right 14px center;
    background-size: 12px;
  }
  .page_find .right form textarea {
    height: 100px;
    padding: 14px;
    font-size: 14px;
  }
  .page_find .right form .btn {
    line-height: 42px;
    padding: 0 28px;
    font-size: 14px;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  header .btns .btn {
    display: none;
  }
  footer .footer_top .col.col_btns .btns a {
    width: 100%;
  }
}

.jst-language-switcher {
  display: none;
}

.search_drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}
.search_drawer.active {
  display: block;
}
.search_drawer .drawer_backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.45);
  backdrop-filter: blur(8px);
}
.search_drawer .drawer_content {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 18rem auto 0;
  padding: 0 2rem;
}
.search_drawer .search_panel {
  background: #fff;
  border-radius: 2.4rem;
  padding: 3.2rem;
  box-shadow: 0 2rem 6rem rgba(22, 22, 22, 0.16);
}
.search_drawer .search_field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(22, 22, 22, 0.16);
  border-radius: 20rem;
  padding: 0 2rem;
}
.search_drawer .search_icon {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1.2rem;
  background: url('../img/header_search.svg') no-repeat center / contain;
}
.search_drawer input[name="s"] {
  flex: 1;
  line-height: 5.6rem;
  font-size: 1.6rem;
}
.search_drawer .search_clear {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  background: url('../img/close.svg') no-repeat center / 1.2rem;
}
.search_drawer .search_clear.visible {
  display: block;
}
.search_drawer .search_submit {
  display: none;
}
.search_drawer .search_footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.6rem;
  font-size: 1.3rem;
  color: var(--text);
}
.search_drawer kbd {
  border: 1px solid rgba(22, 22, 22, 0.16);
  border-radius: 0.4rem;
  padding: 0 0.6rem;
}

.quote_modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 130;
  place-items: center;
  background: rgba(22, 22, 22, 0.45);
  backdrop-filter: blur(8px);
  padding: 3rem 2rem;
}
.quote_modal .modal_content {
  width: min(72rem, 100%);
  max-height: calc(100vh - 6rem);
  overflow: auto;
  background: #fff;
  border-radius: 2.4rem;
  padding: 4rem;
}
.quote_modal .head .title {
  font-size: 3.2rem;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1.2rem;
}
.quote_modal .head .desc {
  color: var(--text);
  margin-bottom: 2.4rem;
}


.quote_modal .hidden-fields-container,
.contact_main .right .hidden-fields-container {
  display: none;
}
.quote_modal .wpcf7-form,
.contact_main .right .wpcf7-form {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 2.4rem 0;
}
.quote_modal .wpcf7-form > span:not(.wpcf7-spinner),
.contact_main .right .wpcf7-form > span:not(.wpcf7-spinner),
.quote_modal .wpcf7-form-control-wrap,
.contact_main .right .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.quote_modal .wpcf7-form > span.col2,
.contact_main .right .wpcf7-form > span.col2 {
  width: 48.05%;
}
.quote_modal input:not([type=submit]):not([type=hidden]),
.quote_modal textarea,
.contact_main .right .wpcf7-form input:not([type=submit]):not([type=hidden]),
.contact_main .right .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-family: Inter, sans-serif;
  transition: all 0.3s;
}
.quote_modal input:not([type=submit]):not([type=hidden]),
.contact_main .right .wpcf7-form input:not([type=submit]):not([type=hidden]) {
  line-height: 5rem;
  padding: 0 1.5rem;
}
.quote_modal textarea,
.contact_main .right .wpcf7-form textarea {
  padding: 1.5rem;
  height: 15.7rem;
}
.quote_modal input:not([type=submit]):not([type=hidden]):focus,
.quote_modal textarea:focus,
.contact_main .right .wpcf7-form input:not([type=submit]):not([type=hidden]):focus,
.contact_main .right .wpcf7-form textarea:focus {
  border-color: var(--primary);
}
.quote_modal label,
.contact_main .right .wpcf7-form label {
  font-size: 1.6rem;
  font-family: Inter, sans-serif;
  font-weight: 600;
  color: #0b1d38;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.3rem;
}
.quote_modal label i,
.contact_main .right .wpcf7-form label i {
  color: var(--primary);
}
.quote_modal label.btn,
.contact_main .right .wpcf7-form label.btn {
  position: relative;
  width: 100%;
  justify-content: center;
  line-height: 6rem;
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
  color: #fff;
}
.quote_modal label.btn input,
.contact_main .right .wpcf7-form label.btn input,
.quote_modal input.wpcf7-submit,
.contact_main .right input.wpcf7-submit {
  display: none;
}
@keyframes sytech-spin {
  to {
    transform: rotate(360deg);
  }
}
.quote_modal .wpcf7-spinner,
.contact_main .wpcf7-spinner,
footer .wpcf7-spinner {
  display: none;
  visibility: hidden;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  padding: 0;
  background: none;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
}
.quote_modal .wpcf7-spinner,
.contact_main .wpcf7-spinner{
  position: absolute;
  right: 2rem;
}
.quote_modal .wpcf7-spinner::before,
.contact_main .wpcf7-spinner::before,
footer .wpcf7-spinner::before {
  content: none;
  display: none;
}
.quote_modal form.submitting .wpcf7-spinner,
.contact_main form.submitting .wpcf7-spinner {
  display: inline-block;
  visibility: visible;
  margin-left: 1rem;
  color: #fff;
  animation: sytech-spin 0.6s linear infinite;
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #c0392b;
}
.wpcf7 .wpcf7-response-output {
  margin: 1.6rem 0 0;
  padding: 1.4rem 1.8rem;
  border: 0;
  border-radius: 1.2rem;
  background: #f7f4ef;
}
.wpcf7 .wpcf7-spinner {
  /* display: none;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0 0 1rem;
  border: 2px solid var(--primary);
  border-top-color: transparent;
  background: none; */
}
form.submitting .wpcf7-spinner {
  display: inline-block;
}
form > span,
.wpcf7-form-control-wrap {
  width: 100%;
}
form input[type="submit"],
form input[type="hidden"] {
  width: auto;
}
label.btn input[type="submit"] {
  display: none;
}

.blog_newsletter .form_con .wpcf7,
.blog_newsletter .form_con .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
}
.blog_newsletter .form_con .wpcf7-form-control-wrap {
  display: block;
}
.blog_newsletter .form_con label.btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 20rem;
  background-color: #C8943E;
  color: #fff;
  padding: 0 3.8rem;
  display: flex;
  align-items: center;
  margin: 0;
}
.blog_newsletter .form_con label.btn:hover {
  background-color: var(--title);
}
