@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700&display=swap");
html {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  color: var(--color-white);
  background-color: var(--color-black);
  margin: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  max-height: 100%;
}

button {
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
p,
figure,
fieldset {
  margin: 0;
}

iframe {
  border: none;
}

.visually-hidden {
  position: fixed;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.container {
  max-width: 1500px;
  padding: 0 30px;
  margin: 0 auto;
}

:root {
  --color-black: #141414;
  --color-white: #fff;
  --color-light: #C0C0C0;
  --color-orange: #E8A236;
}

.header {
  position: relative;
}
.header__container {
  position: relative;
  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;
  padding: 25px 30px 25px;
}
.header__logo {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--color-orange);
}
@media (max-width: 576px) {
  .header__logo {
    font-size: 12px;
  }
}
.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.header__phone:focus {
  border-bottom: 1px solid var(--color-orange);
}
.header__phone:hover {
  color: var(--color-orange);
}
.header__phone:active {
  color: rgb(250, 218, 36);
}
@media (max-width: 576px) {
  .header__phone {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .header__email {
    display: none;
  }
}
@media (max-width: 576px) {
  .header__phone-tel {
    display: none;
  }
}
.header__phone-svg {
  fill: white;
  color: black;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media (max-width: 1200px) {
  .menu__list {
    display: block;
    position: absolute;
    z-index: 1000;
    top: 75px;
    background: rgba(0, 0, 0, 0.7);
    right: 0px;
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    padding: 30px 50px 30px 50px;
    width: 350px;
  }
}
@media (max-width: 576px) {
  .menu__list {
    padding: 180px 30px 100px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    z-index: 2000;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
  }
}
@media (max-width: 1200px) {
  .menu__item {
    margin-bottom: 20px;
  }
}
.menu__link {
  text-transform: uppercase;
  font-weight: 300;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding-bottom: 5px;
}
.menu__link:focus {
  border-bottom: 1px solid var(--color-orange);
}
@media (max-width: 576px) {
  .menu__link:focus {
    border-bottom: none;
  }
}
.menu__link:hover {
  color: var(--color-orange);
}
.menu__link:active {
  color: rgb(250, 218, 36);
}
@media (max-width: 1200px) {
  .menu__link {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 10px;
  }
}
@media (max-width: 576px) {
  .menu__link {
    text-align: center;
    font-size: 24px;
  }
}

.menu.active .menu__list {
  opacity: 1;
  overflow: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
@media (max-width: 576px) {
  .menu.active .menu__list {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    overflow: visible;
    visibility: visible;
  }
}

.burger {
  display: none;
  position: relative;
  width: 30px;
  height: 25px;
}
@media (max-width: 1200px) {
  .burger {
    display: block;
    z-index: 2000;
  }
}
.burger__span {
  position: absolute;
  background: var(--color-white);
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}
.burger__span:nth-last-child(1) {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.burger__span:nth-last-child(2) {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.burger__span:nth-last-child(3) {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.burger.active .burger__span:nth-last-child(1) {
  -webkit-transform: translateY(0px) rotate(-45deg);
          transform: translateY(0px) rotate(-45deg);
}

.burger.active .burger__span:nth-last-child(2) {
  -webkit-transform: translateX(30px) scale(0);
          transform: translateX(30px) scale(0);
}

.burger.active .burger__span:nth-last-child(3) {
  -webkit-transform: translateY(0px) rotate(45deg);
          transform: translateY(0px) rotate(45deg);
}

.hero {
  position: relative;
  z-index: 500;
  background: url("../../img/hero.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding-bottom: 50px;
  margin-bottom: 100px;
}
.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  height: 100%;
  padding-bottom: 50px;
}
.hero__text {
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .hero__text {
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .hero__text {
    font-size: 14px;
  }
}
.hero__title {
  font-size: 54px;
  font-weight: 400;
  margin-bottom: 50px;
  border-bottom: 1px solid #979696;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 46px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 30px;
  }
}
.hero__desc {
  display: block;
  position: relative;
  color: white;
  line-height: 1.5;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  z-index: 20;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .hero__desc {
    font-size: 18px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .hero__desc {
    margin-bottom: 100px;
  }
}
.hero__desc::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
@media (max-width: 576px) {
  .hero__desc {
    font-size: 14px;
  }
}
.hero__btn {
  display: block;
  background: rgb(175, 118, 11);
  color: var(--color-white);
  padding: 20px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  outline: none;
}
.hero__btn:hover {
  background: var(--color-orange);
}

.do {
  position: relative;
  padding-bottom: 100px;
}
.do__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
.do__title {
  font-size: 40px;
  font-weight: 400;
  color: var(--color-orange);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .do__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .do__title {
    font-size: 26px;
  }
}
.do__desc {
  font-size: 18px;
  margin-bottom: 60px;
  color: var(--color-light);
}
@media (max-width: 576px) {
  .do__desc {
    text-align: center;
    font-size: 14px;
  }
}
.do__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.do__item {
  position: relative;
}
.do__item-img {
  max-width: 500px;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .do__item-img {
    max-width: 320px;
  }
}
.do__item-text {
  position: relative;
  max-width: 480px;
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.do__item-text::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.do__item-text__item-subtitle {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .do__item-text {
    font-size: 14px;
  }
}
.do__item-desc {
  color: var(--color-light);
}
@media (max-width: 576px) {
  .do__item-desc {
    font-size: 14px;
  }
}

.volcano {
  position: relative;
  background: url("../../img/corp-event.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  margin-bottom: 50px;
}
.volcano::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.wrap {
  position: absolute;
  max-width: 600px;
  width: 100%;
  right: 100px;
  bottom: 50%;
  z-index: 20;
  padding: 3px;
}
@media (max-width: 768px) {
  .wrap {
    max-width: 300px;
    font-size: 14px;
    bottom: 20%;
  }
}
@media (max-width: 576px) {
  .wrap {
    bottom: 20%;
    right: 0px;
  }
}
.wrap__title {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--color-orange);
}
@media (max-width: 768px) {
  .wrap__title {
    font-size: 16px;
    bottom: 20%;
  }
}
@media (max-width: 576px) {
  .wrap__title {
    font-size: 16px;
  }
}
.wrap__desc {
  font-size: 18px;
  line-height: 20px;
  color: var(--color-light);
  line-height: 1.2;
}
@media (max-width: 576px) {
  .wrap__desc {
    font-size: 16px;
  }
}

.tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .tools {
    display: block;
  }
}
.tools__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 100px 30px 100px;
  width: 50%;
}
@media (max-width: 768px) {
  .tools__content {
    padding: 30px 30px 30px 30px;
  }
}
@media (max-width: 576px) {
  .tools__content {
    width: 100%;
    padding: 30px 20px 100px 30px;
  }
}
.tools__text {
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--color-light);
}
@media (max-width: 768px) {
  .tools__text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .tools__text {
    font-size: 12px;
    text-align: center;
  }
}
.tools__title {
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: var(--color-orange);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .tools__title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .tools__title {
    text-align: center;
    font-size: 20px;
  }
}
.tools__list {
  padding-left: 50px;
}
.tools__item {
  position: relative;
  font-size: 18px;
  color: var(--color-light);
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .tools__item {
    font-size: 16px;
  }
}
.tools__item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--color-orange);
  border-radius: 50%;
  top: 3px;
  left: -40px;
}
.tools__item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--color-black);
  border-radius: 50%;
  top: 6px;
  left: -37px;
  z-index: 10;
}
.tools__img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .tools__img {
    display: none;
  }
}

.fern {
  position: relative;
  background: url("../../img/fern.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  margin-bottom: 100px;
}
.fern:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.photo {
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}
.photo__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 600px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.photo__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.photo__item-img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 600px;
}
@media (max-width: 768px) {
  .photo__item-img {
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  .photo__item-img {
    max-width: 320px;
  }
}
.photo__item-text {
  position: absolute;
  bottom: 40px;
  max-width: 450px;
  padding: 20px;
}
.photo__item-text::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .photo__item-text {
    max-width: 350px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .photo__item-text {
    max-width: 300px;
  }
}
.photo__item-subtitle {
  position: relative;
  text-transform: uppercase;
  color: var(--color-orange);
  z-index: 200;
}
.photo__item-desc {
  color: white;
  position: relative;
  margin-top: 20px;
  z-index: 200;
}

.star {
  position: relative;
  background: url("../../img/fotostudio.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  margin-bottom: 100px;
}
.star::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 576px) {
  .star {
    margin-bottom: 50px;
  }
}

.help {
  padding-bottom: 100px;
}
.help__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.help__title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--color-orange);
  text-align: center;
}
@media (max-width: 768px) {
  .help__title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .help__title {
    font-size: 20px;
  }
}
.help__desc {
  font-size: 24px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .help__desc {
    font-size: 16px;
  }
}
.help__btn {
  color: var(--color-white);
  background-color: rgb(175, 118, 11);
  padding: 15px;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 5px;
  width: 300px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.help__btn:hover {
  background: var(--color-orange);
}

.about {
  background: #1d1d1d;
  padding-bottom: 100px;
}
.about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 100px;
  gap: 40px;
}
.about__wrap-img {
  position: relative;
  width: 500px;
  height: 550px;
}
.about__wrap-img::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.about__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.about__content {
  width: 50%;
}
@media (max-width: 768px) {
  .about__content {
    width: 70%;
  }
}
@media (max-width: 576px) {
  .about__content {
    width: 100%;
  }
}
.about__title {
  margin-bottom: 30px;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color-orange);
}
@media (max-width: 576px) {
  .about__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.about__desc {
  margin-bottom: 20px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .about__desc {
    font-size: 16px;
  }
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer__contact {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .footer__contact {
    font-size: 16px;
  }
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 877px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__2023 {
  text-transform: uppercase;
}
.footer__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.footer__link {
  color: var(--color-orange);
  text-align: left;
  font-size: 18px;
}
.footer__email-link, .footer__phone-link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__email-link:hover, .footer__phone-link:hover {
  color: var(--color-orange);
}

.photos {
  padding-top: 50px;
}
.photos__title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-orange);
  font-size: 26px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .photos__title {
    font-size: 20px;
  }
}
.photos__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .photos__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .photos__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .photos__list {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.photos__img {
  -o-object-fit: cover;
     object-fit: cover;
}

.wrap-swiper {
  position: relative;
  margin-bottom: 100px;
  padding: 20px;
}
@media (max-width: 576px) {
  .wrap-swiper {
    padding: 10px;
  }
}
@media (max-width: 576px) {
  .wrap-swiper__container {
    padding: 0 10px;
  }
}
.wrap-swiper__title {
  font-size: 50px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 100px;
  color: var(--color-orange);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .wrap-swiper__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .wrap-swiper__title {
    font-size: 26px;
    margin-bottom: 50px;
  }
}

.swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  width: 100%;
  max-height: 700px;
  margin: 0 auto;
}
.swiper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.swiper-title {
  font-size: 50px;
}

.swiper-wrapper {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev {
  color: var(--color-orange);
}

.swiper-button-next {
  color: var(--color-orange);
}

.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 50px;
}
@media (max-width: 768px) {
  .swiper-button-prev::after, .swiper-button-next::after {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .swiper-button-prev::after, .swiper-button-next::after {
    font-size: 20px;
  }
}

.swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 576px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  background: var(--color-orange);
}

.modal .modal__overlay {
  z-index: 5000;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.modal__box {
  position: relative;
  margin-top: 100px;
  padding: 60px 30px 20px 30px;
  width: 600px;
  max-height: 500px;
  height: 100%;
  overflow-y: auto;
  background: var(--color-black);
  border-radius: 5px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.modal__close {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  top: 15px;
  right: 15px;
}
.modal__close::after, .modal__close::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-white);
}
.modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .modal__title {
    font-size: 20px;
  }
}
.modal .form {
  width: 350px;
}
.modal .form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal .form__lable {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 576px) {
  .modal .form__lable {
    font-size: 14px;
  }
}
.modal .form__input {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px;
  outline: inherit;
  border: none;
  background-color: antiquewhite;
  font-size: 20px;
  font-weight: 300;
}
@media (max-width: 576px) {
  .modal .form__input {
    padding: 10px;
  }
}
.modal .form__input:nth-last-child(2) {
  margin-bottom: 50px;
}
.modal .form__btn {
  color: var(--color-white);
  background-color: var(--color-orange);
  padding: 15px;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
}
@media (max-width: 576px) {
  .modal .form__btn {
    padding: 10px;
  }
}

.modal.active .modal__overlay {
  opacity: 1;
  visibility: visible;
}

.modal.active .modal__box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}