:root {
  --secondary: #eed1e4;
  --primary: #c184b9;
  --coloraccent: #661f50;
  --vag-green: #3baf49;
  --dark-green: #143521;
  --graphite: #fff;
  --color: #231f20;
  --font-family: "Oswald", sans-serif;
  --second-family: "Exo 2", sans-serif;
  --third-family: "Inter", sans-serif;
  --font3: "Chillax Variable", sans-serif;
  --font4: "Axiforma", sans-serif;
  --font5: "Plus Jakarta Sans", sans-serif;
  --font6: "Outfit", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: var(--vag-green);
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
}

.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1196px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

strong {
  font-weight: 700;
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(28px, 4.533vw, 40px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color);
}

.header {
  position: absolute;
  top: 81px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}
.header .header-inner {
  padding: 11px 11px 11px 21px;
  background: var(--color);
  border: 1px solid var(--vag-green);
  border-radius: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.header .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.header .header-nav ul li a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.header .header-nav ul li a:hover {
  text-decoration: underline;
}
.header .contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 42.5px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 146%;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--color);
  background: var(--vag-green);
  border-radius: 48px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header .contact-btn:hover {
  background-color: #3ac84b;
}
.header .header-mobile {
  display: none;
}
@media (max-width: 767px) {
  .header {
    position: relative;
    top: 0;
  }
  .header .header-inner {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    border: none;
    border-radius: 0px;
    background: var(--color);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 66px;
    padding: 64px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header .header-inner .header-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 44px;
  }
  .header .header-inner .header-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  .header .header-inner .header-nav ul li a {
    text-align: center;
  }
  .header.menu-open .header-inner {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header .header-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    background: var(--vag-green);
    padding: 7.5px 16.44px;
  }
  .header .header-burger {
    position: absolute;
    right: 16.44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    z-index: 30;
  }
  .header .header-burger svg {
    display: block;
    overflow: visible;
  }
  .header .header-burger svg path {
    transform-box: fill-box;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: -webkit-transform 0.28s ease;
    transition: -webkit-transform 0.28s ease;
    transition: transform 0.28s ease;
    transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  }
  .header .header-burger.active svg path:first-child {
    -webkit-transform: translateY(-2.89px) rotate(-45deg);
            transform: translateY(-2.89px) rotate(-45deg);
    stroke: #3AAF49;
  }
  .header .header-burger.active svg path:last-child {
    -webkit-transform: translateY(2.89px) rotate(45deg);
            transform: translateY(2.89px) rotate(45deg);
    stroke: #3AAF49;
  }
}

.hero {
  background: #090b0c;
  padding-top: 120px;
  position: relative;
}
.hero .scroll-down {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 52px;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.hero .scroll-down img {
  width: 100%;
}
.hero .scroll-down:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 992px) {
  .hero .container {
    padding-right: 0;
  }
}
.hero .hero-box {
  max-width: 986px;
  margin: 0 auto;
  min-height: 690px;
  background-image: url(../img/hero.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (max-width: 992px) {
  .hero .hero-box {
    background-position: bottom right -50px;
  }
}
.hero .hero-main {
  padding-top: 134px;
}
.hero .hero-rate__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.5px;
}
.hero .hero-rate__gogl img {
  width: 28px;
}
.hero .hero-rate__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero .hero-rate__stars img {
  width: 32px;
}
.hero .hero-rate span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 170%;
  text-transform: uppercase;
  color: var(--graphite);
}
.hero .heo-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 17px;
}
.hero .heo-title span {
  color: var(--vag-green);
}
.hero .hero-pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 17px;
}
.hero .hero-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding: 9px 29px;
  background: var(--vag-green);
  border-radius: 26px;
  margin-top: 17px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.hero .hero-btn:hover {
  background-color: #3ac84b;
}
.hero .hero-btn i {
  display: none;
}
.hero .hero-btn-service {
  display: none;
  margin-top: 8px !important;
}
@media (max-width: 767px) {
  .hero .hero-btn-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero .contact-item {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7px;
}
.hero .contact-item img {
  padding-top: 4px;
}
.hero .contact-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  color: var(--graphite);
  margin-bottom: 5px;
}
.hero .contact-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}
.hero .contact-item ul {
  padding-left: 30px;
}
.hero .contact-item ul li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.hero .contact-item ul li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
.hero .contact-item ul li p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}
.hero .hero-rate-mob {
  display: none;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 0px;
  }
  .hero .scroll-down {
    display: none;
  }
  .hero .container {
    padding: 0;
  }
  .hero .hero-box {
    max-width: 986px;
    margin: 0 auto;
    background-image: url(../img/hero-mob.svg);
    background-position: center bottom;
    background-size: 373px;
    min-height: 658px;
  }
  .hero .hero-main {
    padding-top: 29px;
    padding-left: 16px;
    padding-right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero .hero-rate {
    display: none;
  }
  .hero .heo-title {
    font-size: 28px;
    text-align: center;
    margin-top: 0px;
  }
  .hero .hero-pretitle {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    margin-top: 8px;
  }
  .hero .hero-btn {
    font-size: 15px;
    padding: 9px 9px;
    border-radius: 26px;
    width: 184px;
    margin-top: 18px;
  }
  .hero .hero-btn span {
    display: none;
  }
  .hero .hero-btn i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero .contact-item {
    display: none;
  }
  .hero .hero-rate-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: -26px;
  }
  .hero .hero-rate-mob .hero-rate {
    width: 288px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--color);
    border: 1px solid var(--vag-green);
    border-radius: 22px;
    padding: 14.5px 44px;
  }
  .hero .hero-rate-mob .hero-rate__box {
    gap: 5px;
  }
  .hero .hero-rate-mob .hero-rate__gogl {
    width: 24.4px;
  }
  .hero .hero-rate-mob .hero-rate__stars img {
    width: 26px;
  }
  .hero .hero-rate-mob .hero-rate span {
    font-weight: 400;
    font-size: 15px;
  }
}

.services {
  padding-top: 32px;
  padding-bottom: 13px;
}
.services .title {
  text-align: center;
}
.services__list {
  margin-top: 19px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
}
@media (max-width: 992px) {
  .services__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.services .services-item {
  background: var(--color);
  border: 1px solid var(--vag-green);
  border-radius: 22px;
  padding: 25px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  min-height: 391px;
}
.services .services-item:nth-last-child(-n+3) {
  min-height: 338px;
}
.services .services-item {
  position: relative;
  z-index: 10;
}
.services .services-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 4px;
}
.services .services-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}
.services .services-item__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.services .services-item__btn svg {
  -webkit-transition: -webkit-transform 0.23s;
  transition: -webkit-transform 0.23s;
  transition: transform 0.23s;
  transition: transform 0.23s, -webkit-transform 0.23s;
}
.services .services-item__btn svg path {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.services .services-item__btn:hover {
  color: #fff;
}
.services .services-item__btn:hover svg path {
  stroke-opacity: 1;
}
.services .services-item__btn.active {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.services .services-item__btn.active svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.services .services-item__title2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--graphite);
  padding-top: 11px;
  margin-bottom: 2px;
}
.services .services-item__content_details {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.services .services-item__content_details ul {
  padding-left: 25px;
}
.services .services-item__content_details li {
  position: relative;
}
.services .services-item__content_details li::before {
  position: absolute;
  content: "";
  left: -14px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.75);
}
.services .services-item__content_details p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 767px) {
  .services {
    padding-top: 90px;
    padding-bottom: 0px;
  }
  .services__list {
    margin-top: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  .services .services-item {
    padding: 15px 16px;
    min-height: auto;
  }
  .services .services-item__title {
    font-size: 26px;
    margin-bottom: 4px;
  }
  .services .services-item p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
  }
  .services .services-item__title2 {
    font-size: 20px;
    padding-top: 11px;
    margin-bottom: 2px;
  }
  .services .services-item__content_details ul {
    padding-left: 25px;
  }
  .services .services-item__content_details li::before {
    left: -14px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 100px;
  }
  .services .services-item__content_details p {
    font-size: 16px;
  }
}

.why {
  position: relative;
  padding-top: 106px;
  padding-bottom: 106px;
}
.why__image {
  position: absolute;
  width: 100%;
  height: calc(100% + 167px);
  bottom: 0px;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .why__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .why__image img {
    margin-right: -120px;
  }
}
@media (min-width: 767px) {
  .why__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.why .why-box {
  position: relative;
  z-index: 10;
  max-width: 809px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.why .why-box::before {
  width: 286px;
  height: 381px;
  content: "";
  position: absolute;
  left: 0;
  top: 43px;
  background-image: url(../img/border-left.svg);
  background-repeat: no-repeat;
  background-position: center left;
}
@media (max-width: 992px) {
  .why .why-box::before {
    display: none;
  }
}
.why .why-box::after {
  width: 286px;
  height: 381px;
  content: "";
  position: absolute;
  right: 0;
  top: 43px;
  background-image: url(../img/border-right.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
@media (max-width: 992px) {
  .why .why-box::after {
    display: none;
  }
}
.why .title {
  color: var(--graphite);
  text-align: center;
}
.why .title span {
  color: var(--vag-green);
}
.why .google-rate {
  background-color: #FFFFFF;
  width: 313px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
  gap: 11.7px;
  margin-top: 17px;
  padding: 18.7px 23.5px 15.7px 23.5px;
  border-radius: 8px;
}
.why .google-rate::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  background: #34a853;
  top: 0;
  left: 0;
  right: 0;
}
.why .google-rate__icon img {
  width: 61px;
}
.why .google-rate__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.8px;
}
.why .google-rate__lb1 {
  font-family: var(--font5);
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  text-align: center;
  color: #6a6a6a;
}
.why .google-rate__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.why .google-rate__main span {
  font-family: var(--font5);
  font-weight: 800;
  font-size: 23px;
  line-height: 100%;
  text-align: center;
  color: #fea500;
}
.why .google-rate__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.why .google-rate__stars img {
  width: 27px;
}
.why .google-rate__lb2 {
  font-family: var(--font5);
  font-weight: 400;
  font-size: 11px;
  text-align: center;
  color: #868686;
}
.why .users {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 17px;
}
.why .users .users-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.why .users .users-item {
  border-radius: 150px;
  width: 66px;
  height: 66px;
  margin-left: -20px;
  position: relative;
}
.why .users .users-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.why .users .users-item:nth-child(1) {
  z-index: 5;
}
.why .users .users-item:nth-child(2) {
  z-index: 4;
}
.why .users .users-item:nth-child(3) {
  z-index: 3;
}
.why .users .users-item:nth-child(4) {
  z-index: 2;
}
.why .users .users-item:nth-child(5) {
  z-index: 1;
}
.why .users .users-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 31px;
  line-height: 130%;
  color: var(--graphite);
}
.why .users .users-title span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vag-green);
}
.why .wh-prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
  gap: 17px;
}
.why .wh-prof p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--graphite);
}
@media (min-width: 767px) {
  .why .wh-prof p br {
    display: none;
  }
}
.why .wh-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding: 9px 29px;
  line-height: 147%;
  margin-top: 17px;
  background: var(--vag-green);
  border-radius: 26px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.why .wh-btn:hover {
  background-color: #3ac84b;
}
.why .wh-btn span {
  display: none;
}
@media (max-width: 767px) {
  .why {
    padding-top: 62px;
    padding-bottom: 28px;
  }
  .why__image {
    height: calc(100% + 85px);
    bottom: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .why .google-rate {
    width: 197px;
    gap: 7.38px;
    padding: 11.8px 14.7px 9.8px 14.7px;
    border-radius: 5px;
  }
  .why .google-rate::before {
    height: 2px;
  }
  .why .google-rate__icon img {
    width: 38px;
  }
  .why .google-rate__content {
    gap: 4.9px;
  }
  .why .google-rate__lb1 {
    font-size: 9px;
  }
  .why .google-rate__main {
    gap: 8px;
  }
  .why .google-rate__main span {
    font-size: 14px;
  }
  .why .google-rate__stars img {
    width: 17px;
  }
  .why .google-rate__lb2 {
    font-size: 7px;
  }
  .why .users {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .why .users .users-item {
    width: 41.6px;
    height: 41.6px;
    margin-left: -12px;
  }
  .why .users .users-item:nth-child(1) {
    margin-left: 0;
  }
  .why .users .users-title {
    font-size: 19px;
  }
  .why .wh-prof {
    margin-top: 17px;
    gap: 10.6px;
    max-width: 230px;
  }
  .why .wh-prof img {
    width: 28px;
  }
  .why .wh-prof p {
    font-size: 16px;
    line-height: 120%;
  }
  .why .wh-btn {
    padding: 9px 64.5px;
    line-height: 147%;
    margin-top: 17px;
    border-radius: 26px;
  }
  .why .wh-btn i {
    display: none;
  }
  .why .wh-btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contact .container {
  max-width: 1244px;
}
.contact {
  background: var(--dark-green);
  padding: 130px 0;
}
.contact__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  width: 100%;
  padding: 10px;
  padding-right: 46px;
  -webkit-box-shadow: 0 0 58px 29px rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 58px 29px rgba(0, 0, 0, 0.03);
  background: var(--color);
  border-radius: 20px;
  background-image: url(../img/icons/messages-2.svg);
  background-repeat: no-repeat;
  background-size: 102px;
  background-position: bottom 18px right 31px;
  position: relative;
  z-index: 10;
}
.contact__main {
  padding: 39px 34px 20px 39px;
  background: var(--vag-green);
  border-radius: 20px;
  width: 43%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact .title {
  color: var(--color);
}
.contact__pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #666;
}
.contact__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  margin-top: 30px;
}
.contact .contact-item:last-child {
  margin-top: 15px;
}
.contact .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7px;
}
.contact .contact-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  color: var(--color);
  margin-bottom: 5px;
}
.contact .contact-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--color);
}
.contact .contact-item ul {
  padding-left: 24px;
}
.contact .contact-item ul li {
  font-size: 12px;
  line-height: 5px;
  color: var(--color);
  position: relative;
}
.contact .contact-item ul li::before {
  content: "";
  display: block;
  width: 4.5px;
  height: 4.5px;
  border-radius: 10px;
  left: -15px;
  top: 11px;
  position: absolute;
  background-color: var(--color);
}
.contact .contact-item ul li p,
.contact .contact-item ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--color);
}
.contact .contact-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.contact .contact-social a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
@media (min-width: 768px) {
  .contact .contact-social a svg path {
    fill: #143521;
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }
}
.contact .contact-social a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.contact .contact-social a:hover svg path {
  fill: #171717;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.contact .contact-form {
  width: 56%;
  padding-top: 27px;
  padding-bottom: 20px;
}
.contact .form-group {
  width: 100%;
  margin-bottom: 15px;
}
.contact .form-group:last-child {
  margin-bottom: 0;
}
.contact .form-group label {
  font-family: var(--font4);
  font-weight: 400;
  font-size: 16px;
  color: var(--graphite);
}
.contact .form-group input,
.contact .form-group textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 10px;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--graphite);
  padding: 18px 12px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 12px;
}
.contact .form-group input::-webkit-input-placeholder, .contact .form-group textarea::-webkit-input-placeholder {
  color: #a1a1aa;
}
.contact .form-group input::-moz-placeholder, .contact .form-group textarea::-moz-placeholder {
  color: #a1a1aa;
}
.contact .form-group input:-ms-input-placeholder, .contact .form-group textarea:-ms-input-placeholder {
  color: #a1a1aa;
}
.contact .form-group input::-ms-input-placeholder, .contact .form-group textarea::-ms-input-placeholder {
  color: #a1a1aa;
}
.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
  color: #a1a1aa;
}
.contact .form-group input:focus,
.contact .form-group textarea:focus {
  border-color: var(--vag-green);
}
.contact .form-group textarea {
  resize: none;
  height: 147px;
}
.contact .form-agree {
  margin-top: 16px;
}
.contact__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}
.contact .btn-submit {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding: 9px 37.5px;
  background: var(--vag-green);
  border-radius: 26px;
  border: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.contact .btn-submit:hover {
  background-color: #3ec44e;
}
@media (max-width: 992px) {
  .contact__box {
    padding-right: 10px;
    background-image: none;
    gap: 24px;
  }
  .contact__main {
    width: 50%;
    padding: 20px;
  }
  .contact .contact-form {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .contact {
    background: #171717;
    padding: 0;
  }
  .contact .container {
    padding: 0;
  }
  .contact__box {
    gap: 23px;
    padding: 10px;
    -webkit-box-shadow: 0 0 54px 27px rgba(0, 0, 0, 0.03);
            box-shadow: 0 0 54px 27px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__main {
    padding: 18px 14px 15px 27px;
    border-radius: 20px;
    width: 100%;
  }
  .contact .title {
    text-align: center;
    margin-bottom: 10px;
  }
  .contact__pretitle {
    font-size: 20px;
    text-align: center;
    font-weight: 300;
  }
  .contact__list {
    gap: 12px;
    margin-top: 34px;
  }
  .contact .contact-item img {
    width: 19px;
    margin-top: -1.5px;
  }
  .contact .contact-item:last-child {
    margin-top: 12px;
  }
  .contact .contact-item {
    gap: 5.5px;
  }
  .contact .contact-item__title {
    font-size: 17.88px;
    margin-bottom: 4px;
  }
  .contact .contact-item p {
    font-size: 16.25px;
  }
  .contact .contact-item ul {
    padding-left: 24px;
  }
  .contact .contact-item ul li {
    font-size: 12px;
    line-height: 20px;
  }
  .contact .contact-item ul li::before {
    width: 4.5px;
    height: 4.5px;
    border-radius: 10px;
    left: -15px;
    top: 11px;
  }
  .contact .contact-item ul li p,
  .contact .contact-item ul li a {
    font-size: 16.25px;
    line-height: 150%;
  }
  .contact .contact-social {
    gap: 9px;
    margin-top: 85px;
  }
  .contact .contact-social img {
    width: 34px;
  }
  .contact .contact-form {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .contact .form-group {
    margin-bottom: 13px;
  }
  .contact .form-group label {
    font-size: 15px;
  }
  .contact .form-group input,
  .contact .form-group textarea {
    margin-top: 6px;
    font-size: 13px;
    padding: 16.74px 11.16px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 11px;
  }
  .contact .form-group textarea {
    height: 137px;
  }
  .contact .form-agree {
    margin-top: 16px;
  }
  .contact__bottom {
    margin-top: 14px;
  }
  .contact .btn-submit {
    font-size: 18px;
    border-radius: 26px;
    font-weight: 300;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 48px;
    padding-left: 5.5px;
    padding-right: 42px;
  }
  .contact .btn-submit::after {
    content: "";
    position: absolute;
    right: 5.5px;
    width: 37px;
    height: 37px;
    background-image: url(../img/icons/send.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox input:checked + .checkbox__box {
  background: var(--vag-green);
}
.checkbox input:checked + .checkbox__box svg {
  opacity: 1;
}
.checkbox__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(239, 239, 239, 0.6);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  width: 25px;
  height: 25px;
}
.checkbox__box svg {
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.checkbox p {
  margin-left: 10px;
  font-family: var(--font4);
  font-weight: 400;
  font-size: 11px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.checkbox p a {
  font-family: var(--font4);
  font-weight: 400;
  font-size: 11px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}
.checkbox p a:hover {
  text-decoration: none;
}

.user-rew {
  padding-top: 39px;
  padding-bottom: 69px;
  background: #171717;
}
.user-rew .title {
  margin-bottom: 41px;
  text-align: center;
  color: var(--graphite);
  margin-bottom: 41px;
}
.user-rew .container {
  position: relative;
}
.user-rew .janko {
  position: absolute;
  bottom: -11px;
  left: -117px;
}
.user-rew .dominik {
  position: absolute;
  right: -63px;
  bottom: 70px;
}
.user-rew__box {
  width: 100%;
  max-width: 653px;
  margin: 0 auto;
}
.user-rew__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.user-rew__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.user-rew .user-rew-item {
  background: #171717;
  border: 1px solid var(--vag-green);
  border-radius: 22px;
  padding: 25px 30px;
}
.user-rew .user-rew-item__name {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  color: var(--graphite);
}
.user-rew .user-rew-item__rate {
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.user-rew .user-rew-item .google-icon {
  padding-top: 6px;
  padding-bottom: 6px;
}
.user-rew .user-rew-item__content {
  margin-top: 10px;
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  color: #d5d5d5;
}
@media (max-width: 992px) {
  .user-rew .janko {
    display: none;
  }
  .user-rew .dominik {
    display: none;
  }
}
@media (max-width: 767px) {
  .user-rew {
    padding-top: 29px;
    padding-bottom: 55px;
  }
  .user-rew .title {
    margin-bottom: 26px;
  }
  .user-rew__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .user-rew .user-rew-item {
    border-radius: 20px;
    padding: 23px 28px;
  }
  .user-rew .user-rew-item__name {
    font-size: 18px;
  }
  .user-rew .user-rew-item__rate {
    margin-top: 2px;
    gap: 2px;
  }
  .user-rew .user-rew-item .google-icon {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .user-rew .user-rew-item .google-icon img {
    width: 21px;
  }
  .user-rew .user-rew-item__stars img {
    width: 24px;
  }
  .user-rew .user-rew-item__content {
    font-size: 18px;
  }
}

.about {
  padding-top: 106px;
  padding-bottom: 47px;
}
.about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.about .employees {
  min-width: 432px;
  max-width: 432px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
}
.about .employees .employees-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #171717;
  border-radius: 31px;
}
.about .employees .employees-item__image {
  background: #171717;
  border: 2.51px solid var(--vag-green);
  border-radius: 31px;
  min-width: 161px;
  max-width: 161px;
  height: 154px;
  overflow: hidden;
}
.about .employees .employees-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about .employees .employees-item__content {
  padding-left: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .employees .employees-item__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--vag-green);
}
.about__main .title {
  margin-bottom: 13px;
}
.about__content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--color);
}
.about__content p {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .about .employees {
    min-width: 360px;
    max-width: 360px;
    gap: 27px;
  }
  .about .employees .employees-item {
    border-radius: 19px;
  }
  .about .employees .employees-item__image {
    border: 1.6px solid var(--vag-green);
    border-radius: 19px;
    min-width: 103px;
    max-width: 103px;
    height: 98px;
  }
  .about .employees .employees-item__content {
    padding-left: 26px;
  }
  .about .employees .employees-item__name {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .about {
    padding-top: 48px;
    padding-bottom: 28px;
  }
  .about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about .employees {
    min-width: 100%;
    max-width: 100%;
    gap: 17px;
  }
  .about__content {
    font-size: 16px;
  }
  .about__content p {
    margin-top: 24px;
  }
}

.faq {
  padding-top: 47px;
  padding-bottom: 141px;
}
.faq .container {
  max-width: 1208px;
}
.faq .title {
  margin-bottom: 38px;
  text-align: center;
}
.faq__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
.faq .faq-item {
  padding: 15px 30px;
  background: var(--color);
  border-radius: 30px;
}
.faq .faq-item__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.faq .faq-item__top::after {
  position: relative;
  right: 0;
  content: "";
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-image: url(../img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faq .faq-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: var(--graphite);
}
.faq .faq-item__content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--graphite);
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.faq .faq-item__content p:first-child {
  margin-top: 19px;
}
.faq .faq-item__content p + p {
  margin-top: 19px;
}
.faq .faq-item .faq-item__top[aria-expanded=true]::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 767px) {
  .faq {
    padding-top: 28px;
    padding-bottom: 64px;
  }
  .faq .title {
    margin-bottom: 20px;
  }
  .faq__list {
    gap: 12px;
  }
  .faq .faq-item__content {
    font-size: 18px;
  }
}

.footer {
  padding-top: 67px;
  padding-bottom: 63px;
  background: #171717;
}
.footer .container {
  max-width: 1266px;
}
.footer .footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 73px;
}
@media (max-width: 992px) {
  .footer .footer-main {
    gap: 73px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 32px;
}
.footer .footer-col:last-child {
  min-width: 380px;
}
.footer .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer .footer-social a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer .footer-social a:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.footer .footer-nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.footer .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer .footer-nav ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--graphite);
}
.footer .footer-nav ul li a:hover {
  text-decoration: underline;
}
.footer .footer-contact {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.footer .footer-contact .footer-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7px;
}
.footer .footer-contact .footer-contact-item img {
  padding-top: 4px;
}
.footer .footer-contact .footer-contact-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  color: var(--graphite);
  margin-bottom: 5px;
}
.footer .footer-contact .footer-contact-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-contact .footer-contact-item ul {
  padding-left: 30px;
}
.footer .footer-contact .footer-contact-item ul li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.footer .footer-contact .footer-contact-item ul li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
.footer .footer-contact .footer-contact-item ul li p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-bottom {
  margin-top: 60px;
}
.footer .tripled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--graphite);
  border-radius: 57px;
  padding: 6px 31px;
}
.footer .tripled__txt {
  font-family: var(--font3);
  font-weight: 500;
  font-size: 21px;
  color: rgba(0, 0, 0, 0.5);
  width: 50%;
}
.footer .tripled__txt a {
  font-family: var(--font3);
  font-weight: 600;
  font-size: 21px;
  text-decoration: underline;
  color: #000;
  margin-left: 6px;
}
.footer .tripled__txt2 {
  font-family: var(--font3);
  font-weight: 500;
  font-size: 21px;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
  width: 50%;
}
.footer .tripled__txt2 span {
  font-family: var(--font6);
  font-weight: 500;
  font-size: 21px;
  color: #000;
  padding-right: 6px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 29px;
    padding-bottom: 60px;
  }
  .footer .footer-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 47px;
  }
  .footer .footer-box {
    gap: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer-col:last-child {
    min-width: auto;
  }
  .footer .footer-social {
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer .footer-nav-box {
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer-nav ul {
    gap: 10px;
  }
  .footer .footer-contact {
    gap: 30px;
  }
  .footer .footer-contact .footer-contact-item {
    gap: 6px;
  }
  .footer .footer-contact .footer-contact-item img {
    padding-top: 4px;
    width: 21px;
  }
  .footer .footer-contact .footer-contact-item__title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .footer .footer-contact .footer-contact-item p {
    font-size: 16px;
  }
  .footer .footer-contact .footer-contact-item .address {
    max-width: 170px;
  }
  .footer .footer-contact .footer-contact-item ul {
    padding-left: 22px;
  }
  .footer .footer-contact .footer-contact-item ul li {
    font-size: 12px;
  }
  .footer .footer-contact .footer-contact-item ul li::before {
    left: -14px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 10px;
  }
  .footer .footer-contact .footer-contact-item ul li p {
    font-size: 16px;
  }
  .footer .footer-bottom {
    margin-top: 73px;
  }
  .footer .tripled {
    border-radius: 57px;
    padding: 6px 31px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent;
    gap: 20px;
  }
  .footer .tripled__txt {
    font-size: 21px;
    width: auto;
    color: rgba(255, 255, 255, 0.5);
  }
  .footer .tripled__txt a {
    font-size: 21px;
    margin-left: 6px;
    color: var(--graphite);
  }
  .footer .tripled__logo {
    border-radius: 85px;
    width: 222px;
    height: 61px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .footer .tripled__txt2 {
    font-size: 21px;
    text-align: center;
    width: auto;
    color: rgba(255, 255, 255, 0.5);
  }
  .footer .tripled__txt2 span {
    font-size: 21px;
    padding-right: 6px;
    color: #fff;
  }
}

.header-V2 .header-mobile {
  border-bottom: 2px solid #231f20;
}

.text-page {
  padding-top: 240px;
  padding-bottom: 46px;
}
@media (max-width: 767px) {
  .text-page {
    padding-top: 30px;
  }
}
.text-page p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #231f20;
  margin-bottom: 24px;
}
.text-page ul {
  padding-left: 24px;
}
.text-page ul li {
  position: relative;
}
.text-page ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #231f20;
  left: -14px;
  top: 10px;
}