@charset "UTF-8";
/* Jost Semibold */
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Regular.woff2") format("woff2"), url("../fonts/Jost-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Medium.woff2") format("woff2"), url("../fonts/Jost-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Gilroy Semibold */
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Medium.woff2") format("woff2"), url("../fonts/Ubuntu-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Bold.woff2") format("woff2"), url("../fonts/Ubuntu-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Jost", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  color: #171615;
}

html {
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  font-family: "Ubuntu";
}

.section-title {
  font-size: 34px;
  margin-bottom: 20px;
}
.section-title__inner {
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  .section-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title__inner {
    margin-bottom: 12px;
  }
}

a {
  width: fit-content;
  display: block;
  text-decoration: none;
  color: #171615;
  transition: all 0.3s;
}
a:hover {
  color: #ed6325;
}

ul {
  list-style-type: none;
}

section {
  scroll-margin-top: 120px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1280px) {
  section {
    margin-bottom: 70px;
    scroll-margin-top: 80px;
  }
}
@media screen and (max-width: 640px) {
  section {
    margin-bottom: 50px;
    scroll-margin-top: 70px;
  }
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: none;
  border: none;
  background-color: #ed6325;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s;
}
.btn:hover {
  transform: translate(0, -5px);
}
.btn-black {
  background-color: #171615;
}
.btn-black:hover {
  background-color: #171615;
}

input {
  border: none;
  background: none;
  background-color: #f6f6f6;
}
input:focus {
  outline: none;
}

header {
  margin: 23px 0;
}
@media screen and (max-width: 1280px) {
  header {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  header {
    margin-right: 15px;
    margin-left: 15px;
  }
}
header .container {
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  header .container {
    padding: 12px;
  }
}
header .left {
  display: flex;
  gap: 25px;
  align-items: center;
}
@media screen and (max-width: 640px) {
  header .left .logo {
    max-width: 219px;
  }
  header .left .logo svg {
    width: 100%;
  }
}
header .left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  header .left ul {
    display: none;
  }
}
header .left ul a {
  font-weight: 500;
}
header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .right .tel {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1280px) {
  header .right .tel {
    display: none;
  }
}
header .right .tel path {
  transition: 0.3s;
}
header .right .tel:hover path {
  stroke: #ed6325;
}
header .right .buttons {
  display: flex;
  gap: 10px;
}
header .right .buttons .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  aspect-ratio: 1/1;
  background-color: #171615;
  border-radius: 12px;
}
@media screen and (max-width: 1280px) {
  header .right .buttons .social {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  header .right .buttons .btn {
    display: none;
  }
}
header .right .buttons .burger-btn {
  display: none;
}
@media screen and (max-width: 1280px) {
  header .right .buttons .burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    aspect-ratio: 1/1;
    background-color: #171615;
    border-radius: 12px;
  }
}

footer {
  background-color: #171615;
  padding: 30px 0;
}
footer * {
  color: #fff;
}
footer .col {
  display: flex;
  flex-direction: column;
}
footer .col h5 {
  font-family: "Jost";
  color: #b9b9b9;
  margin-bottom: 10px;
  font-size: 15px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  footer .top {
    justify-content: baseline;
    flex-wrap: wrap;
    column-gap: 110px;
    row-gap: 25px;
  }
}
@media screen and (max-width: 640px) {
  footer .top {
    justify-content: baseline;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
  }
}
footer .top .col-1 a {
  margin-bottom: 28px;
}
footer .top .col-1 p {
  max-width: 160px;
}
@media screen and (max-width: 640px) {
  footer .top .col-1 p {
    max-width: none;
  }
}
footer .top .col-2 .row {
  display: flex;
  gap: 40px;
}
footer .top .col-2 .row .col {
  gap: 10px;
}
footer .top .col-3 a {
  display: flex;
  align-items: center;
  gap: 7px;
}
footer .top .col-3 a:hover {
  color: #fff;
}
footer .top .col-4 {
  margin-right: 110px;
}
footer .top .col-4 .socials {
  display: flex;
  gap: 10px;
}
footer .top .col-4 .socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  aspect-ratio: 1/1;
  background-color: #ed6325;
  border-radius: 12px;
}
footer .bottom {
  display: flex;
}
footer .bottom p {
  display: flex;
  gap: 3px;
  margin-left: auto;
}
footer .bottom p a {
  text-decoration: underline;
}
footer .bottom p a:hover {
  color: #fff;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .burger-btn {
    display: block;
  }
}

.burger-overlay {
  position: fixed;
  z-index: 13;
  background: #fff;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.burger-overlay .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.burger-overlay header {
  background-color: #f6f6f6;
  padding: 15px;
  margin-right: 0;
  margin-left: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}
@media screen and (max-width: 640px) {
  .burger-overlay header {
    padding: 12px;
  }
}
@media screen and (max-width: 640px) {
  .burger-overlay header .logo {
    max-width: 219px;
  }
  .burger-overlay header .logo svg {
    width: 100%;
  }
}
.burger-overlay header #burger-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  aspect-ratio: 1/1;
  background-color: #171615;
  border-radius: 12px;
}
.burger-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.burger-overlay ul li a {
  font-size: 20px;
  font-weight: 600;
}
.burger-overlay .line {
  width: 100%;
  height: 1px;
  background-color: #f4f4f4;
  margin-bottom: 25px;
}
.burger-overlay .btn {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-bottom: 15px;
  margin-top: auto;
  width: 100%;
}
.burger-overlay .tel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.burger-overlay .tel path {
  transition: 0.3s;
}
.burger-overlay .tel:hover path {
  stroke: #ed6325;
}
.burger-overlay .buttons {
  display: flex;
  gap: 10px;
}
.burger-overlay .buttons .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  aspect-ratio: 1/1;
  background-color: #171615;
  border-radius: 12px;
}

.burger-overlay.visible {
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s;
}

.no-scroll {
  overflow: hidden;
}

.modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 20;
  background: #fefeff;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.modal-overlay .modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 588px;
  padding: 30px;
  border-radius: 28px;
  background-color: #fefeff;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal {
    width: 90%;
    padding: 20px;
  }
}
.modal-overlay .modal .close {
  position: absolute;
  right: 30px;
  top: 30px;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal .close {
    right: 20px;
    top: 20px;
  }
}
.modal-overlay .modal h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal h2 {
    max-width: 95%;
    font-size: 24px;
  }
}
.modal-overlay .modal .under-title {
  margin-bottom: 20px;
}
.modal-overlay .modal form .input__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
  margin-bottom: 20px;
}
.modal-overlay .modal form .input__wrap input {
  width: 48%;
  padding: 15px;
  border-radius: 7px;
  border: none;
  background: none;
  background-color: #f6f6f6;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal form .input__wrap input {
    width: 100%;
  }
}
.modal-overlay .modal form .input__wrap input:focus {
  outline: none;
}
.modal-overlay .modal form .politics {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 20px;
}
.modal-overlay .modal form .politics input {
  accent-color: #151514;
  width: 17px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.modal-overlay .modal form .politics p {
  color: #595959;
}
.modal-overlay .modal form .politics p a {
  display: inline;
  color: #595959;
  text-decoration: underline;
}
.modal-overlay .modal form .btn {
  width: 100%;
  background-color: #ed6325;
  cursor: pointer;
  font-weight: 600;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s;
}

.modal-overlay.visible .modal {
  transform: translateY(0);
  opacity: 1;
}

.no-scroll {
  overflow: hidden;
}

.form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.ui-select {
  --h: 49px;
  --r: 12px;
  --padX: 15px;
  --border: none;
  --text: #585A5E;
  --textActive: #585A5E;
  --shadow: 0 18px 50px rgba(0,0,0,.08);
  position: relative;
  width: 100%;
}

.ui-select__btn {
  width: 100%;
  height: var(--h);
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  outline: none;
}

.ui-select__text {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: left;
}

.ui-select.has-value .ui-select__text {
  color: var(--textActive);
}

.ui-select__chev {
  flex: 0 0 auto;
  color: #555;
  transition: transform 0.25s ease;
}

.ui-select.is-open .ui-select__chev {
  transform: rotate(180deg);
}

/* dropdown */
.ui-select__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--h) + 10px);
  z-index: 20;
  background: #F2F2F2;
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.99);
  max-height: 0;
  transition: opacity 0.22s ease, transform 0.22s ease, max-height 0.28s ease;
  max-height: var(--dd-h, 0px);
  pointer-events: none;
}

.ui-select.is-open .ui-select__dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ui-select__list {
  margin: 0;
  padding: 15px;
  list-style: none;
  outline: none;
}

.ui-select__item {
  padding: 15px;
  font-size: 15px;
  line-height: 1.15;
  color: #5a5a5a;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.ui-select__item:hover, .ui-select__item:focus {
  background: #f6f6f6;
  color: #3f3f3f;
  outline: none;
}
.ui-select__item + .ui-select__item {
  margin-top: 2px;
}

/* просто чтобы увидеть submit */
.submit {
  height: 52px;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.hero .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .hero .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 640px) {
  .hero .container {
    gap: 12px;
  }
}
.hero .left {
  width: 49%;
  background-color: #f6f6f6;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .hero .left {
    width: 100%;
    padding: 30px 20px;
  }
}
.hero .left h1 {
  font-size: 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1280px) {
  .hero .left h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .hero .left h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.hero .left p {
  font-size: 18px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1280px) {
  .hero .left p {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .hero .left p {
    font-size: 15px;
    margin-bottom: 25px;
  }
}
.hero .left .buttons {
  margin-top: auto;
  display: flex;
  gap: 15px;
}
.hero .left .buttons a:hover {
  color: #fff;
}
.hero .left .buttons .btn {
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  .hero .left .buttons .btn {
    font-size: 14px;
    padding: 15px;
  }
}
.hero .right {
  position: relative;
  width: 49%;
  height: 468px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .hero .right {
    width: 100%;
    height: 330px;
  }
}
@media screen and (max-width: 640px) {
  .hero .right {
    height: 280px;
  }
}
.hero .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .right .cities {
  position: absolute;
  display: flex;
  gap: 10px;
  bottom: 25px;
  right: 25px;
}
@media screen and (max-width: 640px) {
  .hero .right .cities {
    flex-wrap: wrap;
    justify-content: end;
    bottom: 15px;
    right: 15px;
  }
}
.hero .right .cities span {
  padding: 5px 15px;
  border-radius: 15px;
  background-color: #fff;
}

.contacts .content {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 1280px) {
  .contacts .content {
    flex-direction: column;
  }
}
.contacts .content .text {
  width: 100%;
  position: relative;
  padding: 10px 0;
  padding-left: 10px;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text {
    padding: 0;
  }
}
.contacts .content .text h2 {
  margin-bottom: 10px;
}
.contacts .content .text p {
  color: #585a5e;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text p {
    max-width: 80%;
  }
}
.contacts .content .text .tel {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text .tel {
    display: none;
  }
}
.contacts .content .text .tel path {
  transition: 0.3s;
}
.contacts .content .text .tel:hover path {
  stroke: #ed6325;
}
.contacts .content .text .socials {
  position: absolute;
  top: 32px;
  right: 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.contacts .content .text .socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background-color: #ed6325;
}
.contacts .content .text h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.contacts .content .text form .input__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text form .input__wrap {
    column-gap: 2%;
  }
}
.contacts .content .text form .input__wrap input {
  width: 234px;
  padding: 15px;
  border-radius: 7px;
  border: none;
  background: none;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text form .input__wrap input {
    width: 49%;
  }
}
@media screen and (max-width: 640px) {
  .contacts .content .text form .input__wrap input {
    width: 100%;
  }
}
.contacts .content .text form .input__wrap input:focus {
  outline: none;
}
.contacts .content .text form .politics {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 8px;
}
@media screen and (max-width: 640px) {
  .contacts .content .text form .politics {
    flex-wrap: wrap;
  }
}
.contacts .content .text form .politics input {
  accent-color: #151514;
  width: 17px;
  flex-shrink: 0;
}
.contacts .content .text form .politics p {
  color: #595959;
  margin-bottom: 0;
}
.contacts .content .text form .politics p a {
  color: #595959;
  text-decoration: underline;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text form .politics p a {
    display: inline;
  }
}
.contacts .content .text form .politics .btn {
  width: 120px;
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0 !important;
}
@media screen and (max-width: 640px) {
  .contacts .content .text form .politics .btn {
    width: 100%;
  }
}
.contacts .content .text .form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
.contacts .content .text .ui-select {
  width: 234px;
  --h: 49px;
  --r: 7px;
  --padX: 15px;
  --border: none;
  --text: #585a5e;
  --textActive: #585a5e;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  position: relative;
}
@media screen and (max-width: 1280px) {
  .contacts .content .text .ui-select {
    width: 100%;
  }
}
.contacts .content .text .ui-select__btn {
  width: 100%;
  height: var(--h);
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  outline: none;
}
.contacts .content .text .ui-select__text {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: left;
}
.contacts .content .text .ui-select.has-value .ui-select__text {
  color: var(--textActive);
}
.contacts .content .text .ui-select__chev {
  flex: 0 0 auto;
  color: #555;
  transition: transform 0.25s ease;
}
.contacts .content .text .ui-select.is-open .ui-select__chev {
  transform: rotate(180deg);
}
.contacts .content .text {
  /* dropdown */
}
.contacts .content .text .ui-select__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--h) + 10px);
  z-index: 20;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.99);
  max-height: 0;
  transition: opacity 0.22s ease, transform 0.22s ease, max-height 0.28s ease;
  max-height: var(--dd-h, 0px);
  pointer-events: none;
}
.contacts .content .text .ui-select.is-open .ui-select__dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.contacts .content .text .ui-select__list {
  margin: 0;
  padding: 15px;
  list-style: none;
  outline: none;
}
.contacts .content .text .ui-select__item {
  padding: 15px;
  font-size: 15px;
  line-height: 1.15;
  color: #5a5a5a;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.contacts .content .text .ui-select__item:hover, .contacts .content .text .ui-select__item:focus {
  background: #f6f6f6;
  color: #3f3f3f;
  outline: none;
}
.contacts .content .text .ui-select__item + .contacts .content .text .ui-select__item {
  margin-top: 2px;
}
.contacts .content .bg {
  width: 388px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .contacts .content .bg {
    width: 100%;
    height: 256px;
  }
}
.contacts .content .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services ul {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .services ul {
    flex-direction: column;
  }
}
.services ul li {
  display: flex;
  flex-direction: column;
  width: 32%;
  height: 489px;
  padding: 25px;
  border-radius: 20px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 1280px) {
  .services ul li {
    width: 100%;
    height: auto;
    padding: 15px;
  }
}
.services ul li .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 17px;
}
@media screen and (max-width: 640px) {
  .services ul li .number {
    width: 34px;
    margin-bottom: 12px;
  }
}
.services ul li h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .services ul li h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.services ul li p {
  color: #423f3f;
  margin-bottom: 10px;
  line-height: 130%;
}
.services ul li .btn {
  display: flex;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 15px;
  padding: 15px;
}
@media screen and (max-width: 640px) {
  .services ul li .btn {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.services ul li .img__wrap {
  height: 171px;
  border-radius: 12px;
  overflow: hidden;
}
.services ul li .img__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .container {
  display: flex;
  gap: 24px;
}
.about .container p {
  line-height: 130%;
}
@media screen and (max-width: 1280px) {
  .about .container {
    flex-direction: column;
  }
}
.about .right {
  max-width: 384px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 21px;
}
@media screen and (max-width: 1280px) {
  .about .right {
    max-width: none;
    column-gap: 2%;
    width: 100%;
  }
}
.about .right .item {
  width: 180px;
  height: 127px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 20px;
}
@media screen and (max-width: 1280px) {
  .about .right .item {
    width: 49%;
    height: 110px;
  }
}
.about .right .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .right .item h4 {
  font-size: 36px;
  margin-bottom: 8px;
}
@media screen and (max-width: 640px) {
  .about .right .item h4 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
.about .right .item span {
  color: #423f3f;
  line-height: 130%;
}
.about .right .item:nth-child(2) {
  padding: 0;
}
.about .right .item:nth-child(3) {
  padding: 0;
}
.about .right .item:last-child {
  background-color: #ed6325;
}
.about .right .item:last-child h4,
.about .right .item:last-child span {
  color: #fff;
}

.advantages ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 20px;
}
@media screen and (max-width: 1280px) {
  .advantages ul {
    flex-direction: column;
    gap: 15px;
  }
}
.advantages ul li {
  position: relative;
  width: 49%;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .advantages ul li {
    width: 100%;
    padding: 15px;
  }
}
.advantages ul li h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .advantages ul li h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.advantages ul li p {
  max-width: 380px;
  color: #423f3f;
  line-height: 130%;
}
@media screen and (max-width: 1280px) {
  .advantages ul li p {
    margin-bottom: 42px;
  }
}
.advantages ul li .num {
  font-family: "Ubuntu";
  font-size: 120px;
  font-weight: 600;
  position: absolute;
  right: 20px;
  bottom: -42px;
}
@media screen and (max-width: 1280px) {
  .advantages ul li .num {
    font-size: 80px;
    bottom: -30px;
  }
}
.advantages ul li:nth-child(1) {
  border: 1px solid #f6f6f6;
}
.advantages ul li:nth-child(2) {
  background-color: #f6f6f6;
}
.advantages ul li:nth-child(3) {
  background-color: #ed6325;
}
.advantages ul li:nth-child(3) h3,
.advantages ul li:nth-child(3) p,
.advantages ul li:nth-child(3) .num {
  color: #fff;
}
.advantages ul li:nth-child(4) {
  background-color: #171615;
}
.advantages ul li:nth-child(4) h3,
.advantages ul li:nth-child(4) p,
.advantages ul li:nth-child(4) .num {
  color: #fff;
}

.reviews .container {
  position: relative;
}
.reviews .cases-prev,
.reviews .cases-next {
  top: 45%;
  cursor: pointer;
  position: absolute;
}
@media screen and (max-width: 1280px) {
  .reviews .cases-prev,
  .reviews .cases-next {
    display: none;
  }
}
.reviews .cases-prev {
  left: -90px;
}
.reviews .cases-next {
  right: -90px;
}
.reviews .swiper {
  padding-bottom: 50px;
  height: 100%;
}
.reviews .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}
.reviews .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #f6f6f6;
  border-radius: 20px;
}
.reviews .swiper-slide .icon {
  margin-bottom: 15px;
}
.reviews .swiper-slide p {
  color: #585a5e;
  margin-bottom: 15px;
}
.reviews .swiper-slide .line {
  margin-top: auto;
  width: 100%;
  height: 1px;
  background-color: #e7e7e7;
  margin-bottom: 15px;
}
.reviews .swiper-slide .under {
  display: flex;
  flex-direction: column;
}
.reviews .swiper-slide .under h5 {
  font-size: 16px;
  margin-bottom: 6px;
}
.reviews .swiper-slide .under .rating-date {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.reviews .swiper-slide .under .rating-date .rating {
  display: flex;
  align-items: start;
  gap: 6px;
}
.reviews .swiper-slide .under .rating-date .rating .nums {
  color: #585a5e;
}
.reviews .swiper-pagination {
  display: none;
}
@media screen and (max-width: 1280px) {
  .reviews .swiper-pagination {
    display: block;
  }
}
.reviews .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  background-color: #d6d6d6;
}
.reviews .swiper-pagination-bullet-active {
  background-color: #ed6325;
}

/*# sourceMappingURL=style.css.map */
