@charset "UTF-8";
html, body {
  font-size: 16px;
  margin: 0 auto;
  padding: 0;
  font-family: "PorscheNext";
  background-color: #fff;
  min-height: 100vh;
  scroll-behavior: smooth;
}
@media (max-width: 780px) {
  html, body {
    font-size: 14px;
  }
}

*:where(:not(html, iframe, canvas, img, svg, video, audio, select):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

table, th, td {
  border: 0;
  vertical-align: top;
  padding: 0;
}

img {
  width: 100%;
  max-width: 100%;
}

.no-break {
  white-space: nowrap;
}

.desktop {
  display: block;
}
@media screen and (max-width: 960px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .mobile {
    display: block;
  }
}

.container {
  max-width: 1480px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 50px;
}
@media (max-width: 960px) {
  .container {
    padding-inline: 20px;
  }
}

.space {
  margin-block: 120px;
}
@media (max-width: 1440px) {
  .space {
    margin-block: 80px;
  }
}
@media (max-width: 960px) {
  .space {
    margin-block: 60px;
  }
}

.btn {
  max-width: 270px;
  width: 100%;
  border-radius: 5px;
  background-color: rgb(1, 2, 5);
  border: 1px solid rgb(1, 2, 5);
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 15px 20px;
  transition: all 0.4s ease-in-out;
}
.btn:hover {
  background-color: #fff;
  color: rgb(1, 2, 5);
}
.btn.border--white {
  border-color: #fff;
}
.btn.white {
  border-color: #fff;
  background-color: #fff;
  color: rgb(1, 2, 5);
}
.btn.white:hover {
  background-color: rgb(1, 2, 5);
  color: #fff;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

strong {
  font-weight: 600;
}

.ot-floating-button__open,
.ot-floating-button__close {
  display: grid;
  place-items: center;
}

.c-baner {
  position: relative;
}
.c-baner__image {
  display: flex;
}
@media (max-width: 960px) {
  .c-baner__image {
    overflow: hidden;
    justify-content: center;
  }
}
.c-baner__image img {
  width: 100%;
}
@media (max-width: 960px) {
  .c-baner__image img {
    min-width: 130vw;
    object-position: -20px;
  }
}
.c-baner__content {
  position: absolute;
  left: 8.33vw;
  bottom: 3.96vw;
  color: #fff;
}
@media (max-width: 960px) {
  .c-baner__content {
    position: relative;
    padding: 0px 20px;
    left: auto;
    bottom: auto;
    color: rgb(1, 2, 5);
    margin-block: 30px;
  }
}
.c-baner__content h1 {
  font-size: 4.17vw;
  line-height: 1.22;
  margin-bottom: 0.78vw;
  font-weight: 400;
}
@media (min-width: 1920px) {
  .c-baner__content h1 {
    font-size: 80px;
    margin-bottom: 15px;
  }
}
@media (max-width: 960px) {
  .c-baner__content h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }
}
@media (max-width: 500px) {
  .c-baner__content h1 {
    font-size: 24px;
  }
}
.c-baner__content p {
  font-size: 1.56vw;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 1px;
  color: #FBFCFF;
  text-transform: uppercase;
}
@media (min-width: 1920px) {
  .c-baner__content p {
    font-size: 30px;
  }
}
@media (max-width: 960px) {
  .c-baner__content p {
    font-size: 22px;
    color: rgb(1, 2, 5);
  }
}
@media (max-width: 500px) {
  .c-baner__content p {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .c-baner__content p {
    font-size: 16px;
  }
}
.c-baner__content .btn {
  margin-top: 15px;
}
@media (max-width: 960px) {
  .c-baner__content .btn {
    background-color: rgb(1, 2, 5);
    border: 1px solid rgb(1, 2, 5);
    color: #fff;
  }
}
@media (max-width: 960px) {
  .c-baner__content .btn:hover {
    background-color: #fff;
    color: rgb(1, 2, 5);
  }
}

.c-header {
  max-width: 1061px;
  width: 100%;
  margin-block: 90px 45px;
}
@media (max-width: 960px) {
  .c-header {
    margin-block: 50px;
  }
}
.c-header h2 {
  font-size: 45px;
  font-weight: 400;
  margin-block-end: 25px;
  line-height: 1;
}
@media (max-width: 1600px) {
  .c-header h2 {
    font-size: 38px;
  }
}
@media (max-width: 1440px) {
  .c-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  .c-header h2 {
    font-size: 26px;
  }
}
@media (max-width: 960px) {
  .c-header h2 {
    font-size: 36px;
  }
}
.c-header p {
  font-size: 22px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .c-header p {
    font-size: 20px;
  }
}
@media (max-width: 960px) {
  .c-header p {
    font-size: 18px;
  }
}

.c-information__image {
  position: relative;
  display: flex;
  margin-bottom: -9.9vw;
  z-index: 2;
}
@media (max-width: 960px) {
  .c-information__image {
    margin-bottom: -50px;
  }
}
.c-information__bg {
  display: flex;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .c-information__bg {
    overflow-x: hidden;
  }
}
@media (max-width: 960px) {
  .c-information__bg img {
    min-width: 1550px;
  }
}
.c-information__content {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 9.9vw;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  color: #fff;
  padding-inline: 50px;
}
@media (max-width: 1440px) {
  .c-information__content {
    gap: 30px;
  }
}
@media (max-width: 960px) {
  .c-information__content {
    flex-direction: column;
    gap: 0px;
    top: 50px;
    padding-inline: 20px;
  }
}
.c-information__content-elem {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 36px;
}
@media (max-width: 1600px) {
  .c-information__content-elem {
    font-size: 31px;
  }
}
@media (max-width: 1440px) {
  .c-information__content-elem {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .c-information__content-elem {
    font-size: 20px;
  }
}
.c-information__content-elem h3 {
  font-size: 108px;
  font-weight: 400;
}
@media (max-width: 1600px) {
  .c-information__content-elem h3 {
    font-size: 85px;
  }
}
@media (max-width: 1440px) {
  .c-information__content-elem h3 {
    font-size: 75px;
  }
}
@media (max-width: 960px) {
  .c-information__content-elem h3 {
    font-size: 60px;
  }
}

.c-photoText {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  padding-inline: 50px;
  max-width: 1634px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 1200px) {
  .c-photoText {
    gap: 30px;
  }
}
@media (max-width: 960px) {
  .c-photoText {
    padding-inline: 20px;
    flex-wrap: wrap;
  }
}
.c-photoText:nth-of-type(even) {
  flex-direction: row-reverse;
}
.c-photoText__image {
  display: flex;
  max-width: 833px;
  width: 100%;
}
@media (max-width: 960px) {
  .c-photoText__image {
    margin-inline: -20px;
    max-width: unset;
    width: auto;
  }
}
.c-photoText__image img {
  border-radius: 15px;
}
@media (max-width: 960px) {
  .c-photoText__image img {
    border-radius: 0px;
  }
}
.c-photoText__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 395px;
  width: 100%;
  margin-inline: 80px;
}
@media (max-width: 1600px) {
  .c-photoText__content {
    margin-inline: 60px;
  }
}
@media (max-width: 1440px) {
  .c-photoText__content {
    margin-inline: 40px;
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .c-photoText__content {
    margin-inline: 0px;
  }
}
@media (max-width: 960px) {
  .c-photoText__content {
    max-width: 100%;
    gap: 30px;
  }
}
.c-photoText__content img {
  width: auto;
}
@media (max-width: 1200px) {
  .c-photoText__content img {
    max-width: 150px;
  }
}
.c-photoText__content h3 {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 1600px) {
  .c-photoText__content h3 {
    font-size: 38px;
  }
}
@media (max-width: 1440px) {
  .c-photoText__content h3 {
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  .c-photoText__content h3 {
    font-size: 26px;
  }
}
@media (max-width: 960px) {
  .c-photoText__content h3 {
    font-size: 36px;
  }
}
.c-photoText__content p {
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1440px) {
  .c-photoText__content p {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .c-photoText__content p {
    font-size: 18px;
  }
}
.c-photoText__content--fix {
  padding-bottom: 5.99vw;
}
@media (max-width: 960px) {
  .c-photoText__content--fix {
    padding-bottom: 0px;
  }
}
.c-photoText--spacing {
  margin-block: 100px 35px;
}
@media (max-width: 960px) {
  .c-photoText--spacing {
    margin-block: 50px;
  }
}
.c-photoText--special {
  max-width: 1769px;
  margin-top: -5.68vw;
  z-index: 1;
  padding-right: 0px;
  margin-right: 0px;
}
@media (max-width: 960px) {
  .c-photoText--special {
    margin-top: 50px;
    padding-right: 20px;
  }
}
.c-photoText--special .c-photoText__image {
  max-width: 1079px;
  width: 100%;
}
@media (max-width: 960px) {
  .c-photoText--special .c-photoText__image {
    max-width: unset;
    width: auto;
  }
}
.c-photoText--special .c-photoText__image img {
  border-radius: 0px;
}
.c-photoText--special .c-photoText__content {
  padding-top: 5.99vw;
}
@media (max-width: 960px) {
  .c-photoText--special .c-photoText__content {
    padding-top: 0px;
  }
}
.c-photoText--background {
  background: #fff url("../images/background.webp") center/cover no-repeat;
  padding-top: 150px;
}
@media (max-width: 960px) {
  .c-photoText--background {
    padding-block: 50px;
  }
}
.c-photoText--background .c-photoText {
  max-width: 1408px;
  gap: 80px;
}
@media (max-width: 1600px) {
  .c-photoText--background .c-photoText {
    gap: 60px;
  }
}
@media (max-width: 1440px) {
  .c-photoText--background .c-photoText {
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .c-photoText--background .c-photoText {
    gap: 30px;
  }
}
@media (max-width: 960px) {
  .c-photoText--background .c-photoText {
    gap: 40px;
  }
}
.c-photoText--background .c-photoText__image {
  max-width: 700px;
}
@media (max-width: 960px) {
  .c-photoText--background .c-photoText__image {
    max-width: unset;
    width: auto;
  }
}
.c-photoText--background .c-photoText__image img {
  border-radius: 15px 15px 0px 0px;
}
@media (max-width: 960px) {
  .c-photoText--background .c-photoText__image img {
    border-radius: 0px;
  }
}
.c-photoText--background .c-photoText__content {
  max-width: 460px;
  margin-inline: 0px;
}

.c-programs {
  position: relative;
  overflow-x: hidden;
  background-color: rgb(1, 2, 5);
}
@media (max-width: 960px) {
  .c-programs {
    overflow: hidden;
  }
}
@media (max-width: 960px) {
  .c-programs .swiper-wrapper {
    align-items: center;
  }
}
.c-programs__elem {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(1, 2, 5);
  background-size: 100vw;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 828px;
  padding-block: 50px;
  font-size: 18px;
}
@media (max-width: 1440px) {
  .c-programs__elem {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .c-programs__elem {
    background-size: cover;
    background-position: center right 12%;
    padding-block: 100px;
    min-height: unset;
  }
}
.c-programs__elem .container {
  max-width: 1580px;
  padding-inline: 100px;
}
@media (max-width: 960px) {
  .c-programs__elem .container {
    padding-inline: 20px;
  }
}
.c-programs__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 510px;
  width: 100%;
  color: #fff;
  z-index: 5;
}
@media (max-width: 1440px) {
  .c-programs__content {
    gap: 30px;
  }
}
@media (max-width: 960px) {
  .c-programs__content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 100%;
    gap: 20px;
  }
}
.c-programs__content h4 {
  font-size: 20px;
}
@media (max-width: 1440px) {
  .c-programs__content h4 {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .c-programs__content h4 {
    font-size: 16px;
  }
}
.c-programs__content h3 {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 1600px) {
  .c-programs__content h3 {
    font-size: 38px;
  }
}
@media (max-width: 1440px) {
  .c-programs__content h3 {
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  .c-programs__content h3 {
    font-size: 26px;
  }
}
@media (max-width: 960px) {
  .c-programs__content h3 {
    font-size: 36px;
  }
}
.c-programs__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 960px) {
  .c-programs--fix {
    overflow-x: hidden;
  }
}
.c-programs__flex {
  display: flex;
  gap: 20px;
}
@media (max-width: 550px) {
  .c-programs__flex {
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 10px;
  }
}
.c-programs__flex:last-of-type {
  border-bottom: 0px;
}
.c-programs__flex.align-center {
  align-items: center;
}
.c-programs__flex .salon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  max-width: 270px;
  width: 100%;
  line-height: 1;
}
.c-programs__flex .line {
  width: 1px;
  background-color: #fff;
}
@media (max-width: 550px) {
  .c-programs__flex .line {
    display: none;
    max-width: 100%;
    width: 100%;
    height: 1px;
  }
}
.c-programs__flex .break {
  width: 1px;
}
.c-programs__flex .date, .c-programs__flex .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 550px) {
  .c-programs__flex .date, .c-programs__flex .price {
    max-width: 100%;
    width: 100%;
  }
}
.c-programs__flex .date span, .c-programs__flex .price span {
  font-weight: bold;
}
.c-programs__flex .date .small, .c-programs__flex .price .small {
  font-size: 18px;
}
@media (max-width: 1440px) {
  .c-programs__flex .date .small, .c-programs__flex .price .small {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .c-programs__flex .date .small, .c-programs__flex .price .small {
    font-size: 22px;
  }
}
.c-programs__flex .price {
  font-size: 25px;
}
@media (max-width: 1440px) {
  .c-programs__flex .price {
    font-size: 22px;
  }
}
.c-programs__flex .date {
  font-size: 20px;
}
@media (max-width: 1440px) {
  .c-programs__flex .date {
    font-size: 18px;
  }
}
.c-programs__terms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-programs__nav {
  overflow: hidden;
}
.c-programs__nav-container {
  position: relative;
  overflow: hidden;
  max-width: 1760px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 100px;
  padding-block: 70px;
}
@media (max-width: 960px) {
  .c-programs__nav-container {
    padding-inline: 20px 0px;
    padding-block: 100px 50px;
  }
}
.c-programs__nav .c-programs__button-prev {
  left: 0px;
}
@media (max-width: 1800px) {
  .c-programs__nav .c-programs__button-prev {
    left: 30px;
  }
}
@media (max-width: 1600px) {
  .c-programs__nav .c-programs__button-prev {
    left: 30px;
  }
  .c-programs__nav .c-programs__button-prev img {
    max-width: 12px;
  }
}
.c-programs__nav .c-programs__button-next {
  right: 0px;
}
@media (max-width: 1800px) {
  .c-programs__nav .c-programs__button-next {
    right: 30px;
  }
}
@media (max-width: 1600px) {
  .c-programs__nav .c-programs__button-next {
    right: 30px;
  }
  .c-programs__nav .c-programs__button-next img {
    max-width: 12px;
  }
}
@media (max-width: 600px) {
  .c-programs__nav .swiper-slide {
    width: auto !important;
    margin-right: 30px;
  }
}
.c-programs__nav-elem {
  font-size: 24px;
  line-height: 1.2;
  cursor: pointer;
}
.c-programs__nav-elem:hover {
  color: #d71920;
}
.c-programs__pagination {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 30px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.c-programs__button-prev, .c-programs__button-next {
  position: absolute;
  top: 0px;
  bottom: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 3;
}
@media (max-width: 960px) {
  .c-programs__button-prev, .c-programs__button-next {
    top: 30px;
    bottom: auto;
  }
  .c-programs__button-prev img, .c-programs__button-next img {
    max-width: 12px;
  }
}
.c-programs__button-prev img, .c-programs__button-next img {
  width: auto;
}
.c-programs__button-prev {
  left: 70px;
}
@media (max-width: 1600px) {
  .c-programs__button-prev {
    left: 50px;
  }
}
@media (max-width: 960px) {
  .c-programs__button-prev {
    left: 20px;
  }
}
.c-programs__button-next {
  right: 70px;
}
@media (max-width: 1600px) {
  .c-programs__button-next {
    right: 50px;
  }
}
@media (max-width: 960px) {
  .c-programs__button-next {
    left: 90px;
    right: auto;
  }
}
.c-programs__button-next img {
  transform: rotate(180deg);
}

.c-form-bg {
  background-image: url("../images/bg-form.webp");
  background-size: cover;
  background-position: center;
}

.c-form {
  padding: 100px 0px;
  color: #fff;
}
@media (max-width: 1200px) {
  .c-form {
    padding: 50px 0px;
  }
}
.c-form__header {
  padding-bottom: 30px;
}
.c-form__header h2 {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.3;
  margin-block: 0px 12px;
}
@media (max-width: 960px) {
  .c-form__header h2 {
    font-size: 26px;
  }
}
@media (max-width: 960px) {
  .c-form__header h2 br {
    display: none;
  }
}
.c-form__header p {
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .c-form__header p {
    font-size: 16px;
  }
}
.c-form__container {
  max-width: 837px;
  width: 100%;
}
@media (min-width: 960px) {
  .c-form__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
  }
}
@media (min-width: 960px) {
  .c-form__content-elem {
    width: calc(50% - 30px);
  }
}
.c-form__content-elem.full-width {
  max-width: 100%;
  width: 100%;
}
.c-form__content-elem label {
  display: block;
  max-width: 100%;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1920px) {
  .c-form__content-elem label {
    font-size: 0.83vw;
  }
}
.c-form__content-elem input, .c-form__content-elem select, .c-form__content-elem textarea {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  margin-block: 4px 0px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 12px 15px 0px;
}
.c-form__content-elem input::placeholder, .c-form__content-elem select::placeholder, .c-form__content-elem textarea::placeholder {
  font-family: "PorscheNext";
  color: #808080;
  font-size: 16px;
}
.c-form__content-elem select {
  color: #808080;
}
.c-form__content-elem select:open {
  color: rgb(1, 2, 5);
  border-radius: 4px 4px 0px 0px;
  border-bottom-width: 1px;
}
.c-form__input--error {
  border-color: red !important;
}
.c-form__error-message {
  color: red;
  font-size: 12px;
}
@media (min-width: 1920px) {
  .c-form__error-message {
    font-size: 0.63vw;
  }
}
.c-form__accepts-elem {
  margin: 30px 0px;
  font-size: 12px;
}
@media (min-width: 1920px) {
  .c-form__accepts-elem {
    font-size: 0.63vw;
  }
}
.c-form__accepts-elem--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
.c-form__accepts-accept {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.c-form__accepts input[type=checkbox] {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border-radius: 0;
  border: 1px solid #fff;
  transition: all 0.2s ease-in-out;
  color: #fff;
}
@media (min-width: 1920px) {
  .c-form__accepts input[type=checkbox] {
    width: 1.04vw;
    min-width: 1.04vw;
    height: 1.04vw;
    min-height: 1.04vw;
  }
}
.c-form__accepts input[type=checkbox]:before {
  transform: scale(0);
}
.c-form__accepts input[type=checkbox]:checked:before {
  transform: scale(1);
  content: "✓";
  line-height: 0;
  font-size: 0.9rem;
}
.c-form__expand-btn {
  font-weight: bold;
  cursor: pointer;
}
.c-form__button {
  max-width: 270px;
  width: 100%;
  background-color: transparent;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 15px 30px;
  margin-block: 24px 0px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #fff;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.c-form__button:hover {
  background-color: #fff;
  color: rgb(1, 2, 5);
}
.c-form__popup-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 99999;
}
.c-form__popup {
  position: relative;
  padding-inline: 3rem;
  padding-block: 3rem;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.c-form__popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.c-logo-bar__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1680px;
  margin: 0 auto;
  gap: 1rem;
  padding: 0 3vw;
  min-height: 80px;
}
@media (max-width: 960px) {
  .c-logo-bar__wrap {
    min-height: 50px;
  }
}
.c-logo-bar__toggle {
  width: 100%;
}
.c-logo-bar__logo {
  text-align: center;
  width: 100%;
}
.c-logo-bar__logo a {
  text-align: center;
}
.c-logo-bar__logo img {
  width: 245px;
}
.c-logo-bar__location {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.c-logo-bar__location img {
  height: 27px;
  line-height: 0;
}
.c-logo-bar--default {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.c-logo-bar--default .c-logo-bar__toggle {
  display: none;
}
.c-logo-bar--default .c-logo-bar__logo {
  width: clamp(150px, 16%, 300px);
  margin-inline: auto;
}
.c-logo-bar--default .c-logo-bar__location {
  display: none;
}
.c-logo-bar--white {
  background-color: #fff;
}
@media (max-width: 780px) {
  .c-logo-bar__toggle {
    display: none;
  }
  .c-logo-bar__logo img {
    width: 134px;
  }
  .c-logo-bar__location {
    display: none;
  }
}
@media (max-width: 1100px) {
  .c-logo-bar__location {
    font-size: 16px;
  }
}

.c-footer {
  padding-block: 2rem;
  padding-inline: 2rem;
  background-color: rgb(1, 2, 5);
  color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2rem;
}
@media (max-width: 960px) {
  .c-footer {
    flex-direction: column;
  }
}
.c-footer__wrapper {
  max-width: calc(33.3333333333% - 2rem);
  width: 100%;
}
@media (max-width: 1150px) {
  .c-footer__wrapper {
    max-width: calc(50% - 2rem);
  }
}
@media (max-width: 960px) {
  .c-footer__wrapper {
    max-width: 100%;
  }
}
.c-footer__main {
  font-size: 1.4rem;
}
.c-footer__submain {
  font-size: 1.2rem;
  font-weight: 600;
  margin-block: 0.25rem 0.75rem;
}
.c-footer button {
  background-color: #fff;
  border-radius: 4px;
  padding-block: 0.75rem;
  padding-inline: 2rem;
  color: rgb(1, 2, 5);
  margin-block: 1rem 0;
}
.c-footer button:hover {
  cursor: pointer;
}

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