@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(34, 207, 244);
  background: radial-gradient(circle, rgb(95 34 244 / 41%) 0%, rgb(47 0 255 / 15%) 100%);
}

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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;
  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: 20px;
  background: rgb(112 35 243 / 56%);
  -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: #000;
  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: #000;
}

.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__sub {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  border: 1px solid rgb(255, 255, 255);
  position: relative;
}

.category__sub::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  background: #000;
  -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__sub {
  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__sub {
  border: 1px solid rgb(25, 25, 25);
}

.category-black .category__sub::after {
  background: #000;
}

.header {
  background-color: #000;
  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: #fff;
}

@media (any-hover: hover) {
  .menu-header__link:hover {
    text-decoration: underline;
  }
}

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

  background-size: cover;
  background-position: center;
}

.hero-section__container {
  text-align: center;
}

.hero-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) {
  .hero-section__logo {
    font-size: calc(60px + 70 * (100vw - 320px) / 910);
  }
}

.hero-section__logo:not(:last-child) {
  margin-bottom: 30px;
}

.hero-section__title {
  max-width: 600px;
  margin: 0 auto;
}

.hero-section__title:not(:last-child) {
  margin-bottom: 30px;
}

.hero-section__button:not(:last-child) {
  margin-bottom: 50px;
}

@media (max-width: 1230px) {
  .hero-section__button:not(:last-child) {
    margin-bottom: calc(30px + 20 * (100vw - 320px) / 910);
  }
}

.hero-section-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 20px;
}

.hero-section-bottom__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 122.727273%;
  /* 27/22 */
}

.hero-section-bottom__text {
  font-size: 16px;
  line-height: 125%;
  /* 20/16 */
}

.about {
  margin-bottom: 60px;
}

@media (max-width: 1230px) {
  .about {
    margin-bottom: calc(50px + 10 * (100vw - 320px) / 910);
  }
}

.about__wrapper {
  border-radius: 40px;
  background: rgb(106 49 227 / 56%);
  color: rgb(255, 255, 255);
  padding: 60px;
}

@media (max-width: 1230px) {
  .about__wrapper {
    padding: calc(20px + 40 * (100vw - 320px) / 910);
  }
}

.about__text {
  font-size: 15px;
}

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

  background-size: cover;
  background-position: center;
}

@media (max-width: 1230px) {
  .service {
    padding-top: calc(40px + 36 * (100vw - 320px) / 910);
  }
}

@media (max-width: 1230px) {
  .service {
    padding-bottom: calc(80px + 60 * (100vw - 320px) / 910);
  }
}

.service__top-title {
  margin-bottom: 30px;
}

.service__blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.service__block {
  padding: 20px;
  border-radius: 40px;
  background: rgb(160 35 243 / 56%);
  color: rgb(255, 255, 255);
}

.service__sub {
  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;
}

.service__sub:not(:last-child) {
  margin-bottom: 20px;
}

.service__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 120.833333%;
  /* 29/24 */
  text-transform: uppercase;
}

.service__title:not(:last-child) {
  margin-bottom: 15px;
}

.service__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(245 246 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(245 246 255);
  height: 140px;
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.footer {
  background-color: #000;
  color: #fff;
  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: #fff;
}

@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;
  line-height: normal;
}
.text-section-botom__title,.text-section__paragraph{
  line-height: normal;
}
.text-section__paragraph {
  margin-bottom: 15px;
}

.text-section-botom__adress {
  font-style: normal;
  margin-bottom: 15px;
}

.finances__wrapper {
  gap: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.finances__wrapper img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 300px;
}

@media screen and (min-width: 1024px) {
  .finances__wrapper img {
    height: 500px;
  }
}

.cookie {
  position: fixed;
  width: 100%;
  bottom: 1.4rem;
  left: 1.5rem;
  z-index: 100;
  color: #000;
}

.cookie__wrap {
  width: 90%;
  max-width: 73.4rem;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 0px 30px 0px #fff;
  padding: 2rem;
  border-radius: 2.6rem;
}

.cookie__text {
  margin: 0 0 2rem;
}

.cookie__title {
  text-transform: uppercase;
  font-size: 2.4rem;
  line-height: 2.9rem;
  margin: 0 0 2rem;
}

.cookie__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .cookie__buttons {
    flex-direction: row;
  }
}

.cookie__buttons a,
.cookie__buttons button {
  color: #000;
  border: 1px solid #000;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  width: auto;
  border-radius: 5rem;
  padding: 2rem 6rem;
  font-size: 1.4rem;
  line-height: 1.7rem;
  display: block;
  transition: transform 0.3s;
}

body.pc .cookie__buttons a:focus,
body.pc .cookie__buttons a:hover,
body.mobile .cookie__buttons a:active,
body.pc .cookie__buttons button:focus,
body.pc .cookie__buttons button:hover,
body.mobile .cookie__buttons button:active {
  transform: scale(1.05);
}

.cookie__buttons a.other_back,
.cookie__buttons button.other_back {
  border: none;
  color: #fff;
  background-color: #000;
}