@charset "UTF-8";
/* RESET======================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  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;
  -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;
  background-color: transparent;
}

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

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

a:hover {
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent; /* прибирає синю заливку */
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: #121214;
  color: #fff;
  font-weight: 400;
}

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

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

body._lock {
  overflow: hidden;
}

._hidden {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
}

.header__container {
  display: flex;
  height: 70px;
  gap: 20px;
  align-items: center;
}

.header__right-side {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__btns {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.header__btn {
  color: #a6a8ad;
  font-weight: 400;
  line-height: 1.25;
}

.header__btn:hover {
  text-decoration: underline;
}

.header__btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  text-align: center;
  border-radius: 32px;
  background: #fff;
  color: #121214;
  line-height: 1.15;
  padding-inline: 21px;
  transition: all 0.1s linear;
}

.header__btn--white:hover {
  background-color: #9b9da1;
  text-decoration: none;
}

.burger-menu {
  display: none;
}

@media (max-width: 1025px) {
  .header__container {
    height: 60px;
  }
}
@media (max-width: 818px) {
  .header__container {
    justify-content: space-between;
  }
  .burger-menu {
    z-index: 5;
    display: block;
    position: relative;
    width: 50px;
    height: 20px;
    cursor: pointer;
  }
  .burger-menu span, .burger-menu::before, .burger-menu::after {
    position: absolute;
    left: 0;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }
  .burger-menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .burger-menu._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .burger-menu._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .burger-menu._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .burger-menu::before, .burger-menu::after {
    content: "";
  }
  .burger-menu::before {
    top: 0;
  }
  .burger-menu::after {
    bottom: 0;
  }
  .header__right-side {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 15px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1b1b1b;
    padding: 80px 30px 30px 30px;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .header__right-side::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 60px;
    background-color: #121212;
  }
  .header__right-side._active {
    left: 0;
  }
  .nav__list {
    display: flex;
    flex-direction: column;
  }
  .header__btns {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.nav__list {
  display: flex;
  gap: 20px;
}

.nav__link {
  color: #a6a8ad;
}

.nav__link:hover {
  text-decoration: underline;
}

.page {
  flex: 1 1 auto;
}

.banner {
  background-color: #0033ff;
  margin-block-start: 70px;
}

.banner__container {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.banner__text {
  font-size: 16px;
}

.banner__link {
  color: #fff;
}

.banner__link:hover {
  text-decoration: underline;
}

@media (max-width: 1025px) {
  .banner {
    margin-block-start: 60px;
  }
  .banner__container {
    min-height: 36px;
    gap: 30px;
  }
}
@media (max-width: 769px) {
  .banner__text {
    font-size: 14px;
  }
  .banner__link {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .banner__text {
    font-size: 12px;
  }
  .banner__link {
    font-size: 12px;
  }
}
.main-block {
  background: url("../img/main-block/bg.jpg") center/cover no-repeat;
  padding-block: 140px 214px;
}

.main-block__text-block {
  max-width: 420px;
}

.main-block__title {
  font-size: 72px;
  line-height: 1;
  letter-spacing: 1.08px;
  margin-block-end: 26px;
}

.main-block__text {
  font-size: 20px;
  line-height: 1.2; /* 120% */
  margin-block-end: 44px;
}

.main-block__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  min-height: 52px;
  padding-inline: 30px;
  border-radius: 8px;
  background: #03f;
  color: inherit;
  transition: all 0.1s linear;
}

.main-block__link:hover {
  background: #0028ca;
  color: #d8d8d8;
}

@media (max-width: 1025px) {
  .main-block {
    padding-block: 100px 150px;
  }
  .main-block__title {
    font-size: 60px;
    margin-block-end: 22px;
  }
  .main-block__text {
    font-size: 18px;
    margin-block-end: 38px;
  }
  .main-block__link {
    min-height: 48px;
    padding-inline: 28px;
  }
}
@media (max-width: 768px) {
  .main-block {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/main-block/bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 426px) {
  .main-block {
    padding-block: 70px 90px;
  }
  .main-block__title {
    font-size: 40px;
  }
  .main-block__text {
    font-size: 14px;
  }
  .main-block__text-block {
    max-width: 300px;
  }
  .main-block__link {
    min-height: 40px;
    padding-inline: 24px;
    font-size: 12px;
  }
}
.advantages__row {
  padding-block-start: 60px;
}

.row-advantages {
  display: flex;
  align-items: center;
  gap: 80px;
}

.row-advantages--reverse {
  flex-direction: row-reverse;
}

.row-advantages__text-block {
  flex: 1 1 auto;
}

.row-advantages--reverse .row-advantages__text-block {
  text-align: right;
  padding-block-start: 0;
}

.row-advantages__label {
  color: #a6a8ad;
  font-size: 12px;
  line-height: 1.16667;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  margin-block-end: 5px;
}

.row-advantages__title {
  color: #fff;
  font-size: 28px;
  line-height: 128.571%;
  margin-block-end: 12px;
}

.row-advantages__text {
  color: #fff;
  line-height: 1.5;
}

.row-advantages__text:not(:last-child) {
  margin-block-end: 18px;
}

.row-advantages__btn {
  display: inline-flex;
  font-size: 16px;
  min-height: 36px;
  padding-inline: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  background: #03f;
  color: #fff;
  line-height: 1.5;
  transition: all 0.1s linear;
}

.row-advantages__btn:hover {
  background: #0028ca;
  color: #d8d8d8;
}

.row-advantages__img {
  flex: 0 0 580px;
}
.row-advantages__img > img {
  width: 100%;
}

@media (max-width: 1025px) {
  .row-advantages__text-block {
    flex: 1 1 50%;
  }
  .row-advantages__img {
    flex: 1 1 50%;
  }
}
@media (max-width: 813px) {
  .row-advantages {
    gap: 25px;
    flex-direction: column;
  }
}
@media (max-width: 426px) {
  .row-advantages__btn {
    font-size: 12px;
  }
}
.creators {
  padding-block: 75px;
}

.creators__title {
  font-size: 28px;
  line-height: 1.28571;
  margin-block-end: 24px;
}

.creators__body {
  display: flex;
  row-gap: 10px;
  margin-inline: -5px;
}

.creators__column {
  flex: 0 1 31.333%;
  margin-inline: 5px;
}

.item-creators {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 32px;
  border-radius: 8px;
  background-color: #f8f8f8;
}

.item-creators__img {
  width: 223px;
  height: 233px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.item-creators__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-creators__text {
  flex: 1 1 auto;
  color: #000;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.item-creators__author {
  color: #767676;
  font-size: 14px;
  line-height: 1.42857;
}

@media (max-width: 1025px) {
  .creators {
    padding-block: 35px;
  }
  .creators__body {
    flex-wrap: wrap;
  }
  .creators__column {
    flex: 1 1 calc(50% - 10px);
  }
}
.try {
  background: url("../img/try/bg.jpg") center/cover no-repeat;
  padding-block: 288px;
}

.try__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 57px;
  justify-content: center;
}

.try__title {
  font-size: 54px;
  line-height: 1.111;
  max-width: 700px;
}

.try__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 40px;
  padding-inline: 20px;
  border-radius: 8px;
  background-color: #0033ff;
  color: inherit;
  transition: all 0.1s linear;
}

.try__btn:hover {
  background: #0028ca;
  color: #d8d8d8;
}

@media (max-width: 1025px) {
  .try {
    padding-block: 200px;
  }
  .try__container {
    gap: 35px;
  }
  .try__title {
    font-size: 45px;
  }
}
.footer {
  padding-block: 48px 60px;
}

.footer__top {
  margin-block-end: 83px;
}

.top-footer {
  display: flex;
}

.top-footer__column {
  flex: 0 1 16.66667%;
}

.top-footer__label {
  font-size: 20px;
  line-height: 1.2;
  margin-block-end: 12px;
}

.top-footer__list > *:not(:last-child) {
  margin-block-end: 11px;
}

.top-footer__list:not(:last-child) {
  margin-block-end: 24px;
}

.top-footer__link {
  color: #a6a8ad;
  font-size: 12px;
  line-height: 1.5;
}

.top-footer__link:hover {
  text-decoration: underline;
}

.copy-footer {
  display: flex;
  align-items: center;
  color: #a6a8ad;
  font-size: 12px;
  line-height: 1.5;
  gap: 40px;
}

.copy-footer__rights a {
  color: inherit;
}

.copy-footer__rights a:hover {
  text-decoration: underline;
}

.copy-footer__list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.copy-footer__item:last-child {
  padding-inline-start: 5px;
}

.copy-footer__link {
  color: inherit;
}

.copy-footer__link:hover {
  text-decoration: underline;
}

.copy-footer__link--fb {
  fill: #fff;
  transition: all 0.2s linear;
}
.copy-footer__link--fb:hover {
  fill: #a6a8ad;
}

@media (max-width: 1025px) {
  .footer {
    padding-block: 30px 40px;
  }
  .footer__top {
    margin-block-end: 50px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-block: 25px 30px;
  }
  .footer__top {
    margin-block-end: 30px;
  }
  .top-footer {
    flex-direction: column;
  }
  .copy-footer {
    flex-direction: column-reverse;
  }
  .copy-footer {
    gap: 20px;
  }
  .top-footer__column {
    flex: 0 1 100%;
  }
  .top-footer__label {
    margin-block-end: 0;
    margin-block-start: 12px;
  }
  .top-footer__list:not(:last-child) {
    margin-block-end: 24px;
  }
  .top-footer__list {
    margin-top: 8px;
  }
}
@media (max-width: 420px) {
  .footer {
    padding-block: 15px 20px;
  }
  .copy-footer__list {
    gap: 15px;
  }
}
@media (max-width: 376px) {
  .copy-footer__list {
    flex-wrap: wrap;
    gap: 15px;
  }
}/*# sourceMappingURL=style.css.map */