* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #a5513a;
  --secondary: #000;
  --title: #211d1b;
  --text: #5b524f;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.large_content {
  max-width: 180rem;
  margin: 0 auto;
  position: relative;
}
.large_content .large_content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content,
.large_swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
.large_swiper_content {
  max-width: 183rem;
}
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);
}
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%;
  word-break: normal;
  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;
}
.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;
  word-break: break-word;
  color: var(--title);
  font-family: "Inter", sans-serif;
  background: url(../img/body-bg.webp) repeat center/contain;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  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 {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  pointer-events: none;
}
.icon.icon_ab {
  position: relative;
}
.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;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.6rem;
  line-height: 6.6rem;
  padding: 0 3.15rem;
  min-width: 19.5rem;
  font-weight: 400;
  letter-spacing: 0.01rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_w {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.21);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 6.7rem;
  padding: 0 3.45rem;
}
.btn_w:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid rgba(91, 82, 79, 0.5);
  color: var(--text);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 6.7rem;
  padding: 0 5.2rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.swiper_btns {
  gap: 13.1rem;
  display: flex;
}
.swiper_btns div {
  width: 3.1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.swiper_btns div::after {
  content: '';
  display: block;
  padding-bottom: 64.51613%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
  filter: contrast(0) brightness(0);
}
.swiper_btns div:hover::after {
  filter: unset;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  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;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns.white div::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns.white div:hover::after {
  filter: unset;
}
.swiper_btns.white .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.syedittext p,
.syedittext .desc {
  font-size: 2rem;
  line-height: 3rem;
  color: var(--text);
  font-weight: 300;
  letter-spacing: 0.01rem;
}
.head.bn p {
  font-size: 1.8rem;
  font-weight: 400;
}
.head.white {
  color: #fff;
}
.head.white .subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 200;
  letter-spacing: 0.02rem;
}
.head.white p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 200;
  letter-spacing: 0.03rem;
}
.head.white.bn p {
  font-weight: 300;
  letter-spacing: 0.018rem;
}
.head .subtitle {
  font-size: 1.6rem;
  line-height: normal;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.7rem;
}
.head h1 {
  font-size: 6.2rem;
  line-height: 1.14516;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.125rem;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: 0.145rem;
}
.head p,
.head .desc {
  font-size: 2rem;
  line-height: 3rem;
  color: var(--text);
  font-weight: 300;
  letter-spacing: 0.01rem;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
header::before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #000, transparent);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  transition: all 0.3s;
}
header.bg,
header.sticky {
  background-color: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.22);
}
header.bg::before,
header.sticky::before {
  opacity: 0;
}
header.bg nav .menu::after,
header.sticky nav .menu::after {
  background-color: var(--primary);
}
header.bg nav .menu > li > a,
header.sticky nav .menu > li > a {
  color: var(--title);
  font-weight: 500;
  letter-spacing: unset;
}
header.bg .center,
header.sticky .center {
  filter: unset;
}
header.bg .btns .btn_search,
header.sticky .btns .btn_search,
header.bg .btns .btn_menu,
header.sticky .btns .btn_menu,
header.bg .btns .btn_lang::before,
header.sticky .btns .btn_lang::before,
header.bg .btns .btn_lang::after,
header.sticky .btns .btn_lang::after {
  filter: contrast(0) brightness(0);
}
header.bg .btns .btn_lang,
header.sticky .btns .btn_lang {
  color: var(--title);
}
header.sticky {
  position: sticky;
}
header.opt {
  top: -9.2rem;
}
header .grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
header .center {
  display: flex;
  align-items: center;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
  padding-bottom: 5.5%;
}
header .center .logo {
  display: block;
  position: relative;
}
header .center .logo img {
  display: block;
  width: auto;
  height: 6.1rem;
}
header .center .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 3.3rem;
  position: relative;
}
header nav .menu:hover::after {
  opacity: 1;
}
header nav .menu::after {
  position: absolute;
  left: var(--l);
  bottom: 0;
  width: var(--w);
  height: 2px;
  content: '';
  background-color: #fff;
  transition: all 0.3s;
  opacity: 0;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s;
  line-height: 9rem;
  padding-top: 1px;
  font-weight: 300;
  letter-spacing: 0.02rem;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.menu-item-has-children .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  width: calc(100% + 4.8rem);
}
header nav .sub-menu > li {
  margin-bottom: 5px;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .btns {
  gap: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 9.1rem;
}
header .btns .btn_search {
  width: 17px;
  height: 17px;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  margin-top: 2px;
}
header .btns .btn_lang {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  gap: 0.8rem;
  transition: all 0.3s;
  font-weight: 300;
  letter-spacing: 0.012rem;
  margin-top: 2px;
}
header .btns .btn_lang::before {
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  content: '';
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  margin-bottom: -1px;
}
header .btns .btn_lang::after {
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  content: '';
  background: url(../img/icon-select.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  margin-left: 0.3rem;
  margin-top: 2px;
}
header .btns .btn_menu {
  display: none;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
header .btns .btn {
  line-height: 4.5rem;
  padding: 0 2.6rem;
  margin-left: 0.3rem;
}
footer {
  background-color: #fff;
}
footer .main {
  padding: 11.1rem 0 14.2rem;
}
footer .main strong {
  display: block;
  color: #998c87;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 4.1rem;
}
footer .main .flex {
  gap: 6.5rem 2rem;
}
footer .main .slide_logo {
  width: 100%;
}
footer .main .slide_logo .logo {
  display: block;
  position: relative;
  max-width: 13.7rem;
}
footer .main .slide_logo .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .slide_logo .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .slide_intro {
  width: 39.3rem;
}
footer .main .slide_intro p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #4c4c4c;
}
footer .main .slide_intro form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  border-bottom: 1px solid rgba(22, 22, 22, 0.22);
  margin-top: 3.8rem;
  transition: all .3s;
}
footer .main .slide_intro form:focus-within {
  border-bottom-color: var(--primary);
}
footer .main .slide_intro form input[type=email] {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  color: #4c4c4c;
  font-weight: 500;
  background-color: transparent;
  padding-right: 2rem;
  padding-bottom: 0.9rem;
}
footer .main .slide_intro form input[type=email]::placeholder {
  color: #4c4c4c;
}
footer .main .slide_intro form input[type=submit] {
  display: block;
  width: 5.1rem;
  height: 5.1rem;
  text-indent: -999px;
  color: transparent;
  transition: all 0.3s;
  background: url("../img/icon-email-w.svg") no-repeat center / 43.14% var(--primary);
  border-radius: 50%;
  margin-bottom: 0.9rem;
}
footer .main .slide_intro form input[type=submit]:hover {
  background-color: var(--title);
}
footer .main .slide_intro .social {
  gap: 2rem 4.4rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4.8rem;
}
footer .main .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .main .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .main .slide_intro .social a:hover {
  transform: scale(1.1);
}
footer .main .slide_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .main .slide_intro .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .main .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .main .slide_intro .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .main .slide_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .main .slide_obj li a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #4c4c4c;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .slide_obj li + li {
  margin-top: 2.3rem;
}
footer .bottom {
  padding: 3rem 0;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.4rem;
  color: #33333a;
  font-weight: 500;
  letter-spacing: -0.022rem;
}
footer .bottom a {
  color: #232323;
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
  letter-spacing: -0.026rem;
}
footer .bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  width: 1px;
  height: 1.3rem;
  background-color: #232323;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.2rem 0 1rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
.header_menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  display: none;
  overflow: hidden;
}
.header_menu .flex {
  gap: 3rem;
}
.header_menu .nav {
  flex: 1;
  max-height: calc(100vh - 15rem);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(24rem, 100%), 1fr));
  padding: 7rem 0;
  gap: 2rem;
}
.header_menu .menu_list > a {
  font-weight: 600;
}
.header_menu .menu_list > a + ul {
  margin-top: 2rem;
}
.header_menu .menu_list li + li {
  margin-top: 2rem;
}
.header_menu .menu_list a {
  font-size: 17px;
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.header_menu .menu_list a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.header_menu .intro {
  position: relative;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 7rem 5rem;
  max-height: calc(100vh - 15rem);
}
.header_menu .intro::before {
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-color: #f7f2ed;
  z-index: -1;
}
.header_menu .intro .syedittext {
  overflow: auto;
}
.header_menu .intro .title {
  font-size: 40px;
  font-weight: 500;
}
.header_menu .intro .desc {
  margin-top: 2rem;
}
.header_menu .intro .btn {
  margin-top: 4rem;
}
.menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 991;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.footer_contact {
  position: relative;
  z-index: 2;
}
.footer_contact::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(to top, #fff, transparent);
}
.page_blog {
  padding: 11.8rem 0 14rem;
}
.page_blog > img {
  height: auto;
  min-height: 139.6%;
}
.page_blog .head {
  padding-bottom: 0.3rem;
}
.page_blog h2 {
  letter-spacing: 0.115rem;
}
.page_blog .page_blog_swiper {
  margin-top: 4.5rem;
  overflow: hidden;
  border-radius: 2.3rem;
  padding-bottom: 1px;
}
.page_blog .page_blog_swiper .swiper-slide {
  transition: max-width 0.4s;
  max-width: 24.58002778%;
}
.page_blog .page_blog_swiper .swiper-slide.active {
  max-width: 46.88918056%;
}
.page_blog .page_blog_swiper .swiper-slide.active .item::after {
  width: 68.5%;
}
.page_blog .item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom: 1px solid rgba(107, 97, 84, 0.21);
  min-height: 64.3rem;
  padding-bottom: 3rem;
}
.page_blog .item:hover img {
  transform: scale(1.02);
}
.page_blog .item::after {
  width: 0;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  bottom: -1px;
  content: '';
  transition: all 0.3s;
}
.page_blog .item .img {
  border-radius: 2.3rem;
  height: 40.5rem;
}
.page_blog .item .info {
  flex: 1;
  margin-top: 3.6rem;
}
.page_blog .item .metas {
  display: flex;
  align-items: center;
  color: rgba(63, 63, 63, 0.85);
  gap: 0.9rem;
}
.page_blog .item .metas .cat {
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  margin-right: -1px;
}
.page_blog .item .title {
  font-size: 2.6rem;
  line-height: 3.2rem;
  color: #181821;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.3rem;
  max-width: 61.7rem;
  letter-spacing: 0.05rem;
}
.page_banner::before {
  position: absolute;
  width: 100%;
  height: 54.29815%;
  left: 0;
  bottom: 0;
  content: '';
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(to top, #000, transparent);
  opacity: 0.68;
}
.page_banner .flex {
  height: 100vh;
  max-height: 91.9rem;
  min-height: max-content;
  padding: 20rem 0 11.2rem;
}
.page_banner .head {
  flex: 1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}
.page_banner .syedittext {
  flex: 1;
  max-width: 98rem;
  width: 100%;
  padding-bottom: 1.9rem;
}
.page_banner p {
  margin-top: 1.1rem;
}
.page_banner .breadcrumbs {
  position: absolute;
  bottom: 0;
  line-height: 3rem;
  min-height: 7.6rem;
  padding-bottom: 1rem;
}
.page_banner .breadcrumbs span {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
}
.page_banner .breadcrumbs span span::before {
  content: ' - ';
  display: inline-block;
  margin: 0 1.4rem 0 1rem;
}
.page_banner .breadcrumbs span span:first-child::before {
  display: none;
}
.page_banner .breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.page_banner .breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.sec_bg ~ section .content,
.sec_bg ~ section .swiper_content,
.sec_bg ~ section .large_content,
.sec_bg ~ section .swiper_box {
  z-index: 2;
}
.idea_item.active .title {
  text-decoration-color: #fff;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
.idea_item.active .title::after {
  transform: translateX(0);
  opacity: 1;
}
.idea_item a {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  border-radius: 2.2rem;
  box-shadow: 0.8rem 0.8rem 1rem rgba(142, 125, 117, 0.45);
}
.idea_item a:hover img {
  transform: scale(1.02);
}
.idea_item .img {
  padding-bottom: 123.11111%;
}
.idea_item .img::after {
  position: absolute;
  width: 100%;
  height: 51.264%;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  opacity: 0.58;
  background-image: linear-gradient(to top, #000, transparent);
}
.idea_item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.3%;
  z-index: 2;
  color: #fff;
  transition: all 0.3s;
  text-decoration: underline transparent;
  font-size: 2.4rem;
  padding: 0 6.66667% 0 6.44444%;
  font-weight: 300;
  letter-spacing: 0.06rem;
}
.idea_item .title::after {
  display: inline-block;
  content: '';
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  transition: all 0.3s;
  background: url("../img/arrow-r-w.svg") no-repeat center / contain;
  transform: translateX(-100%);
  opacity: 0;
}
.case_item {
  --h: 5.8rem;
}
.case_item.active a::after {
  opacity: 1;
}
.case_item.active .info .syedittext {
  transform: translateY(0);
}
.case_item.active i {
  background-color: var(--primary);
}
.case_item.active i::after {
  filter: contrast(0) brightness(2);
}
.case_item.active .img::after {
  height: 59.312%;
  opacity: 0.5;
}
.case_item.active .desc {
  opacity: 1;
}
.case_item a {
  display: block;
  position: relative;
}
.case_item a::after {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2.2rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  content: '';
  pointer-events: none;
  opacity: 0;
}
.case_item a:hover img {
  transform: scale(1.02);
}
.case_item .img {
  border-radius: 2.2rem;
  padding-bottom: 71.07914%;
}
.case_item .img::after {
  position: absolute;
  width: 100%;
  height: 39.07%;
  left: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(to top, #111 -0.7rem, transparent);
  pointer-events: none;
  transition: all 0.3s;
}
.case_item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.47%;
  color: #fff;
  max-height: 40%;
  gap: 2rem;
  padding: 0 6.1871% 0 5.46763%;
  display: flex;
  overflow: hidden;
}
.case_item .info .syedittext {
  padding-right: 1rem;
  overflow-y: auto;
  transition: all 0.4s;
  transform: translateY(calc(var(--h) - 0.6rem));
  flex: 1;
}
.case_item i {
  width: 5.3rem;
  display: block;
  transition: all 0.3s;
  border-radius: 1.5rem;
  background-color: #e2ded3;
  box-shadow: 0 0 1rem rgba(128, 128, 128, 0.3);
  align-self: flex-end;
}
.case_item i::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow-r-b.svg") no-repeat center / 39.6%;
  transition: all 0.3s;
}
.case_item .title {
  font-size: 2.6rem;
  letter-spacing: 0.05rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.case_item div.desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #fff;
  max-width: 45rem;
  margin-top: 1.1rem;
  padding-bottom: 2px;
  opacity: 0;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.contact_main h2 {
  max-width: 49.5rem;
}
.contact_main form .main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.7rem 0;
  margin-top: 5rem;
}
.contact_main form span {
  width: 100%;
}
.contact_main form .col-2 {
  width: 47.9592%;
}
.contact_main form input,
.contact_main form textarea {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #4c4c4c;
  border: none;
  border-bottom: 1px solid rgba(33, 29, 27, 0.21);
  background-color: transparent;
  height: 5.6rem;
  transition: all .3s;
}
.contact_main form input::placeholder,
.contact_main form textarea::placeholder {
  color: #4c4c4c;
}
.contact_main form input:focus,
.contact_main form textarea:focus {
  border-color: var(--primary);
}
.contact_main form textarea {
  padding: 1.6rem 0;
  height: 19.1rem;
}
.contact_main form span:has(input[type=submit]) {
  margin-top: 1rem;
  position: relative;
}
.contact_main form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 2rem;
  min-width: 19.8rem;
  height: 6.8rem;
  width: auto;
}
.contact_main form input[type=submit]:hover {
  background-color: transparent;
  color: var(--primary);
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.search_drawer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  transition: all .3s;
  pointer-events: none;
}
.search_drawer.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.75);
}
.search_drawer.active .drawer_content {
  transform: translateY(0);
}
.search_drawer .drawer_content {
  width: 100%;
  height: 80%;
  padding: 2rem 0;
  transition: all .3s;
  transform: translateY(100%);
  background-color: #fff;
}
.search_drawer .close {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  right: 0;
  transition: all .3s;
  transform: translateY(50%);
  filter: contrast(0) brightness(0);
  background: url(../img/close.svg) no-repeat center/contain;
}
.search_drawer .close:hover {
  transform: translateY(50%) rotate(180deg);
}
.search_drawer form {
  transition: all .3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.search_drawer form:focus-within {
  border-bottom-color: var(--primary);
}
.search_drawer input[type="text"] {
  width: 100%;
  height: 10rem;
  display: block;
  text-align: center;
  font-size: 3.5rem;
}
.search_drawer input[type="submit"] {
  display: none;
}

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.quote_modal::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 76.8rem;
  margin: 5rem auto;
  padding: 6rem 5rem;
  border-radius: 2.2rem;
  overflow: visible;
  background: url(../img/body-bg.webp) no-repeat center/cover #ffffff;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .large_content {
    padding: 0 3rem;
    max-width: 1440px;
  }
  .large_swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1440px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content,
  .large_content {
    padding: 0 3rem;
    max-width: 1220px;
  }
  .swiper_content,
  .large_swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1220px;
  }
  header nav .menu {
    gap: 2rem;
  }
  header nav .menu > li > a {
    font-size: 14px;
  }
  .header_menu .menu_list a {
    font-size: 14px;
  }
  .header_menu .intro .title {
    font-size: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content,
  .large_content,
  .large_swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 5.6rem;
  }
  .head h2 {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1024px) {
  header .grid {
    display: flex;
    justify-content: space-between;
  }
  header .center {
    margin: 0;
    padding: 0;
  }
  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: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    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);
    letter-spacing: unset;
    font-weight: normal;
  }
  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 > li:hover ul {
    padding: 10px;
  }
  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::after,
  header nav .menu .menu-item-has-children::before {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: unset;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
    opacity: 1;
  }
  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 12px 12px;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
    width: auto;
  }
  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);
    color: var(--title);
  }
  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::after,
  header nav .sub-menu .menu-item-has-children::before {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0 10px 10px;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .btns {
    padding: 0;
    margin: 0;
  }
  header .btns .btn_search {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_lang {
    font-size: 14px;
    gap: 10px;
  }
  header .btns .btn_lang::before {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_lang::after {
    width: 10px;
    height: 10px;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/nav-btn.svg) no-repeat center / contain;
  }
  header .header_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content,
  .large_content,
  .large_swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 35%;
  }
  .page_blog .page_blog_swiper .swiper-slide.active {
    max-width: 65.8%;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 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,
  .large_content {
    padding: 0 30px;
  }
  .swiper_content,
  .large_swiper_content {
    padding: 10px 30px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_w,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 120px;
    letter-spacing: unset;
  }
  .swiper_btns {
    gap: 30px;
  }
  .swiper_btns div {
    width: 22px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    padding: 0 30px;
    margin-top: 30px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  div.head.flex .syedittext {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_w,
  div.head.flex .btn_line {
    margin: 0;
  }
  div.head.bn p {
    font-size: 14px;
  }
  div.head.white .subtitle,
  div.head.white p,
  div.head.white.bn p {
    letter-spacing: unset;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_w,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    letter-spacing: unset;
    margin-top: 20px;
  }
  header {
    position: sticky;
    background-color: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.22);
  }
  header.opt {
    top: 0;
  }
  header::before {
    display: none;
  }
  header .center {
    filter: unset;
  }
  header .center .logo img {
    height: 44px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btns .btn {
    display: none;
  }
  header .btns .btn_search,
  header .btns .btn_menu {
    filter: contrast(0) brightness(0);
  }
  header .btns .btn_lang {
    width: 22px;
    height: 22px;
    overflow: hidden;
    font-size: 1px;
    color: transparent;
    filter: contrast(0) brightness(0);
    margin: 0;
    background: url("../img/icon-lang.svg") no-repeat center / contain;
  }
  header .btns .btn_lang::before,
  header .btns .btn_lang::after {
    display: none;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    gap: 0;
  }
  footer .main strong {
    font-size: 18px;
    margin-bottom: 16px;
  }
  footer .main .slide_logo {
    order: -1;
  }
  footer .main .slide_logo .logo {
    max-width: 120px;
    margin: 0 auto 30px;
  }
  footer .main .slide_intro {
    margin: 0 0 16px;
    width: 100%;
    display: grid;
    order: -1;
    text-align: center;
  }
  footer .main .slide_intro p {
    font-size: 14px;
  }
  footer .main .slide_intro .social {
    margin-top: 30px;
    gap: 16px;
    justify-content: space-around;
  }
  footer .main .slide_intro .social a {
    width: 22px;
    height: 22px;
  }
  footer .main .slide_intro div {
    order: 2;
  }
  footer .main .slide_intro form {
    margin-top: 30px;
  }
  footer .main .slide_intro form input[type=email] {
    font-size: 14px;
    padding: 0 20px 0 0;
  }
  footer .main .slide_intro form input[type=submit] {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }
  footer .main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .main .slide_obj:not(.slide_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.22);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .slide_obj:not(.slide_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon-select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .bottom {
    padding: 20px 0;
    text-align: center;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
    letter-spacing: unset;
  }
  footer .bottom a {
    font-size: 14px;
  }
  .page_blog {
    padding: 50px 0;
  }
  .page_blog .head {
    padding: 0;
  }
  .page_blog .page_blog_swiper {
    width: calc(100% + 60px);
    margin: 30px -30px 0;
    padding: 0 30px;
    border-radius: 10px;
    border-radius: unset;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 280px;
  }
  .page_blog .page_blog_swiper .swiper-slide.active {
    max-width: 280px;
  }
  .page_blog .item {
    min-height: unset;
    padding-bottom: 30px;
  }
  .page_blog .item .img {
    height: auto;
    padding-bottom: 114.41%;
    border-radius: 10px;
  }
  .page_blog .item .info {
    margin-top: 16px;
  }
  .page_blog .item .metas {
    gap: 5px;
  }
  .page_blog .item .metas .cat {
    margin: 0;
  }
  .page_blog .item .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .page_blog .swiper_btns {
    display: none;
  }
  .page_banner::before {
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  .page_banner .flex {
    height: auto;
    padding: 50px 0;
  }
  .page_banner .syedittext {
    padding: 0;
    max-width: 444px;
  }
  .page_banner .breadcrumbs {
    position: static;
    min-height: 40px;
    line-height: 20px;
  }
  .page_banner .breadcrumbs span {
    font-size: 14px;
  }
  .page_banner .breadcrumbs span span::before {
    margin: 0 10px;
  }
  .idea_item a {
    border-radius: 10px;
  }
  .idea_item .title {
    font-size: 18px;
    padding: 0 20px;
    letter-spacing: unset;
    gap: 12px;
    bottom: 20px;
  }
  .idea_item .title::after {
    width: 14px;
    height: 14px;
  }
  .case_item.active .img::after {
    height: 100%;
    opacity: 1;
  }
  .case_item a::after {
    border-radius: 10px;
  }
  .case_item .img {
    border-radius: 10px;
  }
  .case_item .img::after {
    height: 100%;
  }
  .case_item .info {
    padding: 0 20px;
  }
  .case_item .info .syedittext {
    transform: translateY(0);
  }
  .case_item .info i {
    width: 40px;
    border-radius: 10px;
  }
  .case_item .info .title {
    font-size: 18px;
    letter-spacing: unset;
  }
  .case_item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
    padding-bottom: 0;
    opacity: 1;
  }
  .contact_main form .main {
    margin-top: 10px;
    gap: 10px 0;
  }
  .contact_main form input,
  .contact_main form textarea {
    font-size: 14px;
    height: 46px;
  }
  .contact_main form textarea {
    height: 120px;
    padding: 14px 0;
  }
  .contact_main form span:has(input[type=submit]) {
    margin-top: 10px;
  }
  .contact_main form input[type=submit] {
    min-width: 120px;
    font-size: 14px;
    padding: 0 20px;
    height: 42px;
  }

  /*** global css ***/
  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }

  .search_drawer .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    right: 30px;
    transform: translate(0);
  }
  .search_drawer .close:hover {
    transform: translate(0);
  }
  .search_drawer form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search_drawer input[type="text"] {
    height: 46px;
    font-size: 16px;
  }
  .search_drawer input[type="submit"] {
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-search.svg) no-repeat center/20px;
  }

  .quote_modal .modal_content {
    padding: 50px 30px;
    border-radius: 15px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  .content,
  .large_content {
    padding: 0 20px;
  }
  .swiper_content,
  .large_swiper_content {
    padding: 10px 20px;
  }
  .page_blog .page_blog_swiper {
    width: calc(100% + 40px);
    margin: 30px -20px 0;
    padding: 0 20px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    padding: 0 20px;
  }
  .page_intro .img,
  .page_intro .imgs_float,
  .page_intro .imgs {
    width: 100%;
  }
  .page_banner .head {
    display: block;
  }
  .contact_main form .col-2 {
    width: 100%;
  }
}