@charset "UTF-8";
/*Обнуление*/

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

*, *:before, *:after {
  -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%;
}
main{
  background: rgb(89, 225, 255);
  background: radial-gradient(circle, rgba(101, 227, 255, 0.409) 0%, rgba(0,212,255,0.1516981792717087) 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;
}

/*--------------------*/
:root {
  --index: calc(1vw + 1vh);
}

html,
body {
  height: 100%;
}

body {
  line-height: 121.428571%; /* 17/14 */
  font-family: Montserrat;
  color: rgb(25, 25, 25);
}
.header__logo{
  font-size: 26px;
  font-weight: 700;
}
.wrapper {
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1199.98px) {
  [class*=__container] {
    max-width: 970px;
  }
}
@media (max-width: 991.98px) {
  [class*=__container] {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  [class*=__container] {
    max-width: none;
    padding: 0 15px;
  }
}
.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 15px;
  border-radius: 60px;
  background: rgba(35, 118, 243, 0.555);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px 5px 5px;
}
.button__icon {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button__text {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
}
@media (any-hover: hover) {
  .button:hover .button__icon {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

.title {
  font-size: 50px;
  font-weight: 800;
  line-height: 122%; /* 61/50 */
  font-size: 50px;
}
@media (max-width: 1230px) {
  .title {
    font-size: calc(30px + 20 * (100vw - 320px) / 910);
  }
}

.title-white {
  color: rgb(255, 255, 255);
}

.title-black {
  color: rgb(25, 25, 25);
}

.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category:not(:last-child) {
  margin-bottom: 30px;
}
.category__circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  position: relative;
}
.category__circle::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 50%;
  left: 50%;
  background: rgb(255, 255, 255);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}
.category__title {
  border-radius: 60px;
  text-transform: uppercase;
  padding: 16px 20px;
}
.category-white .category__title {
  border: 1px solid rgb(255, 255, 255);
}
.category-white .category__circle {
  border: 1px solid rgb(255, 255, 255);
}
.category-white::after {
  content: "";
  background: rgb(255, 255, 255);
}
.category-black .category__title {
  border: 1px solid rgb(25, 25, 25);
}
.category-black .category__circle {
  border: 1px solid rgb(25, 25, 25);
}
.category-black .category__circle::after {
  background: rgba(35, 118, 243, 0.555);
}

.header {
  padding: 30px 0 40px;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .menu-header {
    width: 100%;
  }
}
.menu-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-header__link {
  font-size: 14px;
  color: rgb(25, 25, 25);
}
@media (any-hover: hover) {
  .menu-header__link:hover {
    text-decoration: underline;
  }
}

.offer-section {
  padding: 60px 0 80px;

  background-size: cover;
  background-position: center;
}
.offer-section__container {
  text-align: center;
}
.offer-section__logo {
  display: inline-block;
  border-radius: 20px;
  background: rgba(35, 118, 243, 0.555);
  font-size: 130px;
  font-weight: 800;
  line-height: 121.538462%; /* 158/130 */
  color: #fff;
  padding: 0 20px;
}
@media (max-width: 1230px) {
  .offer-section__logo {
    font-size: calc(60px + 70 * (100vw - 320px) / 910);
  }
}
.offer-section__logo:not(:last-child) {
  margin-bottom: 30px;
}
.offer-section__title {
  max-width: 600px;
  margin: 0 auto;
}
.offer-section__title:not(:last-child) {
  margin-bottom: 30px;
}
.offer-section__button:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 1230px) {
  .offer-section__button:not(:last-child) {
    margin-bottom: calc(30px + 20 * (100vw - 320px) / 910);
  }
}

.offer-section-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 20px;
}
.offer-section-bottom__value {
  font-size: 22px;
  font-weight: 800;
  line-height: 122.727273%; /* 27/22 */
}
.offer-section-bottom__text {
  font-size: 16px;
  line-height: 125%; /* 20/16 */
}

.info {
  margin-bottom: 60px;
}
@media (max-width: 1230px) {
  .info {
    margin-bottom: calc(50px + 10 * (100vw - 320px) / 910);
  }
}
.info__wrapper {
  border-radius: 40px;
  background: rgba(0, 50, 216, 0.555);
  color: rgb(255, 255, 255);
  padding: 60px;
}
@media (max-width: 1230px) {
  .info__wrapper {
    padding: calc(20px + 40 * (100vw - 320px) / 910);
  }
}
.info__text {
  font-size: 15px;
}

.proposal {
  padding-top: 76px;
  padding-bottom: 140px;

  background-size: cover;
  background-position: center;
}
@media (max-width: 1230px) {
  .proposal {
    padding-top: calc(40px + 36 * (100vw - 320px) / 910);
  }
}
@media (max-width: 1230px) {
  .proposal {
    padding-bottom: calc(80px + 60 * (100vw - 320px) / 910);
  }
}
.proposal__top-title {
  margin-bottom: 30px;
}
.proposal__columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.proposal__column {
  padding: 20px;
  border-radius: 40px;
  background: rgba(35, 118, 243, 0.555);
  color: rgb(255, 255, 255);
}
.proposal__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 20px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 60px;
  text-transform: uppercase;
}
.proposal__label:not(:last-child) {
  margin-bottom: 20px;
}
.proposal__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 120.833333%; /* 29/24 */
  text-transform: uppercase;
}
.proposal__title:not(:last-child) {
  margin-bottom: 15px;
}
.proposal__text {
  font-size: 15px;
}

.give-contact {

  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 1230px) {
  .give-contact {
    padding-top: calc(30px + 30 * (100vw - 320px) / 910);
  }
}
@media (max-width: 1230px) {
  .give-contact {
    padding-bottom: calc(30px + 30 * (100vw - 320px) / 910);
  }
}
.give-contact__title {
  margin-bottom: 30px;
}
.give-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .give-contact__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.give-contact__input {
  border: 1px solid rgba(25, 25, 25, 0.4);
  border-radius: 60px;
  background: rgb(255, 255, 255);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 16px 20px;
}
.give-contact__area {
  border: 1px solid rgba(25, 25, 25, 0.4);
  border-radius: 30px;
  background: rgb(255, 255, 255);
  height: 140px;
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.footer {
  padding-top: 80px;
  padding-bottom: 30px;
}
@media (max-width: 1230px) {
  .footer {
    padding-top: calc(40px + 40 * (100vw - 320px) / 910);
  }
}
.footer__logo {
  margin-bottom: 20px;
  display: inline-block;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 695px) {
  .footer__bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 695px) {
  .footer-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-menu__link {
  color: rgb(25, 25, 25);
}
@media (any-hover: hover) {
  .footer-menu__link:hover {
    text-decoration: underline;
  }
}
.text-section {
  font-size: 15px;
  line-height: 120%; /* 18/15 */
}
.text-section__title {
  margin-bottom: 15px;
}
.text-section__list {
  margin-bottom: 15px;
}
.text-section__item {
  margin-bottom: 15px;
}
.text-section__paragraph {
  margin-bottom: 15px;
}

.text-section-botom__adress {
  font-style: normal;
  margin-bottom: 15px;
}
.finance__wrapper{
  gap: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.finance__wrapper img{
  width: 100%;
  max-width: 1080px;
  max-height: 493px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.cookie-title {
  font-size: 18px;
  margin: 0 0 10px;
}

.cookie-text {
  font-size: 14px;
  text-align: center;
  margin: 0 0 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-btn.accept {
  background-color: rgba(35, 118, 243, 0.555);
  color: white;
}

.cookie-btn.reject {
  background-color: #222;
  color: white;
}