@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --brand-primary: #1185fe;
  --brand-light: #4da5fe;
  --brand-dark: #0d6bd8;
  --brand-lighter: #7bbfff;
  --brand-hover: #0a5bb8;
  --brand-cta: #155fa0;
  --primary: #fcf5e8;
  --main-color: #232428;
  --main-color-2: #c2c2c2;
  /* Legacy support */
  --l-blue: #4da5fe;
  --d-blue: #1185fe;
  --br: 48px;
}

.specialcolor {
   background: linear-gradient(90deg,
    #DDE2E9 0%,
    #F2F4F7 35%,
    #C9CFD7 70%,
    #E8ECF1 100%
  ) !important;
  -webkit-background-clip: text!important;
  background-clip: text!important;
  color: transparent!important;
  font-weight: 600!important;
}
.btn-open-modal {
  padding: 12px 26px;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.btn-open-modal:hover {
  background: #333;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}

.custom-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}

.custom-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Text */
.modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.modal-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--main-color);
}

textarea {
  resize: none;
}

/* Action */
.modal-action {
  margin-top: 10px;
  padding: 14px;
  background: var(--main-color) !important;
  border: 1px solid var(--main-color);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
.modal-action:hover {
  background-color: #fff !important;
  border-color: var(--main-color);
  color: var(--main-color);
}

/* Close */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.modal-close:hover {
  color: var(--red);
}
* {
  font-family: "Inter", sans-serif !important;
}
body {
  background-color: var(--main-color);
}
section {
  margin-bottom: 80px;
}
.section__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.section__title {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}
.section__top .section__title {
  margin-bottom: 0;
}
.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
}

a {
  text-decoration: none;
  color: #fff;
  transition:  0.3s ease;
}
a:hover {
 color: rgba(255,255,255,.75);
}
#menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.501);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 998;
}
#open_menu {
  display: none;
}
#open_menu svg path {
  fill: var(--primary);
}
#menu_overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile__menu {
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: var(--main-color);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile__menu.is-open {
  transform: translateX(0);
}

#close_menu {
  align-self: flex-end;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

#close_menu:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.mobile__menu .header__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile__menu .menu__link {
  display: flex;
  padding: 16px 16px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  border-radius: 14px;
  background: var(--primary);
  transition: 0.9s ease;
  color: var(--main-color);
}

.mobile__menu .menu__link:hover {
  background-color: var(--primary) !important;
  color: var(--main-color);
}

.mobile__menu .mobile-phone a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--main-green);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.mobile__menu .social__icons {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}
.mobile__menu .main__button {
  text-align: center;
}
.mobile__menu .social__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile__menu .social__icons img,
.mobile__menu .social__icons svg {
  width: 28px;
  height: 28px;
}

.mobile__menu .telegram__business {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.mobile__menu .header__bottom-right a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.mobile__menu .header__bottom-right svg {
  width: 18px;
  height: 18px;
}

.mobile__menu .modalBtn {
  padding: 12px;
  border: 1px solid var(--main-green);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.mobile__menu .modalBtn:hover {
  background: var(--main-green);
  color: #fff !important;
}
header {
  position: fixed;
  width: 100%;
  z-index: 13;
  background: #31302e;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.4s ease;
}
header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 28px;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.04) 70%,
    rgba(255, 255, 255, 0) 100%
  );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
header.scrolled {
  background: #232428;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

header.scrolled::after {
  display: none;
}

nav {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

nav .phone {
  font-size: 20px;
}
.logo {
  width: 120px;
  height: auto;
  object-fit: cover;
}
.menu__items {
  display: flex;
  gap: 30px;
  align-items: center;
}
.menu__items ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.menu__items ul li a {
  font-size: 14px;
  text-transform: uppercase;
}
nav a {
  font-size: 14px;
}
.button_underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
}

.button_underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  bottom: -5px;
}

.button_underline svg {
  transition: all 0.5s ease;
}
.button_underline:hover svg {
  transform: rotate(45deg);
}
.menu__dropdown {
  position: relative;
}
.menu__dropdown .menu__arrow svg {
  transition: all 0.5s ease;
}
.menu__dropdown:hover .menu__arrow svg {
  transform: rotate(-180deg);
}
.menu__link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu__arrow {
  opacity: 0.7;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  width: 340px;
  background: #31302e;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 1000;
}

.menu__dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* MOBILE dropdown behavior */
/* ===== Mobile dropdown FIX ===== */

.mobile__menu .dropdown {
  position: static;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  background: #31302e;
  border-radius: 14px;
  transition:
    max-height 0.45s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  width: 100%;
}

.mobile__menu .footer__socials {
  margin-top: 0;
}
.mobile__menu .button_underline {
  width: fit-content;
  margin-top: 10px;
}
.mobile__menu .menu__dropdown.open .dropdown {
  max-height: 1200px;
  opacity: 1;
  visibility: visible;
  padding: 12px 0;
  margin-top: 6px;
}

.mobile__menu .menu__dropdown.open .menu__arrow svg {
  transform: rotate(-180deg);
}

/* ITEMS */
.dropdown__item {
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff9f0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: background 0.25s ease;
}

.dropdown__item:hover {
  background: rgba(17, 133, 254, 0.1);
}

.dropdown__icon {
  opacity: 0.7;
}

.hero {
  position: relative;
  margin-bottom: 0;
}

.hero__slider {
  position: relative;
}

.hero__slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #232428 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(255, 255, 255, 0.95) 135%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 920px;
}
.hero__title {
  font-size: 70px;
  line-height: 1.05;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__content p {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  max-width: 700px;
  margin-bottom: 32px;
}

.hero__btn {
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 8px;
}
.hero__bg img {
  transform: scale(1);
  transition: transform 0.9s ease;
  will-change: transform;
}

.swiper-slide-active .hero__bg img {
  transform: scale(1.08);
}

.hero__content {
  transform: translateX(0);
  transition: none;
  will-change: transform;
}

.swiper-slide-active .hero__content {
  transform: translateX(0);
  animation: slideFromLeft 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}

.hero__nav {
  position: absolute;
  bottom: 160px;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hero__nav svg {
  transition: all 0.5s ease;
  color: #fff;
}

.hero__prev {
  right: 200px;
}

.hero__next {
  right: 270px;
}

.hero__next svg {
  transform: rotate(180deg);
}

.hero__nav:hover {
  background: #ffffff;
  transform: scale(1.05);
}

.hero__nav:hover svg {
  fill: black;
}
.hero__bottom {
  padding: 40px 0;
}

.hero__bottom p {
  color: #949494;
  padding-top: 30px;
  max-width: 1000px;
  text-align: center;
  margin: auto;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 400;
}

.hero__bottom-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero__bottom-benefits > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  height: 200px;
  background-color: #fff;
}

.hero__bottom-benefits > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.hero__bottom svg {
  width: 48px;
  height: 48px;
}
.hero__bottom svg path {
  fill: var(--main-color-2);
}

/* .hero__bottom-benefits > div:hover svg path {
  fill: #fff;
  transition: fill .3s ease;
} */

/* .hero__bottom-benefits > div:hover {
  color: #fff;
  background:linear-gradient(var(--l-blue), var(--d-blue))
} */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  color: white;
}

.about__image {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.415) 0%,
    rgba(0, 0, 0, 0.419) 60%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.about__right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 90px;
  column-gap: 80px;
}

.about__card {
  position: relative;
  max-width: 420px;
}

.about__value {
  font-size: 96px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
}

.about__value span {
  font-size: 36px;
}

.about__title {
  font-size: 40px;
  margin-bottom: 16px;
}

.about__desc {
  font-size: 15px;
  line-height: 1.55;
  color: white;
}

.about__right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #fff;
  transform: translateX(-0.5px);
}

.about__right::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #fff;
  transform: translateY(-0.5px);
}

/* ORTADA BOŞLUQ */
.about__right {
  --gap: 26px;
}

.about__right::before {
  mask: linear-gradient(
    to bottom,
    #fff 0,
    #fff calc(50% - var(--gap)),
    transparent calc(50% - var(--gap)),
    transparent calc(50% + var(--gap)),
    #fff calc(50% + var(--gap)),
    #fff 100%
  );
}

.about__right::after {
  mask: linear-gradient(
    to right,
    #fff 0,
    #fff calc(50% - var(--gap)),
    transparent calc(50% - var(--gap)),
    transparent calc(50% + var(--gap)),
    #fff calc(50% + var(--gap)),
    #fff 100%
  );
}

.about__text-block {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.about__text:last-child {
  margin-bottom: 0;
}

.about__text-cta {
  font-weight: 500;
  color: #fff;
  margin-top: 32px;
}
:root {
  --background-alternate: #2b2b2b;
  --text-alternate-primary: #fcf5e8;
}

.about .button_link {
  pointer-events: auto;
  display: flex;
  justify-content: flex-end;
  color: #fff;
  font-weight: 500;
  gap: 7px;
  align-items: center;
}
/* .button_link:hover{
  color: #232428; 
} */
.button {
  display: flex;
  align-items: center;
  gap: 1.33em;
  padding: 0;
  border: 0;
  background: transparent;
  text-transform: uppercase;
}

.button_icon {
  width: 3.33em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #232428;
  color: var(--text-alternate-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.button_icon.is-larger {
  width: 45px;
}

.button_link:hover .button_icon {
  background: #fff;
  transition: background 0.3s ease;
}
.button_link:hover .button_icon svg rect, .button_link:hover .button_icon svg path{
    fill: #333;
    stroke: #333
}
.button_arrow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.button_arrow {
  width: 1.17em;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button_arrow.is-primary {
  transform: translateX(0);
  opacity: 1;
}

.button_arrow.is-secondary {
  position: absolute;
  transform: translateX(-100%);
  opacity: 0;
}

.button_link:hover .button_arrow.is-primary {
  transform: translateX(100%);
  opacity: 0;
}

.button_link:hover .button_arrow.is-secondary {
  transform: translateX(0);
  opacity: 1;
}
.services__slider {
  padding-bottom: 40px;
}

.service-card {
  position: relative;
  height: 460px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 3em;
  border-top-right-radius: 0;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transition: opacity 0.6s ease;
  z-index: 1;
}
.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover .service-card__overlay {
  opacity: 0.45;
}

.service-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  color: #fff;
  z-index: 2;
}

.service-card__title {
  font-size: 22px;
  font-weight: 500;
  max-width: 70%;
  line-height: 25px;
  margin: 0;
}

.service-card p , .item p{
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  max-height: 0;
  max-width: 80%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition:
    max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover  p {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}
.item:hover  p {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

.service-card__btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__btn svg {
  width: 10px;
  height: 10px;
  transition: transform 0.4s ease;
  transform: rotate(45deg);
}
.service-card__btn svg path {
  fill: #fff;
}

.service-card:hover .service-card__btn svg {
  transform: rotate(0);
}
.services .container {
  position: relative;
}

.services__slider {
  padding-bottom: 20px;
}

.services__progress {
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  margin-top: 12px;
}

.services__progress .swiper-pagination-progressbar-fill {
 background: linear-gradient(90deg, #DDE2E9 0%, #F2F4F7 35%, #C9CFD7 70%, #E8ECF1 100%) !important;
  transition: width 0.4s ease;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: inherit;
  background: #ffffff4f;
  left: inherit;
  width: 93%;
}
.blogs .container {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 20px;
  align-items: flex-start;
}

.blogs__left {
  position: sticky;
  top: 120px;
}

.blogs__left h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 580px;
  color: #fff;
}

.blogs__left p {
  font-size: 16px;
  line-height: 1.6;
  color: #949494;
  max-width: 360px;
  margin-bottom: 40px;
}

.button_link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

.blogs__right {
  display: flex;
  flex-direction: column;
}

.blog__card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.blog__card-left h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 560px;
  color: #fff;
}

.blog__card-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #949494;
  max-width: 520px;
  margin-bottom: 16px;
}

.blog__card-left p:nth-of-type(2) {
  margin-bottom: 28px;
}

.blog__card-left p:last-of-type {
  font-size: 14px;
  color: #999;
  margin-bottom: 32px;
}

.blog__card-left .button_link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.blog__card-img {
  width: 325px;
  height: 250px;
  overflow: hidden;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 3em;
  border-top-left-radius: 3em;
  border-top-right-radius: 0;
}

.blog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.faq__left {
  position: sticky;
  top: 120px;
}

.faq__left h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: white;
}

.faq__left p {
  font-size: 16px;
  line-height: 1.6;
  color: #949494;
  max-width: 360px;
}

.faq__right {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #949494;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 32px 64px 32px 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  position: relative;
  color: #fff;
}

.faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.4s ease;
  border: 1px solid #949494;
}
.faq-icon svg {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}
.faq-icon svg path {
  fill: #949494 !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  transition: max-height 0.6s ease;
  padding-right: 80px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-bottom: 24px;
}

.faq-item.active .faq-icon svg {
  transform: rotate(0);
}

.cta-footer__box {
  background: #2b2b2b;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 3em;
  border-top-left-radius: 3em;
  border-top-right-radius: 0;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cta-footer__left h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cta-footer__left p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap
}

.cta-footer__socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.cta-footer__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-footer__socials svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.cta-footer__right {
  background: white;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 3em;
  border-top-left-radius: 3em;
  border-top-right-radius: 0;
  padding: 56px;
  color: #000;
  background: linear-gradient(90deg, #DDE2E9 0%, #F2F4F7 35%, #C9CFD7 70%, #E8ECF1 100%) !important;
}
.cta-footer__right .button_link:hover .button_icon{
    background-color: #333;
}
.cta-footer__right .button_link:hover .button_icon svg rect{
    stroke: var(--primary)
}
.cta-footer__right .button_link:hover .button_icon svg path{
    stroke: var(--primary)
}
.cta-form h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  padding: 12px 0;
  font-size: 14px;
  outline: none;
  margin-bottom: 28px;
}

.cta-form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cta-form textarea {
  resize: none;
  height: 72px;
  margin-bottom: 32px;
}

.cta-form__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #555;
  margin-bottom: 36px;
}

.cta-form__agree input {
  margin: 0;
  width: fit-content;
}

.cta-form__agree a {
  color: inherit;
  text-decoration: underline;
}

.cta-form__submit {
  background: none;
  border: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin-right: auto;
}
.cta-form {
  display: flex;
  flex-direction: column;
}

.cta-form > .button_link {
  align-self: flex-end;
  margin-top: 20px;
  color: black !important;
}

.cta-form__submit span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.cta-form__submit:hover span {
  background: var(--brand-hover);
}
.cta-date {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  padding: 12px 0;
  font-size: 14px;
  outline: none;
  color: #000;
}
button {
  background: none !important;
  border: none;
}

.site-footer {
  background: #2b2b2b;
  color: #cfcfcf;
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 80px;
}

.footer__brand {
  max-width: 520px;
}

.footer__logo img {
  max-width: 160px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.footer__company {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 24px;
}

.footer__text {
  font-size: 14px;
  line-height: 1.6;
  color: #bcbcbc;
  margin-bottom: 16px;
}

.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.footer__socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
}

.footer__title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 20px;
}

.footer__mt {
  margin-top: 32px;
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav li {
  margin-bottom: 14px;
}

.footer__nav a {
  font-size: 15px;
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__link {
  font-size: 15px;
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #fff;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  text-align: center;
  padding: 20px 20px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: #999;
  letter-spacing: 0.3px;
}
.footer-bottom a {
  text-decoration: none;
  color: #999;
  text-align: start;
  line-height: 1.2;
  transition: color 0.5s ease;
}
.footer-bottom a:hover {
  color: var(--brand-primary);
}

.breadcrumb {
  padding-top: 102px;
  padding-bottom: 30px;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 8;
}
.breadcrumb a {
  color: white;
}

.breadcrumb p {
    color:#ffffffab;
}
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
img {
  overflow: hidden;
}

.projects {
  text-align: center;
  /* margin-bottom: 50px; */
}
.projects .section__top {
  justify-content: center;
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.gallery-carousel .service-card__content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 32px;
    color: #fff;
    z-index: 2;
}

/* Images grayscale by default */
.gallery-carousel .item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-top-left-radius: 3em;
  border-bottom-right-radius: 3em;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-carousel .item {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 3em;
  border-bottom-right-radius: 3em;
}
.gallery-carousel .item:hover img {
  transform: scale(1.08);
}
.gallery-carousel .service-card__overlay {
  border-top-left-radius: 3em;
  border-bottom-right-radius: 3em;
}

.gallery-carousel .item:hover .service-card__overlay {
  opacity: 0.45;
}

.projects .owl-carousel {
  position: relative;
}
.projects .owl-nav button {
  position: absolute;
  top: 45%;
  width: 60px;
  height: 60px;
  background: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.projects .owl-carousel {
  position: relative;
}

.projects .owl-nav .owl-prev {
  position: absolute;
  top: 40%;
  left: 30% !important;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}

.projects .owl-nav .owl-next {
  position: absolute;
  top: 40%;
  right: 30% !important;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}

.projects .owl-nav button.owl-prev {
  left: 8%;
  top: 50%;
}

.projects .owl-nav button.owl-next {
  right: 8%;
  top: 50%;
}

.projects .owl-nav button:hover {
  background:#31302e!important;
}

.projects .owl-nav button:hover svg path {
  fill: #fff;
}

.projects .owl-nav svg path {
  transition: 0.3s;
}

.blogs__right.blog-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.blogs__right.blog-page .blog__card {
  display: flex;
  flex-direction: column-reverse;
  border: 1px solid #d4cfc4;
  border-top-left-radius: 3em;
  border-bottom-right-radius: 3em;
  padding: 0;
}
.blogs__right.blog-page {
  align-items: flex-start;
}
.blogs__right.blog-page .blog__card .blog__card-img {
  width: 100%;
}
.blogs__right.blog-page .blog__card .blog__card-left {
  padding: 0 20px 20px;
}
.blog__card-left p:first-of-type {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* max setir */
  overflow: hidden;
}

.blog__card-left p:last-of-type {
  white-space: nowrap;
}
.blogs__right.blog-page .blog__card-left h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* max 2 setir */
  overflow: hidden;
}
.blog__card-left h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* max 2 setir */
  overflow: hidden;
}
.about-hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background image */
.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #232428 0%,
    rgb(0 0 0 / 69%) 55%,
    rgba(255, 255, 255, 0.95) 135%
  );
  z-index: 2;
}

/* Content */
.about-hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 188px;
}

.about-hero__title p {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  max-width: 900px;
}

.aboutp-hero {
  color: var(--primary);
}

.aboutp-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.aboutp-hero__title {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
  color:white;
}

.aboutp-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--main-color-2);
  max-width: 520px;
  margin-bottom: 40px;
}

.aboutp-hero__stats {
  display: flex;
  gap: 40px;
}

.aboutp-stat__value {
  font-size: 56px;
  font-weight: 600;
  color: white;
}

.aboutp-stat__value span {
  font-size: 26px;
}

.aboutp-stat__label {
  font-size: 14px;
  color: var(--main-color-2);
}

.aboutp-hero__image {
  height: 560px;
  border-radius: var(--br);
  overflow: hidden;
}

.aboutp-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= PHILOSOPHY ================= */
.aboutp-philosophy {
  padding: 100px 0;
  color: var(--primary);
}

.aboutp-philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.aboutp-philosophy__title h2 {
  font-size: 42px;
}

.aboutp-philosophy__text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--main-color-2);
  margin-bottom: 22px;
}

/* ================= VALUES ================= */
.aboutp-values {
  color: var(--primary);
}

.aboutp-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.aboutp-value {
  background: #1c1d1f;
  border-top-left-radius: 3em;
  border-bottom-right-radius: 3em;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.4s;
}

.aboutp-value:hover {
  border-color: #fff;
}

.aboutp-value__num {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}

.aboutp-value h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color:white;
}

.aboutp-value p {
  font-size: 14px;
  color: var(--main-color-2);
}

.aboutp-process {
  color: var(--primary);
}

.aboutp-process__line {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.aboutp-process__line::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.aboutp-step {
  position: relative;
  text-align: center;
  max-width: 160px;
}

.aboutp-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.aboutp-step p {
  font-size: 14px;
  color: var(--main-color-2);
}

/* ================= IMAGE BREAK ================= */
.aboutp-break img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--br);
}

/* ================= TEAM CTA ================= */
.aboutp-team {
  padding: 120px 0;
  color: var(--primary);
}

.aboutp-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.aboutp-team__content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.aboutp-team__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--main-color-2);
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
.review-card {
  background: white;
  color: #fff;
  padding: 32px 34px;
  border-top-left-radius: 3em;
  border-bottom-right-radius: 3em;
 background: linear-gradient(90deg,
    #DDE2E9 0%,
    #F2F4F7 35%,
    #C9CFD7 70%,
    #E8ECF1 100%
  ) !important;
  position: relative;
  overflow: hidden;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.review-card__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffe9a6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card__avatar img {
  width: 70%;
}

.review-card__level {
  font-size: 13px;
  opacity: 0.8;
}

.review-card__name {
  font-size: 18px;
  margin: 4px 0;
  color:#31302e;
}

.review-card__stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-card p {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  max-width: 95%;
  color: #31302e;
}
.xfieldimagegallery.portfoly{
    display:none;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-top-left-radius: 3em;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 3em;
  transition: transform 0.8s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.08);
}

.blog-inner-section {
  padding: 40px 0 80px;
  position: relative;
  /*background: #1a1a1a;*/
  min-height: calc(100vh - 200px);
}

.blog-inner__layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Main Article Section */
.blog-inner__main {
  /*background: #1a1a1a;*/
  color: #ffffff;
}

.blog-inner__headline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin: 0 0 16px 0;
}

.blog-inner__layout p {
  line-height: 1.5;
  color: #b0b0b0;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.blog-inner__image-wrapper img-wrapper {
  margin: 30px 0;
}

.blog-inner__image-wrapper img {
  width: 100%;
  height: 500px;
  border-radius: 3em;
  display: block;
  object-fit: cover;
}

.blog-inner__image-wrapper img-credit {
  font-size: 14px;
  color: #888;
  margin-top: 12px;
  font-style: italic;
}

.blog-inner__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 14px;
}

.blog-inner__source {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.blog-inner__date {
  color: #888;
}

.blog-inner__content {
  margin-top: 30px;
  line-height: 1.8;
  font-size: 16px;
  color: #e0e0e0;
}

.blog-inner__content h3,
.blog-inner__content h2,
.blog-inner__content h4,
.blog-inner__content h5,
.blog-inner__content h6 {
  color: #fff;
  font-size:18px;
}

.blog-inner__content p {
  margin: 0 0 20px 0;
    color: #a2abb0;
}

.blog-inner__content p:last-child {
  margin-bottom: 0;
}

/* News Feed Sidebar */
.blog-inner__sidebar {
  /*background: #1a1a1a;*/
  position: relative;
}

.blog-inner__sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 30px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--primary);
}

.blog-inner__news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 50px;
}

/* Vertical line */
.blog-inner__news-list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #555;
  z-index: 1;
}

.blog-inner__news-item {
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.blog-inner__news-item:first-child {
  padding-top: 0;
}

.blog-inner__news-item:last-child {
  padding-bottom: 0;
}

.blog-inner__news-number {
  position: absolute;
  left: -50px;
  top: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: linear-gradient(90deg,
    #DDE2E9 0%,
    #F2F4F7 35%,
    #C9CFD7 70%,
    #E8ECF1 100%
  ) !important;
  z-index: 2;
  text-align: center;
  line-height: 1;
}

.blog-inner__news-item:first-child .blog-inner__news-number {
  top: 0;
}

.blog-inner__news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-inner__news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-inner__news-time {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.blog-inner__news-category {
  font-size: 14px;
  color: #888;
}

.blog-inner__news-link {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 4px;
  transition: color 0.3s;
}

.blog-inner__news-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.sidebar-form {
  position: sticky;
  top: 120px;
  background: #333;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  background-color: var(--primary);
  color: var(--main-color);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: linear-gradient(90deg, #DDE2E9 0%, #F2F4F7 35%, #C9CFD7 70%, #E8ECF1 100%) !important;
}
.sidebar-form h4{
   font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    padding-bottom: 10px;
}

.sidebar-form__title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--main-color);
}

.sidebar-form__box input,
.sidebar-form__box textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
  border: 1px solid #31302e69;
}

.sidebar-form__box input:focus,
.sidebar-form__box textarea:focus {
  border-color: var(--primary);
}

.sidebar-form__box textarea {
  min-height: 80px;
  resize: vertical;
}

.sidebar-form__box button {
  width: 100%;
  background: var(--main-color) !important;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-form__box button:hover {
  background: #232428b9 !important;
}
.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 35px 10px 35px;
}

.card-title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.Tabs_button__F1b7d:focus-visible {
    color: #121214;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x> :first-child {
    color: #4f4e57;
    background-color: #dae3e3;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x> :nth-child(2) {
    color: var(--color-green);
    background-color: #eaedf6;
}

@supports not selector(:focus-visible) {}


.switch:has(.circle:checked) {
    background: var(--color-offwhite);
}

.switch:has(.circle:checked)>.sun {
    opacity: 1;
}

.switch:has(.circle:checked)>.moon {
    opacity: 0;
}
.mapboxgl-ctrl button:not(:disabled):hover {
    background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
    box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
    box-shadow: none;
}


.mapboxgl-ctrl button:not(:disabled):hover {
    background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
    box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
    box-shadow: none;
}


.second-section__inner {
    height: 100%;
    display: grid;
    grid-template-columns: 65% 1fr;
    gap: 20px;
    margin-top: 40px;
}

.second-section__inner .card {
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 45px;
    border-top-left-radius: 3em;
    border-bottom-right-radius: 3em;
    padding: 40px 30px 25px 30px;
    background: linear-gradient(90deg,
    #DDE2E9 0%,
    #F2F4F7 35%,
    #C9CFD7 70%,
    #E8ECF1 100%
  ) !important;
}

.second-section__inner .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.second-section__inner .card-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: bold;
    color: #000;
    margin: 0 0 8px 0;
}

.second-section__inner .card-subtitle {
    font-size: 16px;
    line-height: 22px;
    color: #666;
    margin: 0 0 20px 0;
    font-weight: 400;
}

/* Left Card - Product Rating */
.second-section__inner .card:first-child {
    position: relative;
}

.second-section__inner .card:first-child .stars-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    width: 75%;
    height: 75%;
    z-index: 1;
    pointer-events: none;
    transform: translate(15%, -50%);
}

.second-section__inner .card:first-child .stars-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.25));
}

.second-section__inner .card:first-child .card-button-learn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #31302e;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    padding: 0px 30px;
    transition: 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: fit-content;
    color: #fff;
    height: 56px;
    text-decoration: none;
    margin-top: auto;
}



/* Right Card - Contact Center */
.second-section__inner .card:last-child {
    display: flex;
    flex-direction: column;
}

.second-section__inner .card:last-child .contact-phone {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: rgb(120, 124, 135);
    text-decoration: none;
    margin: 12px 0 8px;
    display: block;
    transition: color 0.3s;
}



.second-section__inner .card:last-child .contact-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.second-section__inner .card:last-child .contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color:#31302e;
    transition: all 0.3s;
    text-decoration: none;
}


.second-section__inner .card:last-child .contact-social-link svg {
    width: 24px;
    height: 24px;
}

.second-section__inner .card:last-child .contact-social-link:hover svg path {
    fill: #fff;
}

/* Requisites Section */

.second-section__inner .card:first-child .card-content {
    display: grid;
    grid-template-columns: 60% 40%;
}

.second-section__inner .card:first-child .card-content div {
    display: flex;
    flex-direction: column;
}

/* Blog Inner Page Styles */

/* Main Article Section */

/* News Feed Sidebar */

/* Vertical line */

.text-styles ul li::marker {
    color: #92b33d;
}

.page-catalog2-main-list-item-ava-list:focus-visible {
    outline: none;
}

.quote-form-submit:hover:not(:disabled) svg {
    transform: translateX(4px);
}


.mapboxgl-ctrl button:not(:disabled):hover {
    background-color: rgb(0 0 0/5%)
}

.mapboxgl-ctrl-group button:focus:focus-visible {
    box-shadow: 0 0 2px 2px #0096ff
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
    box-shadow: none
}

.phone-input:has(input:focus) {
    border-color: #006525
}

.marker--border[data-point-name=Ð¡Ð²Ð¸ÑÐ»Ð¾Ñ‡ÑŒ] .marker-tooltip,
.marker--border[data-point-name=ÐÐ»Ñ‚Ñ‹Ð½ÐºÐ¾Ð»ÑŒ] .marker-tooltip {
    left: auto;
    right: calc(100% - 0.5rem)
}


.row{
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center
}
.contact-info {
    min-height: 104px;
    padding-left: 15px;
    color: #fff
}
.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    letter-spacing: 0;
        color: var(--primary);
  
  }
 .contact-info h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
}
.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    letter-spacing: 0;
}.contact-info .det-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}
.contact-info .det-info a {
    font-weight: 400;
    transition: all .15s ease-in-out;
    width: max-content;
}

.contact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 48px; /* space between title and card */
  color: #fff;
}

/* CARD */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
 border-top-left-radius: 3em;
  padding: 50px 100px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}


/* GRID */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group.half {
  grid-column: span 1;
}

/* LABEL */
.form-group label {
  font-size: 15px;
  margin-bottom: 8px;
}
.row > div{
    width:33%;
    margin-bottom: 20px;
}

/* INPUTS */
.form-group input,
.form-group textarea {
      width: 100%;
    border: 2px solid #e6ecf2;
    padding: 12px 20px;
    border-radius: 4px !important;
    font-size: 14px !important;
    outline: none;
    position: relative;
    -webkit-appearance: none;
    transition: all .3s ease;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
  outline: none;
}

/* BUTTON */
.submit {
  margin-top: 20px;
  align-items: center;
}

.submit button {
  width: 100%;
  height: 56px;
  border-radius: var(--br);
  background: #000 !important;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .card-content{
    padding: 0;
  }
  .aboutp-hero__title {
    font-size: 44px;
  }
  .aboutp-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .cta-footer__box {
    padding: 50px;
  }
  .about__value {
    font-size: 73px;
  }
  .about__title {
    font-size: 33px;
  }
  nav .phone {
    font-size: 16px;
  }
  nav {
    gap: 10px;
  }
  .menu__items ul li a {
    font-size: 13px;
  }
  .blogs .container {
    grid-template-columns: 1fr;
  }
  .blogs__left {
    position: relative;
    top: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
  }
  .projects .owl-nav .owl-next {
    right: 10% !important;
  }

  .projects .owl-nav .owl-prev {
    left: 10% !important;
  }
}

@media (max-width: 1066px) {
    .second-section__inner {
    grid-template-columns: 1fr;
  }
    .card-content {
        padding: 25px;
    }

    .card-title {
        font-size: 22px;
    }

    .second-section__inner .card:first-child .stars-wrapper {
        position: relative;
        width: 100%;
        height: 150px;
        transform: none;
        top: auto;
        right: auto;
        margin-top: 20px;
    }
  .blog-inner__layout {
    display: grid;
    grid-template-columns: 1fr 273px;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}
.blog-inner__headline {
    font-size: 37px;}
  .blogs__right.blog-page, .reviews-grid, .gallery-carousel{
    grid-template-columns: 1fr 1fr;
  }
  .services-cards-grid{
    grid-template-columns: 1fr 1fr;
  }
  .aboutp-hero__grid {
    gap: 20px;
  }
  .cta-footer__box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-footer__left p {
    max-width: 100%;
  }
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq__left {
    position: relative;
    top: auto;
  }
  .faq__left p {
    max-width: 80%;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__image {
    position: relative;
    height: 400px;
  }

  .hero__title {
    font-size: 55px;
  }
  .hero__desc {
    font-size: 30px;
  }
  .hero__btn {
    font-size: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #open_menu {
    display: flex;
  }
  .menu__items ul,
  nav .phone,
  nav .button_underline {
    display: none;
  }
}


@media (max-width: 768px) {
    
    .hero__content p {
        font-size: 22px;
    }
    .row > div{
    width:100%;
    margin-bottom: 0;
}
    .contact-container{
    padding: 45px !important;
  }
  .row {
    display: flex;
    justify-content: space-between;
    gap: 0 !important;
    align-items: flex-start !important;
    flex-direction: column;
}

  .second-section__inner .card:first-child .card-content {
    grid-template-columns: 1fr;
  }
    .second-section__inner {
        grid-template-columns: 1fr;
        height: auto;
        gap: 16px;
    }

    .second-section__inner .card {
        min-height: 320px;
        padding: 30px 24px;
    }
.contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full,
  .form-group.half {
    grid-column: span 1;
  }
    .second-section__inner .card-title {
        font-size: 24px !important;
        line-height: 30px;
    }

    .second-section__inner .card:last-child .contact-phone {
        font-size: 28px !important;
        line-height: 36px;
    }

    .second-section {
        padding-top: 0;
    }

    .second-section__inner .card {
        padding: 0 !important;
    }

    .second-section__inner .card-title {
        font-size: 20px !important;
        line-height: 26px;
    }

    .second-section__inner .card:last-child .contact-social-link {
        width: 40px !important;
        height: 40px !important;
    }

    .second-section__inner .card:last-child .contact-social {
        margin-top: 0;
    }
      .blog-inner__headline {
        font-size: 26px;
    }
    .blog-inner__layout p {
        font-size: 16px;
    }
  .blogs__right.blog-page, .reviews-grid, .gallery-carousel, .blog-inner__layout{
    grid-template-columns: 1fr;
  }
  .blog-inner-section{
    padding-bottom: 0;
  }
  .services-cards-grid{
    grid-template-columns: 1fr;
  }
  .aboutp-hero__grid {
    grid-template-columns: 1fr;
  }
  .aboutp-hero__title {
    font-size: 27px;
  }
  .aboutp-stat__value {
    font-size: 47px;
  }
  .aboutp-hero__image {
    height: 370px;
  }
  .aboutp-values__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .aboutp-value {
    border-color: white;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
  }
  .cta-footer__box {
    padding: 20px;
  }
  .cta-footer__left p {
    max-width: 80%;
  }
  .cta-footer__right {
    padding: 35px;
  }
  .cta-footer__left h2 {
    font-size: 20px !important;
    margin-bottom: 20px;
  }
  .cta-footer__left h2 br {
    display: none;
  }
  .section__title {
    font-size: 23px;
  }
  h2 {
    font-size: 25px !important;
  }
  .faq-answer {
    padding-right: 0;
  }
  .section__top {
    flex-direction: column;
  }
  .blog__card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog__card-img {
    width: 100%;
  }
  .blog__card-left p:last-of-type {
    margin-bottom: 10px;
  }
  .blog__card {
    padding: 20px 0;
  }
  .blogs__left h2 {
    font-size: 23px;
  }
  .blog__card-left h3 {
    font-size: 21px;
  }
  .about__right {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .about__right::before,
  .about__right::after {
    display: none;
  }
  .hero__title {
    font-size: 27px;
  }
  .hero__desc {
    font-size: 20px;
  }
  .hero__btn {
    font-size: 16px;
  }
  .hero__prev {
    right: 20px;
  }
  .hero__next {
    right: 90px;
  }
  .hero__bottom-benefits {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .hero__bottom-benefits > div {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    padding:  20px;
    max-width: 500px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    height: inherit;
    background-color: #fff;
    margin-bottom:20px;
    max-width: 267px;
    margin: 0 auto 20px auto;
    border-radius: 4px;
  }

  .projects .owl-nav .owl-prev {
    left: 1% !important;
  }

  .projects .owl-nav .owl-next {
    right: 1% !important;
  }
  .about-hero__title p {
    font-size: 26px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
