.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 3px 50px rgba(0, 0, 0, 0.05);
  z-index: 3;
}
.header__top {
  background-color: #222222;
  padding: 5px 0;
}
.header__top-controls {
  display: flex;
  justify-content: flex-end;
  color: #fff;
  padding: 0;
}
.header__inner {
  background-color: #fff;
  padding: 12px 0;
}
.header__row {
  align-items: center;
}
.header__controls {
  position: fixed;
  top: 104px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 350ms ease-in-out;
}
.header__controls.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 992px) {
  .header__controls {
    position: static;
    display: flex;
    flex-direction: row;
    flex: 1 1;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
    visibility: visible;
    opacity: 1;
  }
}
.header__controls .navbar-nav {
  flex-direction: column;
  flex: 1 1 auto;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .header__controls .navbar-nav {
    flex-direction: row;
  }
}
.header__cta-col {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
  margin: 25px 0 50px;
}
@media screen and (min-width: 992px) {
  .header__cta-col {
    flex-direction: row;
    justify-items: center;
    margin: 0;
  }
}

.logo {
  flex: 1 0 auto;
}
.logo-col {
  width: auto;
  max-width: 120px;
}

.contacts__l {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0 15px;
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .contacts__l {
    font-size: 1rem;
    text-align: right;
  }
}
.contacts__l-i {
  font-size: 0.85rem;
}
.contacts__l-i + .contacts__l-i {
  margin-left: 1rem;
}
.contacts__l-i a {
  color: currentColor;
}
.contacts__l-i a:hover {
  color: #ff0001;
}

.cta {
  flex: 1 0 auto;
  margin-top: 25px;
}
@media screen and (min-width: 992px) {
  .cta {
    margin-top: 0;
    margin-left: 25px;
  }
}

.nav-link {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .nav-link {
    font-size: 1rem;
  }
}

.navbar-expand {
  align-items: flex-start;
  flex: 1;
  height: calc(100% - 109px);
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .navbar-expand {
    flex-direction: row;
    flex: 0;
    margin-left: auto;
  }
}

.nav-item {
  display: block;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .nav-item {
    width: auto;
  }
}

.mobile-nav-trigger {
  display: flex;
  flex: 0;
  align-items: center;
  margin-left: auto;
  width: 58px;
  height: 58px;
}
@media screen and (min-width: 992px) {
  .mobile-nav-trigger {
    display: none;
  }
}
.mobile-nav-trigger__btn {
  padding: 5px !important;
  font-size: 32px !important;
}
.mobile-nav-trigger__btn.collapsed .fa-close {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.mobile-nav-trigger__btn:not(.collapsed) .fa-close {
  visibility: visible;
  opacity: 1;
  display: block;
}
.mobile-nav-trigger__btn:not(.collapsed) .fa-bars {
  visibility: hidden;
  opacity: 0;
  display: none;
}

.btn {
  font-size: 14px;
  padding: 13px 28px 11px;
  border-radius: 2px;
  border: none;
  transition: 150ms ease-in-out;
}
.btn-primary {
  background-color: #ff0001;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #5c636a !important;
}
.btn-secondary {
  background-color: #ff0001;
}

.nav-link {
  transition: 150ms ease-in-out;
}
.nav-link:hover, .nav-link:active, .nav-link:focus {
  color: #4ea4e6;
}

.section-title {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
}
.section-title__text h1, .section-title__text h2 {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -2px;
}
.section-title__text h1 {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .section-title__text h1 {
    font-size: 3.5rem;
  }
}

.service {
  height: auto;
  background-color: #fff;
  margin-bottom: 24px;
  padding: 3.2em 2em 1.2em;
  transition: box-shadow 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .service {
    height: calc(100% - 24px);
  }
}
.service:hover {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}
.service:hover .service__icon {
  color: #ff0001;
}
.service__icon {
  display: flex;
  flex: 0 0 auto;
  justify-self: center;
  max-width: 110px;
  margin: 0 auto 15px;
  color: #ff0001;
  transition: 150ms ease-in-out;
}
.service__title, .service__subtitle {
  text-align: center;
}
.service__title h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.gallery__item {
  padding: 0.1rem;
  margin: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .gallery__item {
    padding: 0.5rem;
  }
}
.gallery__item-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 150ms ease-in-out;
}
.gallery__item-img:hover {
  transform: scale(1.15);
}
.gallery.carousel .carousel-control-next, .gallery.carousel .carousel-control-prev {
  position: absolute;
  top: 50%;
  width: 5%;
  transform: translateY(-50%);
}
.gallery.carousel .carousel-control-next {
  right: -5%;
}
.gallery.carousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}
.gallery.carousel .carousel-control-prev {
  left: -5%;
}
.gallery.carousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e");
}

.lg-sub-html {
  display: none;
}

.carousel {
  margin: 50px 0;
}
.carousel-indicators {
  position: relative;
  margin: 1rem;
}
.carousel-indicators [data-bs-target] {
  background-color: #000000;
  opacity: 1;
}
.carousel-indicators .active {
  background-color: #ff0001;
}
.carousel .carousel-control-next, .carousel .carousel-control-prev {
  display: none;
  top: 1.25rem;
  transform: translateY(calc(-50% + 1.25rem));
}
@media screen and (min-width: 768px) {
  .carousel .carousel-control-next, .carousel .carousel-control-prev {
    display: block;
  }
}

.reviews__text {
  position: relative;
  padding-left: 15px;
  font-style: italic;
}
.reviews__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #ff0001;
}

.footer {
  padding: 90px 0 50px;
  background-color: #313131;
}
.footer-cta {
  color: #fff;
}
.footer-cta h3 {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .footer-cta h3 {
    font-size: 2.25rem;
    letter-spacing: -2px;
  }
}
.footer-cta a {
  color: currentColor;
}
.footer-cta a:hover, .footer-cta a:active, .footer-cta a:focus {
  color: #fff;
  background-color: #5c636a;
}

.copyright {
  margin-top: 50px;
  color: #dfdfe0;
  font-weight: 200;
}

.scroll-to-top {
  position: fixed;
  right: 10px;
  bottom: 50px;
  width: 55px;
  height: 55px;
  font-size: 1.25rem;
  color: #fff;
  background-color: #ff0001;
  box-shadow: none;
  outline: none;
  border: none;
  transition: 150ms ease-in-out;
}
.scroll-to-top:hover {
  color: #fff;
  background-color: #5c636a;
}

.tags {
  padding: 25px 15px 25px 0;
}
.tags__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tags__item {
  display: inline-flex;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  background: #f6b111;
  color: #fff;
  padding: 5px 15px;
  border-radius: 22px;
}

.materials-section {
  padding: 100px 0;
}

.grid__content {
  height: 100%;
  padding: 0 25px 25px;
  background-color: #fff;
}
.grid__item {
  margin: 25px 0;
}
.grid__item:hover .materials-grid__image img {
  transform: translate(-50%, -50%) scale(1.15);
}
.grid__image {
  position: relative;
  width: calc(100% + 50px);
  margin: 0 auto 25px;
  padding-top: 70%;
  overflow: hidden;
  left: -25px;
  right: -25px;
}
.grid__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 50%;
  transition: 150ms ease-in-out;
  transform: translate(-50%, -50%);
}

.contacts-section {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .contacts-section {
    padding: 100px 0;
  }
}

.appointment__wrap {
  border-radius: 8px;
  background: #fff;
}
.appointment__aside {
  position: relative;
  min-height: 520px;
  background: url("/assets/images/form-bg.webp") center/cover no-repeat;
}
.appointment__aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.appointment__aside-inner {
  position: relative;
  color: var(--text-on-dark);
}
.appointment__title {
  color: #fff;
  font-weight: 700;
}
.appointment__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.appointment__list-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
}
.appointment__ico {
  color: currentColor;
}
.appointment__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.appointment__link:hover {
  color: #fff;
  text-decoration: underline;
}
.appointment__call {
  color: #fff;
}
.appointment__call-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ff0001;
  color: currentColor;
  flex: 0 0 auto;
  font-size: 20px;
}
.appointment__call-phone {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
}
.appointment__call-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.appointment__form {
  background: #fff;
}
.appointment .form-control {
  border-radius: 0;
  border-color: #e6e6e6;
}
.appointment .form-control:focus {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: none;
}

.faq-section {
  padding: 100px 0;
  background: url("https://contentgrid.homedepot-static.com/hdus/en_US/DTCCOMNEW/Articles/tile-flooring-installation-section-2.jpg") no-repeat center center/cover;
}
.faq-section .section-title {
  margin-left: 0;
  padding-left: 0;
}

.features-section {
  padding: 50px 0;
}

.services-section {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .services-section {
    padding: 50px 0 100px;
  }
}
.services-section .section-title {
  padding: 0 0 25px;
}
.services-section__image {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .services-section__image {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .services-section__image {
    padding-right: 90px;
  }
}
.services-section .section-title__headig {
  text-align: center;
}
.services-section .col-lg-6:nth-of-type(1) {
  order: 2;
}
@media screen and (min-width: 768px) {
  .services-section .col-lg-6:nth-of-type(1) {
    order: 0;
  }
}
.services-section .col-lg-6:nth-of-type(2) {
  order: 1;
}
@media screen and (min-width: 768px) {
  .services-section .col-lg-6:nth-of-type(2) {
    order: 1;
  }
}
.services-carousel {
  margin: 0;
}

.services-pagination .pagination-item {
  cursor: pointer;
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.services-pagination .pagination-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #ff0001;
}

.services-pagination .pagination-item.active::before {
  background: #ff0001;
}

.services-pagination .pagination-item span {
  display: block;
}

.video-wrapper {
  position: relative;
  padding-top: 123.5%;
  overflow: hidden;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-section {
  padding: 50px 0;
}
.reviews-section .carousel-control-prev, .reviews-section .carousel-control-next {
  display: none;
}
@media screen and (min-width: 992px) {
  .reviews-section .carousel-control-prev, .reviews-section .carousel-control-next {
    display: block;
  }
}
.reviews-section .carousel-item .text-muted {
  min-height: 80px;
}
@media screen and (min-width: 992px) {
  .reviews-section .carousel-item .text-muted {
    min-height: 60px;
  }
}
.reviews-section .fa-quote-left {
  color: #4ea4e6;
}

.hero {
  position: relative;
  z-index: 1;
  color: #fff;
  justify-content: center;
}
.hero-section {
  position: relative;
  padding: 10vh 0;
  background: url("../images/tile-installation.webp") no-repeat center center/cover;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__col-cta {
  display: flex;
  margin: 15px 0 30px;
  justify-content: center;
}

.benefits-section {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .benefits-section {
    padding: 80px 0 100px;
  }
}
.benefits__item {
  height: auto;
  background-color: #fff;
  margin-bottom: 24px;
  padding: 3.2em 2em 1.2em;
  transition: box-shadow 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .benefits__item {
    flex-direction: row;
    align-items: center;
    padding: 1.2em 2em;
  }
}
@media screen and (min-width: 992px) {
  .benefits__item {
    height: 100%;
    flex-direction: column;
    padding: 3.2em 2em 1.2em;
  }
}
.benefits__item:hover {
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}
.benefits__item:hover .benefits__icon {
  color: #ff0001;
}
.benefits__icon {
  display: flex;
  flex: 0 0 auto;
  justify-self: center;
  max-width: 100px;
  margin: 0 auto 15px;
  color: #f6b111;
  transition: 150ms ease-in-out;
}
@media screen and (min-width: 768px) {
  .benefits__icon {
    margin: 0 15px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .benefits__icon {
    margin: 0 auto 15px;
  }
}

.about {
  display: flex;
  align-items: stretch;
}
.about-section {
  padding: 50px 0;
}
.about-section .section-title {
  margin-left: 0;
  padding-left: 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about-section .section-title {
    text-align: left !important;
  }
}
.about-section p {
  text-align: justify;
}
.about__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .about__col-img {
    padding-left: 90px;
  }
}
.about__content-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .about__content-cta {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}

.project-slider__item {
  aspect-ratio: 4/3;
}
.project-slider__indicators {
  position: absolute;
  bottom: 0;
}
.project-slider .carousel {
  padding-top: 5px;
  margin: 0 0 50px;
}
.project-slider .carousel-control-next, .project-slider .carousel-control-prev {
  display: block;
  top: 50%;
}
.project-slider__description {
  padding: 0 15px 25px;
}
@media screen and (min-width: 1200px) {
  .project-slider__description {
    padding-top: 5px;
  }
}

.process {
  display: flex;
}
.process-section {
  padding-top: 85px;
  padding-bottom: 75px;
}
.process__nav {
  position: relative;
  width: 20%;
  margin-right: 50px;
}
@media screen and (max-width: 991px) {
  .process__nav {
    display: none;
  }
}
.process__content {
  width: 80%;
  font-weight: 500;
}
.process__content-heading {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.process__content-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  width: 80px;
  height: 80px;
  margin-right: 15px;
  color: #f6b111;
}
.process__content-step {
  padding: 20px 0;
}
.process__content-title {
  font-weight: 800;
}
@media screen and (max-width: 991px) {
  .process__content {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  .process__content {
    padding-right: 80px;
  }
}
.process__nav-items {
  position: sticky;
  top: 110px;
}
.process__nav-title {
  padding-left: 15px;
  border-left: 2px solid transparent;
  transition: all 150ms ease-out;
}
.process__nav-title.active {
  border-color: #0a7cff;
}
.process__nav-title, .process__nav-title {
  margin-top: 15px;
}

h3.process__nav-title a {
  display: block;
  padding: 10px;
  color: #222;
  font-size: 1.15rem;
}
h3.process__nav-title a.active, h3.process__nav-title a:hover, h3.process__nav-title a:active {
  color: #f6b111;
}
h3.process__nav-title.active a {
  color: #fff;
  background-color: #f6b111;
}

.cta-section {
  padding: 80px 0;
  background: url("/assets/images/call-to-action.jpg") no-repeat center center/cover;
}
.cta-section .section-title {
  color: #fff;
}
.cta-section__form {
  background-color: #fff;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
}
.cta-section__form-wrap {
  padding: 40px;
}
.cta-section__form-contacts {
  padding: 40px 25px;
}
.cta-section__form-contacts h3 {
  padding: 0 15px;
}
.cta-section__form-contacts .contacts__l {
  text-align: left;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .cta-section__form-contacts .contacts {
    display: block;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-display: auto;
  color: #222;
  background: #fff;
}

.container {
  width: min(1400px, 100% - 32px);
  margin-inline: auto;
}

.icon {
  width: 100%;
  height: 100%;
  color: currentColor;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  text-decoration: none;
  color: #4ea4e6;
  transition: 150ms ease-in-out;
}

.bg-secondary {
  background-color: #f8f8f8 !important;
}

main {
  flex-grow: 1;
  padding-top: 115px;
}
@media screen and (min-width: 992px) {
  main {
    padding-top: 100px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.accordion-button:not(.collapsed) {
  color: #ff0001;
  background-color: #f8f8f8;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed):hover, .accordion-button:not(.collapsed):active, .accordion-button:not(.collapsed):focus {
  outline: none;
  box-shadow: none;
}

.button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

h2, h3 {
  font-size: calc(1rem + 0.6vw);
}
@media screen and (min-width: 992px) {
  h2, h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
}
/*# sourceMappingURL=main.css.map */
