* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.cwu{
  width: 50px;
  height: 50px;
  padding: 7px;
  position: fixed;
  z-index: 30;
  bottom: 20%;
  right: 2%;
  background-color:rgba(9, 5, 119, 0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: .3s;
}

@media (max-width:500px) {
  .cwu{
    bottom: 15%;
  }
}

.fixed-component {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: rgba(1, 170, 1, 0.7);
  border-radius: 50%;
  padding: 10px;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: .2s;
}
.fixed-component img{
    display: block;
    max-width: 35px;
}
.fixed-component:hover{
    background-color: rgb(1, 170, 1);
}

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px)
    }
  }
.cwu:hover{
 box-shadow: 0 0 10px #090577;
}

.cwu img{
  width: 100%;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 200;
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.cssload-loader {
  position: relative;
  left: calc(50% - 28px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  perspective: 700px;
}

.cssload-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.cssload-inner.cssload-one {
  left: 0%;
  top: 0%;
  animation: cssload-rotate-one 1.6s linear infinite;
  -o-animation: cssload-rotate-one 1.6s linear infinite;
  -ms-animation: cssload-rotate-one 1.6s linear infinite;
  -webkit-animation: cssload-rotate-one 1.6s linear infinite;
  -moz-animation: cssload-rotate-one 1.6s linear infinite;
  border-bottom: 3px solid rgb(0, 0, 0);
}

.cssload-inner.cssload-two {
  right: 0%;
  top: 0%;
  animation: cssload-rotate-two 1.6s linear infinite;
  -o-animation: cssload-rotate-two 1.6s linear infinite;
  -ms-animation: cssload-rotate-two 1.6s linear infinite;
  -webkit-animation: cssload-rotate-two 1.6s linear infinite;
  -moz-animation: cssload-rotate-two 1.6s linear infinite;
  border-right: 3px solid rgb(0, 0, 0);
}

.cssload-inner.cssload-three {
  right: 0%;
  bottom: 0%;
  animation: cssload-rotate-three 1.6s linear infinite;
  -o-animation: cssload-rotate-three 1.6s linear infinite;
  -ms-animation: cssload-rotate-three 1.6s linear infinite;
  -webkit-animation: cssload-rotate-three 1.6s linear infinite;
  -moz-animation: cssload-rotate-three 1.6s linear infinite;
  border-top: 3px solid rgb(0, 0, 0);
}

@keyframes cssload-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-one {
  0% {
    -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-ms-keyframes cssload-rotate-one {
  0% {
    -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-one {
  0% {
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-two {
  0% {
    -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-ms-keyframes cssload-rotate-two {
  0% {
    -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-two {
  0% {
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-three {
  0% {
    -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-ms-keyframes cssload-rotate-three {
  0% {
    -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-three {
  0% {
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
body {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  color: #171717;
  font-size: 20px;
  background-color: #fff;
}
@media (max-width: 1330px) {
  body {
    font-size: calc(14px + 6 * (100vw - 320px) / 1010);
  }
}

body.lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.wrap {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.wrap span {
  display: inline-block;
  max-width: 490px;
  padding: 24px 32px;
  border-radius: 20px;
  line-height: 150%;
  margin: 0 10px;
  background-color: white;
}

.wrap.active {
  display: flex;
}

.container {
  max-width: 1350px;
  padding: 0 25px;
  margin: 0 auto;
}
h1 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  line-height: 120%;
}
@media (max-width: 1330px) {
  h1 {
    font-size: calc(32px + 10 * (100vw - 768px) / 562);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: calc(24px + 8 * (100vw - 400px) / 368);
  }
}
h2 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  line-height: 120%;
}
@media (max-width: 1330px) {
  h2 {
    font-size: calc(32px + 10 * (100vw - 768px) / 562);
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: calc(24px + 8 * (100vw - 400px) / 368);
  }
}

.header__head {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__container {
  max-width: 1330px;
  margin: 0 auto;
}
.header__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header__inner {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media (max-width: 1330px) {
  .header__inner {
    height: calc(70px + 10 * (100vw - 320px) / 1010);
  }
}
.header__logo {
  cursor: pointer;
  position: relative;
  z-index: 10;
  max-width: 129px;
}
.header__logo img {
  width: 100%;
}
.header__cookies {
  display: flex;
  align-items: center;
}

.menu__burger {
  position: relative;
  z-index: 10;
  width: 30px;
  height: 20px;
  margin-left: 40px;
}
@media (max-width: 640px) {
  .menu__burger {
    margin-left: 29px;
  }
}
.menu__burger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
  width: 30px;
  background-color: #171717;
  transition: 0.3s;
}
.menu__burger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
  width: 30px;
  background-color: #171717;
  transition: 0.3s;
}
.menu__burger span {
  position: absolute;
  top: 8.5px;
  left: 0;
  height: 4px;
  border-radius: 2px;
  width: 30px;
  background-color: #171717;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .menu__burger::before, .menu__burger::after, .menu__burger span {
    height: 3px;
  }
}
@media (min-width: 769px) {
  .menu__burger {
    display: none;
  }
}
.menu__burger.active::before {
  top: 8.5px;
  transform: rotate(45deg);
}
.menu__burger.active::after {
  bottom: 8.5px;
  transform: rotate(-45deg);
}
.menu__burger.active span {
  transform: scale(0);
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1330px) {
  .menu__list {
    gap: calc(20px + 12 * (100vw - 768px) / 562);
    font-size: calc(14px + 6 * (100vW - 768px) / 562);
  }
}
@media (max-width: 768px) {
  .menu__list {
    display: none;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .menu__list.active {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
  }
}
.menu__link {
  cursor: pointer;
  color: #171717;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 768px) {
  .menu__link {
    font-size: 30px;
  }
}

.connection {
  position: relative;
  z-index: 1;
  font-size: 20px;
  cursor: pointer;
}
.connection a {
  color: #171717;
}
@media (max-width: 640px) {
  .connection {
    display: none;
  }
}

.request {
  display: none;
  position: fixed;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
}
.request__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 650px;
  background-color: #fff;
  padding: 24px 32px;
  border-radius: 24px;
  gap: 5px;
}
@media (max-width: 1330px) {
  .request__inner {
    padding: calc(15px + 9 * (100vw - 320px) / 1010) calc(17px + 15 * (100vw - 320px) / 1010);
  }
}
@media (max-width: 700px) {
  .request__inner {
    width: 490px;
  }
}
@media (max-width: 500px) {
  .request__inner {
    width: 90%;
  }
}
.request__title {
  font-weight: 600;
  font-size: 32px;
  text-align: center;
}
@media (max-width: 1330px) {
  .request__title {
    font-size: calc(20px + 12 * (100vw - 320px) / 1010);
  }
}
.request__sub-title {
  line-height: 160%;
}

.request__sub-title2{
  font-size: 16px;
}

.request__input {
  border: 1px solid #CED3D6;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 20px;
  margin-bottom: 24px;
}
.request__input:focus {
  border: 1px solid #090577;
}
@media (max-width: 1330px) {
  .request__input {
    font-size: calc(14px + 6 * (100vw - 320px) / 1010);
  }
}
.request-head .request__input{
  margin-bottom: 0px;
}
.request__list {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.request__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: 131.67px;
  height: 56px;
  border: 1px solid #CED3D6;
}
.request__icon img {
  max-width: 30px;
}
@media (max-width: 1330px) {
  .request__icon {
    width: calc(70px + 61.67 * (100vw - 320px) / 1010);
    height: calc(35px + 21 * (100vw - 320px) / 1010);
  }
}
.request__submit {
  background: #0C085E;
  border-radius: 8px;
  color: white;
  height: 56px;
  transition: .3s;
  cursor: pointer;
}

.request__submit:hover {
  background: #090644;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(3, 197, 3);
  background-color: transparent;
  font-weight: 500;
}

.whatsapp-btn img{
  max-width: 40px;
}

.whatsapp-btn:hover {
  background-color: rgb(1, 170, 1);
}

.request__checkboxes-title{
  font-size: 18px;
  font-weight: 400;
}

.request__checkbox {
  display: none;
}

.request__checkbox:checked + label:after {
  transform: scale(1);
}

.request__checkboxes {
  display: flex;
  justify-content: space-between;
}
.request__checkboxes label {
  position: relative;
  display: flex;
  align-items: center;
  background-size: 25px;
  border: 1px solid #CED3D6;
  background-repeat: no-repeat;
  background-position: center;
  width: 32%;
  height: 56px;
  border-radius: 10px;
  cursor: pointer;
}
.request__checkboxes label::before {
  content: "";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  align-self: flex-start;
  margin-right: 24px;
}
.request__checkboxes label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #0a074b;
  border-radius: 10px;
  transform: scale(0);
}

.request__label1 {
  background-image: url(../img/whatsapp-icon.png);
}

.request__label2 {
  background-image: url(../img/telegram.png);
}

.request__label3 {
  background-image: url(../img/Phone.png);
}

.request.request__active {
  display: flex;
}

.form__inner .request__checkboxes{
  margin: 10px 0;
}

.form__inner span{
  margin: 10px 0;
}

.langs {
  position: relative;
  z-index: 5;
  background-color: transparent;
  font-size: 20px;
  margin: 0 0 0 32px;
}

.lang {
  cursor: pointer;
  font-weight: 500;
  color: rgb(183, 182, 182);
}

.lang.active {
  color: rgb(10, 3, 60);
}

.main-content {
  flex: 1 1 auto;
}

.main {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}
@media (max-width: 1330px) {
  .main {
    height: calc(482px + 190 * (100vw - 768px) / 562);
  }
}
@media (max-width: 768px) {
  .main {
    height: calc(323px + 159 * (100vw - 390px) / 378);
  }
}
@media (max-width: 1330px) {
  .main {
    margin-top: calc(70px + 10 * (100vw - 820px) / 510);
  }
}
@media (max-width: 820px) {
  .main {
    margin-top: 65px;
  }
}
@media (max-width: 820px) {
  .main {
    margin-top: calc(20px + 45 * (100vw - 390px) / 940);
  }
}
.main__slide-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 672px;
}
@media (min-width: 1440px) {
  .main__slide-inner {
    height: 100vh;
  }
}
.main__slide {
  position: relative;
}
.main__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
@media (min-width: 820px) {
  .main__slide img {
    object-fit: cover;
  }
}

.first-slider .swiper-button-prev::after,
.first-slider .swiper-button-next::after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 25px;
  background: rgba(129, 143, 159, 0.4);
  border-radius: 50%;
  width: 74px;
  height: 74px;
}
@media (max-width: 768px) {
  .first-slider .swiper-button-prev::after,
  .first-slider .swiper-button-next::after {
    display: none;
  }
}

.first-slider .swiper-button-prev::after {
  left: 28px;
}

.first-slider .swiper-button-next::after {
  right: 28px;
}

.filter {
  padding: 120px 0 48px;
}
@media (max-width: 1330px) {
  .filter {
    padding-top: calc(100px + 20 * (100vw - 819px) / 511);
  }
}
@media (max-width: 819px) {
  .filter {
    padding: calc(0px + 40 * (100vw - 400px) / 419) 0 calc(32px + 16 * (100vw - 400px) / 419);
  }
}
.filter__list {
  display: flex;
  margin: 48px 0;
}
.filter__list li {
  margin-right: 32px;
}
.filter__list li:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .filter__list li {
    margin-right: calc(14px + 18 * (100vw - 400px) / 368);
  }
}
@media (max-width: 1330px) {
  .filter__list {
    margin: calc(20px + 28 * (100vw - 320px) / 1010) 0;
  }
}
.filter__link {
  color: #9A9A9A;
  transition: 0.2s;
  cursor: pointer;
}
.filter__link:hover {
  color: #0C085E;
}
@media (max-width: 768px) {
  .filter__link {
    font-size: calc(14px + 6 * (100vw - 400px) / 368);
  }
}
.filter__choice {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .filter__choice {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .filter__choice {
    grid-template-columns: 1fr;
  }
}
.filter__select {
  display: block;
  cursor: pointer;
  font-size: 21px;
  color: #717171;
  padding: 0px 22px;
  height: 56px;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #CED3D6;
  border-radius: 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fbfbfb;
  background-repeat: no-repeat, repeat;
  background-image: url(../img/Vector.png);
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  transition: 0.2s;
}
.filter__select:hover {
  background-color: rgb(196, 195, 195);
}
@media (max-width: 768px) {
  .filter__select {
    width: 100%;
    font-size: 16px;
  }
}

.catalog__btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.catalog__btn button {
  width: 180px;
  height: 56px;
  color: #0C085E;
  background-color: #fff;
  font-size: 20px;
  border-radius: 7px;
  border: 1px solid #0C085E;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(340px, 417px));
  column-gap: 24px;
  row-gap: 32px;
  justify-content: center;
  min-width: 0;
}
@media (max-width: 1120px) {
  .cards {
    grid-template-columns: repeat(2, minmax(300px, 417px));
  }
}
@media (max-width: 1120px) {
  .cards {
    column-gap: calc(10px + 14 * (100vw - 640px) / 480);
  }
}
@media (max-width: 640px) {
  .cards {
    grid-template-columns: repeat(1, minmax(300px, 417px));
  }
}

.card {
  border: 1px solid #DEDEDE;
  border-radius: 15px;
}
.card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}
.card__price {
  font-size: 28px;
  margin: 0 0 20px;
}
@media (max-width: 1330px) {
  .card__price {
    font-size: calc(24px + 4 * (100vw - 768px) / 562);
  }
}
.card__price span:first-child {
  font-weight: 600;
}
.card__price span:last-child {
  font-size: 16px;
}
.card__information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 15px;
  font-size: 16px;
}
@media (max-width: 1330px) {
  .card__information {
    font-size: calc(13px + 3 * (100vw - 768px) / 562);
    padding: calc(16px + 8 * (100vw - 768px) / 562) calc(12px + 3 * (100vw - 768px) / 562);
  }
}
.card__bold-text {
  font-weight: 600;
}
.card__buttons {
  display: flex;
  justify-content: space-between;
}
.card__buttons button {
  width: 49%;
  height: 48px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.2s;
}
@media (max-width: 1330px) {
  .card__buttons button {
    height: calc(39px + 9 * (100vw - 768px) / 562);
  }
}
.card__buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49%;
  height: 48px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.2s;
}
@media (max-width: 1330px) {
  .card__buttons a {
    height: calc(39px + 9 * (100vw - 768px) / 562);
  }
}
.card__name {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
}
@media (max-width: 1330px) {
  .card__name {
    font-size: calc(24px + 4 * (100vw - 768px) / 562);
  }
}
.card__new {
  text-transform: uppercase;
  color: #BE1000;
}
.card__first-button {
  color: white;
  background-color: #0C085E;
}
.card__first-button:hover {
  background-color: #0a074b;
}
.card__second-button {
  color: #0C085E;
  background-color: white;
  border: 1px solid #0C085E;
}
.card__second-button:hover {
  background-color: rgb(240, 239, 239);
}
.card .big-name {
  font-size: 26px;
}
@media (max-width: 1330px) {
  .card .big-name {
    font-size: calc(20px + 6 * (100vw - 768px) / 562);
  }
}

.second-slider .swiper-pagination {
  bottom: 20px;
}

.second-slider .swiper-pagination-bullet {
  background-color: #fff;
}

@media (max-width: 400px) {
  .hits {
    display: none;
  }
}
.hits__title {
  margin: 120px 0 48px;
}

@media (max-width: 1120px) {
  .card-none {
    display: none;
  }
}

.form {
  padding: 120px 0 150px;
}
@media (max-width: 1330px) {
  .form {
    padding: calc(70px + 50 * (100vw - 400px) / 930) 0 calc(70px + 80 * (100vw - 400px) / 930);
  }
}
.form__inner {
  border: 1px solid #CED3D6;
  border-radius: 15px;
  padding: 24px 32px;
  max-width: 912px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.form__sub-title {
  margin: 32px 0 24px;
}

.accardeon {
  padding-bottom: 150px;
}
@media (max-width: 1300px) {
  .accardeon {
    padding-bottom: calc(100px + 50 * (100vw - 400px) / 900);
  }
}
.accardeon__title {
  font-weight: 700;
  font-size: 56px;
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .accardeon__title {
    font-size: calc(36px + 20 * (100vw - 400px) / 900);
  }
}
.accardeon__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 24px;
  padding: 0 0 24px;
}
@media (max-width: 1300px) {
  .accardeon__btn {
    font-size: calc(18px + 6 * (100vw - 400px) / 900);
  }
}
.accardeon__btn img {
  max-width: 12px;
  max-height: 12px;
  margin-left: 10px;
}
.accardeon__btn img.active {
  transform: rotate(180deg);
}
.accardeon__content {
  height: 0px;
  overflow: hidden;
  padding-bottom: 0px;
  font-size: 18px;
  line-height: 156%;
  color: #70777A;
  margin-bottom: 20px;
  border-bottom: 1px solid #E6EDF0;
}
@media (max-width: 1300px) {
  .accardeon__content {
    font-size: calc(14px + 4 * (100vw - 400px) / 900);
  }
}
.accardeon__content span {
  display: inline-block;
  max-width: 1150px;
}

.accardeon__content.active {
  height: auto;
  overflow: visible;
  padding-bottom: 20px;
}

.footer {
  background-color: #070531;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.footer__inner span {
  display: block;
  color: white;
}
.footer__inner span a {
  display: block;
  margin: 20px 0;
  font-size: 20px;
  color: white;
}
@media (max-width: 400px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__logo {
  max-width: 117px;
  align-self: start;
}
.footer__logo img {
  width: 100%;
}
.footer__messanger {
  display: flex;
}
.footer__messanger li {
  margin-right: 15px;
}
.footer__messanger li:last-child {
  margin-right: 0;
}
.footer__messanger img {
  max-width: 35px;
}
.footer__contacts {
  display: none;
  color: white;
}
@media (max-width: 500px) {
  .footer__contacts {
    display: block;
    font-size: 18px;
    margin: 15px 0;
  }
}

.catalog-pages {
  position: relative;
  overflow: hidden;
  margin-bottom: 160px;
  padding-bottom: 50px;
}
@media (max-width: 1330px) {
  .catalog-pages {
    margin-bottom: calc(120px + 40 * (100vw - 768px) / 562);
  }
}
@media (max-width: 400px) {
  .catalog-pages {
    margin-bottom: 0;
  }
}

.catalog-title {
  margin-top: 70px;
}

.swiper-pagination-catalog {
  text-align: center;
}
.swiper-pagination-catalog .swiper-pagination-bullet {
  background-color: transparent;
}

.catalog-pages .swiper-pagination-bullet {
  font-size: 20px;
}

.catalog-filter {
  margin-top: 30px;
}

.catalog-pages .swiper-button-prev::after,
.catalog-pages .swiper-button-next::after {
  color: #171717;
  font-size: 12px;
  font-weight: 900;
}

.catalog-pages .swiper-button-prev,
.catalog-pages .swiper-button-next {
  height: 20px;
  top: 25px;
}

.catalog-pages .swiper-button-prev {
  left: 40vw;
}

.catalog-pages .swiper-button-next {
  right: 40vw;
}

.container-button {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 0;
  height: 30px;
}
@media (max-width: 400px) {
  .container-button {
    display: none;
  }
}

.catalog-form {
  display: none;
}
@media (max-width: 400px) {
  .catalog-form {
    display: block;
  }
}

.catalog-pages .swiper-pagination-bullet-active {
  display: inline-block;
  height: 30px;
  width: 30px;
  padding-top: 4px;
  margin: 0 10px;
  border: 1px solid #000;
}

.more h3 {
  font-weight: 600;
  font-size: 36px;
}
@media (max-width: 1330px) {
  .more h3 {
    font-size: calc(20px + 16 * (100vw - 400px) / 930);
  }
}
.more__title {
  padding: 100px 0 50px;
}
@media (max-width: 400px) {
  .more__title {
    padding: 100px 0 25px;
  }
}

.car-info__title {
  margin-bottom: 24px;
}
.car-info__image {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.car-info__slide-image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.swiper-button-next-car,
.swiper-button-prev-car {
  position: absolute;
  z-index: 10;
  top: 49%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(129, 143, 159, 0.5019607843);
  cursor: pointer;
}
@media (max-width: 400px) {
  .swiper-button-next-car,
  .swiper-button-prev-car {
    display: none;
  }
}

.swiper-button-next-car {
  right: 24px;
}

.swiper-button-prev-car {
  left: 24px;
}

.swiper-pagination-more {
  position: absolute;
  z-index: 10;
  text-align: center;
  bottom: 24px;
}

.car-info__image .swiper-pagination-bullet {
  background-color: white;
  width: 10px;
  height: 10px;
}

.car-info__card {
  display: block;
  justify-content: center;
  gap: 25px;
}

@media (max-width: 768px) {
  .grid {
    display: none;
  }
}

.car-info__image {
  grid-area: a;
}

.car-info__img img {
  width: 100%;
}

.price {
  margin-top: 60px;
  grid-area: i;
}
.price__title {
  margin: 20px 0 40px;
}
@media (max-width: 400px) {
  .price__title {
    margin: 0 0 24px;
  }
}
.price__body {
  display: grid;
  gap: 1px;
  background: #0C085E;
  grid-template-areas: "a c d e f g" "b h i j k l";
}
@media (max-width: 400px) {
  .price__body {
    border: 1px solid #0C085E;
  }
}
@media (max-width: 400px) {
  .price__body {
    grid-template-areas: "a b" "c h" "d i" "e j" "f k" "g l";
  }
}
.price__body span {
  padding: 20px 32px;
  background-color: #fff;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1330px) {
  .price__body span {
    font-size: calc(13px + 11 * (100vw - 768px) / 562);
    padding: calc(11px + 9 * (100vw - 768px) / 562) calc(25px + 7 * (100vw - 768px) / 562);
  }
}
@media (max-width: 400px) {
  .price__body span {
    text-align: center;
    font-size: 16px;
    padding: 15px 0;
  }
}
.price__period {
  grid-area: a;
  color: #171717;
}
.price__prc {
  grid-area: b;
  color: #171717;
}
.price__day {
  color: #717171;
}
.price__day1 {
  grid-area: c;
}
.price__day2 {
  grid-area: d;
}
.price__day3 {
  grid-area: e;
}
.price__day4 {
  grid-area: f;
}
.price__day5 {
  grid-area: g;
}
.price__summ {
  text-align: center;
  color: #0C085E;
}
.price__summ1 {
  grid-area: h;
}
.price__summ2 {
  grid-area: i;
}
.price__summ3 {
  grid-area: j;
}
.price__summ4 {
  grid-area: k;
}
.price__summ5 {
  grid-area: l;
}

.page-contacts {
  padding: 148px 0 120px;
}
.page-contacts h3 {
  margin-top: 48px;
  font-size: 20px;
  font-weight: 600;
}
.page-contacts span {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.page-about {
  padding: 148px 0 120px;
}
.page-about h2 {
  margin-bottom: 48px;
}
.page-about p {
  margin-top: 25px;
  line-height: 155%;
}
.page-about p:last-child {
  max-width: 715px;
}
.page-about span {
  display: block;
  line-height: 155%;
}

