* {
  box-sizing: border-box;
}

@font-face {
  font-family: "InterRegular";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterExtraBold";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
.col-1 {
  width: 100%;
  max-width: 8.3333333333%;
}

.col-2 {
  width: 100%;
  max-width: 16.6666666667%;
}

.col-3 {
  width: 100%;
  max-width: 25%;
}

.col-4 {
  width: 100%;
  max-width: 33.3333333333%;
}

.col-5 {
  width: 100%;
  max-width: 41.66666666%;
}

.col-6 {
  width: 100%;
  max-width: 50%;
}

.col-7 {
  width: 100%;
  max-width: 58.3333333333%;
}

.col-8 {
  width: 100%;
  max-width: 66.6666666667%;
}

.col-9 {
  width: 100%;
  max-width: 75%;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 991px) {
  .container {
    padding: 0 15px;
  }
}
.container-content {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

.overflow-hide {
  overflow: hidden;
}

.ai-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body {
  font-family: "InterRegular", sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
  background-color: #F2F2F2;
  color: #252525;
  margin: 0;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
}
body.open-menu {
  position: relative;
}

.main {
  padding-top: 0;
}

button {
  border: 0;
  background: transparent;
}

input {
  background: transparent;
  color: #252525;
}

a {
  transition: all 0.3s ease-out;
  text-decoration: none !important;
  color: #000000;
}
a:hover {
  color: #656565;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "InterExtraBold", sans-serif;
  color: #18191A;
}

h1 {
  font-size: 6rem;
  line-height: 5.625rem;
  text-transform: uppercase;
  color: #1E1E1E;
}
@media (max-width: 991px) {
  h1 {
    font-size: 3.4375rem;
    line-height: 3.875rem;
  }
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.625rem;
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
}

.v100 {
  height: 100vh;
}

.btn {
  background: #000000;
  font-size: 1.25rem;
  color: #ffffff;
  padding: 10px 25px;
  text-transform: uppercase;
  display: inline-flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  font-family: "InterExtraBold", sans-serif;
  gap: 7px;
  transition: all 0.3s ease-out;
  border-radius: 32px;
  min-width: 255px;
  text-align: left;
  justify-content: space-between;
}
.btn:hover {
  background: #656565;
  transition: all 0.3s ease-out;
  color: #ffffff;
}
.btn:hover::after {
  left: 12px;
  transition: all 0.3s ease-out;
}
.btn::after {
  content: "";
  background: url("../img/icon/icon-btn.svg") no-repeat;
  width: 32px;
  height: 32px;
  position: relative;
  display: block;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}
.btn.btn_small {
  font-size: 1rem;
  color: #ffffff;
  padding: 5px 18px;
  min-width: 170px;
}
.btn.btn_small:hover {
  background: #656565;
  transition: all 0.3s ease-out;
}
.btn.btn_small:hover::after {
  top: 5px;
  transition: all 0.3s ease-out;
}
.btn.btn_small::after {
  content: "";
  background: url("../img/icon/icon-btn-down.svg") no-repeat;
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}
.btn.btn_yes {
  padding: 15px 20px;
}
.btn.btn_yes:hover {
  background: #656565;
  transition: all 0.3s ease-out;
}
.btn.btn_yes:hover::after {
  left: 8px;
  transition: all 0.3s ease-out;
}
.btn.btn_yes::after {
  content: "";
  background: url("../img/icon/icon-yes.svg") no-repeat;
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}
.btn.btn_no {
  padding: 15px 20px;
}
.btn.btn_no:hover {
  background: #656565;
  transition: all 0.3s ease-out;
}
.btn.btn_no:hover::after {
  left: 8px;
  transition: all 0.3s ease-out;
}
.btn.btn_no::after {
  content: "";
  background: url("../img/icon/icon-no.svg") no-repeat;
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}

.aligncenter {
  display: flex;
  text-align: center;
  margin: 0 auto;
}

.section-title h1 {
  margin: 0;
  text-align: left;
  font-size: 4rem;
  letter-spacing: -5%;
  font-family: "InterExtraBold", sans-serif;
  color: #1E1E1E;
}

table tbody tr td {
  padding: 15px;
  font-family: "InterRegular", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  border-bottom: 1px solid #F2F2F2;
}
table tbody tr td strong {
  font-weight: 700;
}

.header {
  margin-bottom: 65px;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
@media (max-width: 991px) {
  .header__content {
    gap: 30px;
  }
}
.header__logo {
  width: 175px;
}
.header__contact {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-left: 40px;
  gap: 5px;
}
.header__contact .email {
  font-size: 1rem;
  font-family: "InterRegular", sans-serif;
  color: #656565;
}
.header__contact .phone {
  font-size: 1.25rem;
  font-family: "InterExtraBold", sans-serif;
}
@media (max-width: 991px) {
  .header__contact {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: end;
  gap: 50px;
}
@media (max-width: 991px) {
  .header__nav {
    gap: 20px;
  }
}
.header__menu {
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}
.header__menu-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  font-family: "InterRegular", sans-serif;
}
@media (max-width: 991px) {
  .header__menu-list {
    display: none;
  }
}
.header__menu-list .menu-item {
  position: relative;
}
@media (max-width: 991px) {
  .header__menu-list .menu-item {
    width: 80%;
  }
}
.header__menu-list .menu-item a {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  padding: 0;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  font-family: "InterRegular", sans-serif;
  transition: color 0.3s ease;
  word-break: break-word;
}
@media (max-width: 991px) {
  .header__menu-list .menu-item a {
    color: #ffffff;
  }
}
.header__menu-list .menu-item a::after {
  content: "";
  width: 41px;
  height: 3px;
  background: #000000;
  position: absolute;
  bottom: -7px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .header__menu-list .menu-item a::after {
    background: #ffffff;
  }
}
.header__menu-list .menu-item a:hover {
  color: #000000;
}
@media (max-width: 991px) {
  .header__menu-list .menu-item a:hover {
    color: #ffffff;
  }
}
.header__menu-list .menu-item a:hover::after {
  transform: scaleX(1);
}
.header__menu-list .current_page_item a {
  color: #000000;
  position: relative;
}
@media (max-width: 991px) {
  .header__menu-list .current_page_item a {
    color: #ffffff;
  }
}
.header__menu-list .current_page_item a::after {
  content: "";
  width: 41px;
  height: 3px;
  background: #000000;
  position: absolute;
  bottom: -7px;
  transform: scaleX(1);
}
@media (max-width: 991px) {
  .header__menu-list .current_page_item a::after {
    background: #ffffff;
  }
}
.header__btn {
  padding: 0 10px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 30px;
  color: #fff;
  background-color: #000000;
  border: none;
  margin: 0 auto;
  cursor: pointer;
}
.header__btn:hover {
  background-color: #252525;
}
@media (max-width: 991px) {
  .header__btn--open {
    display: flex !important;
    position: relative;
  }
}
.header__btn--open svg path {
  color: #ffffff;
}
.header__btn--close {
  display: none;
}
.header__btn--close svg path {
  color: #ffffff;
}
.header__cart {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header__cart .point {
  min-width: 20px;
  min-height: 20px;
  border-radius: 100%;
  background: #000000;
  position: absolute;
  left: 16px;
  top: 1px;
  color: #ffffff;
  padding: 4px 0;
  line-height: 0.6875rem;
  text-align: center;
  font-size: 0.6875rem;
}

.header__burger span {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  position: relative;
  transition: 200ms;
  display: flex;
}
.header__burger span::before {
  content: "";
  position: absolute;
  top: -6px;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: 200ms;
  left: 0;
}
.header__burger span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  left: 0;
}

@media (max-width: 991px) {
  .header__menu-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: #000000;
    z-index: 2000;
    padding: 100px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    justify-content: flex-start;
    gap: 25px;
    align-items: flex-start;
  }
  .header__btn--close {
    display: none;
    z-index: 9999;
    position: relative;
  }
  .show-mobile-menu {
    overflow: hidden;
    height: 100vh;
  }
  .show-mobile-menu .header__btn--close {
    display: flex !important;
  }
  .show-mobile-menu .header__btn--open {
    display: none !important;
  }
  .show-mobile-menu .header__menu-list {
    transform: translateX(0);
    opacity: 1;
  }
}
.top-bar__lang {
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
}

.top-bar__lang-first {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
}

.top-bar__lang-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
  transition: transform 0.2s #000000;
}

.top-bar__lang-inner {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 100%;
  z-index: 10;
}

.top-bar__lang-inner.is-active {
  display: block;
}

.top-bar__lang-link {
  display: block;
  padding: 8px 12px;
  color: #000000;
  text-decoration: none;
}

.top-bar__lang-inner.is-active + .top-bar__lang-arrow,
.top-bar__lang-first.active .top-bar__lang-arrow {
  transform: rotate(-135deg);
}

.interested {
  padding: 120px 0 160px;
}
@media (max-width: 991px) {
  .interested {
    padding: 80px 0;
  }
}
.interested__content {
  display: flex;
  gap: 50px;
}
@media (max-width: 991px) {
  .interested__content {
    flex-direction: column;
    gap: 20px;
  }
}
.interested__content > div {
  flex: 1;
}
.interested__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .interested__text {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.interested__text .title p {
  font-size: 6rem;
  line-height: 5.625rem;
  font-family: "InterExtraBold", sans-serif;
  letter-spacing: -6%;
  margin: 0;
  text-transform: uppercase;
  width: 85%;
  gap: 40px;
  color: #1E1E1E;
}
@media (max-width: 991px) {
  .interested__text .title p {
    width: 100%;
    font-size: 2.375rem;
    line-height: 2.8125rem;
  }
}
.interested__text .text li {
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin: 0;
  width: 50%;
}
@media (max-width: 991px) {
  .interested__text .text li {
    width: 100%;
  }
}
.interested__text .buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .interested__text .buttons {
    flex-direction: column;
  }
}
.interested__text .buttons p {
  margin-bottom: 0;
}

.footer {
  background: #ffffff;
  padding: 80px 0 30px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.footer__content {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__content .box {
  display: flex;
  gap: 70px;
}
@media (max-width: 767px) {
  .footer__content .box {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__content .box > div {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.6875rem;
  letter-spacing: -2%;
}
.footer__content .box > div a {
  font-family: "InterExtraBold", sans-serif;
}
.footer__content .social-media {
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer__content .social-media {
    flex-direction: column;
  }
}
.footer__content .social-media a {
  font-size: 1rem;
  color: #000000;
  font-family: "InterExtraBold", sans-serif;
  height: max-content;
  position: relative;
}
.footer__content .social-media a:hover {
  color: #656565;
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.6875rem;
  letter-spacing: -2%;
}
@media (max-width: 767px) {
  .footer__copyright {
    flex-direction: column;
  }
}
.footer__copyright p {
  margin-bottom: 0;
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #252525;
  z-index: 9999;
  display: none;
  justify-content: center;
  color: #fff;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.intro.active {
  display: flex;
}
.intro .container {
  width: 100%;
}
.intro__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .intro__header {
    margin-bottom: 50px;
  }
}
.intro__header .top-bar__lang-first {
  color: #ffffff;
}
.intro__header .top-bar__lang-arrow {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transition: transform 0.2s #ffffff;
}
.intro__header .top-bar__lang-inner {
  background: #000000;
}
.intro__header .top-bar__lang-link {
  color: #ffffff;
}
.intro__content .header {
  width: 80%;
}
@media (max-width: 991px) {
  .intro__content .header {
    width: 100%;
  }
}
.intro__content .header .title p {
  font-size: 3.75rem;
  line-height: 4rem;
  letter-spacing: -6%;
  font-family: "InterExtraBold", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .intro__content .header .title p {
    font-size: 2.5rem;
    line-height: 2.75rem;
    letter-spacing: -2%;
  }
}
.intro__content .header .text {
  font-size: 3rem;
  line-height: 3.1875rem;
  letter-spacing: -6%;
  font-family: "InterExtraBold", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .intro__content .header .text {
    font-size: 1.75rem;
    line-height: 1.9375rem;
    letter-spacing: -2%;
  }
}
.intro__content .buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .intro__content .buttons {
    flex-direction: column;
  }
}

.home-top__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .home-top__header {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.home-top__header .title {
  width: 60%;
  margin: 0;
}
@media (max-width: 767px) {
  .home-top__header .title {
    width: 100%;
  }
}
.home-top__img .img {
  width: 100%;
}

.home-about {
  padding: 120px 0 150px;
}
@media (max-width: 767px) {
  .home-about {
    padding: 80px 0;
  }
}
.home-about__content {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .home-about__content {
    flex-direction: column;
    gap: 20px;
  }
}
.home-about__content > div {
  flex: 1;
}
.home-about__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .home-about__text {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.home-about__text .title {
  font-size: 3rem;
  line-height: 3.4375rem;
  font-family: "InterExtraBold", sans-serif;
  letter-spacing: -2%;
  margin: 0;
  text-transform: uppercase;
  width: 85%;
  gap: 40px;
}
@media (max-width: 767px) {
  .home-about__text .title {
    width: 100%;
    font-size: 2.375rem;
    line-height: 2.8125rem;
  }
}
.home-about__text .text {
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin: 0;
}
.home-about__img {
  display: flex;
  justify-content: center;
}

.offerts {
  padding: 160px 100px;
  background: #252525;
}
@media (max-width: 991px) {
  .offerts {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .offerts {
    padding: 80px 20px;
  }
}
.offerts__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.offerts__content .title {
  font-size: 3rem;
  line-height: 3.4375rem;
  font-family: "InterExtraBold", sans-serif;
  letter-spacing: -2%;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .offerts__content .title {
    font-size: 2.375rem;
    line-height: 2.8125rem;
  }
}
.offerts__item {
  display: flex;
  gap: 21px;
}
@media (max-width: 767px) {
  .offerts__item {
    flex-direction: column;
    gap: 50px;
  }
}
.offerts__item > div {
  flex: 1;
}
.offerts__item .item:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s ease-out;
}
.offerts__item .item:hover .title::after {
  left: 8px;
  transition: all 0.3s ease-out;
}
.offerts__item .img {
  height: 423px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .offerts__item .img {
    height: auto;
  }
}
.offerts__item .img img {
  object-fit: cover;
  height: 423px;
  transform: scale(1);
  transition: all 0.3s ease-out;
  width: 100%;
}
@media (max-width: 991px) {
  .offerts__item .img img {
    height: auto;
  }
}
.offerts__item .title {
  font-size: 1.875rem;
  line-height: 2.3125rem;
  font-family: "InterExtraBold", sans-serif;
  letter-spacing: -2%;
  color: #ffffff;
  margin: 20px 0 0;
  display: flex;
  gap: 10px;
  align-items: end;
  text-transform: uppercase;
}
.offerts__item .title::after {
  content: "";
  background: url("../img/icon/icon-btn.svg") no-repeat;
  width: 32px;
  height: 32px;
  position: relative;
  display: block;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}

.offer-about {
  padding: 0 0 20px;
}
.offer-about__content {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.offer-about__header .title {
  font-size: 4rem;
  line-height: 4.25rem;
  font-family: "InterExtraBold", sans-serif;
  letter-spacing: -5%;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .offer-about__header .title {
    font-size: 2.25rem;
    line-height: 2.75rem;
    word-break: break-word;
  }
}
.offer-about__text {
  display: flex;
  gap: 30px;
  width: 93%;
}
@media (max-width: 767px) {
  .offer-about__text {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
  }
}
.offer-about__text .text p {
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin: 0;
}
@media (max-width: 767px) {
  .offer-about__text .text p {
    font-size: 1.125rem;
    line-height: 2.125rem;
  }
}
.offer-about__text .img {
  width: 360px;
  min-width: 360px;
  max-width: 360px;
}

.offer-single {
  padding: 136px 0;
  background: #ffffff;
}
@media (max-width: 767px) {
  .offer-single {
    padding: 80px 0;
  }
}
.offer-single.gb-gray {
  background: #F2F2F2;
}
.offer-single__content {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
@media (max-width: 767px) {
  .offer-single__content {
    gap: 25px;
  }
}
.offer-single__header {
  width: 60%;
}
@media (max-width: 767px) {
  .offer-single__header {
    width: 100%;
  }
}
.offer-single__header .title {
  font-size: 6rem;
  line-height: 5.125rem;
  font-family: "InterExtraBold", sans-serif;
  letter-spacing: -7%;
  margin: 0;
  color: #1E1E1E;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .offer-single__header .title {
    font-size: 2.25rem;
    line-height: 2.75rem;
    word-break: break-word;
  }
}
.offer-single__text {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .offer-single__text {
    flex-direction: column;
    gap: 20px;
  }
}
.offer-single__text .text {
  width: 33%;
}
@media (max-width: 767px) {
  .offer-single__text .text {
    width: 100%;
  }
}
.offer-single__text .text p {
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .offer-single__text .text p {
    font-size: 1.125rem;
    line-height: 2.125rem;
  }
}
.offer-single__text .img {
  width: 67%;
}
@media (max-width: 767px) {
  .offer-single__text .img {
    width: 100%;
  }
}
.offer-single__text.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .offer-single__text.reverse {
    flex-direction: column;
  }
}
.offer-single__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .offer-single__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 100px;
  }
}
.offer-single__box .img {
  height: 426px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .offer-single__box .img {
    height: auto;
  }
}
.offer-single__box .img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.offer-single__box .title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -6%;
  font-family: "InterExtraBold", sans-serif;
  color: #1E1E1E;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .offer-single__box .title {
    font-size: 1.875rem;
    line-height: 2.125rem;
  }
}
.offer-single__box .text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}

.more.active .text {
  display: block;
}
.more.active .btn {
  color: transparent;
  min-width: 68px;
  max-width: 68px;
  font-size: 0;
}
.more.active .btn::after {
  transform: rotate(180deg);
}
.more .text-more {
  display: none;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}

.gallery {
  padding: 50px 0 0;
}
.gallery__content {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
.gallery__content .text {
  width: 60%;
}
@media (max-width: 767px) {
  .gallery__content .text {
    width: 100%;
  }
}
.gallery__content .text p {
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin: 0;
}
@media (max-width: 767px) {
  .gallery__content .text p {
    font-size: 1.125rem;
    line-height: 2.125rem;
  }
}
.gallery__content .image {
  width: 100%;
}
.gallery__item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .gallery__item {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact {
  padding: 0;
}/*# sourceMappingURL=main.css.map */