@charset "UTF-8";
/**
  Нормализация блочной модели
 */
a {
  text-decoration: none;
}

*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
  margin-bottom: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями
 */
img {
  display: block;
  max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Приводим к единому цвету svg-элементы
 */
svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --header-height: 5rem;
}

.min-width {
  min-width: var(--min-width);
}

@media (max-width: 578px) {
  .min-width {
    width: 92.31%;
  }
}
#header .corvett-icon {
  width: fit-content;
  display: inline-block;
  height: fit-content;
}

#header .header-container > .profteh-login {
  display: none;
}

#header .profteh-login {
  font-family: var(--roboto-medium);
  border: 2px solid rgba(207, 154, 6, 0.7882352941);
  background-color: rgba(54, 53, 53, 0.4235294118);
  color: #cecece;
  text-wrap: nowrap;
  font-size: 0.875rem;
  padding: 0.46875rem;
  border-radius: 0.3125rem;
}
#header .profteh-login__inner {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}
#header .profteh-login .login-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fdb539;
  mask: url("/images/icons/login.svg") no-repeat center;
  -webkit-mask: url("/images/icons/login.svg") no-repeat center;
  mask-size: cover;
  -webkit-mask-size: cover;
}

#header {
  font-family: var(--font-family);
  height: var(--header-height);
  background-color: #0B0B0B;
  position: fixed;
  top: 0;
  left: 0;
  min-width: min(100%, 1800px);
  width: 100vw;
  z-index: 3000;
  font-size: 16px;
}
#header .header-menu-button {
  height: 3.125rem;
  width: 3.125rem;
  user-select: none;
  display: none;
  cursor: pointer;
  border: 1px solid #292929;
  border-radius: 0.3em;
  margin-left: 1rem;
  padding: 0.5em;
  background-color: rgba(233, 233, 233, 0.3019607843);
}
#header .header-container {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  padding: 0 3em;
  column-gap: 2em;
}
#header .header-container .nav-wrapper {
  width: 100%;
  align-items: center;
}
#header nav {
  column-gap: min(5vw, 6rem);
  width: 65%;
}
#header nav a {
  text-wrap: nowrap;
  color: white;
}
#header a.phone-number {
  height: 1.2em;
  margin-left: auto;
  text-decoration: underline;
  color: #db163a;
}

@media (hover: hover) {
  #header .profteh-login {
    transition: border-color 0.25s ease;
  }
  #header .profteh-login span {
    transition: color 0.25s ease;
  }
  #header .profteh-login .login-icon {
    transition: background-color 0.25s ease;
  }
  #header .profteh-login:hover {
    border-color: #ffbf50;
  }
  #header .profteh-login:hover span {
    color: var(--white);
  }
  #header .profteh-login:hover .login-icon {
    background-color: #ee9700;
  }
}
@media (max-width: 1680px) {
  #header nav {
    column-gap: 3.5vw;
    width: auto;
  }
  #header .nav-wrapper {
    column-gap: 2.5rem;
    justify-content: space-around;
  }
  #header a.phone-number {
    margin-left: unset;
  }
  #header .header-container {
    padding: 0 1.5rem;
  }
  #header .corvett-icon {
    width: 8em;
  }
}
@media (max-width: 1500px) {
  #header .header-container > a {
    display: none;
  }
  #header .nav-wrapper {
    width: 100%;
  }
}
@media (max-width: 1320px) {
  #header {
    justify-content: start !important;
  }
  #header .header-menu-button {
    display: flex;
  }
  #header .nav-wrapper,
  #header .corvett-icon {
    display: none !important;
  }
  #header .header-container > .profteh-login {
    display: flex;
    margin-left: auto;
  }
  #header .nav-wrapper {
    font-size: 18px;
    left: 0;
    height: 0;
    top: 76%;
    position: absolute;
    flex-direction: column;
    background-color: rgba(37, 37, 37, 0.9647058824);
    margin-left: 1.0625rem;
    z-index: 3000;
    width: 40% !important;
  }
  #header .nav-wrapper a {
    padding: 1em 1em;
    transition: background-color 0.5s ease;
  }
  #header .nav-wrapper a.active {
    background-color: rgba(82, 82, 82, 0.6901960784);
  }
  #header .nav-wrapper .profteh-login {
    display: none;
  }
  #header .nav-wrapper.opened {
    display: flex !important;
    align-items: normal !important;
  }
  #header .nav-wrapper.opened nav {
    align-items: normal !important;
  }
  #header nav {
    justify-content: start !important;
    flex-direction: column;
    width: 100%;
  }
  #header a.phone-number {
    margin-left: 0;
    height: 100%;
    color: #fff;
  }
}
@media (max-width: 768px) {
  #header .nav-wrapper {
    width: 50% !important;
  }
}
@media (max-width: 578px) {
  #header {
    column-gap: 0.625rem;
  }
  #header .hamburger-wrapper {
    margin-left: 0.5em;
    flex-shrink: 0;
  }
  #header .header-container {
    padding-left: 0;
  }
  #header .header-container > .profteh-login span {
    text-wrap: wrap;
  }
  #header .nav-wrapper {
    margin-left: 0.5em;
    width: 60% !important;
  }
}
@media (hover: hover) {
  .footer-container .info-1 .policy-section .policy:hover {
    cursor: pointer;
  }
}
.footer-container {
  width: 100%;
  background-color: white;
  font-size: 15px;
}
.footer-container p {
  margin: 0;
}
.footer-container .info .content {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  color: #d9d9d9;
  height: 100%;
  padding: 1em 0;
  justify-content: center;
}
.footer-container .info-1 {
  background-color: #3a4040;
}
.footer-container .info-1 .content {
  column-gap: 22%;
}
.footer-container .info-1 a {
  color: #d9d9d9;
}
.footer-container .info-1 .underscore {
  text-decoration: underline;
}
.footer-container .info-1 .policy-section {
  display: flex;
  flex-direction: column;
  row-gap: 0.4375rem;
}
.footer-container .info-2 {
  background: #e3e5e8;
}
.footer-container .info-2 .content {
  column-gap: 29%;
}
.footer-container .info-2 .corvett-bottom-icon {
  width: fit-content;
  height: 2.5rem;
  margin-left: 2.5em;
}
.footer-container .info-2 .corvett-note {
  color: #3a4040;
  text-wrap: nowrap;
}
.footer-container .info-2 .socials {
  column-gap: 1.73em;
  width: fit-content;
  height: 100%;
}
.footer-container .info-2 .socials img {
  height: 1.25rem;
}

@media (max-width: 1680px) {
  .footer-container {
    font-size: 17px;
  }
  .footer-container .info-1 .content {
    column-gap: 21%;
  }
}
@media (max-width: 1480px) {
  .footer-container .info-1 .content {
    column-gap: 15%;
  }
}
@media (max-width: 1440px) {
  .footer-container {
    font-size: 19px;
  }
  .footer-container .info-2 .content {
    column-gap: 26%;
  }
  .footer-container .info-2 .corvett-bottom-icon {
    margin-left: 1.5em;
  }
}
@media (max-width: 1280px) {
  .footer-container {
    font-size: 19px;
  }
  .footer-container .info-1 .content {
    column-gap: 10%;
  }
  .footer-container .info-2 .content {
    column-gap: 23%;
  }
  .footer-container .info-2 .corvett-bottom-icon {
    margin-left: 1em;
  }
}
@media (max-width: 1070px) {
  .footer-container {
    font-size: 22px;
  }
  .footer-container .info-1 .content {
    padding-left: 5vw;
  }
  .footer-container .info-2 .corvett-bottom-icon {
    height: 2em;
    margin-left: 0;
  }
  .footer-container .info-2 .content {
    column-gap: 14%;
  }
  .footer-container .info-1 .content {
    padding-top: 1em;
    row-gap: 1em;
    align-items: start !important;
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  .footer-container .info .content {
    justify-content: normal;
  }
  .footer-container .info-2 .content {
    padding-top: 2em;
    padding-left: 5vw;
    column-gap: 10%;
    row-gap: 3em;
    flex-wrap: wrap;
  }
  .footer-container .info-2 .corvett-bottom-icon {
    height: 2.8125rem;
  }
  .footer-container .socials {
    justify-content: start;
    margin-left: 0.25em;
  }
}
@media (max-width: 768px) {
  .footer-container .info-2 .content {
    column-gap: 10%;
  }
  .footer-container .info-2 .corvett-bottom-icon {
    height: 3.125rem;
    margin-right: auto;
  }
  .footer-container .info-2 .corvett-note {
    margin-right: 3.125rem;
  }
}
@media (max-width: 578px) {
  .footer-container {
    font-size: 18px;
  }
  .footer-container .info-2 .content {
    row-gap: 2em;
    column-gap: 100%;
  }
}
main .overlay-container {
  position: absolute;
}
main .overlay-container .overlay {
  display: none;
  top: 0;
  position: fixed;
  width: 100%;
  height: 100%;
}
main .overlay-container.shown .overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 50;
}

:root {
  --policy-header-height: 3.125rem;
}

@media (hover: hover) {
  .nt-modal.policy-modal .nt-modal-content > .header .close {
    border-radius: 0.3125rem;
    transition: background-color 0.15s ease-in-out;
  }
  .nt-modal.policy-modal .nt-modal-content > .header .close:hover {
    cursor: pointer;
    background-color: rgba(85, 142, 222, 0.29);
  }
}
.nt-modal.policy-modal {
  color: #7e7e7e;
  z-index: 7000;
  font-family: var(--roboto-regular);
}
.nt-modal.policy-modal .title {
  color: #666666;
  font-family: var(--roboto-medium);
}
.nt-modal.policy-modal .nt-modal-content {
  width: max(55vw, 21.875rem);
  height: 95dvh;
  border-radius: 0.625rem;
  overflow: hidden;
}
.nt-modal.policy-modal .nt-modal-content .privacy-policy {
  line-height: 1.6;
  font-size: 1rem;
}
.nt-modal.policy-modal .nt-modal-content .privacy-policy h3 {
  margin-top: 1.25rem;
  color: #333333;
}
.nt-modal.policy-modal .nt-modal-content .privacy-policy ul {
  padding-left: 1.25rem;
}
.nt-modal.policy-modal .nt-modal-content .effective-date {
  margin-top: 1.875rem;
  font-style: italic;
}
.nt-modal.policy-modal .nt-modal-content > .header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--policy-header-height);
  padding: 0.625rem;
  background-color: #f1f1f1;
}
.nt-modal.policy-modal .nt-modal-content > .header .close {
  margin-left: auto;
}
.nt-modal.policy-modal .nt-modal-content > .content {
  padding: var(--policy-header-height) 1.25rem 1.25rem 1.25rem;
  overflow: auto;
  height: 100%;
}

@media (max-width: 90rem) {
  .nt-modal.policy-modal .nt-modal-content {
    border-radius: 0;
    height: 100dvh;
    width: 100dvw;
  }
}
@font-face {
  font-family: "Montserrat Alternates";
  src: url("/fonts/MontserratAlternates-Medium.ttf");
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("/fonts/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("/fonts/Montserrat-Medium.ttf");
}
@font-face {
  font-family: "Manrope-Medium";
  src: url("/fonts/Manrope-Medium.ttf");
}
@font-face {
  font-family: "Manrope-Bold";
  src: url("/fonts/Manrope-Bold.ttf");
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("/fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("/fonts/Roboto-Medium.ttf");
}
@font-face {
  font-family: "Inter-SemiBold";
  src: url("/fonts/Inter-SemiBold.ttf");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("/fonts/Inter-Bold.ttf");
}
@font-face {
  font-family: "NotoSans-Regular";
  src: url("/fonts/NotoSans-Regular.ttf");
}
@font-face {
  font-family: "MiriamLibre-Medium";
  src: url("/fonts/MiriamLibre-Medium.ttf");
}
:root {
  --min-width: 360px;
  --font-family: "Montserrat Alternates", sans-serif;
  --second-family: "Montserrat-Regular", sans-serif;
  --montserrat-medium: "Montserrat-Medium", sans-serif;
  --roboto-regular: "Roboto-Regular";
  --roboto-medium: "Roboto-Medium";
  --manrope-bold: "Manrope-Bold";
  --manrope-medium: "Manrope-Medium";
  --inter-semibold: "Inter-SemiBold";
  --inter-bold: "Inter-Bold";
  --notosans-regular: "NotoSans-Regular";
  --miriamlibre-medium: "MiriamLibre-Medium";
  --red-fill: #CA1838;
  --text-gray: #3A4040;
  --white: #ffffff;
}

main,
html,
.main-container {
  max-width: 100%;
}

html, body {
  min-height: 100vh;
  min-width: var(--min-width);
  height: auto;
  display: flex;
  flex-direction: column;
}

body {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

main {
  min-height: 0;
  height: 100%;
}

.main-margin {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.white__card__border {
  border-radius: 3.75rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  padding: 1.875rem 4.6875rem 6.25rem 4.6875rem;
  width: 85.94%;
}
.white__card__border--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.white__card__border-title {
  font-size: 2.75rem;
  font-family: var(--montserrat-medium);
  color: #1E1E1E;
}

@media (max-width: 87.5rem) {
  .white__card__border {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}
@media (max-width: 87.5rem) {
  .white__card__border {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .white__card__border {
    border-radius: 2.1875rem;
  }
}

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