@import url("https://fonts.googleapis.com/css2?family=Chilanka&display=swap");
:root {
  --vh: 100vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  color: #fff;
  background: #419ae3;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  font-family: "Poppins", sans-serif;
  background: none;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 25px;
}

@media (max-width: 500px) {
  .container {
    padding: 0 15px;
  }
}
.main {
  width: 100%;
  overflow: hidden;
  background: #57a6e6;
}

.burger {
  display: none;
}

@media (max-width: 880px) {
  .burger {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 24px;
    height: 24px;
    z-index: 10000;
    transition-delay: 0.5s;
  }
}
.burger:before, .burger::after, .burger span {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  border-radius: 10px;
  height: 2px;
  transition: 0.3s;
  transition-delay: 0.5s;
}

.burger::before {
  width: 16px;
  transform: translateY(-6px);
}

.burger::after {
  width: 24px;
  transform: translateY(6px);
}

.burger span {
  width: 20px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #419ae3;
}

@media (max-width: 880px) {
  .header {
    position: fixed;
    z-index: 100;
  }
}
.header__wrap {
  width: 100%;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

@media (max-width: 1023px) {
  .header__wrap {
    padding: 20px 0;
  }
}
@media (max-width: 880px) {
  .header__wrap {
    padding: 10px 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
.header__logo {
  display: block;
  max-width: 80px;
}

@media (max-width: 880px) {
  .header__logo {
    width: 60px;
  }
}
@media (max-width: 450px) {
  .header__logo {
    width: 40px;
  }
}
.header__logo img {
  width: 100%;
  vertical-align: bottom;
}

.header__list {
  list-style-type: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .header__list {
    font-size: 16px;
    line-height: 100%;
  }
}
@media (max-width: 880px) {
  .header__list {
    display: none;
  }
}
.header__list-item {
  margin: 0 20px;
}

.header__list-link {
  transition: 0.3s;
}

.header__list-link:hover {
  opacity: 0.7;
}

.header__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 880px) {
  .header__social {
    display: none;
  }
}
.header__social-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: -0.25rem 0.125rem 0.75rem #1866a6;
}

@media (max-width: 1100px) {
  .header__social-item {
    width: 40px;
    height: 40px;
    margin-left: 15px;
  }
}
.header__social-item:hover {
  transform: scale(1.1);
}

.header__social-item img {
  width: 100%;
}

.mobile-menu {
  display: none;
}

@media (max-width: 880px) {
  .mobile-menu {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    max-height: calc(var(--vh, 1vh) * 100);
    height: calc(var(--vh, 1vh) * 100);
    transition-delay: 4s;
    transition: 3s;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
  }
}
.mobile-menu__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mobile-menu__bg::before {
  content: "";
  display: block;
  width: 400vh;
  height: 400vh;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 35px;
  right: 35px;
  transition: 0.5s;
  transform-origin: center;
  transform: translate(50%, -50%) scale(0);
}

.mobile-menu__wrap {
  width: calc(100% + 50px);
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 70px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
  transition-delay: 0s;
  opacity: 0;
  z-index: 3;
  position: relative;
  left: -25px;
}

@media (max-width: 500px) {
  .mobile-menu__wrap {
    width: calc(100% + 30px);
    left: -15px;
  }
}
.mobile-menu__wrap .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #c6e1f7;
  margin-bottom: 7px;
  text-align: center;
}

.mobile-menu__list {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #419ae3;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.mobile-menu__item {
  display: block;
  margin-bottom: 13px;
}

.mobile-menu__contact {
  margin-bottom: 40px;
}

.mobile-menu__contact a {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #419ae3;
  text-align: center;
}

.mobile-menu__social {
  width: 100%;
}

.mobile-menu__social .label {
  margin-bottom: 22px;
}

.mobile-menu__social-list {
  width: 100%;
  max-width: 190px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 auto 50px;
}

.mobile-menu__social-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu__social-item img {
  width: 100%;
  vertical-align: bottom;
}

.mobile-menu__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #c6e1f7;
}

@media (max-width: 880px) {
  .mobile-menu-open {
    overflow: hidden;
  }
}
@media (max-width: 880px) {
  .mobile-menu-open .mobile-menu {
    transition-delay: 0s;
    transition: 0.5s;
    visibility: visible;
    opacity: 1;
  }
}
.mobile-menu-open .mobile-menu__wrap {
  opacity: 1;
  transition-delay: 0.4s;
  background-color: #fff;
}

.mobile-menu-open .mobile-menu__bg::before {
  transition: 1s;
  transform: translate(50%, -50%) scale(1);
}

.mobile-menu-open .burger {
  align-items: center;
  justify-content: center;
  transition-delay: 0s;
}

.mobile-menu-open .burger:before, .mobile-menu-open .burger::after, .mobile-menu-open .burger span {
  background: #419ae3;
  transition-delay: 0s;
}

.mobile-menu-open .burger span {
  opacity: 0;
}

.mobile-menu-open .burger::before {
  transform: rotate(45deg);
  width: 100%;
}

.mobile-menu-open .burger::after {
  width: 100%;
  transform: rotate(-45deg);
}

.hero {
  width: 100%;
  position: relative;
}

@media (max-width: 800px) {
  .hero {
    overflow: visible;
  }
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 3481px;
  height: 776px;
  background: url(../img/bg-header-new.svg) no-repeat bottom center/contain;
  transform: translateX(-50%);
}

@media (max-width: 1200px) {
  .hero::before {
    top: -20%;
  }
}
@media (max-width: 880px) {
  .hero::before {
    top: -60%;
  }
}
@media (max-width: 800px) {
  .hero::before {
    background: url(../img/bg-header-mob.svg) no-repeat bottom center/cover;
    top: -20%;
    height: 122%;
  }
}
.hero__wrap {
  width: 100%;
  padding: 176px 0 75px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

@media (min-width: 1800px) {
  .hero__wrap {
    padding-bottom: 110px;
  }
}
@media (max-width: 960px) {
  .hero__wrap {
    align-items: flex-start;
  }
}
@media (max-width: 880px) {
  .hero__wrap {
    padding: 130px 0 70px;
  }
}
@media (max-width: 500px) {
  .hero__wrap {
    padding: 100px 0 70px;
  }
}
@media (max-width: 800px) {
  .hero__wrap {
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
  }
}
.hero__text {
  width: 512px;
  min-width: 512px;
  position: relative;
  z-index: 2;
  margin-top: -90px;
}

@media (max-width: 1100px) {
  .hero__text {
    width: 400px;
    min-width: 400px;
  }
}
@media (max-width: 960px) {
  .hero__text {
    padding-top: 40px;
    margin-top: 0;
  }
}
@media (max-width: 880px) {
  .hero__text {
    padding-top: 0;
    width: 380px;
    min-width: 380px;
  }
}
@media (max-width: 500px) {
  .hero__text {
    min-width: 100%;
    width: 100%;
  }
}
.hero__text h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  font-family: "Chilanka", chalkboard, fantasy;
}

@media (max-width: 1100px) {
  .hero__text h1 {
    font-size: 40px;
    line-height: 120%;
  }
}
@media (max-width: 880px) {
  .hero__text h1 {
    font-size: 35px;
  }
}
@media (max-width: 800px) {
  .hero__text h1 {
    text-align: center;
    margin-bottom: 24px;
  }
}
@media (max-width: 500px) {
  .hero__text h1 {
    font-size: 32px;
  }
}
@media (max-width: 360px) {
  .hero__text h1 {
    font-size: 30px;
  }
}
.hero__text h1 span {
  color: #d9eb2d;
}

.hero__label {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

@media (max-width: 880px) {
  .hero__label {
    font-size: 16px;
    display: none;
  }
}
.hero__label img {
  margin-right: 12px;
}

@media (max-width: 500px) {
  .hero__bg {
    width: 100%;
  }
}
.hero__bg::before {
  content: "";
  display: block;
  width: 817px;
  height: 540px;
  background: url(../img/home-image.png) no-repeat center/contain;
  transform: translateX(-60px);
}

@media (max-width: 1200px) {
  .hero__bg::before {
    width: 600px;
    height: 400px;
    transform: translateX(0);
  }
}
@media (max-width: 1023px) {
  .hero__bg::before {
    width: 550px;
    height: 350px;
  }
}
@media (max-width: 930px) {
  .hero__bg::before {
    transform: translateX(-50px);
  }
}
@media (max-width: 880px) {
  .hero__bg::before {
    width: 450px;
    height: 300px;
    transform: translateX(-30px);
  }
}
@media (max-width: 800px) {
  .hero__bg::before {
    transform: translateX(0);
    width: 500px;
    height: 350px;
  }
}
@media (max-width: 500px) {
  .hero__bg::before {
    max-width: 110%;
    width: 110%;
    position: relative;
    left: -5%;
  }
}
@media (max-width: 460px) {
  .hero__bg::before {
    height: 280px;
  }
}
@media (max-width: 360px) {
  .hero__bg::before {
    height: 240px;
  }
}
h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 66px;
  text-align: center;
  margin-bottom: 66px;
  position: relative;
  z-index: 3;
}

@media (max-width: 1200px) {
  h2 {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 120%;
  }
}
@media (max-width: 800px) {
  h2 {
    text-align: left;
    font-size: 35px;
  }
}
@media (max-width: 400px) {
  h2 {
    font-size: 28px;
  }
}
.our-apps {
  width: 100%;
  position: relative;
}

.our-apps__wrap {
  width: 100%;
  padding: 75px 0 0;
}

.our-apps__block {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 200px;
}

@media (min-width: 1800px) {
  .our-apps__block {
    margin-bottom: 140px;
  }
}
@media (min-width: 2100px) {
  .our-apps__block {
    margin-bottom: 200px;
  }
}
@media (max-width: 1100px) {
  .our-apps__block {
    margin-bottom: 100px;
  }
}
@media (max-width: 800px) {
  .our-apps__block {
    display: block;
  }
}
.our-apps__block:nth-child(2) {
  position: relative;
}

.our-apps__block:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 2445px;
  height: 715px;
  left: 50%;
  transform: translateX(-50%) translateY(-55%);
  background: url(../img/bg-app-1-new.svg) no-repeat bottom center/contain;
}

@media (max-width: 800px) {
  .our-apps__block:nth-child(2)::before {
    background: url(../img/bg-app-11-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    left: -10%;
    transform: none;
    width: 120vw;
    height: 120%;
    top: -15%;
  }
}
@media (max-width: 400px) {
  .our-apps__block:nth-child(2)::before {
    background: url(../img/bg-app-1-mob-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    left: -10%;
    transform: none;
    width: 120vw;
    height: 120%;
    top: -15%;
  }
}
.our-apps__block:last-child {
  margin-bottom: 150px;
  position: relative;
}

@media (min-width: 1800px) {
  .our-apps__block:last-child {
    margin-bottom: 170px;
  }
}
@media (min-width: 2100px) {
  .our-apps__block:last-child {
    margin-bottom: 150px;
  }
}
@media (max-width: 800px) {
  .our-apps__block:last-child {
    margin-bottom: 100px;
  }
}
.our-apps__block:last-child::before {
  content: "";
  display: block;
  position: absolute;
  left: 10%;
  top: 50%;
  width: 2211px;
  transform: translateX(0) translateY(-40%);
  height: 655px;
  background: url(../img/bg-app-2-new.svg) no-repeat bottom center/contain;
}

@media (max-width: 800px) {
  .our-apps__block:last-child::before {
    background: url(../img/bg-app-22-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    left: -10%;
    transform: none;
    width: 120vw;
    height: 115%;
    top: -12%;
  }
}
@media (max-width: 400px) {
  .our-apps__block:last-child::before {
    background: url(../img/bg-app-2-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    height: 120%;
    top: -6%;
  }
}
.our-apps__info {
  max-width: 460px;
  position: relative;
  z-index: 2;
}

@media (max-width: 800px) {
  .our-apps__info {
    max-width: 100%;
  }
}
.our-apps__info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 56px;
}

@media (max-width: 1100px) {
  .our-apps__info p {
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 30px;
  }
}
.our-apps__info-app {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .our-apps__info-app {
    margin-bottom: 32px;
  }
}
.our-apps__info-app > img {
  border: 2.5px solid #fff;
  width: 72px;
  height: 72px;
  box-shadow: -4px 2px 12px #3a4bb8;
  border-radius: 20px;
  margin-right: 28px;
  vertical-align: bottom;
}

@media (max-width: 800px) {
  .our-apps__info-app > img {
    margin-right: 20px;
  }
}
@media (max-width: 550px) {
  .our-apps__info-app > img {
    margin-right: 16px;
  }
}
.our-apps__info-app .stars {
  margin-bottom: 4px;
}

.our-apps__info-app h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
}

@media (max-width: 550px) {
  .our-apps__info-app h3 {
    font-size: 18px;
    line-height: 100%;
  }
}
.our-apps__info-download {
  max-width: 380px;
  min-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 27px;
  align-items: center;
}

@media (max-width: 500px) {
  .our-apps__info-download {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .our-apps__info-download {
    gap: 20px;
  }
}
.our-apps__info-download a {
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.our-apps__info-download a:hover {
  transform: scale(1.1);
}

.our-apps__info-download img {
  width: 100%;
}

@media (max-width: 800px) {
  .our-apps__bg {
    display: none;
  }
}
.our-apps__bg-mob {
  display: none;
}

@media (max-width: 800px) {
  .our-apps__bg-mob {
    display: block;
    margin-bottom: 25px;
  }
}
@media (max-width: 800px) {
  .our-apps__bg-lt {
    width: 100%;
  }
}
.our-apps__bg-lt::before {
  content: "";
  display: block;
  width: 618px;
  height: 418px;
  background: url(../img/read-stories.png) no-repeat center/contain;
  transform: translateX(90px) translateY(60px);
}

@media (max-width: 1100px) {
  .our-apps__bg-lt::before {
    width: 500px;
  }
}
@media (max-width: 1023px) {
  .our-apps__bg-lt::before {
    width: 450px;
    transform: translateX(20px) translateY(60px);
  }
}
@media (max-width: 800px) {
  .our-apps__bg-lt::before {
    width: 100%;
    transform: none;
  }
}
@media (max-width: 550px) {
  .our-apps__bg-lt::before {
    height: 300px;
  }
}
@media (max-width: 400px) {
  .our-apps__bg-lt::before {
    height: 340px;
  }
}
@media (max-width: 360px) {
  .our-apps__bg-lt::before {
    height: 200px;
  }
}
.our-apps__bg-why-storytime::before {
  content: "";
  display: block;
  width: 695px;
  height: 418px;
  background: url(../img/why.png) no-repeat center/contain;
  transform: translateX(20px) translateY(90px);
}

@media (max-width: 1100px) {
  .our-apps__bg-why-storytime::before {
    width: 600px;
  }
}
@media (max-width: 1023px) {
  .our-apps__bg-why-storytime::before {
    width: 480px;
  }
}
@media (max-width: 800px) {
  .our-apps__bg-why-storytime::before {
    width: 100%;
    transform: none;
  }
}
@media (max-width: 550px) {
  .our-apps__bg-why-storytime::before {
    height: 300px;
  }
}
@media (max-width: 400px) {
  .our-apps__bg-why-storytime::before {
    height: 240px;
  }
}
@media (max-width: 360px) {
  .our-apps__bg-why-storytime::before {
    height: 200px;
  }
}
.story-in-minutes {
  width: 100%;
  position: relative;
}

.story-in-minutes::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 27%;
  width: 2783px;
  transform: translateX(-65%) translateY(-40%);
  height: 993px;
  background: url(../img/bg-music-new.svg) no-repeat bottom center/contain;
}

@media (max-width: 800px) {
  .story-in-minutes::before {
    background: url(../img/bg-music2-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    left: -10%;
    transform: none;
    width: 120vw;
    height: 90%;
    top: 0;
  }
}
@media (max-width: 570px) {
  .story-in-minutes::before {
    height: 104%;
  }
}
@media (max-width: 400px) {
  .story-in-minutes::before {
    background: url(../img/bg-music-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    height: 80%;
    top: 20%;
  }
}
.story-in-minutes__wrap {
  width: 100%;
  padding: 200px 0 130px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1800px) {
  .story-in-minutes__wrap {
    padding-bottom: 150px;
  }
}
@media (max-width: 1023px) {
  .story-in-minutes__wrap {
    padding-top: 130px;
  }
}
@media (max-width: 920px) {
  .story-in-minutes__wrap {
    padding-top: 150px;
  }
}
@media (max-width: 670px) {
  .story-in-minutes__wrap {
    padding-top: 120px;
  }
}
@media (max-width: 570px) {
  .story-in-minutes__wrap {
    padding-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .story-in-minutes__wrap::before {
    width: 200px;
    height: 280px;
  }
}
@media (max-width: 920px) {
  .story-in-minutes__wrap::before {
    top: 30px;
  }
}
@media (max-width: 670px) {
  .story-in-minutes__wrap::before {
    width: 130px;
    height: 200px;
    top: 30px;
    right: auto;
    left: 40%;
  }
}
@media (max-width: 570px) {
  .story-in-minutes__wrap::before {
    left: 50%;
  }
}
@media (max-width: 440px) {
  .story-in-minutes__wrap::before {
    left: 65%;
  }
}
.story-in-minutes__wrap .subtitle {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  max-width: 496px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 3;
}

@media (max-width: 1023px) {
  .story-in-minutes__wrap .subtitle {
    font-size: 18px;
    line-height: 160%;
  }
}
@media (max-width: 800px) {
  .story-in-minutes__wrap .subtitle {
    text-align: left;
    margin: 0 0 45px;
  }
}
.story-in-minutes__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .story-in-minutes__list {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-around;
    gap: 60px;
  }
}
@media (max-width: 500px) {
  .story-in-minutes__list {
    gap: 60px 20px;
  }
}
@media (max-width: 400px) {
  .story-in-minutes__list {
    gap: 34px 20px;
  }
}
.story-in-minutes__list-item {
  max-width: 100px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

@media (max-width: 1023px) {
  .story-in-minutes__list-item {
    max-width: 80px;
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 800px) {
  .story-in-minutes__list-item {
    max-width: 100px;
  }
}
@media (max-width: 400px) {
  .story-in-minutes__list-item {
    max-width: 60px;
    font-size: 14px;
  }
}
.story-in-minutes__list-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: -4px 2px 20px #3a4bb8;
  margin-bottom: 20px;
  transition: 0.3s;
  display: block;
}

@media (max-width: 1023px) {
  .story-in-minutes__list-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
}
@media (max-width: 800px) {
  .story-in-minutes__list-item img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 500px) {
  .story-in-minutes__list-item img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 400px) {
  .story-in-minutes__list-item img {
    width: 60px;
    height: 60px;
  }
}
.story-in-minutes__list-item:hover img {
  transform: scale(1.1);
}

.about-us {
  width: 100%;
  position: relative;
}

.about-us::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 2660px;
  transform: translateX(-30%) translateY(0%);
  height: 932px;
  background: url(../img/bg-about-new.svg) no-repeat bottom center/contain;
}

@media (max-width: 500px) {
  .about-us::before {
    display: block;
    background: url(../img/bg-about2-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    left: -10%;
    transform: none;
    width: 120vw;
    height: 70%;
    top: 20%;
  }
}
@media (max-width: 400px) {
  .about-us::before {
    background: url(../img/bg-about-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    height: 90%;
    top: 8%;
  }
}
@media (min-width: 2800px) {
  .about-us::before {
    top: -12%;
  }
}
.about-us__wrap {
  width: 100%;
  padding: 130px 0 240px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .about-us__wrap {
    padding-bottom: 150px;
  }
}
@media (max-width: 550px) {
  .about-us__wrap {
    padding-top: 80px;
  }
}
@media (max-width: 400px) {
  .about-us__wrap {
    padding-bottom: 80px;
  }
}
.about-us__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .about-us__block {
    display: block;
  }
}
.about-us__bg::before {
  content: "";
  display: block;
  width: 389px;
  height: 376px;
  background: url(../img/about.png) no-repeat center/contain;
  margin-top: -33px;
  margin-left: -20px;
}

@media (max-width: 1300px) {
  .about-us__bg::before {
    margin-left: 0;
    margin-right: 40px;
  }
}
@media (max-width: 1100px) {
  .about-us__bg::before {
    width: 320px;
    height: 300px;
  }
}
@media (max-width: 800px) {
  .about-us__bg::before {
    width: 220px;
    height: 200px;
  }
}
@media (max-width: 570px) {
  .about-us__bg::before {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 450px) {
  .about-us__bg::before {
    height: 230px;
  }
}
@media (max-width: 800px) {
  .about-us__bg {
    margin-top: -200px;
    margin-left: 300px;
    margin-bottom: 30px;
  }
}
@media (max-width: 570px) {
  .about-us__bg {
    margin: 0;
    margin-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.about-us__text {
  max-width: 660px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

@media (max-width: 1023px) {
  .about-us__text {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 800px) {
  .about-us__text {
    max-width: 100%;
  }
}
.about-us__text p {
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .about-us__text p {
    margin-bottom: 22px;
  }
}
.footer {
  width: 100%;
  position: relative;
  background: #57a6e6;
}

@media (max-width: 400px) {
  .footer {
    margin-top: 80px;
  }
  .footer::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    height: 81px;
    width: 100%;
    background: #57a6e6;
  }
}
.footer::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-footer.svg) no-repeat top center/cover;
}

@media (max-width: 400px) {
  .footer::before {
    background: url(../img/bg-footer-mob.svg) no-repeat bottom center;
    background-size: auto 100%;
    height: 250%;
    top: 0;
  }
}
.footer__wrap {
  width: 100%;
  padding: 164px 0 150px;
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .footer__wrap {
    padding: 40px 0 20px;
  }
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 88px;
}

@media (max-width: 760px) {
  .footer__top {
    display: block;
  }
}
.footer__top .label {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: #c6e1f7;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .footer__top .label {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 760px) {
  .footer__contacts {
    margin-bottom: 70px;
  }
}
.footer__contacts a {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  transition: 0.3s;
}

.footer__contacts a:hover {
  opacity: 0.7;
}

.footer__social-wrap {
  max-width: 660px;
  width: 100%;
}

@media (max-width: 1023px) {
  .footer__social-wrap {
    max-width: none;
    width: auto;
  }
}
.footer__social {
  display: flex;
  align-items: center;
}

@media (max-width: 500px) {
  .footer__social {
    display: grid;
    grid-template-columns: 50px 50px 50px;
    gap: 26px 40px;
    margin-top: 20px;
    align-items: start;
  }
}
.footer__social-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: -0.25rem 0.125rem 0.75rem #1866a6;
}

.footer__social-item:hover {
  transform: scale(1.1);
}

.footer__social-item img {
  width: 100%;
}

.footer__info {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #c6e1f7;
}

@media (max-width: 760px) {
  .footer__info {
    font-size: 16px;
    line-height: 1;
  }
}

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