@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap");
body {
  font-family: "Inter", sans-serif;
  background-color: #FFEDD9;
}

body.disabled {
  overflow: hidden;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

.main-title {
  font-weight: 700;
  font-size: 2.125rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 575px) {
  .main-title {
    font-size: 1.875rem;
  }
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#popup-box {
  background: #fff;
  width: 600px;
  height: 240px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  position: relative;
}
#popup-box #closeButton {
  position: absolute;
  right: 10px;
  top: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}
#popup-box .box-right {
  flex: 1;
  padding: 35px 25px;
  background-color: #D88B38;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: end;
}
#popup-box .box-right a {
  color: #fff;
  background-color: #32373A;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
#popup-box .box-right a img {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}
#popup-box .box-left {
  flex: 1;
  padding: 35px 25px;
  background-color: #FFEDD9;
}
#popup-box .box-left h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 700;
}
#popup-box .box-left h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
}
#popup-box .box-left p {
  font-size: 1rem;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  #popup-box {
    flex-direction: column;
    margin: 0 15px;
    height: auto;
    width: 100%;
  }
  #popup-box .box-left p {
    text-align: left;
  }
}

.mobile-menu {
  margin-top: 0;
  background: #D88B38;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  position: fixed;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: 110;
}
.mobile-menu .nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.mobile-menu .nav-list__item a {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.mobile-menu .nav-list__item a:hover {
  color: #32373A;
}
.mobile-menu .nav-list__item a.active {
  color: #32373A;
}
.mobile-menu .contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
}
.mobile-menu .contact-list__item {
  color: #fff;
  text-decoration: none;
}
.mobile-menu .contact-list__item a {
  color: #fff;
  text-decoration: none;
}
.mobile-menu .contact-list__btn {
  margin-top: 10px;
}
.mobile-menu .contact-list__btn a {
  background-color: #fff;
  color: #D88B38;
  padding: 8px 15px;
  font-weight: 700;
}

.mobile-menu.active {
  transition: 0.3s ease;
  opacity: 1;
  pointer-events: all;
}

.header {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #D88B38;
  color: #fff;
}
.header__logo {
  width: 250px;
  z-index: 999;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header .nav-list, .header .contact-list {
  display: flex;
  gap: 12px;
}
.header .contact-list {
  font-size: 0.875rem;
}
.header .contact-list__item {
  color: #fff;
  text-decoration: none;
}
.header .contact-list__item a {
  color: #fff;
  text-decoration: none;
}
.header .contact-list__btn a {
  background-color: #fff;
  color: #D88B38;
  padding: 8px 15px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.header .contact-list__btn a:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.header .nav-list {
  margin-top: 10px;
}
.header .nav-list__item a {
  padding: 10px 15px;
  transition: background-color 0.3s ease;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.header .nav-list__item a:hover {
  background-color: #32373A;
}
.header .nav-list__item a.active {
  background-color: #32373A;
}
.header .hamburger {
  width: 30px;
  height: 22.5px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 9999;
}
.header .hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header .hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1.5px;
  left: 4px;
}
.header .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.header .hamburger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.header .hamburger span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.header .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19.5px;
  left: 4px;
}
.header .hamburger span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.header .nav-toggler {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .header .hamburger, .header .nav-toggler {
    display: block;
  }
}

.hero {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, minmax(80px, 1fr));
}
.hero__discount {
  font-size: 6.25rem;
  font-weight: 700;
  font-family: "Atkinson Hyperlegible", sans-serif;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.hero__title {
  font-weight: 700;
  font-size: 2.25rem;
}
.hero__title--small {
  font-size: 1.4rem;
  line-height: 1.1;
}
.hero__text {
  margin: 14px 0 0;
  line-height: 1.5;
  font-size: 1rem;
}
.hero__item {
  padding: 25px;
  position: relative;
}
.hero__item-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
}
.hero__item-arrow--right {
  bottom: 25px;
  right: 25px;
}
.hero__item-arrow--left {
  transform: rotate(90deg);
  bottom: 25px;
  left: 25px;
}
.hero__item--one {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #32373A;
  color: #fff;
}
.hero__item--two {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 4;
  padding: 0;
  color: #000000;
  background-color: #EBEBEB;
  background-image: linear-gradient(270deg, rgb(235, 235, 235) 0%, rgba(235, 235, 235, 0.85) 35%, rgba(235, 235, 235, 0) 60%), image-set(url("../assets/hero-two.png") 1x, url("../assets/hero-two2.png") 2x);
  background-position: left center, left center;
  background-size: cover, contain;
  background-repeat: no-repeat, no-repeat;
}
.hero__item--two .hero__content {
  position: absolute;
  left: 50%;
  top: 20px;
}
.hero__item--three {
  grid-column: span 3/span 3;
  grid-row: span 5/span 5;
  grid-column-start: 3;
  grid-row-start: 1;
  background-color: #fff;
  padding: 0;
  position: relative;
  height: 500px;
}
.hero__item--three iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__item--three #heroCover {
  position: absolute;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__item--three .play-btn {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.hero__item--four {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 6;
  grid-row-start: 1;
  background-color: #EBEBEB;
  color: #000000;
  background-image: image-set(url("../assets/hero-four.png") 1x, url("../assets/hero-four2.png") 2x);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__item--five {
  grid-column: span 2/span 2;
  grid-row: span 3/span 3;
  grid-column-start: 6;
  grid-row-start: 3;
  padding: 0;
  color: #fff;
}
.hero .item-five__bg {
  width: 100%;
  height: 100%;
  background-color: #EBC192;
  padding: 0;
}
.hero .item-five__bg img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero .item-five__content {
  padding: 25px;
  width: 100%;
  height: 100%;
  background-color: #D88B38;
  clip-path: polygon(100% 0, 100% 20%, 20% 100%, 0 100%, 0 0);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .hero {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .hero__item {
    grid-column: auto;
    grid-row: auto;
    grid-column-start: auto;
    grid-row-start: auto;
    min-height: 220px;
  }
  .hero__item--three {
    grid-column: 1/-1;
    min-height: 350px;
  }
  .hero__discount {
    font-size: 4rem;
  }
  .hero__title {
    font-size: 1.8rem;
  }
  .hero__title--small {
    font-size: 1.4rem;
  }
  .hero__text {
    margin: 14px 0 0;
    line-height: 1.5;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .hero {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
  .hero__item {
    grid-column: auto;
    grid-row: auto;
    grid-column-start: auto;
    grid-row-start: auto;
    min-height: 220px;
  }
  .hero__item--three {
    grid-column: 1/-1;
    height: 220px;
  }
  .hero__item--three #heroCover {
    height: 100%;
    width: 100%;
  }
}

.about-us {
  margin-top: 40px;
  background-color: #fff;
  padding: 35px 25px;
}
.about-us__quote {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: #D88B38;
  font-weight: 600;
}
.about-us__quote h2 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 575px) {
  .about-us__quote h2 {
    font-size: 1.2rem;
  }
}
.about-us__quote img {
  width: 40px;
  border-right: 2px solid #D88B38;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.about-us__icons {
  margin-top: 25px;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.about-us .icon__item {
  background-color: #fff9f3;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}
.about-us .icon__item--image {
  width: 100px;
  height: 100px;
}
.about-us .icon__item--title {
  color: #D88B38;
  font-weight: 700;
  line-break: normal;
}
@media only screen and (max-width: 575px) {
  .about-us__icons {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-us__icons .icon__item:last-child {
    grid-column: 1/-1;
  }
  .about-us .icon__item {
    height: 150px;
  }
  .about-us .icon__item--image {
    width: 60px;
    height: 60px;
  }
}
.about-us__info {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us__info strong {
  font-weight: 700;
}
.about-us__info--left {
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 2px solid #000;
  text-align: right;
}
.about-us__info--right {
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-us__info--btn {
  background-color: #32373A;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}
.about-us__info--btn:hover {
  background-color: rgb(73.6111111111, 80.9722222222, 85.3888888889);
}
.about-us__info--btn img {
  vertical-align: middle;
}
.about-us__info--btn:nth-child(2) {
  font-size: 1.625rem;
}
@media only screen and (max-width: 991px) {
  .about-us__info {
    flex-direction: column;
  }
  .about-us__info--left {
    padding-right: 0;
    padding-bottom: 15px;
    border-right: none;
    border-bottom: 2px solid #000;
    text-align: center;
  }
  .about-us__info--right {
    padding-left: 0;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .about-us__info--right {
    flex-direction: column;
  }
}
.about-us__contact {
  margin-top: 25px;
  text-align: center;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.about-us__contact img {
  vertical-align: middle;
}
.about-us__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
}
.about-us__contact a:nth-child(2) span {
  color: #D88B38;
  font-weight: 500;
  border-bottom: 2px solid #D88B38;
}
@media only screen and (max-width: 440px) {
  .about-us__contact {
    flex-direction: column;
  }
}

.gallery {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
.gallery__grid {
  margin-top: 25px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery__item {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 575px) {
  .gallery__grid {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }
}

.posts {
  margin-top: 40px;
  padding: 35px 25px;
  background-color: #fff;
}
.posts__grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
.posts__item--image {
  width: 100%;
}
.posts__item--title {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 10px 0;
  color: #000000;
}
.posts__item--desc {
  font-weight: 500;
  font-size: 0.9rem;
  color: #888888;
}

.branches {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 40px;
}
.branches__wrapper {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.branches__item {
  border-left: 2px solid #D88B38;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.branches__item--title {
  font-weight: 700;
  font-size: 1.3rem;
}
.branches__item--location {
  font-weight: 500;
  font-size: 0.9rem;
  color: #888888;
}
.branches__item--phone {
  font-weight: 500;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
  color: #000;
}
.branches__item--email {
  font-weight: 500;
  font-size: 1rem;
  color: #D88B38;
  text-decoration: underline;
  display: block;
}

.footer {
  background-color: #fff;
  font-size: 0.875rem;
  color: #888888;
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__copyright, .footer__socials, .footer__website {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 767px) {
  .footer .container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 575px) {
  .footer__copyright {
    flex-direction: column;
  }
}

.map-wrap {
  position: relative;
}

#map {
  width: 100%;
  height: 420px;
}

.map-panel {
  position: absolute;
  right: 60px;
  top: 60px;
  width: 360px;
  background-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media only screen and (max-width: 440px) {
  .map-panel {
    width: 300px;
    right: 20px;
  }
}

.map-panel.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.map-panel__close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.map-card {
  width: 360px;
  background: #fff;
  padding: 28px 28px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 440px) {
  .map-card {
    width: 300px;
  }
}
.map-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.map-card__block {
  margin: 14px 0;
  line-height: 1.5;
}
.map-card__muted {
  color: #888888;
  font-size: 13px;
}
.map-card__muted strong {
  font-weight: 700;
}
.map-card__phone {
  color: #000;
}
.map-card__email {
  color: #D88B38;
  text-decoration: underline;
}
.map-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background-color: #32373A;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  font-weight: 600;
}
.map-card__arrow img {
  vertical-align: middle;
}

/*# sourceMappingURL=main.css.map */
