:root {
  --secondary-color: #164dcc;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.white-block {
  position: absolute;
  height: 40px;
  width: 60%;
  background-color: #fff;
}
.white-block-left {
  bottom: 0;
  left: -50px;
  transform: skew(45deg);
}
.white-block-right {
  top: 0;
  right: -50px;
  transform: skew(45deg);
}

.btn-special-animation {
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
  overflow: hidden;
}
.btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.section-heading {
  position: relative;
  margin-bottom: 1em;
  font-size: 2.6rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #1755e7;
  letter-spacing: 2px;
}

.section-padding {
  padding: 6em 2em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Trobus";
  src: url(../trobus/Trobus-Expanded.ttf);
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
}

.section-heading {
  font-family: "Trobus", "Roboto", sans-serif;
  cursor: default;
}

.section-description {
  font-size: 2rem;
  color: rgba(16, 16, 16, 0.6);
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 2em;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after,
.burger-btn:hover .burger-btn__bars::before {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #fff;
  transition: width 0.3s, background-color 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}

.nav {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(45deg, rgb(20, 105, 241), rgb(42, 10, 184));
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.nav--active {
  transform: translateX(0);
}
.nav__item {
  position: relative;
  display: block;
  color: #fff;
  margin: 0.5em;
  padding: 0.5em 2em;
  font-size: 3.5rem;
  text-decoration: none;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #fff;
  content: "";
  transform: scaleY(0);
  transition: transform 0.3s;
}
.nav__item:hover::before {
  transform: scaleY(1);
}

@keyframes navItemsAnimation {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: #2e2e2e;
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  height: 65vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(45deg, rgba(20, 105, 241, 0.7), rgba(42, 10, 184, 0.7)), url("../img/background_640.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-attachment: scroll;
}
.header__heading {
  font-size: 4.8rem;
  font-weight: 300;
}
.header__text {
  font-size: 3.5rem;
}
.header__buttons {
  margin-top: 2em;
  display: flex;
  flex-direction: row;
  gap: 3em;
}
.header__btn {
  background-color: #fff;
  margin-top: 2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  font-weight: 800;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #2e2e2e;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.header__btn::before {
  background-color: #eee;
}
.header__btn-transparent {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.header__btn-transparent::before {
  background-color: rgba(16, 16, 16, 0.6);
}

.aboutus__icons {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 3rem;
}
.aboutus__box {
  margin-top: 5rem;
  text-align: center;
}
.aboutus__box--item {
  font-size: 3rem;
  margin-top: 3rem;
  font-weight: 500;
}
.aboutus__text {
  font-size: 2.4rem;
  text-align: center;
}
.aboutus i {
  font-size: 15rem;
  color: #1755e7;
  transition: transform 0.5s;
}
.aboutus i:hover {
  transform: scale(1.05);
}

.offer {
  position: relative;
  background-image: linear-gradient(45deg, rgba(20, 105, 241, 0.7), rgba(42, 10, 184, 0.7)), url("../img/hero-img_640.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.offer .section-heading {
  color: #fff;
}
.offer__option {
  margin: 1em 0;
  box-shadow: 5px 5px 10px rgba(46, 46, 46, 0.1803921569);
  background-color: #fff;
  overflow: hidden;
  border-radius: 32px;
}
.offer__option-img {
  width: 100%;
  border-radius: 0 0 32px 32px;
}
.offer__option-info {
  padding: 2em;
  background-color: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer__option-heading {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
  font-weight: 400;
}
.offer__option-text {
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  color: #2e2e2e;
}
.offer__option div {
  display: flex;
}
.offer__option-btn {
  margin-top: 1em;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.2rem;
  padding: 1.6rem 3.2rem;
  color: #fff;
  background-color: #1755e7;
  border: none;
  border-radius: 27px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.offer__option-btn::before {
  background-color: #164dcc;
}

.carousel-heading {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2e2e2e;
}

.carousel__wrapper {
  position: relative;
  margin-bottom: 3rem;
}
.carousel__wrapper .carousel__navigation i {
  position: absolute;
  font-size: 2.5rem;
  color: #2e2e2e;
  cursor: pointer;
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.carousel__wrapper .carousel__navigation .fa-chevron-left {
  left: 0;
}
.carousel__wrapper .carousel__navigation .fa-chevron-right {
  right: 0;
}
.carousel__wrapper .carousel {
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.carousel__wrapper .carousel .carousel__track {
  display: flex;
}
.carousel__wrapper .carousel .carousel__track-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.carousel__wrapper .carousel .carousel__track-slide img {
  width: 90%;
  margin: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.carousel__wrapper .carousel .carousel__track-slide--id {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 3rem;
  background-color: #164dcc;
  border-radius: 8px;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

.gallery__wrapper, .carousel__wrapper {
  max-width: 1200px;
}

.gallery__concrete, .gallery__panel, .gallery__shed {
  text-align: center;
}
.gallery__concrete--images, .gallery__panel--images, .gallery__shed--images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery__button {
  margin: 1.8rem 0px 4rem 0px;
  padding: 1.6rem 3.2rem;
  border-radius: 8px;
  color: #fff;
  background-color: #1755e7;
  cursor: pointer;
  border: none;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.gallery__button::before {
  background-color: #164dcc;
}
.gallery__button:disabled {
  opacity: 0.5;
  cursor: auto;
}

.gallery-item {
  max-width: 300px;
  height: 200px;
  margin: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
  border-radius: 8px;
  box-shadow: gray 5px 5px 8px;
}
.gallery-item:hover {
  transform: scale(1.1);
}

.gallery-full-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
  overflow: hidden;
}

.gallery-full-screen img {
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

.fa-xmark, #prevImage, #nextImage {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  font-size: 2.5rem;
  color: black;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 101;
  text-shadow: 0 0 8px white;
  padding: 50px;
}

.fa-xmark {
  top: 30px;
  right: 30px;
}

#prevImage {
  left: 20px;
  transform: translate(-50%, -50%);
}

#nextImage {
  right: 20px;
}

.contact {
  position: relative;
  background-color: #eee;
  overflow: hidden;
}
.contact .white-block-left {
  background-color: #2e2e2e;
}
.contact .reviews__boxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .reviews__box {
  position: relative;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 10px rgba(46, 46, 46, 0.1803921569);
  transition: transform 0.3s;
}
.contact .reviews__box-info {
  text-align: center;
  margin-top: 30px;
}
.contact .reviews__box-info p {
  padding: 1.4rem 0;
  font-size: 2.2rem;
  white-space: nowrap;
}
.contact .reviews__box-info p a {
  text-decoration: none;
  color: #1755e7;
}
.contact .reviews__box-img {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact .reviews__box-img img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.footer {
  color: #fff;
  background-color: #2e2e2e;
}
.footer .wrapper {
  padding: 6em 2em 2em;
}
.footer__bottom-text {
  padding: 2em;
  text-align: center;
}

@media (min-width: 576px) {
  .section-heading {
    font-size: 3rem;
  }
  .offer__option {
    display: flex;
    margin: 2em 0;
  }
  .offer__option-img {
    width: 50%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0 32px 32px 0;
  }
  .offer__option-heading {
    margin-bottom: 0.5em;
    font-size: 3.6rem;
  }
  #prevImage {
    left: 60px;
  }
  #nextImage {
    right: 60px;
  }
  .fa-xmark {
    right: 60px;
    top: 60px;
  }
  .carousel__wrapper .carousel .carousel__track-slide--id {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .white-block {
    height: 50px;
    width: 45%;
  }
  .header {
    background-image: linear-gradient(45deg, rgba(20, 105, 241, 0.7), rgba(42, 10, 184, 0.7)), url("../img/background_1280.jpg");
  }
  .header__heading {
    font-size: 6.6rem;
  }
  .header__text {
    font-size: 4.2rem;
  }
  .header__btn {
    font-size: 1.6rem;
  }
  .aboutus__icons {
    display: flex;
    flex-direction: row;
  }
  .offer {
    background-image: linear-gradient(45deg, rgba(20, 105, 241, 0.7), rgba(42, 10, 184, 0.7)), url("../img/hero-img_1280.jpg");
  }
  .contact .reviews__boxes {
    flex-direction: row;
  }
  #prevImage {
    left: 100px;
  }
  #nextImage {
    right: 100px;
  }
  .fa-xmark {
    right: 100px;
    top: 100px;
  }
  .fa-xmark, #prevImage, #nextImage {
    font-size: 3.5rem;
  }
  .carousel__wrapper .carousel .carousel__track-slide--id {
    font-size: 2rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .header {
    background-image: linear-gradient(45deg, rgba(20, 105, 241, 0.7), rgba(42, 10, 184, 0.7)), url("../img/background_1920.jpg");
  }
  .header__heading {
    font-size: 10rem;
  }
  .nav__item {
    font-size: 4.8rem;
  }
  .offer__option-img {
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 350px;
  }
  .offer__option-text {
    font-size: 1.6rem;
  }
  .offer__option-info {
    width: 50%;
  }
}/*# sourceMappingURL=main.css.map */