:root {
  --brown: #aa5a8c;
  --blue: #323237;
  --black: #000;
  --white: #fff;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* global */
body {
  min-width: 380px;
  min-height: 100vh;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--blue);
  background-color: var(--white);
  overflow-x: hidden;
  color-scheme: light dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  place-items: center;
  position: relative;

  &::-webkit-scrollbar {
    width: 7px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: var(--brown);
    border-radius: 15px;
  }
}

html,
body {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  background-color: var(--white);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input:focus {
  outline: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-text-fill-color: gray !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

svg,
svg path,
svg stroke {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
}

/* header */
.header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

.header__container {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  padding-top: 15px;
}

.menu,
.nav,
.language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav {
  padding-top: 22px;
}

.menu__item {
  margin-right: 20px;
}

.menu__item:last-child {
  margin-right: 30px;
}

.menu__item.big {
  max-width: 117px;
  line-height: 20px;
  text-align: center;
}

.menu__link {
  color: var(--black);
  text-shadow: 1px 1px 5px rgba(34, 34, 34, 0.25);
  text-transform: uppercase;
}

.menu__link.active {
  font-weight: 700;
}

.menu__link.active:hover {
  color: var(--black);
}

.menu__link:hover,
.language__btn:hover {
  color: var(--black);
}

.language__btn {
  font-size: 16px;
  color: var(--black);
}

.language__btn.active {
  font-weight: 700;
}

.language__btn.active:hover {
  color: var(--black);
}

.language__item:nth-child(2) {
  margin: 0 8px;
  position: relative;
}

.language__item:nth-child(2)::after,
.language__item:nth-child(2)::before {
  content: '/';
  display: inline-block;
  color: var(--black);
}

.language__item:nth-child(2)::after {
  padding-left: 7px;
}

.language__item:nth-child(2)::before {
  padding-right: 7px;
}

.header__img-mobile {
  display: none;
}

/* top */
.top {
  height: 800px;
  background-image: url('../img/top-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

.top .container,
.top__inner {
  height: 100%;
}

.top__inner {
  padding-bottom: 215px;
  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: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.top__title {
  margin-bottom: 65px;
}

.top__link {
  padding: 15px 20px;
  background-color: var(--brown);
  color: var(--white);
  line-height: 16px;
  letter-spacing: 2.4px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top__link:hover {
  -webkit-box-shadow: 0px 0px 13px 0px rgba(212, 90, 41, 0.4);
  box-shadow: 0px 0px 13px 0px rgba(212, 90, 41, 0.4);
}

/* about */
.about {
  padding: 90px 0 105px;
}

.about__title {
  font-size: 22px;
  color: var(--blue);
}

.about__line {
  margin: 32px auto 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about__left {
  min-width: 456px;
  margin-right: 140px;
}

.about__right {
  max-width: 485px;
  margin-bottom: 170px;
  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: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.about__right-title {
  margin-bottom: 30px;
  text-align: start;
  font-size: 20px;
}

.about__text {
  font-size: 18px;
  line-height: 24px;
}

.about__bottom {
  margin-top: -130px;
}

.about__bottom img {
  width: 100%;
}

/* work */
.work {
  padding-bottom: 175px;
}

.work__title {
  margin-bottom: 95px;
}

.work__inner {
  max-width: 810px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.work__item {
  max-width: 365px;
  margin-bottom: 80px;
  text-align: center;
}

.work__item:nth-child(3),
.work__item:nth-child(4) {
  margin-bottom: 0;
}

.work__item-title {
  font-size: 20px;
  white-space: nowrap;
}

.work__item .work__svg {
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.work__item .work__svg:nth-child(3),
.work__item .work__svg:nth-last-child(4) {
  margin: 8px auto;
}

.work__link {
  font-weight: 600;
  color: var(--brown);
  border-bottom: 1px solid;
}

.work__link:hover {
  border-bottom: 1px transparent;
}

.work__price {
  margin: 20px auto;
  text-transform: uppercase;
}

.work__price span {
  font-weight: 600;
}

.work__btn {
  padding: 15px 38px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  color: var(--brown);
  border: 3px solid var(--brown);
}

.zone {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
  padding: 0 35px;
  border-radius: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(241, 182, 174, 0.8)),
    to(rgba(241, 182, 174, 0.8))
  );
  background: -o-linear-gradient(top, rgba(241, 182, 174, 0.8) 0%, rgba(241, 182, 174, 0.8) 100%);
  background: linear-gradient(180deg, rgba(241, 182, 174, 0.8) 0%, rgba(241, 182, 174, 0.8) 100%);
}

.work__mobile {
  display: none;
}

/* creators */
.creators {
  padding: 80px 0 160px;
}

.creators__title {
  margin-bottom: 120px;
  color: var(--blue);
}

.creators__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.creators__item {
  max-width: 337px;
  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;
}

.creators__item:first-child {
  margin-right: 200px;
}

.creators__name {
  color: #aa5a8c;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.creators__img {
  margin: 30px 0;
}

.creators__text {
  text-align: center;
}

.creators__title-mobile {
  display: none;
}

/* gallery */
.gallery__title {
  margin-bottom: 80px;
}

.gallery__top {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallery__top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mobile-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* blog */
.blog {
  padding: 75px 0 60px;
}

.blogs {
  margin: 130px 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item {
  max-width: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.item a {
  color: var(--brown);
}

.item:not(:last-child) {
  margin-right: 110px;
}

.item__img {
  margin: 0 auto;
}

.item__date {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
}

.item__title {
  margin: 10px 0;
  font-size: 20px;
  line-height: 20px;
  white-space: nowrap;
}

.links {
  margin-bottom: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.links a:nth-child(2)::after,
.links a:nth-child(2)::before {
  display: inline-block;
  margin: 0 7px;
  content: '|';
  color: var(--brown);
}

.item__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 7px 0 0 auto;
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid var(--brown);
}

.item__text {
  max-height: 96px;
  margin: 0 auto auto auto;
  overflow-y: hidden;
}

.blog__big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog__footer {
  padding: 180px 0 95px;
  background: rgba(241, 182, 174, 0.5);
  text-align: center;
}

.blog__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog__text {
  margin: 60px 0 13px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 50px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid #323237;
}

.blog__mobile {
  display: none;
}

/* revievs */
.revievs {
  padding-bottom: 60px;
}

.revievs .container {
  max-width: 1300px;
}

.revievs__title {
  margin-bottom: 95px;
  color: var(--blue);
}

.revievs__inner {
  position: relative;
}

.swiper {
  position: relative;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--brown) !important;
}

.swiper-button-prev {
  position: absolute;
  left: -50px !important;
}

.swiper-button-next {
  position: absolute;
  right: -50px !important;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.revievs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.revievs__left {
  margin-right: 8px;
}

.revievs__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.revievs__stars {
  margin: 7px 0 2px;
}

.revievs__name {
  color: var(--blue);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.revievs__text {
  max-width: 210px;
}

/* form */
.form-section {
  height: 1080px;
  position: relative;
}

.form-section .container {
  height: 100%;
  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;
}

.form__title {
  margin-bottom: 40px;
  font-size: 19px;
  white-space: nowrap;
}

.form {
  max-width: 375px;
  width: 100%;
  padding: 45px 25px;
  position: relative;
  background: rgba(241, 182, 174, 0.8);
  z-index: 10;
}

.form__item {
  margin-bottom: 25px;
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form__span,
.form__radio-span {
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
}

.form__span {
  margin-bottom: 5px;
}

.form__radio-span {
  font-weight: 400;
  text-transform: initial;
  position: relative;
  cursor: pointer;
}

.form__radio-span::before {
  position: absolute;
  left: -35px;
  top: 7px;
  content: '';
  width: 10px;
  height: 10px;
  background: var(--brown);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form-input {
  height: 40px;
  padding: 0 10px;
  border-radius: 2px;
  color: var(--black);
  font-weight: 600;
  border: 3px solid #ddd;
  background: var(--white);
  -webkit-transform: all 0.3s;
  -ms-transform: all 0.3s;
  transform: all 0.3s;
}

.form-input:focus {
  border: 3px solid var(--brown);
}

.form__radios-title {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--blue);
  text-align: start;
}

.form__radios .form__label {
  margin-bottom: 11px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form__radio {
  width: 18px;
  height: 18px;
  margin-right: 21px;
  border-radius: 50%;
  border: 1px solid #676767;
  cursor: pointer;
}

.form__radio:checked + .form__radio-span::before {
  opacity: 1;
}

.form__btn {
  margin: 45px auto 0;
  padding: 14px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  background: var(--brown);
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 2.4px;
}

.form__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.form__mobile-img {
  display: none;
}

.form__sucsess {
  margin-top: 10px;
  text-align: center;
  display: none;
}

.form__sucsess.active {
  display: block;
}

.form__date,
.form__textarea {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.form__supdate {
  margin: 25px 0;
}

.form__parent {
  position: relative;
}

.form__selects {
  margin: 30px 0 20px;
  display: flex;
}

.form__selects input {
  width: 120px;
  height: 32px;
  padding-left: 7px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  z-index: 20;
}

input[type='date']::-webkit-calendar-picker-indicator {
  background-position: right;
  background-size: auto;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
}

.form__parent:first-child {
  margin-right: 20px;
}

.form__textarea {
  width: 100%;
  height: 113px;
  margin-top: 20px;
  padding: 10px;
  resize: none;
  border: 2px solid rgba(221, 221, 221, 0.5);
  background: #fff;
  color: var(--black);
  font-weight: 400;
}

.form__textarea:focus {
  border: 2px solid var(--brown);
  outline: none;
}

.form__parent-text {
  width: 120px;
  height: 32px;
  padding-left: 7px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 2px;
  z-index: 10;
  border: 2px solid rgba(43, 54, 65, 0.2);
  background-color: var(--white);
}

.form__parent-text img {
  pointer-events: none;
}

.form__parent-span {
  margin-right: 8px;
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
}

/* map */
.map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* footer */
.footer {
  width: 100%;
  padding: 80px 85px 55px;
  background-color: var(--blue);
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__container > div {
  max-width: 400px;
  width: 100%;
}

.footer__left {
  margin-right: 70px;
}

.footer__title {
  margin-bottom: 22px;
  color: var(--white);
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__left-li {
  margin-bottom: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__left-ul li:last-child {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__left-li:last-child {
  margin-bottom: 0;
}

.footer__left-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__left-link {
  margin-top: -2px;
  color: var(--white);
  font-size: 16px;
  line-height: 16px;
}

.footer__left-link.first {
  color: #cee9ff;
  text-decoration: underline;
}

.footer__left-link.first:hover {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}

.footer__left-img {
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__left-span {
  width: 76px;
  margin-right: 25px;
  color: var(--white);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__left-right-span {
  max-width: 190px;
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
}

.footer__left-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__left-right span:first-child {
  margin-bottom: 8px;
}

.footer__right-ul {
  max-width: 316px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__right-link {
  color: var(--white);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__right-link:hover {
  color: var(--brown);
}

.footer__right-ul .footer__right-li:nth-child(2),
.footer__right-ul .footer__right-li:nth-child(5) {
  margin: 0 35px;
}

.footer__right-ul .footer__right-li:nth-child(4) a {
  padding-left: 6px;
}

.footer__right-ul .footer__right-li:nth-child(6) a {
  padding-right: 12px;
}

.footer__right-bottom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}

.footer__right-bottom-ul {
  max-width: 316px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__right-bottom-ul .footer__right-bottom-li:nth-child(2) {
  margin: 0 50px;
}

.footer__copy {
  max-width: 316px;
  width: 100%;
  color: var(--white);
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.footer__scroll-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 14px 15px 14px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 2.4px;
  cursor: pointer;
}

.footer__scroll-img {
  margin-left: 8px;
}

/* burger */
.burger {
  display: none;
  width: 22px;
  height: 18px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.burger__line-first {
  top: 0;
}

.burger__line-second,
.burger__line-third {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.burger__line-fourth {
  bottom: 0;
}

.burger_active .burger__line-first,
.burger_active .burger__line-fourth {
  opacity: 0;
}

.burger_active .burger__line-second {
  -webkit-transform: translate(-17%, -50%) rotate(45deg);
  -ms-transform: translate(-17%, -50%) rotate(45deg);
  transform: translate(-17%, -50%) rotate(45deg);
  width: 22px;
}

.burger_active .burger__line-third {
  -webkit-transform: translate(-17%, -50%) rotate(-45deg);
  -ms-transform: translate(-17%, -50%) rotate(-45deg);
  transform: translate(-17%, -50%) rotate(-45deg);
  width: 22px;
}

/* Sri Lanka */
.lanka {
  margin-bottom: 145px;
}

.container.lanka {
  max-width: 1440px;
  padding: 0 35px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.lanka__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.lanka__item:not(:last-child) {
  margin-bottom: 30px;
}

.lanka__title-top {
  margin: 80px 0 45px;
}

.lanka__title {
  margin-bottom: 45px;
  font-size: 20px;
  line-height: 24px;
}

.lanka img {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lanka__info a {
  color: #aa3c46;
}

.lanka__info .links {
  margin-bottom: 30px;
}

.lanka__info {
  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: end;
  -ms-flex-align: end;
  align-items: end;
}

.lanka__date {
  font-size: 14px;
  line-height: 24px;
}

.lanka p {
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 24px;
}

.lanka p:last-child {
  margin-bottom: 15px;
}

@media only screen and (max-width: 1440px) {
  .gallery__top {
    max-width: 915px;
    margin: 0 auto;
  }

  .swiper-button-next {
    right: 0 !important;
  }

  .swiper-button-prev {
    left: 0 !important;
  }

  .footer__container > div:last-child {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .footer__container > div:first-child {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .footer__left {
    margin-right: 0;
  }

  .footer {
    padding: 35px 15px 45px;
  }

  .lanka__item img {
    height: 800px;
  }
}

@media only screen and (max-width: 1340px) {
  .about__bottom img {
    height: auto;
    min-height: 310px;
  }

  .blog__big img,
  .blog__footer-img {
    height: 700px;
  }

  .blog__footer {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 1240px) {
  .header__img {
    width: 100px;
    height: 40px;
  }

  .nav {
    padding-top: 15px;
  }

  .menu__item {
    margin-right: 17px;
  }

  .creators__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .creators__item:first-child {
    margin-right: 0;
  }

  .creators__img {
    margin: 10px 0 25px;
  }

  .item:not(:last-child) {
    margin-right: 0;
  }

  .blogs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .swiper {
    max-width: 1000px;
  }

  .lanka__item img {
    height: 700px;
  }
}

@media only screen and (max-width: 1140px) {
  .footer__container div:nth-child(2) {
    max-width: 275px;
  }

  .footer__right-li {
    width: 103px;
    text-align: center;
  }

  .footer__right-ul .footer__right-li:nth-child(6) a {
    padding-right: 0;
  }

  .footer__right-ul .footer__right-li:nth-child(4) a {
    padding-left: 0;
  }

  .footer__right-ul .footer__right-li:nth-child(2),
  .footer__right-ul .footer__right-li:nth-child(5) {
    margin: 0;
  }

  .footer__right-li {
    margin-bottom: 20px;
  }

  .footer__right-ul .footer__right-li:nth-child(5),
  .footer__right-ul .footer__right-li:nth-child(6) {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1040px) {
  .blogs {
    -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;
  }

  .item:not(:last-child) {
    margin-bottom: 55px;
  }

  .swiper {
    max-width: 800px;
  }

  .lanka__item img {
    height: 600px;
  }
}

@media only screen and (max-width: 1020px) {
  .nav {
    position: fixed;
    padding: 75px 15px 15px 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 27, 60, 0.9);
    z-index: 100;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .body.active .nav {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  .header__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .burger {
    display: block;
    z-index: 200;
  }

  .burger.active .burger__line-first,
  .burger.active .burger__line-fourth {
    opacity: 0;
  }

  .burger.active .burger__line-second {
    -webkit-transform: translate(0%, -50%) rotate(45deg);
    -ms-transform: translate(0%, -50%) rotate(45deg);
    transform: translate(0%, -50%) rotate(45deg);
  }

  .burger.active .burger__line-third {
    -webkit-transform: translate(0%, -50%) rotate(-45deg);
    -ms-transform: translate(0%, -50%) rotate(-45deg);
    transform: translate(0%, -50%) rotate(-45deg);
  }

  .burger.active .burger__line {
    background-color: var(--white);
  }

  .menu__item.big {
    text-align: start;
  }

  .menu {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .language {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: auto;
  }

  .menu__link,
  .language__btn {
    font-weight: 500;
  }

  .menu__item {
    margin-bottom: 15px;
  }

  .top {
    height: 100vh;
  }

  .top__inner {
    padding-bottom: 200px;
  }

  .about__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .about__right-title {
    margin-bottom: 17px;
  }

  .about__left {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin-right: 50px;
  }

  .about__left img {
    width: 400px;
  }

  .video .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .video iframe {
    height: 600px;
  }

  .mobile-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .gallery__title {
    margin: 70px 0 30px;
  }

  .blog__big img,
  .blog__footer-img {
    height: 550px;
  }

  .creators {
    padding-bottom: 0;
  }

  .creators__title {
    margin-bottom: 45px;
  }

  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__container > div:nth-child(2) {
    margin: 40px 0 60px;
  }

  .footer__title {
    margin-bottom: 15px;
    text-align: center;
  }

  .footer__left {
    margin-bottom: 50px;
  }

  .header {
    position: fixed;
    -webkit-box-shadow: 0px 1px 13px rgba(147, 173, 223, 0.5);
    box-shadow: 0px 1px 13px rgba(147, 173, 223, 0.5);
    z-index: 50;
    background: var(--white);
  }

  .header__logo {
    padding: 10px 0;
  }

  .burger__line {
    background-color: var(--black);
  }

  .menu__link,
  .language__btn,
  .language__item:nth-child(2)::after,
  .language__item:nth-child(2)::before {
    color: var(--white);
  }

  .language__btn:hover,
  .menu__link:hover {
    color: var(--white);
  }
}

@media only screen and (max-width: 972px) {
  .gallery__top {
    max-width: 450px;
    margin: 0 auto;
  }

  .gallery__top a {
    pointer-events: none;
    cursor: default;
  }
}

@media only screen and (max-width: 915px) {
  .creators__inner {
    -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;
  }

  .creators__item:first-child {
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 845px) {
  .about__line {
    margin: 23px auto 60px;
  }

  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .about__left {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about__right {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about__right-title {
    text-align: center;
  }

  .about__left img {
    width: 135px;
  }

  .about__bottom {
    margin-top: -30px;
  }

  .work {
    padding-bottom: 70px;
  }

  .work__title {
    margin-bottom: 55px;
  }

  .work__inner {
    -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;
  }

  .work__item:not(:last-child) {
    margin-bottom: 50px !important;
  }

  .work__btn {
    display: none;
  }

  .work__price {
    margin-bottom: 0;
  }

  .work__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 50px auto 0;
    padding: 15px 30px;
    border-radius: 5px;
    color: var(--brown);
    border: 2px solid var(--brown);
  }

  .blog__footer {
    display: none;
  }

  .blog__big img,
  .blog__footer-img {
    height: 450px;
  }

  .lanka__item img {
    height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .title {
    font-size: 20px;
  }

  .top__title {
    width: 250px;
    height: 82px;
    margin-bottom: 45px;
  }

  .about {
    padding: 50px 0 40px;
  }

  .about__text {
    font-size: 16px;
  }

  .work__price {
    font-size: 14px;
    line-height: 22px;
  }

  .work__item-title {
    font-size: 18px;
  }

  .video iframe {
    height: 450px;
  }

  .gallery__top {
    gap: 8px;
  }

  .creators {
    padding: 45px 0 70px;
  }

  .creators__item img {
    height: 157px;
    width: 157px;
  }

  .blog {
    padding-top: 0;
  }

  .blogs {
    margin: 60px 0 0;
  }

  .blog__big img {
    height: 510px;
  }

  .blog__footer-img {
    height: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .blog__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--brown);
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-transform: uppercase;
  }

  .revievs__title {
    margin-bottom: 53px;
  }

  .revievs__name {
    margin-top: 7px;
    font-size: 16px;
  }

  .revievs__text {
    max-width: 307px;
    margin: 15px 0 0 -82px;
    font-size: 14px;
  }

  .revievs__left {
    width: 72px;
    height: 72px;
  }

  .revievs__stars {
    margin: 7px 0 6px;
  }

  .revievs__left {
    margin-right: 13px;
  }

  .map iframe {
    height: 425px;
  }

  .form__title {
    font-size: 19px;
  }

  .form__radios-title {
    font-size: 16px;
  }

  .footer__left-img {
    min-width: 32px;
    margin-right: 20px;
  }

  .footer__left-span {
    margin-right: 15px;
  }

  .lanka__item img {
    height: 450px;
  }

  .main-body .top {
    display: none;
  }

  .main-body .header__container {
    padding: 0 35px;
  }

  .lanka__title-top {
    margin: 180px 0 80px;
  }

  .lanka__info .links {
    margin-bottom: 13px;
  }

  .lanka img {
    margin-bottom: 31px;
  }

  .lanka__p {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .lanka__p p {
    font-size: 16px;
  }

  .lanka__title {
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .lanka__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .lanka__item {
    position: relative;
  }

  .lanka__date {
    position: absolute;
    top: 196px;
    left: 31%;
  }
}

@media only screen and (max-width: 550px) {
  .form__img {
    display: none;
  }

  .form-section .container {
    padding: 0;
  }

  .form__mobile-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form {
    max-width: 100%;
  }

  .form-section {
    height: auto;
  }

  .lanka__item img {
    height: 300px;
  }
}

@media only screen and (max-width: 520px) {
  .video iframe {
    height: 330px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px !important;
  }

  .swiper-button-next {
    right: -10px !important;
  }

  .swiper-button-prev {
    left: -10px !important;
  }
}

@media only screen and (max-width: 460px) {
  .gallery__top a img {
    height: 220px;
  }

  .lanka__item img {
    height: 200px;
  }
}

@media only screen and (max-width: 420px) {
  .footer__left-link {
    font-size: 15px;
  }

  .footer__left-span {
    margin-right: 10px;
  }

  .footer__left-img {
    min-width: 26px;
    width: 26px;
    height: 26px;
    margin-right: 15px;
  }
}
