/* Variable */

:root {
  --color-white: #f8f9ff;
  --color-black: #272a2e;
  /* --color-black: #283D90; */
  --color-grey: #a2a6b5;
  --font-play: "Playfair Display", serif;
  --font-raleway: "Raleway", sans-serif;
}

::selection {
  background: var(--color-grey);
  color: var(--color-white);
}

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Raleway", sans-serif;
  color: var(--color-black);
  background: var(--color-white);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 25px;
  background: url(/assets/images/keyboard_arrow_down_black_24.svg);
  background-repeat: no-repeat;
  background-position: 95% 42%;
}

h1 {
  font-family: var(--font-play);
}

section i {
  color: var(--color-black) !important;
}
.color-black {
  color: var(--color-black);
}

.color-white {
  color: var(--color-white);
}

.btn-theme {
  margin: 0;
  color: var(--color-white) !important;
  box-shadow: none;
  border: 4px solid var(--color-black);
  background-color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  padding: 8px 18px;
}

.btn-theme:hover {
  box-shadow: none;
  color: var(--color-black) !important;
  background-color: var(--color-white) !important;
}

.btn-theme-outline {
  margin: 0;
  color: var(--color-black) !important;
  box-shadow: none;
  border: 4px solid var(--color-black);
  background-color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 18px;
}

.btn-theme-outline:hover {
  box-shadow: none;
  color: var(--color-white) !important;
  background-color: var(--color-black) !important;
}

.card {
  border-radius: 8px;
}

.card-img-top {
  border-radius: 8px 8px 0 0;
}

.modal-fluid {
  width: 90% !important;
  margin: 0 auto;
  margin-top: 14px;
}

.modal-fluid .contact {
  padding: 20px 0 !important;
}

.modal .modal-header {
  border: none !important;
  padding: 0rem 1rem;
}
.fa-bars {
  color: var(--color-black);
}
/* Banners */

.main-banner {
  height: 585px;
  background-repeat: no-repeat;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.services-banner {
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.4),
      rgba(39, 42, 46, 0.4)
    ),
    url("/assets/images/Fascia\ Moldng\ Soffit\ at\ Ductwork\ area.jpg");
  background-position: center;
}

.contact-banner {
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.4),
      rgba(39, 42, 46, 0.4)
    ),
    url("/assets/images/contact-us.jpg");
}

.about-us-banner {
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.4),
      rgba(39, 42, 46, 0.4)
    ),
    url("/assets/images/20210319_163854.jpg");
  background-position: top;
}

.gallery-banner {
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.4),
      rgba(39, 42, 46, 0.4)
    ),
    url("/assets/images/gallery.jpg");
  background-position: top;
}

.tips-banner {
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.4),
      rgba(39, 42, 46, 0.4)
    ),
    url("/assets/images/Dune\ Ceiling\ system[188].jpg");
  background-position: top;
}

.reviews-banner {
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.4),
      rgba(39, 42, 46, 0.4)
    ),
    url("/assets/images/Ceiling\ Clouds\ with\ black\ grid\ in\ between\ \(2\)[184].jpg");
  background-position: top;
}

.heading-text {
  font-size: 44px;
  text-align: center;
}

.main-banner .text-box {
  color: var(--color-white);
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}

.main-banner .text-box {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-banner .text-box h1 {
  font-size: 90px;
  font-weight: 800;
}
/* Header */

header {
  width: 100%;
  background-color: var(--color-white);
}

header nav.navbar {
  box-shadow: none;
}

header nav.navbar .navbar-brand .img-logo {
  /* height: 64px; */
  height: 94px;
  width: 100%;
  filter: drop-shadow(5px 5px 50px #fff);
}

header nav.navbar .navbar-brand {
  color: var(--color-black);
  font-size: 2.2em;
}

header nav.navbar a.nav-link {
  color: var(--color-black);
  margin: auto 6px !important;
  font-weight: 400;
  font-size: 1.1em;
  transition: 0.3s ease;
}

header nav.navbar a.nav-link:hover {
  color: var(--color-grey);
}

header nav.navbar a.btn {
  color: var(--color-white);
  background-color: var(--color-black);
  margin: 0px 20px;
  padding: 8px 20px;
  font-weight: 400;
  font-size: 1.1em;
  text-transform: unset;
  box-shadow: none;
  transition: 0.3s ease;
}

header nav.navbar a.btn:hover {
  color: var(--color-black);
  background-color: var(--color-white);
  box-shadow: 0px 0px 0px 4px var(--color-black) inset;
}
/* Showcase Banner */

#showcaseSlider {
  width: 100%;
  height: 100vh;
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-img,
.swiper-slide-active {
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}

.swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-container .swiper-wrapper .swiper-slide .slider-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}
.swiper-container .swiper-wrapper .swiper-slide .services-img {
  filter: brightness(60%);
}

.swiper-pagination-bullet-active {
  background: var(--color-white) !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-white) !important;
}

.text-caption {
  position: absolute;
  top: 40%;
  transform: translateY(0%);
  text-transform: uppercase;
  color: var(--color-white);
  padding: 45px;
  margin-bottom: 24px !important;
}

.text-caption h1 {
  font-weight: 600;
  padding: 12px;
  font-family: "Roboto Mono", monospace;
  font-style: italic;
  text-align: center;
}

.text-caption h1::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-black);
  content: "\f10d";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  transform: translateY(-14px);
  margin-right: 4px;
}

.text-caption h1::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-black);
  content: "\f10e";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  transform: translateY(-14px);
  margin-right: 4px;
}

.text-caption .btn-theme-s1 {
  box-shadow: none;
  background-color: var(--color-black);
  font-size: 18px;
  padding: 8px 30px;
  color: var(--color-white);
  font-weight: 500;
  transition: 0.5s;
}

.text-caption .btn-theme-s2 {
  box-shadow: none;
  background-color: var(--color-white);
  font-size: 18px;
  padding: 8px 30px;
  color: var(--color-black) !important;
  font-weight: 500;
  transition: 0.5s;
}

.text-caption .btn-theme-s1:hover {
  color: #000000;
  background-color: var(--color-white);
  box-shadow: 0px 0px 0px 4px var(--color-black) inset;
}

.text-caption .btn-theme-s2:hover {
  color: var(--color-white) !important;
  background-color: var(--color-black);
  box-shadow: 0px 0px 0px 4px var(--color-white) inset;
}

/* sections */
#sections {
  width: 100%;
  padding: 100px 0;
}

#sections .section {
  margin-bottom: 100px;
}

#sections .section img {
  width: 80%;
}

#sections .section h1 {
  margin-bottom: 20px;
  margin-top: 10px;
}

#sections .section h4 {
  margin-bottom: 60px;
}

#sections .section p {
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.8;
}

#sections .section .image {
  position: relative;
  height: 350px;
}

#sections .section .image .img-1 {
  position: absolute;
  right: 0;
  height: 100%;
  object-fit: cover;
}

#sections .section .image .img-2 {
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 220px;
  height: 200px;
  object-fit: cover;
}

#sections a,
#sections a:link,
#sections a:visited,
#testimonial-section a:link,
#testimonial-section a:visited {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  transition: 1s ease;
}
/* showcase-slider */

#showcase-slider {
  width: 100%;
}

#showcase-slider #show-banner {
  width: 100%;
  max-height: 600px;
}

#showcase-slider #show-banner .carousel-indicators {
  bottom: -60px;
}

#showcase-slider #show-banner .carousel-indicators li {
  color: var(--color-black);
  opacity: 0.8;
  transform: scale(0.8);
}

#showcase-slider #show-banner .carousel-indicators li.active {
  transform: scale(1);
  opacity: 1;
}

#showcase-slider #show-banner .carousel-item img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

#showcase-slider
  #show-banner
  .carousel-control-prev
  .carousel-control-prev-icon,
#showcase-slider
  #show-banner
  .carousel-control-next
  .carousel-control-next-icon {
  transform: scale(3);
}
/* about-section */

#about-section {
  width: 100%;
  padding: 0 0 100px 0;
}

#about-section h1 {
  margin-bottom: 30px;
}

#about-section .section-item {
  margin: 50px 0;
}

#about-section .section-item img {
  width: 445px;
  height: 360px;
}

#about-section .section-item h4 {
  margin-bottom: 40px;
}

#about-section .section-item p {
  font-weight: 400;
  margin-bottom: 50px;
}

#about-section .section-item a {
  color: var(--color-black);
  font-weight: 400;
  text-decoration: underline;
}

#about-section .section-why-choose-us {
  margin-top: 100px;
}
/* Contact Banner */

#contactBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.6),
      rgba(39, 42, 46, 0.6)
    ),
    url("/assets/images/Sandrift\ ceiling\ systemTexture.jpg");
  background-attachment: fixed;
  color: var(--color-white);
  margin-bottom: 100px;
}

#contactBanner h4,
#contactBanner h4 {
  font-weight: 600;
}

#contactBanner,
p {
  font-weight: 500;
}

#contactBanner a,
#contactBanner a:link,
#contactBanner a:visited {
  color: var(--color-white);
  font-weight: 600;
}

#contactBanner .btn-theme {
  width: max-content;
  color: var(--color-black) !important;
  background: var(--color-white);
  margin-top: 12px;
  transition: 0.3s ease;
  border: none;
}

#contactBanner .btn-theme:hover {
  width: max-content;
  color: var(--color-white) !important;
  background-color: var(--color-black) !important;
  box-shadow: 0px 0px 0px 4px var(--color-white) inset;
}
/* Benefits Section */

.benefits-section {
  width: 100%;
  padding: 100px 0;
}

.benefits-section h1 {
  margin-bottom: 50px;
}

.benefits-section ul {
  margin: 0;
  padding: 0;
}

.benefits-section ul li {
  margin: 10px 0;
  padding: 0 35px;
  font-size: 1.2em;
  list-style: none;
  font-weight: 400;
  position: relative;
}

.benefits-section ul li:before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
}

.benefits-section img {
  width: 450px;
  height: 450px;
}
/* Property Section */

#property-section {
  width: 100%;
  padding: 100px 0;
}

#property-section .text-right a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  transition: 1s ease;
}

#property-section .text-right a:hover {
  color: var(--color-grey);
}

#property-section #property-slider {
  width: 100%;
  height: 400px;
}

#property-slider .swiper-container {
  width: 100%;
  height: 100%;
}

#property-slider .swiper-slide {
  background-color: var(--color-white);
}

#property-slider .swiper-container .swiper-slide .property-list {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 0px 30px 0px 30px;
  color: #000000;
}

#property-slider .swiper-container .swiper-slide .property-list p {
  font-weight: 500;
}

#property-slider .swiper-container .swiper-slide .property-list .image {
  width: 235px;
  height: 200px;
  overflow: hidden;
  border-radius: 0px 30px 0px 30px;
  margin-bottom: 10px;
}

#property-slider .swiper-container .swiper-slide .property-list .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#property-slider h1 {
  margin-bottom: 50px;
}
/* Testimonial Section */

#testimonial-section {
  width: 100%;
  height: 80%;
}

#testimonial-section .testimonial-list .image {
  border-radius: 100% 100% 0 100%;
  overflow: hidden;
  height: 330px;
}

#testimonial-section .testimonial-list .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#testimonial-section .testimonial-list .row {
  background-color: var(--color-white);
}

#testimonial-section .testimonial-list i.fas {
  color: var(--color-primary);
  opacity: 0.1;
}

#testimonial-section h1 {
  margin-bottom: 50px;
}
/* Contact Section*/

.contact {
  width: 100%;
  padding: 80px 0;
}

.contact h1 {
  margin-bottom: 50px;
}

.contact input,
.contact textarea,
.contact select {
  padding: 25px 10px !important;
  margin-bottom: 20px !important;
  border: none !important;
  border-bottom: 2px solid var(--color-black) !important;
  border-radius: 0 !important;
  background-color: var(--color-white) !important;
  outline: none !important;
  width: 445px !important;
}

.contact input:focus,
.contact textarea:focus {
  box-shadow: none;
  outline: none;
  border-bottom-color: var(--color-grey);
}

.contact input,
.contact textarea,
.contact select {
  width: 100% !important;
}

.contact p {
  font-weight: 500;
  margin-bottom: 30px;
}

.contact ul.social-link {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.contact ul.social-link li a {
  padding: 0 10px;
  color: var(--color-black);
  font-size: 1.2em;
  transition: 0.3s ease;
}

.contact a:hover {
  color: var(--color-black) !important;
}

.contact a,
.contact:link,
.contact:visited {
  color: var(--color-black);
}
/* Services Page */

.services-types .card {
  height: 468px;
}

.services-types .card-img-top {
  height: 260px;
}
/* About Us Section*/

.about-us,
.contact-us,
.tips-section,
.gallery-section,
.reviews,
.thank-you {
  width: 100%;
  padding: 100px 0;
}

.about-us a:hover,
.contact-us a:hover,
.tips-section a:hover,
.thank-you a:hover,
#testimonial-section a:hover {
  color: var(--color-grey) !important;
}

.about-us a,
.contact-us a,
.tips-section a,
.about-us a:link,
.about-us a:visited,
.contact-us a:link,
.contact-us a:visited,
.tips-section a:visited,
.tips-section a:link,
.thank-you a:visited,
.thank-you a:link {
  color: var(--color-black);
  font-weight: bold;
}

.contact .fas {
  border-right: 2px solid var(--color-grey);
  margin-right: 4px;
  padding-right: 8px;
}

.tips-section .card .card-title {
  font-size: 18px;
}

.tips-section .brands-we-provide-section .ceilings-brands .card-img-top {
  height: 198px;
  padding: 48px;
}
/* .tips-section .card-tile-profile {
    height: 40px;
} */

.tips-section .card-tile-profile .card-img-top {
  height: 198px;
}
/* Reviews */

.reviewer-img {
  border-radius: 100px;
  height: 48px;
  width: 48px;
  display: inline-block;
}

.reviews .card .card-text,
.reviews .card {
  color: var(--color-white);
  font-weight: 600;
}

.reviews .card {
  height: 430px;
  border-radius: 8px;
  margin-top: 16px;
  padding: 0 16px;
  background-image: linear-gradient(
      to right bottom,
      rgba(39, 42, 46, 0.6),
      rgba(39, 42, 46, 0.6)
    ),
    url("/assets/images/Sandrift\ ceiling\ systemTexture.jpg");
}
.reviews .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Thank You Page */

.thank-you {
  margin: 100px 0;
}

.thank-you h1 {
  font-size: 64px;
}

.thank-you p {
  font-size: 24px;
}

footer {
  width: 100%;
  padding: 70px 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

footer h1 {
  text-transform: uppercase;
  margin-bottom: 50px !important;
}

footer h1 a {
  color: var(--color-white);
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer ul li {
  margin: 10px 0;
}

footer ul li a {
  padding: 10px 0;
  font-weight: 400;
  color: var(--color-white);
  transition: 0.5s ease;
}

footer ul li a:hover {
  color: var(--color-grey);
}

footer a.btn {
  box-shadow: none;
  background-color: var(--color-white);
  color: var(--color-black);
  margin: 0;
  font-weight: 700;
  text-transform: none;
  font-size: 1em;
  transition: 0.3 ease;
  padding: 10px 30px;
}

footer a.btn:hover {
  color: var(--color-white) !important;
  background-color: var(--color-black) !important;
  box-shadow: 0px 0px 0px 4px var(--color-white) inset;
}

footer .d-flex {
  justify-content: center;
}

footer .d-flex a {
  padding: 2px 10px;
  color: var(--color-grey);
  transition: 0.3s ease;
}

footer .footer-tel-link {
  font-size: 18px !important;
}

footer a:hover {
  color: var(--color-grey) !important;
}

footer a,
footer:link,
footer:visited {
  color: var(--color-white);
}
/* Responsive Breakpoints */
/* For Tablet */

@media only screen and (max-width: 991px) {
  footer .d-flex {
    flex-direction: column;
  }
  footer .d-flex a {
    padding: 5px;
  }
}
/* For Mobile Phones */

@media only screen and (max-width: 567px) {
  header nav.navbar a.nav-link {
    margin: auto 0px !important;
    font-size: 1em;
  }
  header nav.navbar a.btn {
    margin: 10px 0px 20px;
    font-size: 1em;
  }
  #showcase-banner #banner-slide .carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 200px;
  }
  #showcase-banner #banner-slide .carousel-caption h1 {
    font-size: 2em;
  }
  #sections {
    padding: 50px 10px;
  }
  #sections .section img {
    width: 100%;
    margin: 10px 0;
  }
  #sections .section h4 {
    margin-bottom: 30px;
  }
  .main-banner h1 {
    font-size: 60px !important;
  }
  footer .d-flex {
    flex-direction: row;
    justify-content: left;
  }
  footer .d-flex a {
    padding: 2px 10px;
  }
}

@media only screen and (max-width: 470px) {
  .swiper-slide .text-caption .btn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 644px) {
  #sections .section img {
    padding: 40px;
  }
  .services-types h1,
  .about-us h1,
  .contact .get-in-touch h1 {
    font-size: 44px !important;
  }
}

@media only screen and (max-width: 991px) {
  #testimonial-section .testimonial-list .image {
    border-radius: 100% 100% 100% 100%;
    height: 210px;
    border: 5px solid white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  #testimonial-section .testimonial-list i.fas {
    font-size: 56px !important;
  }
  header nav.navbar .navbar-brand .img-logo {
    height: 50px;
  }
}
@media only screen and (max-width: 767.5px) {
  .reviews .card {
    height: auto;
  }

  @media only screen and (max-width: 580px) {
    /* Testimonial Section*/
    #testimonial-section {
      padding: 50px 0;
    }
    #testimonial-section .testimonial-list .image {
      height: 110px;
    }
    #testimonial-section .testimonial-list i.fas {
      font-size: 48px !important;
      color: #000000;
    }
  }
}
@media only screen and (min-width: 1920px) {
  .main-banner .text-box {
    top: 30%;
  }
}
/* Portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .img-logo {
    height: 64px !important;
    width: 124px !important;
  }
}
/* Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .img-logo {
    height: 64px !important;
    width: 124px !important;
  }
}
