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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #040909;
  font-family: "Arial", sans-serif;
  font-style: normal;
  color: #d2d7d7;
}

.block {
  overflow-y: hidden;
}

.container {
  max-width: 375px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 55px;
  }
}
@media screen and (min-width: 1366px) {
  .container {
    max-width: 1366px;
    padding: 0 133px;
  }
}

.gradient {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to left, #298788 0%, #4ed4d5 76%);
}

.gradient-2 {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to left, #929292 0%, #fff 76%);
}

.header {
  position: relative;
  padding: 12px 0;
  overflow-x: clip;
}
.header__inner {
  display: flex;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  margin-right: 100px;
}
.header__logo img {
  width: 175px;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 190px;
  }
}
@media screen and (min-width: 1366px) {
  .header__logo img {
    width: 262px;
  }
}

.burger {
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  display: table-cell;
  vertical-align: middle;
  margin-left: auto;
  z-index: 100;
}
@media screen and (min-width: 1366px) {
  .burger {
    display: none;
  }
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.81;
}
.burger span::after, .burger span::before {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition-property: background-color, transform;
  transition-duration: 0.23s;
}
.burger span::before {
  top: -7px;
}
.burger span::after {
  top: 7px;
}
.burger.toggle span {
  background-color: transparent;
}
.burger.toggle span::before {
  transform: translateY(7px) rotate(45deg);
}
.burger.toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  padding: 30px;
  transform: translateX(100%);
  transition: all 0.13s ease-in-out;
  background-color: #040909;
  z-index: 2;
}
@media screen and (min-width: 1366px) {
  .nav {
    background-color: transparent;
    position: static;
    transform: none;
    padding: 0;
    height: auto;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .nav__list {
    padding-left: 25%;
    gap: 50px;
  }
}
@media screen and (min-width: 1366px) {
  .nav__list {
    padding-left: 0;
    flex-direction: row;
  }
}
.nav__item {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .nav__item {
    font-size: 20px;
  }
}
.nav__link {
  text-decoration: none;
  color: #fff;
}
.nav.toggle {
  transform: translateX(0);
}

.banner {
  position: relative;
  padding: 85px 0 150px;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .banner {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1366px) {
  .banner {
    padding-top: 180px;
    padding-bottom: 220px;
  }
}
.banner__logo {
  display: flex;
  justify-content: center;
}
.banner__logo img {
  width: 63px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .banner__logo img {
    width: 69px;
  }
}
@media screen and (min-width: 1366px) {
  .banner__logo img {
    width: 120px;
    margin-bottom: 35px;
  }
}
.banner__title {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
  color: #4fd4d6;
}
@media screen and (min-width: 768px) {
  .banner__title {
    font-size: 34px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1366px) {
  .banner__title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
.banner__desc {
  color: #d2d7d7;
  font-size: 16px;
  text-align: center;
  width: 230px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .banner__desc {
    width: auto;
  }
}
@media screen and (min-width: 1366px) {
  .banner__desc {
    font-size: 28px;
    margin-bottom: 75px;
  }
}
.banner__btn {
  width: 135px;
}
@media screen and (min-width: 768px) {
  .banner__btn {
    width: 152px;
  }
}
@media screen and (min-width: 1366px) {
  .banner__btn {
    width: 195px;
  }
}
.banner__img {
  position: absolute;
  left: -100px;
  top: -100px;
  z-index: -2;
}
@media screen and (min-width: 500px) {
  .banner__img {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .banner__img {
    top: -350px;
    left: auto;
    right: -200px;
  }
}
@media screen and (min-width: 1366px) {
  .banner__img {
    right: 0;
    transform: scale(1.2);
  }
}

.btn {
  display: block;
  padding: 10px 0;
  border-radius: 28px;
  border: 1px solid #3fabad;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  -webkit-text-stroke: 1px #1f9293;
  background: linear-gradient(#4ed4d5 1%, #43b5b6 45%, #246061 100%);
}
@media screen and (min-width: 1768px) {
  .btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1366px) {
  .btn {
    font-size: 18px;
    padding: 16px 0;
  }
}

.welcome {
  position: relative;
  text-align: center;
  margin-bottom: 140px;
}
@media screen and (min-width: 768px) {
  .welcome {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1366px) {
  .welcome {
    margin-bottom: 140px;
  }
}
.welcome__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .welcome__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .welcome__title {
    font-size: 46px;
    margin-bottom: 40px;
  }
}
.welcome__txt {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1366px) {
  .welcome__txt {
    font-size: 22px;
  }
}
.welcome__wrap {
  padding: 0 13px;
}
@media screen and (min-width: 768px) {
  .welcome__wrap {
    width: 350px;
    text-align: left;
  }
  .welcome__wrap:first-child {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1366px) {
  .welcome__wrap:first-child {
    font-size: 22px;
    align-items: baseline;
  }
}
@media screen and (min-width: 1366px) {
  .welcome__wrap {
    width: 580px;
  }
}
.welcome p {
  text-align: center;
  margin-bottom: 20px;
}
.welcome p .gradient {
  font-weight: 600;
}
.welcome__logo {
  padding-top: 75px;
}
@media screen and (min-width: 768px) {
  .welcome__logo {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1366px) {
  .welcome__logo {
    padding-top: 65px;
  }
}
.welcome__logo img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .welcome__logo img {
    width: 115px;
  }
}
@media screen and (min-width: 1366px) {
  .welcome__logo img {
    width: 220px;
  }
}
.welcome__img img {
  width: 230px;
}
@media screen and (min-width: 1366px) {
  .welcome__img img {
    width: 320px;
  }
}
@media screen and (min-width: 1366px) {
  .welcome__img img {
    width: 420px;
  }
}
.welcome__img-1 {
  position: absolute;
  right: 0;
  bottom: -125px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .welcome__img-1 {
    bottom: 0;
  }
}
@media screen and (min-width: 1366px) {
  .welcome__img-1 {
    bottom: -50px;
  }
}
.welcome__img-2 {
  position: absolute;
  left: 0;
  bottom: -125px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .welcome__img-2 {
    top: -100px;
  }
}
@media screen and (min-width: 1366px) {
  .welcome__img-2 {
    bottom: -50px;
  }
}

.about {
  position: relative;
  text-align: center;
  overflow-x: clip;
}
.about__inner {
  text-align: left;
  padding: 40px 25px 250px;
  margin-bottom: 15px;
  background: url("../img/help-bg-1.png") no-repeat;
}
@media screen and (min-width: 768px) {
  .about__inner {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    background: url("../img/help-bg-2.png") no-repeat;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1366px) {
  .about__inner {
    margin-bottom: 80px;
    gap: 40px;
    align-items: center;
    background: url("../img/help-bg-3.png") no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .about__wrap {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .about__wrap:first-child {
    text-align: right;
  }
  .about__wrap:last-child {
    text-align: left;
  }
}
@media screen and (min-width: 1366px) {
  .about__wrap {
    justify-content: space-around;
    width: 600px;
  }
}
.about__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1366px) {
  .about__title {
    font-size: 46px;
    margin-bottom: 60px;
  }
}
.about__subtitle {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__subtitle {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1366px) {
  .about__subtitle {
    font-size: 26px;
  }
}
.about__txt {
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1366px) {
  .about__txt {
    font-size: 24px;
  }
}

.values {
  text-align: center;
  margin-bottom: 75px;
}
@media screen and (min-width: 768px) {
  .values {
    margin-bottom: 115px;
  }
}
@media screen and (min-width: 1366px) {
  .values {
    margin-bottom: 140px;
  }
}
.values__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .values__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .values__title {
    font-size: 46px;
    margin-bottom: 60px;
  }
}
.values__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 25px;
}
@media screen and (min-width: 1366px) {
  .values__list {
    padding: 0;
  }
}
.values__item {
  position: relative;
  width: 280px;
  height: 180px;
  padding: 30px 20px;
  border-radius: 16px;
  background: url("../img/choose-1.png") no-repeat;
}
@media screen and (min-width: 1366px) {
  .values__item {
    background: url("../img/choose-2.png") no-repeat;
    height: 333px;
  }
}
.values__wrap {
  text-align: left;
}
.values__name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (min-width: 1366px) {
  .values__name {
    font-size: 22px;
  }
}
.values__opis {
  font-size: 14px;
  color: #d2d7d7;
}
@media screen and (min-width: 1366px) {
  .values__opis {
    font-size: 20px;
  }
}
.values__num {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.38;
  font-size: 22px;
}
@media screen and (min-width: 1366px) {
  .values .container {
    padding: 0 90px;
  }
}

.hit {
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hit {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1366px) {
  .hit {
    margin-bottom: 120px;
  }
}
.hit__title {
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto 10px;
  width: 230px;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .hit__title {
    font-size: 28px;
    margin-bottom: 15px;
    width: auto;
  }
}
@media screen and (min-width: 1366px) {
  .hit__title {
    font-size: 46px;
    margin-bottom: 17px;
  }
}
.hit__desc {
  font-size: 14px;
  width: 200px;
  margin: 0 auto 60px;
}
@media screen and (min-width: 768px) {
  .hit__desc {
    font-size: 18px;
    margin-bottom: 80px;
    width: auto;
  }
}
@media screen and (min-width: 1366px) {
  .hit__desc {
    font-size: 24px;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 768px) {
  .hit__desc svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (min-width: 1366px) {
  .hit__desc svg {
    width: 18px;
    height: 18px;
  }
}
@media screen and (min-width: 1366px) {
  .hit__wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
}
.hit__body {
  position: relative;
  text-align: left;
  padding: 25px;
  background: url("../img/hit-bg.png") no-repeat;
}
@media screen and (min-width: 768px) {
  .hit__body {
    background: url("../img/hit-bg-2.png") no-repeat;
  }
}
@media screen and (min-width: 1366px) {
  .hit__body {
    width: 540px;
    background: url("../img/hit-bg-3.png") no-repeat;
    height: 546px;
    padding: 55px;
  }
}
.hit__body--2 {
  display: none;
  background: url("../img/hit-bg-4.png") no-repeat;
}
@media screen and (min-width: 1366px) {
  .hit__body--2 {
    display: block;
  }
}
.hit__subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: capitalize;
}
@media screen and (min-width: 1366px) {
  .hit__subtitle {
    font-size: 26px;
  }
}
.hit__txt {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #d2d7d7;
  margin-bottom: 281px;
  line-height: 18px;
}
@media screen and (min-width: 768px) {
  .hit__txt {
    width: 375px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1366px) {
  .hit__txt {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
  }
}
.hit__img {
  position: absolute;
  z-index: -1;
}
.hit__img--1 {
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .hit__img--1 {
    display: none;
  }
}
.hit__img--2 {
  display: none;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1365px) {
  .hit__img--2 {
    display: block;
  }
}
.hit__img--3 {
  display: none;
}
@media screen and (min-width: 1366px) {
  .hit__img--3 {
    display: block;
  }
}

.career {
  margin-bottom: 105px;
}
@media screen and (min-width: 768px) {
  .career {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1366px) {
  .career {
    margin-bottom: 120px;
  }
}
.career__cnt {
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  padding: 40px;
  background: #010d25 url("../img/career-1.png") center/cover no-repeat;
  border-radius: 18px;
  height: 308px;
  width: 278px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .career__cnt {
    width: 579px;
    height: 182px;
    background: #010d25 url("../img/career-2.png") center/cover no-repeat;
    border-radius: 27px;
    text-align: left;
  }
}
@media screen and (min-width: 1366px) {
  .career__cnt {
    width: 835px;
    height: 260px;
    padding-top: 60px;
    padding-left: 70px;
    border-radius: 30px;
    background: #010d25 url("../img/career-3.png") center/cover no-repeat;
  }
}
.career__cnt span {
  color: #00ccff;
}
.career__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .career__title {
    font-size: 28px;
    width: 220px;
  }
}
@media screen and (min-width: 1366px) {
  .career__title {
    font-size: 42px;
    width: 344px;
  }
}
.career__desc {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .career__desc {
    width: 250px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1366px) {
  .career__desc {
    font-size: 22px;
  }
  .career__desc svg {
    width: 12px;
    height: 21px;
  }
}

.discuss {
  position: relative;
  text-align: center;
}
.discuss__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1366px) {
  .discuss__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1366px) {
  .discuss__wrap {
    text-align: left;
  }
}
.discuss__title {
  width: 200px;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .discuss__title {
    width: auto;
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1366px) {
  .discuss__title {
    width: 300px;
    font-size: 46px;
    margin: 0 0 20px;
  }
}
.discuss__txt {
  font-size: 14px;
  padding: 0 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .discuss__txt {
    font-size: 16px;
    padding: 0;
    width: 484px;
    margin: 0 auto;
    margin-bottom: 40px;
    width: 330px;
  }
}
@media screen and (min-width: 1366px) {
  .discuss__txt {
    font-size: 22px;
    margin-bottom: 0;
    width: 425px;
  }
}
.discuss__form {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .discuss__form {
    margin: 0 auto 100px;
  }
}
@media screen and (min-width: 1366px) {
  .discuss__form {
    margin: 0 0 150px;
  }
}
.discuss__img img {
  width: 230px;
}
@media screen and (min-width: 1366px) {
  .discuss__img img {
    width: 320px;
  }
}
@media screen and (min-width: 1366px) {
  .discuss__img img {
    width: 420px;
  }
}
.discuss__img-1 {
  position: absolute;
  right: 0;
  bottom: -250px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .discuss__img-1 {
    bottom: -220px;
  }
}
@media screen and (min-width: 1366px) {
  .discuss__img-1 {
    bottom: -250px;
  }
}
.discuss__img-2 {
  position: absolute;
  left: 0;
  top: -150px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .discuss__img-2 {
    top: -130px;
  }
}
@media screen and (min-width: 1366px) {
  .discuss__img-2 {
    bottom: -50px;
  }
}

.form {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .form {
    width: 485px;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.form__label {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  font-size: 12px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form__label {
    font-size: 14px;
  }
  .form__label:nth-child(1), .form__label:nth-child(2) {
    width: 235px;
  }
}
@media screen and (min-width: 1366px) {
  .form__label {
    font-size: 18px;
  }
}
.form__label span {
  display: none;
  margin-bottom: 7px;
  font-weight: 500;
}
.form__label textarea {
  height: 160px;
}
.form__input {
  border-radius: 10px;
  padding: 17px;
  border: 1px solid #afb0b1;
  background-color: #030707;
  color: #afb0b1;
}
@media screen and (min-width: 768px) {
  .form__input {
    border-radius: 14px;
  }
}
@media screen and (min-width: 1366px) {
  .form__input {
    border-radius: 18px;
  }
}
.form__input::-moz-placeholder {
  color: #afb0b1;
  font-family: "Arial", sans-serif;
  font-size: 14px;
}
.form__input::placeholder {
  color: #afb0b1;
  font-family: "Arial", sans-serif;
  font-size: 14px;
}
@media screen and (min-width: 1366px) {
  .form__input::-moz-placeholder {
    font-size: 18px;
  }
  .form__input::placeholder {
    font-size: 18px;
  }
}
.form__input:focus {
  outline: none;
  border: 1px solid #4ed4d5;
}
.form__checkbox {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 40px;
  color: rgba(175, 176, 177, 0.58);
}
@media screen and (min-width: 1366px) {
  .form__checkbox {
    width: 100%;
    margin-bottom: 25px;
  }
}
.form__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__checkmark {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  margin-right: 12px;
  background-color: #030707;
  border: 1px solid #afb0b1;
}
.form__checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(35deg);
}
.form__checkbox input:checked ~ .form__checkmark {
  background-color: #030707;
}
.form__checkbox input:checked ~ .form__checkmark::after {
  display: block;
}
.form__btn {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: "Arial", sans-serif;
  border-width: 1px;
  -webkit-text-stroke: 0;
}
@media screen and (min-width: 1366px) {
  .form__btn {
    width: 200px;
    border-radius: 30px;
    margin-left: 0;
    font-size: 18px;
  }
}

.footer {
  font-size: 13px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1366px) {
  .footer {
    font-size: 15px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(248, 247, 247, 0.19);
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    margin-top: -6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.footer__logo {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .footer__logo img:first-child {
    display: none;
  }
}
.footer__logo img:last-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__logo img:last-child {
    display: block;
    width: 183px;
  }
}
@media screen and (min-width: 1366px) {
  .footer__logo img:last-child {
    width: 272px;
  }
}
.footer__copy {
  margin-bottom: 7px;
}
.footer__copy--1 {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__copy--1 {
    display: block;
    margin-bottom: 25px;
  }
}
.footer__copy--2 {
  padding-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copy--2 {
    display: none;
  }
}
.footer__nav {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1366px) {
  .footer__nav {
    margin-left: auto;
    margin-right: 60px;
  }
}
.footer__title, .footer__cnt {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__title, .footer__cnt {
    text-align: left;
  }
}
.footer__title {
  font-weight: 700;
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__title {
    display: block;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer__info {
    width: 210px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1366px) {
  .footer__info {
    width: 250px;
  }
}/*# sourceMappingURL=style.css.map */