/*============= ALIGNES ===============*/

:root {
  --font-size-70-240: clamp(70px, calc((100vw - 320px)/(1970 - 320) * (240 - 70) + 70px), 240px);
  --font-size-30-200: clamp(30px, calc((100vw - 320px)/(1970 - 320) * (200 - 30) + 30px), 200px);
  --font-size-28-90: clamp(28px, calc((100vw - 320px)/(1970 - 320) * (90 - 28) + 28px), 90px);
  --font-size-28-66: clamp(28px, calc((100vw - 320px)/(1970 - 320) * (66 - 28) + 28px), 66px);
  --font-size-28-50: clamp(22px, calc((100vw - 320px)/(1970 - 320) * (50 - 22) + 22px), 50px);
  --font-size-28-46: clamp(28px, calc((100vw - 320px)/(1970 - 320) * (46 - 28) + 28px), 46px);
  --font-size-24-40: clamp(24px, calc((100vw - 320px)/(1970 - 320) * (40 - 24) + 24px), 40px);
  --font-size-24-32: clamp(24px, calc((100vw - 320px)/(1970 - 320) * (32 - 24) + 24px), 32px);
  --font-size-20-28: clamp(20px, calc((100vw - 320px)/(1970 - 320) * (28 - 20) + 20px), 28px);
  --font-size-18-26: clamp(18px, calc((100vw - 320px)/(1970 - 320) * (26 - 18) + 18px), 26px);
  --font-size-16-24: clamp(16px, calc((100vw - 320px)/(1970 - 320) * (24 - 16) + 16px), 24px);
  --font-size-16-22: clamp(16px, calc((100vw - 320px)/(1970 - 320) * (22 - 16) + 16px), 22px);
  --font-size-16-20: clamp(16px, calc((100vw - 320px)/(1970 - 320) * (20 - 16) + 16px), 20px);
  --font-size-16-18: clamp(16px, calc((100vw - 320px)/(1970 - 320) * (18 - 16) + 16px), 18px);
  --font-size-13-16: clamp(13px, calc((100vw - 320px)/(1970 - 320) * (16 - 13) + 13px), 16px);
  --font-size-13: 13px;
  --primary: #ffffff;
  --primary_1: #ffffff;
  --second: #000000;
  --third: #ffffff;
  --fourth: #FFCC00;
  --fifth: #229ED9;
  --sixth: #25D366;
  --primary-hover: #000000;
  --head-primary: #1C202A;
  --main-text-primary: #55585F;
  --head-secondary: #ECECEC;
  --main-text-secondary: #CBD8E3;
  --secondary-text: #CECCCC;
  --background: #1C202A;
  --background-head: #000000;
  --background-secondary: #32363F;
  --background-thirdly: #FFFFFF;
  --secondary: #F0F0F0;
  --secondary-2: #DDDFE2;
  --error: #C74040;
}

::-webkit-scrollbar-thumb {
  background-color: var(--second);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--main-text-secondary);
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', 'Roboto Condensed', sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  /*max-width: 1920px;*/
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size-13-16);
  line-height: 130%;
  color: var(--main-text-secondary);
  font-weight: 400;
}

.breadcrumbs span {
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size-13-16);
  line-height: 130%;
  color: var(--main-text-secondary);
  font-weight: 400;
  transition: all .3s;
}

.breadcrumbs span:not(.current-item):hover {
  color: var(--primary-hover);
}

.breadcrumbs .current-item span,
.breadcrumbs span.current-item {
  color: var(--primary_1);
}

h1.title-page {
  font-size: var(--font-size-28-66);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
  margin-bottom: 30px;
  text-transform: uppercase;
}

.btn-show-review {
  margin-top: 12px;
  background: transparent;
  border: none;
  color: var(--head-secondary);
  font-size: var(--font-size-13-16);
  font-weight: 700;
  line-height: 100%;
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  transition: all .3s;
}

.btn-show-review::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  bottom: -1px;
  background-image: url('../images/arrow_right.svg');
  transition: color, right .3s;
}

.btn-show-review:hover::after {
  right: -10px;
}

.btn-show-review:hover {
  color: var(--primary-hover);
}

.btn-show-review:hover::after{
  filter: invert(1);
}

.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container,
.privacy-policy .content {
  max-width: 1550px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.privacy-policy .content * {
  color: var(--background-thirdly);
  margin-bottom: 15px;
}

.container .container {
  padding: 0;
}

.container__margin-100 {
  margin-bottom: 100px !important;
}

.container__margin-40 {
  margin-bottom: 40px !important;
}

.container__padding-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.container__wrapper {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

/* #main,
#primary {
  min-height: 83vh;
}
.error404 main {
  min-height: auto !important;
} */

.bottom-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.bottom-block {
  margin-top: 30px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  background: transparent;
  background-color: transparent;
  border: 1px solid var(--primary_1);
  outline: none;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--background-secondary);
  font-size: var(--font-size-13-16);
  line-height: 100%;
  font-weight: 700;
  background-color: var(--primary_1);
  cursor: pointer;
  transition: all 0.3s ease-in;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn.padding {
  padding-left: 30px;
  padding-right: 50px;
}

.btn.white {
  background-color: var(--primary);
  border: 1px solid var(--primary_1);
  color: var(--background-secondary);
}

.btn.white:hover {
  color: var(--background-secondary);
  background-color: var(--primary_1);
  border: 1px solid var(--primary_1);
}

.btn.padding::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url('../images/add-icon.svg');
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(1);
}

.btn.border {
  border: 1px solid var(--primary_1);
  background-color: transparent;
  color: var(--primary_1);
}

.btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  border: 1px solid var(--primary-hover);
  color: var(--background-thirdly);
}

.btn.border:hover {
  background-color: var(--primary_1);
  border-color: var(--primary_1);
  color: var(--head-primary);
}

a {
  text-decoration: none;
}

@media (max-width: 1400px) {
  .container__padding-60 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

@media(max-width: 1024px) {
  .container__margin-100 {
    margin-bottom: 40px !important;
  }

  .title-block {
    width: 100% !important;
  }

  .container__padding-60 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .container__margin-40 {
    margin-bottom: 20px !important;
  }
}

/*============ INPUT =================*/
.input__wrapper {
  position: relative;
  background-color: var(--background-thirdly);
}

.input__placeholder {
  position: absolute;
  left: 30px;
  top: 22px;
  color: var(--main-text-primary);
  font-size: var(--font-size-13);
  line-height: 120%;
  font-weight: 400;
  background: transparent;
  transition: all 0.3s;
  font-family: 'Roboto';
}

.input {
  outline: none;
  height: 60px;
  width: 100%;
  background: transparent;
  padding-top: 28px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 7px;
  color: var(--primary-text);
  font-family: 'Roboto';
  border: none;
  border-bottom: 3px solid transparent;
}

.input.textarea {
  height: 127px;
  resize: none;
}

.input::placeholder,
.textarea::placeholder {
  opacity: 1;
  color: transparent;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  color: var(--head-primary) !important;
}

.input:focus,
.textarea:focus {
  color: var(--head-primary) !important;
}

.input__wrapper.focus .input__placeholder {
  top: 7px;
  left: 30px;
  font-size: 12px;
  background-color: transparent;
}

.input__wrapper.focus .input::placeholder,
.input__wrapper.focus .textarea::placeholder {
  color: var(--head-primary);
}

.input.error,
.textarea.error {
  border-bottom: 3px solid var(--error);
  color: var(--error) !important;
}

.input.error.focus::placeholder,
.textarea.error.focus::placeholder {
  color: var(--error) !important;
}

.input.error+.input__placeholder,
.textarea.error+.input__placeholder {
  color: var(--error);
}

.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.form-privace {
  color: var(--main-text-secondary);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 120%;
  font-family: 'Roboto';
}

.form-privace a {
  display: block;
  color: var(--primary_1);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 120%;
  font-family: 'Roboto';
  text-decoration: underline;
  transition: all .3s;
}

.form-privace a:hover {
  color: var(--second);
}

/*============ HEADER NAME =================*/
.header-block {
  margin-bottom: 30px;
}

.header-block__name {
  position: relative;
  color: var(--main-text-secondary);
  font-size: var(--font-size-16-20);
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-left: 30px;
  font-family: 'Roboto Condensed';
}

.header-block__name::after {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  background-image: url('../../assets/images/star.svg');
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  background-size: cover;
}

.title-block__wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--background-secondary);
  border-bottom: 1px solid var(--background-secondary);
}

.privacy-policy .content h2 {
  font-size: var(--font-size-20-28);
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
}

.title-block {
  font-size: var(--font-size-28-46);
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
  max-width: 1010px;
}

.container__wrapper .title-block__wrapper {
  border-top: 1px solid var(--primary_1);
  border-bottom: 1px solid var(--primary_1);
}

/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header__wrapper {
  background-color: var(--background);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.logo__wrapper {
  display: flex;
  /*   align-items: center; */
  gap: 15px;
  width: 100%;
}

.logo__wrapper .logo {
  /* 	max-width: 110px; */
  /*   	max-height: 120px; */

  min-width: 100px;
  min-height: 100px;
  width: 100%;
  height: 100%;
  width: clamp(200px, 38.8889px + 13.8889vw, 400px);
}

.logo__image {
  /*   max-width: 110px; */
  /*   max-height: 120px; */
  min-width: 200px;
  min-height: 100px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  width: clamp(200px, 38.8889px + 13.8889vw, 400px);
  max-width: 100%;
}

.logo-text {
  max-width: 175px;
  width: 100%;
  display: none;
}

.logo-name-site {
  color: var(--background-thirdly);
  font-size: var(--font-size-16-22);
  font-weight: 700;
  line-height: 120%;
  font-family: 'Roboto Condensed';
}

.logo-subtitle {
  color: var(--secondary-text);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 120%;
  font-family: 'Roboto';
}

.logo-subtitle span {
  font-weight: 700;
  font-size: var(--font-size-13-16);
}

.header-nav__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.header-nav-links-reviews {
  display: flex;
  gap: 5px;
}

.header-nav-link-review {
  display: flex;
}

.header-nav-link-review__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header-nav-link-review__value-review {
  font-size: var(--font-size-16-18);
  font-weight: 600;
  line-height: 110%;
  font-family: 'OpenSans';
  margin-left: 5px;
  color: var(--background-thirdly);
}

.header-nav-link-review__icon-star {
  max-width: 92px;
  max-height: 16px;
  object-fit: contain;
  margin-left: 10px;
}

.header-nav-link-quize {
  display: flex;
  gap: 15px;
}

#header #mobile-mnu .header-nav-link-quize {
  margin-bottom: 20px;
}

.header-nav-link-quize svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.header-nav-link-quize__text {
  color: var(--primary_1);
  font-size: var(--font-size-13-16);
  font-weight: 700;
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
}

.header-nav #menu-menyu {
  display: flex;
  gap: 50px;
}

.nav-menu-element {
  list-style: none;
}

.nav-menu-element.active>a {
  color: var(--primary_1);
}

.nav-menu-element>a {
  color: var(--head-secondary);
  font-size: var(--font-size-13-16);
  font-weight: 700;
  line-height: 100%;
  font-family: 'Roboto Condensed';
  transition: all .3s;
  text-transform: uppercase;
}

.nav-menu-element:hover>a {
  color: var(--primary_1);
}

.header-nav__bottom .nav-menu-element.has-childs {
  position: relative;
  padding-right: 15px;
}

.header-nav__bottom .nav-menu-element.has-childs::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 5px;
  transition: all .3s;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
}

.header-nav__bottom .nav-menu-element.has-childs:hover::after {
  background-image: url('../images/arrow-active.svg');
  transform: rotate(180deg);
}

.header-nav__bottom .nav-menu-element>a {
  white-space: nowrap;
}

.header-nav__bottom .sub-menu {
  position: absolute;
  padding: 30px 60px;
  background-color: var(--background);
  border: 2px solid var(--background-secondary);
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  left: -60px;
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
  min-width: 240px;
}

.header-nav__bottom .sub-menu::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -5px;
}

.header-nav__bottom .nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu .nav-menu-element {
  position: relative;
  z-index: 1;
}

.sub-menu .nav-menu-element>a {
  white-space: nowrap;
}

.sub-menu .nav-menu-element {
  margin-bottom: 15px;
}

.sub-menu .nav-menu-element:last-child {
  margin-bottom: 0;
}

.header-contact {
  display: flex;
  gap: 40px;
}

.header-contact-phones__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact-phone-1,
.header-contact-phone-2 {
  transition: all .3s;
  font-weight: 700;
  line-height: 120%;
  font-family: 'Roboto Condensed';
  text-align: right;
  white-space: nowrap;
}

.header-contact-phone-1 {
  font-size: var(--font-size-16-24);
  display: block;
  margin-bottom: 5px;
  color: var(--head-secondary);
}

.header-contact-phone-2 {
  font-size: var(--font-size-16-18);
  color: var(--main-text-secondary);
  display: block;
}

.header-contact-phone-1:hover,
.header-contact-phone-2:hover {
  color: var(--primary_1);
}

.header-contact-phones__icon--wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second);
}

.header-contact-phones__icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

@media (max-width: 1500px) {
  .header-nav #menu-menyu {
    gap: 20px;
  }

  .header-contact {
    gap: 15px;
  }

  .header-contact .socials {
    gap: 5px;
  }

  .header-contact {
    gap: 5px;
  }
}

@media (max-width: 1200px) {
  .header-contact .socials {
    display: none;
  }

  .logo__wrapper {
    width: 100%;
  }

  .logo__image {
    min-width: 320px;
  }
}

@media (max-width: 1024px) {
  .header-nav__wrapper {
    display: none;
  }

  .header-contact {
    align-items: center;
  }

  .logo__wrapper {
    width: 100%;
  }

  .logo__image {
    min-width: 420px;
  }
}

@media (max-width: 768px) {
  .header-contact-phones__icon--wrapper {
    display: none;
  }

  .header-contact {
    gap: 5px;
  }

  .logo__wrapper {
    gap: 5px;
  }

  .logo__wrapper {
    width: 100%;
  }

  .logo__image {
    min-width: 280px;
  }
}

@media (max-width: 500px) {

  .logo-subtitle,
  .logo-name-site {
    display: none;
  }

  .logo__wrapper {
    width: 100%;
  }

  .logo__image,
  .logo__wrapper .logo {
    /* min-width: 200px; */
    min-width: 100px;
    width: 100px;
  }
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

#header .burger.open_menu span {
  background-color: var(--primary_1);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--primary_1);
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--background-secondary);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow-y: scroll;
  overflow-x: hidden;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--primary_1);
}

/* #header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
} */
/* #header #mobile-mnu a:hover {
  color: var(--primary_1);
} */
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
}

#header #mobile-mnu .logo-holder {
  margin-bottom: 20px;
}

#header #mobile-mnu .nav-menu-element a {
  display: block;
  margin-bottom: 20px;
  white-space: wrap;
}

#header #mobile-mnu .nav-menu-element.has-childs .nav-menu-element {
  padding-left: 20px;
  position: relative;
}

#header #mobile-mnu .nav-menu-element.has-childs .nav-menu-element::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--primary_1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}

.phone,
.email,
.address-holder p {
  font-weight: 600;
  font-size: var(--font-size-13-16);
  color: var(--head-secondary);
  line-height: 120%;
  transition: all .3s;
  display: block;
  margin-bottom: 20px;
}

.phone,
.email {
  white-space: nowrap;
}

.phone:last-child,
.email:last-child {
  margin-bottom: 0;
}

.phone:hover,
.email:hover {
  color: var(--primary_1);
}

.phones-holder,
.emails-holder,
.social-holder {
  margin-bottom: 20px;
}

/* #header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
} */
/* #header #menu-menyu-1 .sub-menu {
  margin-left: 10px;
} */
/* #header #mobile-mnu .menuTop li a:hover {
  color: #D12D26;
}
#header #mobile-mnu .menuTop li.active a {
  color: #D12D26;
} */
#header #mobile-mnu.opened {
  transform: translateX(0);
}

@media(max-width: 1100px) {
  .header-info__social-holder .social__wrapper {
    display: none;
  }
}

@media(max-width: 1024px) {
  #header #menu-menyu {
    display: none;
  }

  .header-info__social-holder .btn {
    display: none;
  }

  #header .burger.open_menu {
    display: flex;
  }

  .header-info {
    align-items: center;
  }

  .header__container {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .header-info {
    gap: 3px;
  }
}

/*============ FOOTER ===============*/
#footer {
  width: 100%;
  background-color: var(--background-secondary);
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

.container-footer-nav {
  padding-top: 60px;
  padding-bottom: 50px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.container-footer__phones {
  margin-bottom: 30px;
}

.container-footer__phone {
  font-size: var(--font-size-28-90);
  line-height: 100%;
  font-weight: 700;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
  display: block;
  margin-bottom: 10px;
  transition: all .3s;
  white-space: nowrap;
}

.container-footer__phone:last-child {
  margin-bottom: 0;
}

.container-footer__phone:hover {
  color: var(--primary-hover);
}

.container-footer-data-bottom {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.container-footer-data-bottom__left {
  max-width: 230px;
  width: 100%;
}

.container-footer-address {
  display: flex;
  gap: 15px;
}

.container-footer-address__icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.container-footer-address__value p {
  font-weight: 400;
  font-size: var(--font-size-16-20);
  font-family: 'Roboto';
  line-height: 130%;
  color: var(--main-text-secondary);
  margin-bottom: 10px;
}

.container-footer-address__value p:last-child {
  margin-bottom: 0;
}

.container-footer__email {
  white-space: nowrap;
  font-size: var(--font-size-28-50);
  font-weight: 300;
  font-family: 'Roboto Condensed';
  color: var(--main-text-secondary);
  transition: all .3s;
}

.container-footer__email:hover {
  color: var(--primary-hover);
}

.container-footer-item .socials {
  margin-bottom: 20px;
}

.container-footer-item .nav-menu-element a {
  text-align: right;
}

.container-footer-item .nav-menu-element {
  display: block;
  margin-bottom: 15px;
  text-align: right;
}

.container-footer-item .nav-menu-element:last-child {
  margin-bottom: 0;
}

.container-footer__bottom--wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--background);
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

.container-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.container-footer__privice {
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 130%;
  color: var(--main-text-secondary);
  font-family: 'Roboto';
  text-decoration: underline;
  transition: all .3s;
}

.container-footer__privice:hover {
  color: var(--primary-hover);
}

.footer-name-company {
  color: var(--main-text-secondary);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
}

@media (max-width: 1024px) {
  .container-footer-data-bottom {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .container-footer-data-bottom__left {
    max-width: 100%;
    width: 100%;
  }

  #footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .container-footer-nav {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container-footer__bottom--wrapper {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

@media (max-width: 768px) {

  .container-footer-item .nav-menu-element a,
  .container-footer-item .nav-menu-element {
    text-align: left;
  }

  .container-footer__phones {
    margin-bottom: 15px;
  }

  .container-footer__bottom {
    flex-direction: column;
    align-items: center;
  }

  .container-footer__bottom--wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 550px) {
  .container-footer-nav {
    flex-direction: column;
  }
}

/* ============== MODAL ============= */
.theme-modal {
  display: none;
}

.f-button.is-close-btn {
  display: none;
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
}

.close-modal svg path {
  transition: all .3s;
}

.close-modal:hover svg path {
  fill: var(--primary-hover);
}

.theme-modal.fancybox__content {
  width: 100%;
  max-width: 650px;
  background-color: var(--background);
  border-radius: 20px;
  padding: 60px 80px;
}

.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: stroke .3s ease-in;
}

.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: var(--primary_1);
}

.fancybox__backdrop {
  background-color: var(--background-secondary) !important;
  opacity: 0.9 !important;
}

.title {
  font-family: 'Roboto Condensed';
  font-size: var(--font-size-28-46);
  font-weight: 800;
  color: var(--head-secondary);
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.subtitle {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  font-family: 'Roboto';
  line-height: 130%;
  color: var(--main-text-secondary);
}

.subtitle:last-child {
  margin-bottom: 0;
}

.modal-input-wrapper {
  margin-bottom: 30px;
}

.modal-input-wrapper .input__wrapper {
  margin-bottom: 10px;
}

.theme-modal .form__holder {
  margin-top: 40px;
}

#modal-success .title,
#modal-error .title {
  margin-bottom: 40px;
}

.form__file.file {
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}

.form__file.file input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.file__title.file-btn {
  font-family: 'Roboto Condensed';
  font-size: var(--font-size-16-20);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
}

.file__upload-wrap:not(:empty) {
  margin-top: 20px;
}

.file__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.file__item p {
  color: var(--background-thirdly);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 120%;
  font-family: 'Roboto';
}

.file__item-delete {
  cursor: pointer;
}

.file__item-delete svg path {
  transition: all .3s;
}

.file__item-delete:hover svg path {
  fill: var(--primary-hover);
}

.file__title.file-btn:hover {
  color: var(--primary-hover);
}

@media (max-width: 1024px) {
  .theme-modal.fancybox__content {
    padding: 30px 20px;
  }

  .theme-modal .form-bottom {
    flex-direction: row;
  }

  .form__holder {
    margin-top: 20px;
  }

  .form__file.file {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .theme-modal .form-bottom {
    flex-direction: column-reverse;
  }
}

/*============ SWIPER BUTTON =================*/
.navigation.pagination {
  max-width: 750px;
  width: 100%;
  margin-top: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.next.page-numbers {
  margin-left: auto;
}

.prev.page-numbers {
  margin-right: auto;
}

.page-numbers:not(.prev):not(.next) {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  transition: all .3s;
  color: var(--main-text-secondary);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
}

.page-numbers:hover:not(.current):not(.prev):not(.next) {
  color: var(--primary_1);
}

.page-numbers.current:not(.prev):not(.next) {
  background-color: var(--background-head);
}

/*============ SWIPER BUTTON =================*/
.swiper-custom-buttons {
  display: flex;
  gap: 10px;
}

.swiper-custom-button {
  border: 1px solid var(--main-text-secondary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  background-color: transparent;
}

.swiper-custom-button:not(.swiper-button-disabled) {
  cursor: pointer;
}

.swiper-custom-button svg {
  width: 24px;
  height: 24px;
}

.swiper-custom-button svg path {
  transition: all .3s;
}

.swiper-custom-button:not(.swiper-button-disabled):hover {
  background-color: var(--second);
  border-color: var(--second);
}

.swiper-custom-button:not(.swiper-button-disabled):hover svg path {
  stroke: var(--background-thirdly);
}

.swiper-custom-button--next svg {
  transform: rotate(180deg);
}

.custom-paggintion {
  width: fit-content !important;
}

.custom-paggintion .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--main-text-primary);
  transition: all .3s;
}

.custom-paggintion .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary_1);
}

/*================ SOCIAL =============*/
.socials {
  display: flex;
  gap: 16px;
}

.social {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-thirdly);
  border: 1px solid var(--main-text-secondary);
  transition: all .3s;
}

.social:hover {
  background-color: var(--second);
  border-color: var(--second);
}

.social__icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: all .3s;
}

.social:hover .social__icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(234deg) brightness(104%) contrast(104%);
}

/* ============= SERVICE =========== */
.service-hero {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.service-hero__left {
  width: 50%;
}

.service-hero__right {
  width: 50%;
}

.service-hero__mini-description p,
.service-hero__mini-description li {
  font-size: var(--font-size-16-20);
  line-height: 130%;
  font-weight: 400;
  color: var(--head-secondary);
  font-family: 'Roboto';
  margin-bottom: 10px;
}

.service-hero__mini-description p:last-child,
.service-hero__mini-description li:last-child {
  margin-bottom: 0;
}

.service-hero__mini-description ul li {
  padding-left: 40px;
  position: relative;
  list-style: none;
}

.service-hero__mini-description ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/star.svg');
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 4px;
}

.service-hero__mini-description {
  margin-bottom: 40px;
}

.service-hero__image {
  border-radius: 20px;
  overflow: hidden;
  max-height: 432px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.service__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .service__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service__holder {
    grid-template-columns: 1fr;
  }

  .service-hero {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .service-hero__left,
  .service-hero__right {
    width: 100%;
  }
}

/* ============= SERVICE ITEM =========== */
.service-item {
  display: block;
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  max-height: 500px;
}

.service-item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(to top, rgba(28, 32, 42, 0.8), rgba(28, 32, 42, 0));
  top: 0;
  left: 0;
}

.service-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.service-item__text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px 40px;
  transition: all .3s;
  width: 100%;
  z-index: 2;
}

.service-item__title {
  color: var(--head-secondary);
  font-size: var(--font-size-20-28);
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  font-family: 'Roboto Condensed';
  margin-bottom: 10px;
}

.service-item-attributs {
  display: flex;
  column-gap: 40px;
  row-gap: 15px;
  flex-wrap: wrap;
}

.service-item-attribut {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.service-item-attribut__name {
  color: var(--head-secondary);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 120%;
  font-family: 'Roboto';
}

.service-item-attribut__value {
  font-weight: 800;
  font-size: var(--font-size-16-20);
  line-height: 120%;
  color: var(--head-secondary);
  text-transform: uppercase;
  font-family: 'Roboto Condensed';
}

.service-item:hover .service-item__image {
  transform: scale(1.3);
}

.service-item:hover .service-item__text {
  bottom: 50px;
}

.service-item-show-more {
  position: absolute;
  left: 0;
  bottom: -60px;
  padding: 17px 40px;
  background-color: var(--second);
  display: flex;
  justify-content: space-between;
  align-self: center;
  font-size: var(--font-size-13-16);
  font-weight: 700;
  line-height: 100%;
  color: var(--background-thirdly);
  font-family: 'Roboto Condensed';
  z-index: 2;
  width: 100%;
  transition: all .3s;
  text-transform: uppercase;
}

.service-item:hover .service-item-show-more {
  bottom: 0;
}

@media (max-width: 1024px) {
  .service-item__text {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .service-item {
    max-height: 340px;
    min-height: 320px;
  }

  .service-item-attributs {
    grid-column: 20px;
  }
}

/* ============= DONE WORK ITEM =========== */
.done-work-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  display: block;
   border: 2px solid #ffffff;
}

.done-work-item__content {
  position: relative;
  z-index: 1;
}

.done-work-item::before {
  content: '';
  width: 515px;
  height: 515px;
  position: absolute;
  right: 0%;
  top: -80%;
  background-color: var(--second);
  filter: blur(400px);
  transition: all .3s;
  opacity: 1;
  visibility: visible;
}

.done-work-item::after {
  content: '';
  width: 157px;
  height: 157px;
  position: absolute;
  left: 10%;
  bottom: -5%;
  background-color: var(--primary_1);
  filter: blur(250px);
  transition: all .3s;
  opacity: 1;
  visibility: visible;
}

.done-work-item-images {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.done-work-item-image__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-height: 330px;
  width: 100%;
  height: 100vh;
}

.done-work-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.done-work-item-image__text {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: var(--background-thirdly);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--main-text-primary);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 120%;
  font-family: 'Roboto';
}

.done-work-item-tegs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.done-work-item-teg {
  padding: 10px 20px;
  background-color: var(--background);
  font-family: 'Roboto';
  font-size: var(--font-size-13);
  font-weight: 600;
  line-height: 120%;
  color: var(--main-text-secondary);
}

.done-work-item__title {
  font-weight: 800;
  font-size: var(--font-size-16-20);
  font-family: 'Roboto Condensed';
  line-height: 120%;
  color: var(--head-secondary);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.done-work-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.done-work-item-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.done-work-item-data-attribute__name {
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-secondary);
  font-family: 'Roboto';
  margin-bottom: 10px;
}

.done-work-item-data-attribute__value {
  font-family: 'Roboto Condensed';
  font-weight: 800;
  font-size: var(--font-size-16-24);
  line-height: 120%;
  color: var(--head-secondary);
}

.done-work-item:hover::before {
  opacity: 0;
  visibility: hidden;
}

.done-work-item:hover::after {
  opacity: 0;
  visibility: hidden;
}

.done-work-item:hover .btn {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.work-done-filter {
  display: flex;
  gap: 10px;
}

.work-done-select li.hide {
  display: none;
}

.work-done-filter__input--wrapper {
  position: relative;
  border-radius: 15px;
  border: 2px solid var(--primary_1);
  background-color: var(--head-secondary);
  padding: 10px;
  width: 100%;
}

.input-filter {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--head-primary);
  font-size: var(--font-size-16-20);
  font-weight: 400;
  list-style: 120%;
}

.input-filter::placeholder {
  color: var(--head-primary);
  opacity: 1;
}

.work-done-select {
  position: absolute;
  left: 20px;
  top: 44px;
  background-color: var(--secondary-2);
  border-radius: 10px;
  overflow-y: auto;
  z-index: 100;
  min-width: 45%;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
}

.work-done-filter li {
  list-style: none;
}

.work-done-select__item {
  display: block;
  color: var(--head-primary);
  font-size: var(--font-size-16-20);
  font-weight: 600;
  line-height: 120%;
  transition: all .3s;
  padding: 5px 15px;
  border-bottom: 1px solid var(--head-primary);
}

.work-done-filter li:last-child .work-done-select__item {
  border: none;
}

.work-done-filter__input--wrapper:hover .work-done-select,
.input-filter:focus+.work-done-select {
  visibility: visible !important;
  opacity: 1 !important;
}

.work-done-select__item:hover {
  color: var(--primary-hover);
}

@media (max-width: 1024px) {
  .done-work-item {
    padding: 15px;
  }

  .done-work-item__title {
    margin-bottom: 10px;
  }

  .done-work-item-data {
    gap: 15px;
  }

  .done-work-item-image__wrapper {
    max-height: 240px;
  }
}

@media (max-width: 600px) {
  .work-done-filter {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .done-work-item-images {
    flex-direction: column;
  }

  .done-work-item-image__wrapper {
    max-height: 250px;
  }
}

/* ============= DONE WORK ARCHIVE =========== */
.work-done-term--wrapper .title-block {
  margin-bottom: 40px;
}

.models-car {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.modal-car {
  height: 150px;
  background-color: var(--background-thirdly);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all .3s;
  padding: 10px;
}

.modal-car:hover {
  background-color: var(--primary-hover);
}

.work-done-show-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-done-show-more-wrapper .btn {
  max-width: 100%;
  width: 100%;
}

.modal-car.hide {
  display: none;
}

.modal-car__image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.modal-car__title {
  color: var(--head-primary);
  font-size: var(--font-size-16-20);
  font-family: 'Roboto Condensed';
  line-height: 120%;
  font-weight: 800;
  text-transform: uppercase;
  transition: all .3s;
}

.modal-car:hover .modal-car__title {
  color: var(--head-secondary);
}

.work-done__taxonomy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.not_founded {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: var(--font-size-24-40);
  font-weight: 600;
  list-style: 100%;
  color: var(--background-thirdly);
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
}

.work-done-term {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.work-done-term__item {
  padding: 17px 25px;
  background-color: var(--background-secondary);
  border: 1px solid var(--background-secondary);
  color: var(--head-secondary);
  font-size: var(--font-size-13-16);
  font-weight: 700;
  line-height: 100%;
  transition: all .3s;
  text-transform: uppercase;
}

.work-done-term__item:hover,
.work-done-term__item.active {
  background-color: var(--background-thirdly);
  color: var(--primary_1);
}

@media (max-width: 1024px) {

  .work-done__taxonomy,
  .not_founded {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .models-car--wrapper .title-block {
    margin-bottom: 20px;
  }

  .models-car {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .work-done__taxonomy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .models-car {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-car {
    height: 130px;
  }
}

@media (max-width: 350px) {
  .models-car {
    grid-template-columns: 1fr;
  }
}

/* ============= SINGLE DONE WORK =========== */
.single-done-work-content {
  display: flex;
  gap: 60px;
}

.done-work-gallery__image,
.single-done-work__video--wrapper {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

.single-done-work-content__data {
  position: sticky;
  top: 150px;
}

.single-done-work__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.done-work-gallery__image--wrapper,
.single-done-work__video--wrapper {
  display: block;
  margin-bottom: 30px;
}

.done-work-gallery__image--wrapper:last-child {
  margin-bottom: 0;
}

.single-done-work-content__left {
  max-width: 720px;
  width: 100%;
}

.single-done-work-content__right,
.single-done-work-content__left {
  width: 50%;
}

.single-done-work-content__data {
  max-width: 620px;
  width: 100%;
}

.single-done-work-content .done-work-item-teg {
  background-color: var(--background-secondary);
}

.single-done-work-content__data--wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 45px;
  gap: 10px;
}

.single-done-work-content__data--wrapper .done-work-item-data {
  flex-wrap: wrap;
}

.single-done-work-item-data-attributes-car {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

.single-done-work-item-data-attributes-car__name {
  color: var(--head-secondary);
  font-size: var(--font-size-16-20);
  font-weight: 800;
  line-height: 120%;
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
  margin-bottom: 20px;
}

.single-done-work-item-data-attributes-car__value {
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  color: var(--main-text-secondary);
  font-family: 'Roboto';
}

.single-done-work__description h6 {
  font-size: var(--font-size-16-20);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  text-transform: uppercase;
  font-family: 'Roboto Condensed';
  margin-bottom: 20px;
}

.single-done-work__description p,
.single-done-work__description li {
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  color: var(--secondary-text);
  font-family: 'Roboto';
  margin-bottom: 10px;
  list-style: inside;
}

.single-done-work__description li {
  position: relative;
  padding-left: 30px;
  list-style: none;
}

.single-done-work__description li:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-image: url('../../assets/images/star.svg');
}

.single-done-work__description p {
  margin-bottom: 40px;
}

.single-done-work__video--wrapper {
  position: relative;
}

.single-done-work__video--wrapper #play {
  width: 120px;
  height: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_1);
  cursor: pointer;
  z-index: 2;
}

.single-done-work__video--wrapper iframe {
  width: 100%;
  height: 100%;
  outline: none;
}

.single-done-work__video-preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .single-done-work-item-data-attributes-car__name {
    margin-bottom: 10px;
  }

  .single-done-work-content {
    gap: 20px;
  }

  .done-work-gallery__image,
  .single-done-work__video--wrapper {
    height: 300px;
  }

  .done-work-gallery__image--wrapper,
  .single-done-work__video--wrapper {
    margin-bottom: 15px;
  }

  .single-done-work-content__data--wrapper {
    margin-bottom: 10px;
  }

  .single-done-work-item-data-attributes-car {
    margin-bottom: 10px;
  }

  .single-done-work__description h6 {
    margin-bottom: 10px;
  }

  .single-done-work__description p {
    margin-bottom: 20px;
  }

  .single-done-work__description p:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .single-done-work-content {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .single-done-work-content__left,
  .single-done-work-content__right {
    width: 100%;
    max-width: 100%;
  }

  .single-done-work-content__data {
    max-width: 100%;
  }
}

/* ============= REVIEW ITEM =========== */
.review-slide {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #ffffff;
}

.review-slide__content {
  position: relative;
  z-index: 1;
}

.review-slide::after {
  content: '';
  width: 360px;
  height: 420px;
  border-radius: 100%;
  position: absolute;
  right: -60%;
  top: -50%;
  background-color: var(--primary_1);
  filter: blur(200px);
}

.review-slide::before {
  content: '';
  background-color: var(--background-head);
  position: absolute;
  width: 157px;
  height: 157px;
  left: -5px;
  bottom: 0;
  filter: blur(200px);
}

.review-slide__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.review-slide__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second);
}

.review-slide__icon svg {
  width: 16px;
  height: 16px;
}

.review-slide__name {
  font-size: var(--font-size-16-24);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
  margin-bottom: 5px;
}

.review-slide__date {
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 120%;
  color: var(--main-text-secondary);
  font-family: 'Roboto';
}

.review-slide__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.review-slide__image--wrapper {
  max-width: 70px;
  max-height: 70px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  outline: none;
}

.review-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-slide__text p {
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  color: var(--main-text-secondary);
  font-family: 'Roboto';
  margin-bottom: 10px;
}

.review-slide__text p:last-child {
  margin-bottom: 0;
}

.review-slide__text--wrapper.hide .review-slide__text {
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============= REVIEW ARCHIVE =========== */
.reviews-archive__wrapper {
  display: flex;
  gap: 30px;
}

.reviews-archive__contact {
  max-width: 360px;
  width: 100%;
}

.reviews-archive__contact--wrapper {
  position: sticky;
  top: 120px;
}

.reviews-archive-modal {
  padding: 40px;
  background-color: var(--background-secondary);
  border-radius: 15px;
  margin-bottom: 30px;
}

.reviews-archive-modal__title {
  color: var(--head-secondary);
  font-size: var(--font-size-24-32);
  font-weight: 800;
  line-height: 120%;
  font-family: 'Roboto Condensed';
  margin-bottom: 15px;
}

.reviews-archive-modal__text {
  color: var(--main-text-secondary);
  font-size: var(--main-text-secondary);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
  margin-bottom: 60px;
}

.reviews-archive-amount__title {
  font-size: var(--font-size-16-24);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
  margin-bottom: 20px;
  text-transform: uppercase;
}

.reviews-archive-amount-data {
  padding: 40px;
  background-color: var(--background-secondary);
  border-radius: 15px;
  display: flex;
  /*   flex-direction: column;	 */
  gap: 10px;
}

.reviews-archive-amount-data-review {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reviews-archive-amount-data-review--wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviews-archive-amount-data-review__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.reviews-archive-amount-data__value-review {
  display: none;
  color: var(--background-thirdly);
  font-size: var(--font-size-16-24);
  font-weight: 800;
  line-height: 120%;
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
}

.reviews-archive-amount-data__icon-star {
  display: none;
  height: 30px;
  object-fit: contain;
}

.reviews-archive__holder {
  max-width: 750px;
  width: 100%;
}

.reviews-archive__holder .review-slide {
  margin-bottom: 30px;
}

.reviews-archive__holder .review-slide:last-child {
  margin-bottom: 0;
}

.reviews-archive__holder .review-slide {
  min-height: auto;
}

.reviews-archive__holder .review-slide .review-slide__top {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .reviews-archive__holder .review-slide .review-slide__top {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .reviews-archive__wrapper {
    flex-direction: column;
  }

  .reviews-archive__contact {
    max-width: 100%;
  }
}

/* ============= GRAMPUS =========== */
.grampus {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.grampus p {
  color: var(--main-text-secondary);
  transition: all .3s;
}

.grampus .grampus__img {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--main-text-secondary);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  transition: all .3s;
}

.grampus__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: main-text-secondary;
  transform: translateX(100%);
  transition: transform .7s ease-in;
  background: linear-gradient(90deg, #fe6604 10%, #ee0a76 30%, #ee0a76 60%, #fe6604 101%) repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}

@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.grampus:hover p {
  color: var(--primary_1);
}

.grampus:hover .grampus__img {
  background-color: var(--primary_1);
}

/* ============= VACANCIE ITEM =========== */
.vacancie-item {
  padding: 40px;
  border-radius: 15px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.vacancie-item::before {
  content: '';
  width: 325px;
  height: 325px;
  position: absolute;
  left: 10%;
  top: -115%;
  background-color: var(--second);
  filter: blur(100px);
  transition: all .3s;
  z-index: -1;
}

.vacancie-item::after {
  content: '';
  width: 157px;
  height: 157px;
  position: absolute;
  right: 12%;
  bottom: -19%;
  background-color: var(--third);
  filter: blur(250px);
  transition: all .3s;
  z-index: -1;
}

.vacancie-item__left {
  max-width: 320px;
  width: 100%;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.vacancie-item__title {
  font-size: var(--font-size-16-24);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
}

.vacancie-item__right {
  width: 100%;
}

.vacancie-item-data {
  display: flex;
  margin-bottom: 10px;
  gap: 5px;
}

.vacancie-item-data:last-child {
  margin-bottom: 0px;
}

.vacancie-item-data__name {
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  color: var(--secondary-text);
  font-family: 'Roboto';
}

.vacancie-item-data__value {
  color: var(--head-secondary);
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
}

.vacancie-item:hover::after {
  opacity: 0;
}

.vacancie-item:hover::before {
  opacity: 0;
}

.vacancie-item:hover .btn {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  border: 1px solid var(--primary-hover);
}

@media (max-width: 1024px) {
  .vacancie-item {
    padding: 10px;
  }

  .vacancie-item::before {
    left: -28%;
    top: -151%;
  }

  .vacancie-item {
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .vacancie-item {
    flex-direction: column;
  }
}

/* ============= VACANCIE ARCHIVE =========== */
.archive-vacancies {
  display: flex;
  gap: 30px;
}

.archive-vacancies__left {
  max-width: 360px;
  width: 100%;
}

.archive-vacancies-tabs {
  position: sticky;
  top: 150px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-vacancies-tab {
  padding: 17px 25px;
  background-color: var(--background-secondary);
  border: 1px solid var(--background-secondary);
  color: var(--head-secondary);
  font-size: var(--font-size-13-16);
  font-weight: 700;
  line-height: 100%;
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
  transition: all .3s;
}

.archive-vacancies-tab:hover {
  color: var(--primary_1);
  background-color: var(--head-secondary);
  border-color: var(--head-secondary);
}

.archive-vacancies-department__title {
  font-size: var(--font-size-28-46);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
  margin-bottom: 40px;
  text-transform: uppercase;
}

.archive-vacancies-department .vacancie-item {
  margin-bottom: 30px;
}

.archive-vacancies-department .vacancie-item:last-child {
  margin-bottom: 0;
}

.archive-vacancies-department:last-child {
  margin-bottom: 0 !important;
}

@media(max-width: 1024px) {
  .archive-vacancies {
    gap: 10px;
  }

  .archive-vacancies-department__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .archive-vacancies {
    flex-direction: column;
  }

  .archive-vacancies__left {
    max-width: 100%;
    width: 100%;
  }
}

/* ============= SINGLE VACANCIE =========== */
.single-vacancie {
  display: flex;
  gap: 30px;
}

.single-vacancie__left {
  max-width: 360px;
  width: 100%;
}

.single-vacancie-item-data__wrapper {
  padding: 30px;
  border-radius: 30px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.vacancie-item-data-holder {
  margin-bottom: 30px;
}

.single-vacancie-item-data__wrapper::before {
  content: '';
  width: 325px;
  height: 325px;
  border-radius: 100%;
  position: absolute;
  top: -58%;
  right: -11%;
  background-color: var(--second);
  filter: blur(100px);
  z-index: -1;
}

.single-vacancie-item-data__wrapper::after {
  content: '';
  width: 157px;
  height: 157px;
  border-radius: 100%;
  position: absolute;
  bottom: 10%;
  left: 0;
  background-color: var(--third);
  filter: blur(250px);
  z-index: -1;
}

.single-vacancie__left--wrapper {
  position: sticky;
  top: 120px;
}

.prev-page {
  color: var(--head-secondary);
  font-size: var(--font-size-13-16);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prev-page:hover {
  gap: 20px;
  color: var(--primary_1);
}

.prev-page svg path {
  transition: all .3s;
}

.prev-page:hover svg path {
  stroke: var(--primary_1);
}

.single-vacancie__description {
  padding: 40px;
  background-color: var(--background-thirdly);
  backdrop-filter: blur(20px);
  border-radius: 15px;
}

.single-vacancie__description h5 {
  color: var(--head-primary);
  font-size: var(--font-size-16-24);
  font-weight: 800;
  line-height: 120%;
  font-family: 'Roboto Condensed';
  margin-bottom: 20px;
}

.single-vacancie__description ul {
  margin-bottom: 30px;
}

.single-vacancie__description ul:last-child {
  margin-bottom: 0;
}

.single-vacancie__description ul li {
  list-style: none;
}

.single-vacancie__description ul li {
  position: relative;
  padding-left: 26px;
  color: var(--main-text-primary);
  font-size: var(--font-size-13-16);
  font-weight: 400;
  margin-bottom: 15px;
}

.single-vacancie__description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: var(--primary_1);
  border-radius: 100%;
}

.single-vacancie__description ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .single-vacancie {
    gap: 10px;
  }

  .single-vacancie__description {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .single-vacancie {
    flex-direction: column;
  }

  .single-vacancie__left {
    width: 100%;
    max-width: 100%;
  }

  .single-vacancie-item-data__wrapper {
    margin-bottom: 10px;
  }
}

/* ============= BLOG ITEM =========== */
.blog-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  overflow: hidden;
   border: 2px solid #ffffff;
}

.blog-item::before {
  content: '';
  width: 157px;
  height: 157px;
  border-radius: 100%;
  background-color: var(--third);
  filter: blur(250px);
  position: absolute;
  left: -60px;
  bottom: 0;
  z-index: -1;
  transition: all .3s;
}

.blog-item::after {
  content: '';
  width: 325px;
  height: 325px;
  border-radius: 100%;
  background-color: var(--second);
  position: absolute;
  top: -70%;
  right: 10%;
  background-color: var(--second);
  filter: blur(100px);
  z-index: -1;
  transition: all .3s;
}

.blog-item-text-holder {
  padding: 40px;
  padding-right: 0;
  width: 80%;
}

.blog-item__date {
  color: var(--main-text-secondary);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
  margin-bottom: 5px;
}

.blog-item__title {
  font-size: var(--font-size-16-20);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  text-transform: uppercase;
  font-family: 'Roboto';
  margin-bottom: 17px;
}

.blog-item__text p {
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  color: var(--main-text-secondary);
  font-family: 'Roboto';
  margin-bottom: 5px;
}

.blog-item__text p:last-child {
  margin-bottom: 0;
}

.blog-item__text--wrapper.hide .blog-item__text {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.blog-item__image--wrapper {
  width: 52.2%;
  overflow: hidden;
  border-radius: 15px;
  height: 260px;
}

.blog-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.blog-item:hover::after,
.blog-item:hover::before {
  opacity: 0;
}

.blog-item:hover .blog-item__image {
  transform: scale(1.2);
}

.blog-item:hover .btn-show-review {
  color: var(--primary_1);
  filter:invert(1);
}

.blog-item:hover .btn-show-review::after {
  right: -10px;
}

@media (max-width: 1200px) {
  .blog-item-text-holder {
    padding: 15px;
  }

  .blog-item {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .blog-item__text--wrapper.hide .blog-item__text {
    -webkit-line-clamp: 5;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 768px) {
  .blog-item {
    flex-direction: column;
  }

  .blog-item__image--wrapper {
    width: 100%;
    height: 200px;
  }

  .blog-item-text-holder {
    width: 100%;
  }
}

/* ============= BLOG ARCHIVE =========== */
.blog_archive__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .blog_archive__holder {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ============= BLOG SINGLE =========== */
.single-any-blogs__wrapper {
  position: sticky;
  top: 120px;
  min-width: 255px;
}

.single-blog .title-page {
  max-width: 1010px;
}

.singular-blog {
  display: flex;
  gap: 30px;
}

.single-any-blogs {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(20px);
  padding: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.single-any-blogs::after {
  content: '';
  width: 325px;
  height: 325px;
  position: absolute;
  left: 25%;
  top: -50%;
  background-color: var(--second);
  filter: blur(100px);
  z-index: -1;
}

.single-any-blogs::before {
  content: '';
  width: 157px;
  height: 157px;
  position: absolute;
  left: -5%;
  top: 50%;
  background-color: var(--third);
  filter: blur(250px);
  z-index: -1;
}

.single-any-blogs__title {
  font-size: var(--font-size-16-24);
  font-weight: 800;
  line-height: 120%;
  color: var(--head-secondary);
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Roboto';
}

.single-any-blog {
  border-top: 1px solid var(--background);
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.single-any-blog:last-child {
  border-bottom: 1px solid var(--background);
}

.single-any-blog__date {
  color: var(--main-text-secondary);
  font-family: 'Roboto';
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 5px;
  transition: all .3s;
}

.single-any-blog__title {
  color: var(--head-secondary);
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  transition: all .3s;
  font-family: 'Roboto';
}

.single-any-blog.active .single-any-blog__title,
.single-any-blog:hover .single-any-blog__title {
  color: var(--primary_1);
}

.single-blog__content {
  max-width: 750px;
  width: 100%;
  background-color: var(--background-thirdly);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 15px;
}

.single-blog__image--wrapper {
  max-height: 370px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

.single-blog__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-blog__date {
  color: var(--main-text-primary);
  font-size: var(--font-size-13-16);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
  margin-bottom: 30px;
}

.single-blog__text p {
  margin-bottom: 20px;
  font-size: var(--font-size-13-16);
  font-weight: 400;
  color: var(--main-text-primary);
  line-height: 130%;
  font-family: 'Roboto';
}

.single-blog__text h3 {
  color: var(--head-primary);
  font-size: var(--font-size-24-32);
  font-weight: 800;
  line-height: 120%;
  font-family: 'Roboto Condensed';
  margin-bottom: 35px;
}

.single-blog__text h4 {
  font-size: var(--font-size-20-28);
  color: var(--head-primary);
  line-height: 120%;
  font-weight: 800;
  font-family: 'Roboto Condensed';
  margin-bottom: 30px;
}

.single-blog__text h5 {
  font-size: var(--font-size-16-24);
  color: var(--head-primary);
  line-height: 120%;
  font-weight: 800;
  font-family: 'Roboto Condensed';
  margin-bottom: 25px;
}

.single-blog__text h6 {
  font-size: var(--font-size-16-20);
  color: var(--head-primary);
  line-height: 120%;
  font-weight: 800;
  font-family: 'Roboto Condensed';
  margin-bottom: 20px;
}

.single-blog__text ul,
.single-blog__text ol {
  margin-bottom: 20px;
}

.single-blog__text li {
  position: relative;
  list-style: none;
  font-size: var(--font-size-13-16);
  font-weight: 400;
  color: var(--main-text-primary);
  line-height: 130%;
  margin-bottom: 13px;
  padding-left: 40px;
}

.single-blog__text ul li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background-color: var(--second);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--background-thirdly);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
}

.single-blog__text ol {
  counter-reset: index-li;
}

.single-blog__text ol li::before {
  counter-increment: index-li;
  content: counter(index-li);
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 5px;
  color: var(--background-thirdly);
  font-size: var(--font-size-13);
  font-weight: 400;
  line-height: 130%;
  font-family: 'Roboto';
  background-color: var(--second);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .single-any-blogs {
    padding: 15px;
  }

  .single-blog__content {
    padding: 20px;
  }

  .singular-blog {
    gap: 15px;
  }

  .single-any-blogs {
    margin-bottom: 15px;
  }

  .single-blog__date {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .singular-blog {
    flex-direction: column-reverse;
  }
}

/* ============= 404 ============= */
.content-404 {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.content-404__404 {
  font-size: var(--font-size-70-240);
  font-weight: 700;
  line-height: 120%;
  color: var(--head-secondary);
  font-family: 'Roboto Condensed';
}

.content-404__message {
  padding-top: 40px;
}

.content-404__message .title-page {
  margin-bottom: 20px;
}

.content-404__text {
  font-size: var(--font-size-16-20);
  font-weight: 400;
  line-height: 130%;
  color: var(--main-text-secondary);
  font-family: 'Roboto';
  margin-bottom: 50px;
  max-width: 65%;
}

@media(max-width: 1024px) {
  .content-404 {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .content-404__message {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .content-404__text {
    margin-bottom: 20px;
  }
}

/* ============= MEDIA QUERIES =========== */

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



.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*============ MODAL CAR SELECT ============*/
#modal-car-select {
  width: 900px;
  max-width: 85vw;
}

#modal-car-select .title {
  margin-bottom: 30px;
}

#modal-car-select .response-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  overflow-y: auto;
  max-height: 70vh;
  padding-right: 10px;
}

#modal-car-select .response-holder h2 {
  color: #fff;
}

#modal-car-select .loader {
  margin: 50px auto 0;
}

#modal-car-select .models-holder {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

#modal-car-select .car-model {
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#modal-car-select .car-model__image-holder {
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: 10px;
}

#modal-car-select .car-model__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 2 / 1;
}

#modal-car-select .car-model__brand {
  position: absolute;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 15px;
  top: 15px;
  object-fit: contain;
}

#modal-car-select .car-model__name {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-top: auto;
}

#modal-car-select .model-info {
  width: 100%;
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px;
}

#modal-car-select .model-info__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  width: 100%;
}

#modal-car-select .btn.back {
  padding: 10px;
  height: auto;
}

#modal-car-select .model-info__name {
  font-size: 24px;
  font-weight: 500;
}

#modal-car-select .model-info__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 2 / 1;
}

#modal-car-select .generation-holder {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

#modal-car-select .car-generation {
  width: 100%;
  border-radius: 15px;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: 1px solid #fff;
}

#modal-car-select .car-generation__name {
  font-weight: inherit;
  font-size: inherit;
  color: #fff;
}


@media (max-width: 498px) {
  #modal-car-select .generation-holder {
    grid-template-columns: 1fr;
  }
}


.form-bottom:not(:has(input[type="checkbox"]:checked)) button {
  pointer-events: none;
  opacity: 0.5;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 24px;
  user-select: none;
  font-family: sans-serif;
}

.custom-checkbox {
  display: none;
}

.checkmark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  position: relative;
}

#quize-block .checkmark {
  border-color: #000000;
}

.custom-checkbox:checked+.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#quize-block .custom-checkbox:checked+.checkmark::after {
  border-color: #000000;
}