/* ========================================== */
/* === CSS Table of Contents ================ */
/* === 2023 © Guardian Sages ================ */ 
/* ========================================== */

/* ========================================== */
/* === 1. Top Header Section ================ */
/* === 2. Navigation Section ================ */
/* === 3. Website Pages Section ============= */
/* ===    a. Home Section =================== */
/* ===    b. About Section ================== */
/* ===    c. Services Section =============== */
/* ===    d. Gallery Section ================ */
/* ===    e. Areas We Service Section ======= */
/* ===    f. Testimonials Section =========== */
/* ===    g. Contact Section ================ */
/* ===    h. Sections On Every Page ========= */
/* === 4. Misc. Section ===================== */
/* ===    a. Referrals Owl Carousel ========= */
/* ===    b. Default Classes ================ */
/* ===    c. Gallery Function Section ======= */
/* ===    d. Reviews Function Section ======= */
/* === 5. Footer Section ==================== */
/* === 6. Lg. Laptop CSS Section ============ */
/* === 7. Sm. Laptop CSS Section ============ */
/* === 8. Tablet CSS Section ================ */
/* === 9. Mobile CSS Section ================ */
/* === 10. Sm. Mobile CSS Section =========== */
/* ========================================== */

@import url('https://fonts.googleapis.com/css?family=Staatliches');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,700,900');

@font-face {
	font-family: 'font';
	src:url('../fonts/arvo.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'font2';
	src:url('../fonts/poppins.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font3';
	src:url('../fonts/Monoton-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('../fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('../fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('../fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('../fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('../fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
}

/* ======================================== */
/* === Top Header Section ================= */
/* ======================================== */
.rt-site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.rt-header-container {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rt-topbar {
  background: #111;
  color: #fff;
  padding: 18px 0;
  transition: all .35s ease;
}

.rt-logo {
  width: 240px;
  max-width: 100%;
  transition: all .35s ease;
}

.rt-topbar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rt-topbar-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color .25s ease;
}

.rt-topbar-link:hover {
  color: #A10101;
}

.rt-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rt-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all .25s ease;
}

.rt-socials a:hover {
  background: #A10101;
  border-color: #A10101;
}

.rt-navbar {
  background: #fff;
  border-bottom: 4px solid #A10101;
}

.rt-navbar .rt-header-container {
  min-height: 78px;
}

.rt-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.rt-nav-menu > li {
  position: relative;
}

.rt-nav-menu a,
.rt-dropdown-toggle {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
}

.rt-nav-menu a:hover,
.rt-dropdown-toggle:hover,
.rt-nav-dropdown.rt-open > .rt-dropdown-toggle {
  color: #A10101;
  background: #f7f7f7;
}

.rt-dropdown-toggle i {
  font-size: .75rem;
  transition: transform .25s ease;
}

.rt-nav-dropdown.rt-open .rt-dropdown-toggle i {
  transform: rotate(180deg);
}

.rt-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 560px;
  background: #fff;
  border-top: 5px solid #A10101;
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
  padding: 26px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: all .25s ease;
}

.rt-dropdown-panel-wide {
  width: 650px;
}

.rt-nav-dropdown.rt-open .rt-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.rt-dropdown-intro {
  background: #111;
  color: #fff;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.rt-dropdown-intro:before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  background: #A10101;
  transform: rotate(35deg);
}

.rt-dropdown-intro span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.rt-dropdown-intro strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.rt-dropdown-intro p {
  margin: 0;
  opacity: .82;
  font-size: .95rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.rt-dropdown-links {
  display: grid;
  gap: 10px;
}

.rt-dropdown-links a {
  height: auto;
  padding: 13px 14px;
  background: #f7f7f7;
  border-left: 3px solid transparent;
  font-weight: 800;
}

.rt-dropdown-links a:hover {
  background: #111;
  color: #fff;
  border-left-color: #A10101;
}

.rt-dropdown-links i {
  color: #A10101;
  width: 22px;
}

.rt-dropdown-links a:hover i {
  color: #fff;
}

.rt-header-cta {
  background: #A10101;
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: all .25s ease;
}

.rt-header-cta:hover {
  background: #111;
  color: #fff;
}

.rt-site-header.rt-scrolled .rt-topbar {
  padding: 8px 0;
}

.rt-site-header.rt-scrolled .rt-logo {
  width: 175px;
}

.rt-site-header.rt-scrolled .rt-navbar .rt-header-container {
  min-height: 60px;
}

.rt-site-header.rt-scrolled .rt-nav-menu a,
.rt-site-header.rt-scrolled .rt-dropdown-toggle {
  height: 60px;
}

.rt-mobile-toggle {
  display: none;
  width: 48px;
  height: 44px;
  background: #A10101;
  border: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.rt-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all .25s ease;
}

.rt-mobile-toggle.rt-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rt-mobile-toggle.rt-active span:nth-child(2) {
  opacity: 0;
}

.rt-mobile-toggle.rt-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .rt-topbar-actions {
    gap: 14px;
  }

  .rt-topbar-link span {
    display: none;
  }

  .rt-nav-menu a,
  .rt-dropdown-toggle {
    padding: 0 12px;
  }
}

@media (max-width: 991px) {
  .rt-site-header {
    position: sticky;
  }

  .rt-header-container {
    width: min(100% - 28px, 1380px);
  }

  .rt-topbar {
    padding: 12px 0;
  }

  .rt-logo {
    width: 175px;
  }

  .rt-socials {
    display: none;
  }

  .rt-mobile-toggle {
    display: inline-flex;
  }

  .rt-navbar {
    display: none;
    border-top: 1px solid #eee;
  }

  .rt-navbar.rt-mobile-open {
    display: block;
  }

  .rt-navbar .rt-header-container {
    min-height: auto;
    display: block;
    width: 100%;
  }

  .rt-nav-menu {
    display: block;
    width: 100%;
  }

  .rt-nav-menu > li {
    border-bottom: 1px solid #eee;
  }

  .rt-nav-menu a,
  .rt-dropdown-toggle,
  .rt-site-header.rt-scrolled .rt-nav-menu a,
  .rt-site-header.rt-scrolled .rt-dropdown-toggle {
    width: 100%;
    height: auto;
    min-height: 58px;
    justify-content: space-between;
    padding: 18px 20px;
  }

  .rt-dropdown-panel,
  .rt-dropdown-panel-wide {
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: 0;
    padding: 0 20px 20px;
    grid-template-columns: 1fr;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .rt-nav-dropdown.rt-open .rt-dropdown-panel {
    display: grid;
  }

  .rt-dropdown-intro {
    display: none;
  }

  .rt-header-cta {
    margin: 18px 20px 24px;
    justify-content: center;
  }
}

/* ========================================== */
/* === Website Pages Section ================ */
/* ========================================== */

/**** Home Section ****/


.rt-hero-slider {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.rt-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.rt-hero-slide.rt-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.rt-hero-bg,
.rt-hero-bg img,
.rt-hero-overlay {
  position: absolute;
  inset: 0;
}

.rt-hero-bg {
  overflow: hidden;
}

.rt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.rt-hero-slide.rt-active .rt-hero-bg img {
  animation: rtHeroZoom 7800ms linear forwards;
}

@keyframes rtHeroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.rt-hero-overlay {
  background:
    linear-gradient(90deg, rgba(17,17,17,.88) 0%, rgba(17,17,17,.68) 42%, rgba(17,17,17,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.05));
  z-index: 1;
}

.rt-hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 1380px);
  min-height: 92vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  margin-left: max(20px, calc((100vw - 1380px) / 2));
  padding: 140px 0 110px;
}

.rt-hero-kicker {
  display: inline-flex;
  width: fit-content;
  background: #A10101;
  color: #fff;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.rt-hero-content h1,
.rt-hero-content h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 50px);
  line-height: 65px;
  letter-spacing: 1px;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-hero-content p {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
}

.rt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rt-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 900;
  transition: all .25s ease;
}

.rt-hero-btn-primary {
  background: #A10101;
  color: #fff;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.rt-hero-btn-primary:hover {
  background: #fff;
  color: #111;
}

.rt-hero-btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}

.rt-hero-btn-secondary:hover {
  background: #fff;
  color: #111;
}

.rt-hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(17,17,17,.58);
  color: #fff;
  cursor: pointer;
  transition: all .25s ease;
}

.rt-hero-arrow:hover {
  background: #A10101;
  border-color: #A10101;
}

.rt-hero-prev {
  left: 28px;
}

.rt-hero-next {
  right: 28px;
}

.rt-hero-dots {
  position: absolute;
  z-index: 5;
  right: 32px;
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.rt-hero-dot {
  width: 42px;
  height: 5px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .25s ease;
}

.rt-hero-dot.rt-active {
  background: #A10101;
  width: 72px;
}

@media (max-width: 991px) {
  .rt-hero-slider,
  .rt-hero-content {
    min-height: 100vh;
		    align-items: center;
  }
.rt-hero-actions {
		justify-content: center;
}
  .rt-hero-content {
    padding: 110px 0 100px;
    margin-left: 20px;
    margin-right: 20px;
		text-align:center;
  }

  .rt-hero-content h1,
  .rt-hero-content h2 {
    letter-spacing: -1.5px;
		
    font-size: clamp(1.8rem, 6vw, 50px);
    line-height: 3rem;
  }

  .rt-hero-arrow {
    top: auto;
    bottom: 28px;
    transform: none;
  }

  .rt-hero-prev {
    left: 20px;
  }

  .rt-hero-next {
    left: 84px;
    right: auto;
  }

  .rt-hero-dots {
    right: 20px;
    bottom: 46px;
  }
}

@media (max-width: 575px) {
  .rt-hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
		
		
		
  }

  .rt-hero-content p {
    font-size: 1rem;
  }

  .rt-hero-actions {
    display: grid;
  }

  .rt-hero-btn {
    width: 100%;
  }

  .rt-hero-dots {
    display: none;
  }
}


.rt-intro-section {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

.rt-intro-wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.rt-intro-media {
  position: relative;
  min-height: 590px;
}

.rt-intro-img {
  position: absolute;
  overflow: hidden;
  background: #111;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}

.rt-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.rt-intro-img:hover img {
  transform: scale(1.06);
}

.rt-intro-img-one {
  width: 58%;
  height: 245px;
  top: 0;
  left: 16%;
  z-index: 2;
}

.rt-intro-img-two {
  width: 58%;
  height: 265px;
  left: 16%;
  bottom: 0;
  z-index: 3;
}

.rt-intro-img-three {
  width: 55%;
  height: 240px;
  right: 0;
  top: 230px;
  z-index: 4;
  border: 10px solid #fff;
}

.rt-intro-gear {
  position: absolute;
  color: rgba(161,1,1,.12);
  z-index: 1;
  animation: rtIntroSpin 18s linear infinite;
}

.rt-intro-gear i {
  display: block;
}

.rt-intro-gear-one {
  left: 0;
  top: 55px;
  font-size: 74px;
  color: rgba(17,17,17,.18);
}

.rt-intro-gear-two {
  left: -35px;
  bottom: 85px;
  font-size: 185px;
  color: rgba(161,1,1,.15);
}

@keyframes rtIntroSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rt-intro-phone-card {
  position: absolute;
  right: 11%;
  bottom: 8px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 18px 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.rt-intro-phone-card span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(161,1,1,.12);
  color: #A10101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rt-intro-phone-card a {
  color: #111;
  text-decoration: none;
  font-weight: 950;
  font-size: 1.4rem;
}

.rt-intro-kicker {
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.rt-intro-heading-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 24px;
}

.rt-intro-years strong {
  display: block;
  color: #A10101;
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: .85;
  letter-spacing: -4px;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-intro-years span {
  display: block;
  color: #A10101;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 950;
  margin-top: 16px;
}

.rt-intro-content h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2.4rem, 4vw, 45px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 950;
}

.rt-intro-content p {
  color: rgba(17,17,17,.72);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 30px;
  max-width: 760px;
}

.rt-intro-service-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin: 34px 0;
}

.rt-intro-service {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
}

.rt-intro-service i {
  color: #A10101;
  font-size: 2.2rem;
}

.rt-intro-service h3 {
  margin: 0;
  color: #111;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 950;
}

.rt-intro-checklist {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 17px;
}

.rt-intro-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #111;
  font-weight: 800;
  line-height: 1.6;
}

.rt-intro-checklist i {
  color: #A10101;
  margin-top: 4px;
}

.rt-intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
}

.rt-intro-btn {
  background: #A10101;
  color: #fff;
  text-decoration: none;
  min-height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-transform: uppercase;
  transition: all .25s ease;
}

.rt-intro-btn:hover {
  background: #111;
  color: #fff;
}

.rt-intro-founder {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rt-intro-founder-icon {
  width: 62px;
  height: 62px;
  border: 2px solid #A10101;
  border-radius: 50%;
  color: #A10101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.rt-intro-founder strong {
  display: block;
  color: #111;
  font-size: 1.05rem;
  font-weight: 950;
}

.rt-intro-founder span {
  display: block;
  color: rgba(17,17,17,.68);
  font-size: .92rem;
}

@media (max-width: 1199px) {
  .rt-intro-wrap {
    gap: 45px;
  }

  .rt-intro-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rt-intro-years {
    display: flex;
    align-items: end;
    gap: 18px;
  }

  .rt-intro-years span {
    margin-top: 0;
    margin-bottom: 8px;
  }
}

@media (max-width: 991px) {
  .rt-intro-section {
    padding: 90px 0;
  }

  .rt-intro-wrap {
    grid-template-columns: 1fr;        text-align: center;
  }

  .rt-intro-media {
    min-height: 560px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .rt-intro-wrap {
    width: min(100% - 28px, 1380px);
  }

  .rt-intro-media {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .rt-intro-img,
  .rt-intro-img-one,
  .rt-intro-img-two,
  .rt-intro-img-three {
    position: relative;
    width: 100%;
    height: 240px;
    inset: auto;
    border: 0;
  }

  .rt-intro-gear {
    display: none;
  }

  .rt-intro-phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 4px;
  }

  .rt-intro-years {
    display: block;
  }

  .rt-intro-years span {
    margin-top: 12px;
  }

  .rt-intro-service-row {
    grid-template-columns: 1fr;
  }

  .rt-intro-actions {
    align-items: flex-start;         justify-content: center;
  }
}

.rt-audience-showcase {
  background: #111;
  color: #fff;
}

.rt-audience-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 520px;
 
}

.rt-audience-row-commercial {
  grid-template-columns: 1.5fr 1fr;
      border-top: 75px solid #111;
}

.rt-audience-copy,
.rt-audience-photo {
  position: relative;
  overflow: hidden;
}

.rt-audience-copy {
  padding: 70px clamp(28px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(17,17,17,.98), rgba(17,17,17,.88)),
    #111;
}

.rt-audience-row-residential .rt-audience-copy {
  background:
    linear-gradient(90deg, rgba(17,17,17,.98), rgba(17,17,17,.84), rgba(17,17,17,.72)),
    #111;
}

.rt-audience-row-commercial .rt-audience-copy {
  background:
    linear-gradient(90deg, rgba(17,17,17,.92), rgba(17,17,17,.98)),
    #111;
}

.rt-audience-copy span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 950;
  margin-bottom: 18px;
}

.rt-audience-copy h2 {
  margin: 0;
  max-width: 650px;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 5vw, 45px);
  line-height: 80px;
  letter-spacing: -2px;
  font-weight: 950;
}

.rt-audience-copy h2 em {
  display: block;
  color: #A10101;
  font-style: normal; font-size: 75px;
}

.rt-audience-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-size: 1.05rem;
}

.rt-audience-copy h2:after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: #A10101;
  margin-top: 24px;
}

.rt-audience-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.rt-audience-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.22), rgba(0,0,0,0));
  z-index: 1;
  pointer-events: none;
}

.rt-audience-row:hover .rt-audience-photo img {
  transform: scale(1.07);
  filter: contrast(.8);
}

.rt-audience-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 62px;
  height: 62px;
  background: #A10101;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition: all .25s ease;
}

.rt-audience-row-residential .rt-audience-arrow {
  left: 0px;
}

.rt-audience-row-commercial .rt-audience-arrow {
  right: 0px;
}

.rt-audience-arrow:hover {
  background: #fff;
  color: #111;
}

.rt-audience-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.rt-audience-features small {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 850;
}

.rt-audience-features i {
  color: #A10101;
}

.rt-audience-link {
  margin-top: 34px;
  width: fit-content;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: all .25s ease;
}

.rt-audience-link i {
  color: #A10101;
}

.rt-audience-link:hover {
  background: #A10101;
  border-color: #A10101;
  color: #fff;
}

.rt-audience-link:hover i {
  color: #fff;
}

.rt-audience-badge {
  position: absolute;
  right: 42px;
  bottom: 42px;
  z-index: 4;
  width: 320px;
  background: rgba(17,17,17,.82);
  border: 1px solid rgba(255,255,255,.1);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(8px);
  transform: translateY(22px);
  opacity: 0;
  transition: all .35s ease;
}

.rt-audience-row:hover .rt-audience-badge {
  transform: translateY(0);
  opacity: 1;
}

.rt-audience-badge i {
  color: #A10101;
  font-size: 2rem;
}

.rt-audience-badge strong {
  display: block;
  color: #fff;
  font-weight: 950;
  margin-bottom: 4px;
}

.rt-audience-badge p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}

.rt-audience-bottom {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 34px;
}

.rt-audience-bottom .rt-audience-link {
  margin-top: 0;
}

.rt-audience-badge-inline {
  position: relative;
  right: auto;
  bottom: auto;
  opacity: 1;
  transform: none;
  width: 300px;
}

@media (max-width: 991px) {
  .rt-audience-row,
  .rt-audience-row-commercial {
    grid-template-columns: 1fr;
		text-align:center;
  }
.rt-audience-copy h2:after {
    width: 100%;
}
  .rt-audience-row-commercial .rt-audience-photo {
    order: 2;
  }
.rt-audience-copy span {
    justify-content: center;
}
  .rt-audience-row-commercial .rt-audience-copy {
    order: 1;
  }
.rt-audience-features small {
    align-items: center;
    justify-content: center;
}
  .rt-audience-copy,
  .rt-audience-photo {
    min-height: 430px;
    align-items: center;
  }
.rt-audience-copy h2 {
    font-size: clamp(1.8rem, 5vw, 45px);
    line-height: 50px;
}
.rt-audience-copy h2 em {
    font-size: 2rem;
}
  .rt-audience-arrow {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .rt-audience-row-residential .rt-audience-arrow,
  .rt-audience-row-commercial .rt-audience-arrow {
    left: 0;
    right: auto;
  }

  .rt-audience-badge {
    opacity: 1;
    transform: none;
    right: 28px;
    bottom: 28px;
  }

  .rt-audience-bottom {
    flex-direction: column;
            align-items: center;
  }

  .rt-audience-badge-inline {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .rt-audience-copy {
    padding: 58px 22px;
  }

  .rt-audience-features {
    display: grid;
    gap: 14px;
  }

  .rt-audience-link {
    width: 100%;
    justify-content: center;
  }

  .rt-audience-badge {
    position: relative;
    width: calc(100% - 44px);
    right: auto;
    bottom: auto;
    margin: -0;
  }
}


.rt-process-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(161,1,1,.16), transparent 34%),
    linear-gradient(135deg, #111 0%, #181818 55%, #050505 100%);
  color: #fff;
  overflow: hidden;
}

.rt-process-section:before {
  content: "";
  position: absolute;
  inset: 70px 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(161,1,1,.8), transparent);
  opacity: .7;
}

.rt-process-header {
  width: min(100% - 40px, 900px);
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.rt-process-header span {
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 950;
}

.rt-process-header h2 {
margin: 16px 0 20px;
    font-size: clamp(2.7rem, 5vw, 50px);
    line-height: 65px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 950;
}

.rt-process-header p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255,255,255,.76);
  line-height: 1.75;
  font-size: 1.08rem;
}

.rt-process-grid {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.rt-process-card {
  position: relative;
  min-height: 430px;
  padding: 34px 26px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: all .45s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rt-process-card:nth-child(2),
.rt-process-card:nth-child(4) {
  min-height: 490px;
}

.rt-process-card:nth-child(3) {
  min-height: 550px;
}

.rt-process-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(180deg, rgba(161,1,1,.15), rgba(161,1,1,.95));
  transition: height .45s ease;
  z-index: -1;
}

.rt-process-card:after {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255,255,255,.16);
  transform: rotate(45deg);
  transition: all .45s ease;
}

.rt-process-card:hover {
  transform: translateY(-18px);
  border-color: rgba(161,1,1,.75);
  box-shadow: 0 30px 80px rgba(0,0,0,.38);
}

.rt-process-card:hover:before {
  height: 100%;
}

.rt-process-card:hover:after {
  right: -25px;
  top: -25px;
  border-color: rgba(255,255,255,.45);
}

.rt-process-number {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 950;
  color: rgba(255,255,255,.08);
  transition: all .35s ease;
}

.rt-process-card:hover .rt-process-number {
  color: rgba(255,255,255,.2);
  transform: scale(1.08);
}

.rt-process-icon {
  width: 64px;
  height: 64px;
  background: #A10101;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 24px;
  transition: all .35s ease;
}

.rt-process-card:hover .rt-process-icon {
  background: #fff;
  color: #A10101;
  transform: rotate(-6deg) scale(1.08);
}

.rt-process-card h3 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  line-height: 1.18;
  font-weight: 950;
}

.rt-process-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.rt-process-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  overflow: hidden;
  transition: all .45s ease;
}

.rt-process-card:hover ul {
  max-height: 150px;
  opacity: 1;
  transform: translateY(0);
}

.rt-process-card li {
  position: relative;
  padding-left: 20px;
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
}

.rt-process-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #fff;
  transform: rotate(45deg);
}

@media (max-width: 1199px) {
  .rt-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rt-process-card,
  .rt-process-card:nth-child(2),
  .rt-process-card:nth-child(3),
  .rt-process-card:nth-child(4) {
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .rt-process-section {
    padding: 90px 0;
  }

  .rt-process-grid {
    grid-template-columns: 1fr;
  }

  .rt-process-card,
  .rt-process-card:nth-child(2),
  .rt-process-card:nth-child(3),
  .rt-process-card:nth-child(4) {
    min-height: 360px;
		
		justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
  }

  .rt-process-card ul {
    max-height: 150px;
    opacity: 1;
    transform: none;
  }
}


.rt-stats-divider{

    position:relative;

    padding:110px 0;

    background:#fafafa;

    overflow:hidden;

}

.rt-stats-divider:before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(0,0,0,.04) 1px,transparent 1px),

    linear-gradient(90deg,rgba(0,0,0,.04) 1px,transparent 1px);

    background-size:70px 70px;

    opacity:.45;

}

.rt-stats-divider:after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:-60px;

    height:220px;

    background:

    radial-gradient(circle at center,rgba(161,1,1,.08),transparent 70%);

}

.rt-stats-intro{

    position:relative;

    z-index:2;

    text-align:center;

    margin-bottom:70px;

}

.rt-stats-intro span{

    color:#A10101;

    text-transform:uppercase;

    font-weight:900;

    letter-spacing:2px;

}

.rt-stats-intro h2{

    margin-top:14px;

    font-size:clamp(2.3rem,4vw,4rem);

    color:#111;
	text-transform: uppercase;

    font-weight:950;

    letter-spacing:-2px;

}

.rt-stats-grid{

    position:relative;

    z-index:2;

    width:min(100% - 40px,1300px);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:26px;

}

.rt-stat-card{

    background:#fff;

    padding:55px 30px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.07);

    border-top:5px solid transparent;

    transition:.35s;

}

.rt-stat-card:hover{

    transform:translateY(-12px);

    border-color:#A10101;

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.rt-stat-card strong{

    display:block;

    font-size:clamp(3rem,5vw,4.8rem);

    color:#A10101;

    font-weight:950;

    line-height:.9;

}

.rt-stat-card span{

    display:block;

    margin-top:18px;

    color:#111;

    font-size:1rem;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.5px;

}


.rt-equipment-section{position:relative;padding:120px 0;background:#f8f8f8;overflow:hidden}
.rt-equipment-section:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px);background-size:70px 70px}
.rt-equipment-header{position:relative;z-index:2;margin:0 auto 70px;text-align:center}
.rt-equipment-header span{color:#A10101;font-weight:900;letter-spacing:2px;text-transform:uppercase}
.rt-equipment-header h2{margin:18px 0;font-size:clamp(2.8rem,5vw,65px);line-height:75px;letter-spacing:-2px;color:#111;font-weight:950;text-transform:uppercase}
.rt-equipment-header p{margin:0;color:#666;font-size:1.05rem;line-height:1.8}
.rt-equipment-stage {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1575px);
    min-height: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 230px 1fr 550px;
    align-items: center;
    gap: 38px;
}
.rt-equipment-nav{display:grid;gap:0;background:#fff;box-shadow:0 25px 70px rgba(0,0,0,.07)}
.rt-equipment-tab{position:relative;width:100%;min-height:82px;padding:18px 18px 18px 28px;background:#fff;border:0;border-bottom:1px solid rgba(0,0,0,.08);color:#111;text-align:left;font-weight:950;text-transform:uppercase;cursor:pointer;transition:.25s}
.rt-equipment-tab:before{content:"";position:absolute;left:0;top:0;width:0;height:100%;background:#A10101;transition:.25s}
.rt-equipment-tab span{display:block;margin-bottom:6px;color:#999;font-size:.78rem;letter-spacing:1px;transition:.25s}
.rt-equipment-tab:hover,.rt-equipment-tab.rt-active{padding-left:38px;color:#A10101}
.rt-equipment-tab:hover:before,.rt-equipment-tab.rt-active:before{width:6px}
.rt-equipment-tab.rt-active span{color:#A10101}
.rt-equipment-item{display:contents}
.rt-equipment-visual,.rt-equipment-info{opacity:0;visibility:hidden;transform:translateY(30px);transition:opacity .45s ease,visibility .45s ease,transform .45s ease}
.rt-equipment-item.rt-active .rt-equipment-visual,.rt-equipment-item.rt-active .rt-equipment-info{opacity:1;visibility:visible;transform:translateY(0)}
.rt-equipment-visual{grid-column:2;grid-row:1;position:relative;display:flex;align-items:center;justify-content:center;min-height:620px}
.rt-equipment-visual:before{content:"";position:absolute;bottom:70px;width:62%;height:120px;background:radial-gradient(ellipse,rgba(161,1,1,.16),transparent 70%)}
.rt-equipment-visual:after{content:"";position:absolute;bottom:74px;width:52%;height:32px;background:rgba(0,0,0,.16);filter:blur(20px);border-radius:50%}
.rt-equipment-visual img{position:relative;z-index:2;width:min(720px,100%);filter:drop-shadow(0 35px 40px rgba(0,0,0,.18));animation:rtEquipmentFloat 5s ease-in-out infinite;transition:transform .35s ease}
.rt-equipment-item.rt-active:hover .rt-equipment-visual img{transform:translateY(-14px) rotate(-2deg) scale(1.03)}
@keyframes rtEquipmentFloat{0%,100%{translate:0 0}50%{translate:0 -10px}}
.rt-equipment-info{grid-column:3;grid-row:1;position:relative;background:#fff;padding:52px;box-shadow:0 25px 70px rgba(0,0,0,.08)}
.rt-equipment-info:before{content:"";position:absolute;left:0;top:0;width:6px;height:100%;background:#A10101}
.rt-equipment-info>span{display:block;margin-bottom:12px;color:#A10101;font-weight:950;text-transform:uppercase;letter-spacing:1px}
.rt-equipment-info h3{margin:0 0 18px;color:#111;font-size:clamp(2.6rem,4vw,45px);line-height:.95;font-weight:950;text-transform:uppercase;letter-spacing:-2px}
.rt-equipment-info p{margin:0;color:#666;line-height:1.8}
.rt-equipment-info ul{margin:28px 0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.rt-equipment-info li{position:relative;padding-left:20px;color:#111;font-weight:850}
.rt-equipment-info li:before{content:"";position:absolute;left:0;top:9px;width:8px;height:8px;background:#A10101;transform:rotate(45deg)}
.rt-equipment-btn{display:inline-flex;align-items:center;gap:12px;padding:17px 28px;background:#A10101;color:#fff;text-decoration:none;font-weight:950;text-transform:uppercase;transition:.25s}
.rt-equipment-btn:hover{background:#111;color:#fff}
@media(max-width:1199px){.rt-equipment-stage{grid-template-columns:190px 1fr 390px;gap:24px}.rt-equipment-info{padding:38px}.rt-equipment-tab{min-height:74px}}
@media(max-width:991px){.rt-equipment-stage{display:block;min-height:auto}.rt-equipment-nav{display:grid;grid-template-columns:repeat(2,1fr);margin-bottom:35px}.rt-equipment-item{display:none}.rt-equipment-item.rt-active{display:grid;grid-template-columns:1fr;gap:25px}.rt-equipment-visual,.rt-equipment-info{opacity:1;visibility:visible;transform:none}.rt-equipment-visual{min-height:390px}.rt-equipment-info ul{grid-template-columns:1fr}}
@media(max-width:575px){.rt-equipment-section{padding:85px 0}.rt-equipment-header,.rt-equipment-stage{width:min(100% - 28px,1450px)}.rt-equipment-nav{grid-template-columns:1fr}.rt-equipment-info{padding:34px}.rt-equipment-tab{min-height:68px}}



@media(max-width: 991px){
.rt-stats-grid {
    grid-template-columns: 1fr;
}
.rt-stats-intro h2 {
    font-size: clamp(1.9rem,4vw,4rem);
}

.rt-process-header h2 {
    font-size: clamp(1.7rem, 5vw, 50px);
    line-height: 45px;
}

.rt-equipment-header h2 {
    font-size: clamp(1.8rem,5vw,65px);
    line-height: 44px;
}
.rt-equipment-info {
    grid-column: 1;
}
}


/**** About Section ****/

.rt-about-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.rt-about-hero-bg,
.rt-about-hero-bg img,
.rt-about-hero-overlay {
  position: absolute;
  inset: 0;
}

.rt-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rtAboutHeroZoom 10s linear forwards;
}

@keyframes rtAboutHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.rt-about-hero-overlay {
  background: linear-gradient(90deg, rgba(17,17,17,.92), rgba(17,17,17,.66), rgba(17,17,17,.18));
  z-index: 1;
}

.rt-about-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  max-width: 850px;
}

.rt-about-hero-content span,
.rt-about-intro-content span,
.rt-about-section-heading span,
.rt-about-areas-content span {
  display: inline-block;
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 950;
  margin-bottom: 18px;
}

.rt-about-hero-content h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 65px);
    line-height: 75px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 950;
}

.rt-about-hero-content p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 1.12rem;
  line-height: 1.8;
}

.rt-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rt-about-hero-actions a,
.rt-about-areas-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  background: #A10101;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  transition: .25s ease;
}

.rt-about-hero-actions a:nth-child(2) {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
}

.rt-about-hero-actions a:hover,
.rt-about-areas-content a:hover {
  background: #fff;
  color: #111;
}

.rt-about-intro {
  padding: 120px 0;
  background: #fff;
}

.rt-about-intro-wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.rt-about-intro-media {
  position: relative;
  min-height: 560px;
}

.rt-about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 78%;
  height: 410px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.rt-about-img-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 290px;
  object-fit: cover;
  border: 12px solid #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.rt-about-intro-badge {
  position: absolute;
  left: 38px;
  bottom: 58px;
  background: #A10101;
  color: #fff;
  padding: 24px 28px;
  box-shadow: 0 20px 50px rgba(161,1,1,.25);
}

.rt-about-intro-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-about-intro-badge span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.rt-about-intro-content h2,
.rt-about-section-heading h2,
.rt-about-areas-content h2 {
    margin: 0;
    color: #111;
    font-size: clamp(2.5rem, 5vw, 50px);
    line-height: 65px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 950;
}

.rt-about-intro-content p {
  margin: 24px 0 0;
  color: rgba(17,17,17,.72);
  line-height: 1.85;
  font-size: 1.05rem;
}

.rt-about-intro-points {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.rt-about-intro-points div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111;
}

.rt-about-intro-points i {
  width: 34px;
  height: 34px;
  background: #A10101;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rt-about-services {
  padding: 120px 0;
  background: #f8f8f8;
}

.rt-about-section-heading {
  width: min(100% - 40px, 900px);
  margin: 0 auto 60px;
  text-align: center;
}

.rt-about-section-heading p {
  margin: 22px auto 0;
  max-width: 760px;
  color: rgba(17,17,17,.68);
  line-height: 1.8;
}

.rt-about-services-grid {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.rt-about-service-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
}

.rt-about-service-card img,
.rt-about-service-overlay {
  position: absolute;
  inset: 0;
}

.rt-about-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.rt-about-service-overlay {
  background: linear-gradient(0deg, rgba(17,17,17,.92), rgba(17,17,17,.28));
  z-index: 1;
}

.rt-about-service-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rt-about-service-content span {
  color: #A10101;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.rt-about-service-content h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 35px);
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 950;
}

.rt-about-service-content ul {
  margin: 26px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.rt-about-service-content li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.rt-about-service-content li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #A10101;
  transform: rotate(45deg);
}

.rt-about-service-content a {
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-about-service-card:hover img {
  transform: scale(1.08);
}

.rt-about-areas {
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,.94), rgba(17,17,17,.78)),
    url("/img/homepage/west-texas.jpg") center/cover no-repeat;
  color: #fff;
}

.rt-about-areas-wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.rt-about-areas-content h2 {
  color: #fff;
}

.rt-about-areas-content p {
  margin: 24px 0 34px;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}

.rt-about-area-panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 34px;
  backdrop-filter: blur(8px);
}

.rt-about-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rt-about-area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 900;
  transition: .25s ease;
}

.rt-about-area-chips span:hover {
  background: #A10101;
  color: #fff;
  transform: translateY(-4px);
}

.rt-about-why {
  padding: 120px 0;
  background: #fff;
}

.rt-about-why-grid {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.rt-about-why-grid article {
  position: relative;
  padding: 38px 30px;
  background: #f8f8f8;
  border-top: 5px solid transparent;
  transition: .3s ease;
  overflow: hidden;
}

.rt-about-why-grid article:hover {
  transform: translateY(-10px);
  border-color: #A10101;
  background: #111;
  color: #fff;
}

.rt-about-why-grid i {
  color: #A10101;
  font-size: 2.3rem;
  margin-bottom: 24px;
}

.rt-about-why-grid h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  font-weight: 950;
}

.rt-about-why-grid p {
  margin: 0;
  color: rgba(17,17,17,.68);
  line-height: 1.7;
}

.rt-about-why-grid article:hover p {
  color: rgba(255,255,255,.75);
}

@media (max-width: 991px) {
	.rt-about-hero-content h1 {
    font-size: clamp(2rem, 6vw, 65px);
    line-height: 45px;
}
	.rt-about-hero-content {
		text-align:center;

}
.rt-about-hero-actions {
    justify-content: center;
}
.rt-about-intro {
    text-align: center;
}
.rt-about-intro-content h2, .rt-about-section-heading h2, .rt-about-areas-content h2 {
    font-size: clamp(2rem, 5vw, 50px);
    line-height: 44px;
}
  .rt-about-intro-wrap,
  .rt-about-areas-wrap {
    grid-template-columns: 1fr;
  }
.rt-about-areas-wrap {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  .rt-about-services-grid,
  .rt-about-why-grid {
    grid-template-columns: 1fr 1fr;
  }
	
	.rt-about-service-content h3 {
    margin: 0;
    font-size: clamp(1.3rem, 3vw, 35px);
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 950;
}
	
	.rt-about-areas {
    padding: 50px 0;
		text-align:center;
}
.rt-about-area-chips {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 650px) {
  .rt-about-hero-content,
  .rt-about-intro-wrap,
  .rt-about-section-heading,
  .rt-about-services-grid,
  .rt-about-areas-wrap,
  .rt-about-why-grid {
    width: min(100% - 28px, 1380px);
  }

  .rt-about-intro-media {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .rt-about-img-main,
  .rt-about-img-float,
  .rt-about-intro-badge {
    position: relative;
    width: 100%;
    height: auto;
    inset: auto;
    border: 0;
  }

  .rt-about-img-main,
  .rt-about-img-float {
    height: 260px;
  }

  .rt-about-services-grid,
  .rt-about-why-grid {
    grid-template-columns: 1fr;
  }

  .rt-about-service-content {
    padding: 34px;
  }
}

/**** Services Section ****/


.rt-service-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.rt-service-hero-bg,
.rt-service-hero-bg img,
.rt-service-hero-overlay {
  position: absolute;
  inset: 0;
}

.rt-service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rtServiceHeroZoom 10s linear forwards;
}

@keyframes rtServiceHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.rt-service-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17,17,17,.94), rgba(17,17,17,.72), rgba(17,17,17,.22)),
    linear-gradient(0deg, rgba(0,0,0,.48), rgba(0,0,0,.05));
}

.rt-service-hero-wrap {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1450px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 120px 0;
}

.rt-service-kicker {
  display: inline-flex;
  background: rgba(161,1,1,.78);
  border-left: 4px solid #A10101;
  padding: 12px 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 950;
  margin-bottom: 24px;
}

.rt-service-hero-content h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 65px);
    line-height: 75px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 950;
}

.rt-service-hero-content p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 1.12rem;
  line-height: 1.8;
}

.rt-service-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  gap: 18px;
  margin-top: 36px;
}

.rt-service-hero-features div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.09);
  border-left: 4px solid #A10101;
}

.rt-service-hero-features i {
  width: 44px;
  height: 44px;
  background: #A10101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rt-service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.rt-service-hero-actions a {
  min-height: 58px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  background: #A10101;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  border: 2px solid #A10101;
  transition: .25s ease;
}

.rt-service-hero-actions a:nth-child(2) {
  background: transparent;
  border-color: rgba(255,255,255,.75);
}

.rt-service-hero-actions a:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.rt-service-map-card {
  position: relative;
  padding: 28px;
  background: rgba(17,17,17,.82);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
  backdrop-filter: blur(7px);
}

.rt-service-map-label {
  position: relative;
  background: #A10101;
  color: #fff;
  padding: 22px 26px;
  margin-bottom: 12px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.rt-service-map-label span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 950;
  font-size: .8rem;
}

.rt-service-map-label strong {
  display: block;
  margin-top: 6px;
  color: #111;
  font-size: 2rem;
  font-weight: 950;
}

.rt-service-map-links {
  display: grid;
}

.rt-service-map-links a {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 20px 10px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.18);
  transition: .25s ease;
}

.rt-service-map-links a:hover {
  padding-left: 18px;
  background: rgba(161,1,1,.16);
}

.rt-service-map-links span {
  grid-row: span 2;
  background: rgba(161,1,1,.22);
  color: #A10101;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-style: italic;
  font-size: 1.15rem;
  transform: skew(-9deg);
}

.rt-service-map-links strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.rt-service-map-links small {
  color: rgba(255,255,255,.6);
  font-weight: 800;
}

.rt-service-map-split {
  display: block;
}

@media(max-width: 991px){
.rt-service-hero {
	text-align:center;
}
.rt-service-hero-actions {
	justify-content: center
}
.rt-service-hero-content h1 {
    font-size: clamp(2rem, 6vw, 65px);
    line-height:55px;
}
}


.rt-map-primary {
  display: grid;
}

.rt-map-divider {
  margin: 20px 0 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.rt-map-divider span {
display: block;
    color: #000000;
    font-size: 1.78rem;
    font-weight: 950;
    letter-spacing: 2px;
    background: #a10101;
    padding: 10px;
    width: fit-content;
    text-transform: uppercase;
}

.rt-map-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rt-map-services a {
  display: block;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
}

.rt-map-services a:hover {
  padding-left: 14px;
  background: rgba(161,1,1,.18);
  border-color: rgba(161,1,1,.55);
}

.rt-map-services a span {
  min-height: auto;
  width: fit-content;
  padding: 6px 10px;
  margin-bottom: 10px;
  font-size: .9rem;
  background: rgba(161,1,1,.22);
}

.rt-map-services a strong {
  display: block;
  font-size: .95rem;
}

.rt-map-services a small {
  display: block;
  margin-top: 3px;
  font-size: .72rem;
  line-height: 1.25;
}

@media (max-width: 650px) {
  .rt-map-services {
    grid-template-columns: 1fr;
  }
}

.rt-service-benefits,
.rt-service-hub {
  padding: 120px 0;
  background: #f8f8f8;
}

.rt-service-section-heading {
  width: min(100% - 40px, 920px);
  margin: 0 auto 62px;
  text-align: center;
}

.rt-service-section-heading span {
  display: inline-block;
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 950;
  margin-bottom: 16px;
}

.rt-service-section-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2.5rem, 5vw, 50px);
  line-height: 65px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 950;
}

.rt-service-section-heading p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(17,17,17,.68);
  line-height: 1.8;
}

.rt-benefit-grid {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rt-benefit-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  align-items: start;
  min-height: 250px;
  padding: 38px;
  background: #fff;
  border-left: 5px solid transparent;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  overflow: hidden;
  transition: .3s ease;
}

.rt-benefit-grid article:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: #111;
  transition: .35s ease;
  z-index: 0;
}

.rt-benefit-grid article > * {
  position: relative;
  z-index: 2;
}

.rt-benefit-grid article:hover {
  transform: translateY(-8px);
  border-color: #A10101;
}

.rt-benefit-grid article:hover:before {
  height: 100%;
}

.rt-benefit-grid i {
  width: 74px;
  height: 74px;
  background: #A10101;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: .3s ease;
}

.rt-benefit-grid h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 1.55rem;
  font-weight: 950;
}

.rt-benefit-grid p {
  margin: 0;
  color: rgba(17,17,17,.68);
  line-height: 1.75;
}

.rt-benefit-grid article:hover h3,
.rt-benefit-grid article:hover p {
  color: #fff;
}

.rt-benefit-grid article:hover i {
  background: #fff;
  color: #A10101;
  transform: rotate(-5deg) scale(1.05);
}

.rt-service-intro {
  padding: 120px 0;
  background: #fff;
}

.rt-service-intro-wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.rt-service-intro-media {
  position: relative;
  min-height: 560px;
}

.rt-service-intro-media img {
  width: 82%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.rt-service-intro-badge {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 330px;
  background: #111;
  border-left: 6px solid #A10101;
  color: #fff;
  padding: 30px;
  box-shadow: 0 25px 65px rgba(0,0,0,.25);
}

.rt-service-intro-badge strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
}

.rt-service-intro-badge span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

.rt-service-intro-content > span {
  display: inline-block;
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 950;
  margin-bottom: 16px;
}

.rt-service-intro-content h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2.5rem, 5vw, 50px);
  line-height: 65px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 950;
}

.rt-service-intro-content p {
  margin: 24px 0 0;
  color: rgba(17,17,17,.7);
  line-height: 1.85;
}

.rt-service-intro-points {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}

.rt-service-intro-points div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111;
  font-weight: 900;
}

.rt-service-intro-points i {
  width: 34px;
  height: 34px;
  background: #A10101;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rt-service-intro-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  background: #A10101;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  transition: .25s ease;
}

.rt-service-intro-content a:hover {
  background: #111;
}

.rt-service-hub-grid {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rt-hub-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.rt-hub-card img,
.rt-hub-card:before {
  position: absolute;
  inset: 0;
}

.rt-hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .55s ease;
}

.rt-hub-card:before {
  content: "";
  background: linear-gradient(0deg, rgba(17,17,17,.92), rgba(17,17,17,.25));
  z-index: 1;
}

.rt-hub-card div {
  position: relative;
  z-index: 2;
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rt-hub-card span {
  color: #A10101;
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 18px;
}

.rt-hub-card h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-hub-card p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.rt-hub-card:hover img {
  transform: scale(1.08);
}

.rt-hub-card:hover span {
  color: #fff;
}

@media (max-width: 991px) {
  .rt-service-hero-wrap,
  .rt-service-intro-wrap {
    grid-template-columns: 1fr;
  }

  .rt-service-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.rt-service-section-heading h2 {
    font-size: clamp(2rem, 5vw, 50px);
    line-height: 45px;
}
  .rt-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .rt-service-hero-wrap,
  .rt-service-section-heading,
  .rt-benefit-grid,
  .rt-service-intro-wrap,
  .rt-service-hub-grid {
    width: min(100% - 28px, 1380px);
  }
.rt-service-intro {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}
	
	.rt-service-intro-content h2 {
    font-size: clamp(2rem, 5vw, 50px);
    line-height: 45px;
}
	
  .rt-service-hero-features,
  .rt-service-hub-grid {
    grid-template-columns: 1fr;
  }

  .rt-service-map-card {
    padding: 18px;
  }

  .rt-service-map-links a {
    grid-template-columns: 58px 1fr;
  }

  .rt-benefit-grid article {
    grid-template-columns: 1fr;
		
		
		justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
				text-align:center;
  }

  .rt-service-intro-media {
    min-height: auto;
  }

  .rt-service-intro-media img {
    width: 100%;
    height: 320px;
  }

  .rt-service-intro-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }
}


.rt-designated-services {
  background: #111;
  color: #fff;
}

.rt-designated-row {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  min-height: 540px;
}

.rt-designated-row.rt-designated-reverse {
  grid-template-columns: 1.45fr 1fr;
	    border-top: 100px solid #111;
    border-bottom: 100px solid #111;
}

.rt-designated-copy,
.rt-designated-photo {
  position: relative;
  overflow: hidden;
}

.rt-designated-copy {
  padding: 70px clamp(28px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(17,17,17,.98), rgba(17,17,17,.88)),
    #111;
}

.rt-designated-row.rt-designated-reverse .rt-designated-copy {
  background:
    linear-gradient(90deg, rgba(17,17,17,.9), rgba(17,17,17,.98)),
    #111;
}

.rt-designated-copy span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 950;
  margin-bottom: 18px;
}

.rt-designated-copy h2 {
  margin: 0;
  max-width: 690px;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 5vw, 50px);
  line-height: 55px;
  letter-spacing: 1px;
  font-weight: 950;
}

.rt-designated-copy h2 em {
  display: block;
  color: #A10101; font-size: 2rem;
  font-style: normal;
}

.rt-designated-copy h2:after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: #A10101;
  margin-top: 24px;
}

.rt-designated-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-size: 1.05rem;
}

.rt-designated-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
	   
  transition: transform 900ms ease, filter 900ms ease;
}

.rt-designated-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.22), rgba(0,0,0,0));
  z-index: 1;
  pointer-events: none;
}

.rt-designated-row:hover .rt-designated-photo img {
  transform: scale(1.07);
  filter: contrast(1.08);
}

.rt-designated-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.rt-designated-features small {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 850;
}

.rt-designated-features i {
  color: #A10101;
}

.rt-designated-link {
  margin-top: 34px;
  width: fit-content;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: all .25s ease;
}

.rt-designated-link i {
  color: #A10101;
}

.rt-designated-link:hover {
  background: #A10101;
  border-color: #A10101;
  color: #fff;
}

.rt-designated-link:hover i {
  color: #fff;
}

.rt-designated-badge {
  position: absolute;
  right: 42px;
  bottom: 42px;
  z-index: 4;
  width: 320px;
  background: rgba(17,17,17,.82);
  border: 1px solid rgba(255,255,255,.1);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(8px);
  transform: translateY(22px);
  opacity: 0;
  transition: all .35s ease;
}

.rt-designated-row:hover .rt-designated-badge {
  transform: translateY(0);
  opacity: 1;
}

.rt-designated-badge i {
  color: #A10101;
  font-size: 2rem;
}

.rt-designated-badge strong {
  display: block;
  color: #fff;
  font-weight: 950;
  margin-bottom: 4px;
}

.rt-designated-badge p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}

@media (max-width: 991px) {
	.rt-designated-copy span {
    justify-content: center;
}
  .rt-designated-row,
  .rt-designated-row.rt-designated-reverse {
    grid-template-columns: 1fr;
  }

  .rt-designated-row.rt-designated-reverse .rt-designated-photo {
    order: 2;
  }

  .rt-designated-row.rt-designated-reverse .rt-designated-copy {
    order: 1;
  }

  .rt-designated-copy,
  .rt-designated-photo {
    min-height: 430px;
  }

  .rt-designated-badge {
    opacity: 1;
    transform: none;
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 575px) {
  .rt-designated-copy {
		    padding: 58px 22px;
    text-align: center;
  }
.rt-designated-copy h2:after {
    width: 100%;
}
  .rt-designated-features {
    display: grid;
    gap: 14px;
  }

  .rt-designated-link {
    width: 100%;
    justify-content: center;
  }

  .rt-designated-badge {
    position: relative;
    width: calc(100% - 44px);
    right: auto;
    bottom: auto;
    margin: -92px 22px 28px;
  }
}

.rt-service-faq {
  padding: 120px 0;
  background: #fff;
}

.rt-faq-wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.rt-faq-media {
  position: relative;
  min-height: 620px;
}

.rt-faq-media img {
  width: 88%;
  height: 560px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.rt-faq-badge {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 310px;
  background: #111;
  color: #fff;
  border-left: 6px solid #A10101;
  padding: 28px;
  box-shadow: 0 25px 65px rgba(0,0,0,.25);
}

.rt-faq-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-faq-badge span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.rt-faq-list {
  display: grid;
  gap: 16px;
}

.rt-faq-item {
  background: #f8f8f8;
  border-left: 5px solid transparent;
  box-shadow: 0 14px 36px rgba(0,0,0,.055);
  transition: .25s ease;
  overflow: hidden;
}

.rt-faq-item.rt-active {
  border-left-color: #A10101;
  background: #fff;
}

.rt-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #111;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-weight: 950;
  font-size: 1.05rem;
}

.rt-faq-question i {
  color: #A10101;
  transition: .25s ease;
}

.rt-faq-item.rt-active .rt-faq-question i {
  transform: rotate(45deg);
}

.rt-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height .35s ease, padding .35s ease;
}

.rt-faq-item.rt-active .rt-faq-answer {
  max-height: 620px;
  padding: 0 26px 26px;
}

.rt-faq-answer p {
  margin: 0 0 14px;
  color: rgba(17,17,17,.7);
  line-height: 1.75;
}

.rt-faq-answer ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.rt-faq-answer li {
  position: relative;
  padding-left: 22px;
  color: #111;
  line-height: 1.6;
  font-weight: 750;
}

.rt-faq-answer li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #A10101;
  transform: rotate(45deg);
}

.rt-faq-answer a {
  color: #A10101;
  font-weight: 950;
}

@media (max-width: 991px) {
  .rt-faq-wrap {
    grid-template-columns: 1fr;
  }

  .rt-faq-media {
    min-height: auto;
  }

  .rt-faq-media img {
    width: 100%;
    height: 420px;
  }

  .rt-faq-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .rt-faq-wrap {
    width: min(100% - 28px, 1380px);
  }
}


.rt-septic-system-hub {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(161,1,1,.22), transparent 34%),
    linear-gradient(135deg, #111 0%, #191919 58%, #070707 100%);
  color: #fff;
  overflow: hidden;
}

.rt-septic-system-hub:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .32;
}

.rt-septic-system-hub .rt-service-section-heading {
  position: relative;
  z-index: 2;
}

.rt-septic-system-hub .rt-service-section-heading h2 {
  color: #fff;
}

.rt-septic-system-hub .rt-service-section-heading p {
  color: rgba(255,255,255,.76);
}

.rt-septic-system-stage {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1575px);
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr 550px;
  align-items: center;
  gap: 38px;
}

.rt-septic-system-tabs {
  display: grid;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}

.rt-septic-system-tab {
  position: relative;
  width: 100%;
  min-height: 82px;
  padding: 18px 18px 18px 28px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
  text-align: left;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s ease;
}

.rt-septic-system-tab:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #A10101;
  transition: .25s ease;
}

.rt-septic-system-tab span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.42);
  font-size: .78rem;
  letter-spacing: 1px;
  transition: .25s ease;
}

.rt-septic-system-tab:hover,
.rt-septic-system-tab.rt-active {
  padding-left: 38px;
  color: #fff;
  background: rgba(161,1,1,.14);
}

.rt-septic-system-tab:hover:before,
.rt-septic-system-tab.rt-active:before {
  width: 6px;
}

.rt-septic-system-tab.rt-active span {
  color: #A10101;
}

.rt-septic-system-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rt-septic-system-visual:before {
  content: "";
  position: absolute;
  bottom: 90px;
  width: 60%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(161,1,1,.28), transparent 70%);
}

.rt-septic-system-visual:after {
  content: "";
  position: absolute;
  bottom: 85px;
  width: 52%;
  height: 34px;
  background: rgba(0,0,0,.42);
  filter: blur(22px);
  border-radius: 50%;
}

.rt-septic-system-visual img {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  filter: drop-shadow(0 38px 44px rgba(0,0,0,.32));
  animation: rtSepticFloat 5s ease-in-out infinite;
  transition: transform .35s ease;
}

.rt-septic-system-stage:hover .rt-septic-system-visual img {
  transform: translateY(-10px) scale(1.02);
}

@keyframes rtSepticFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.rt-septic-system-orbit {
  position: absolute;
  z-index: 1;
  width: 560px;
  height: 360px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 50%;
  transform: rotate(-8deg);
  transition: .35s ease;
}

.rt-septic-system-stage:has(.rt-septic-system-tab.rt-active) .rt-septic-system-orbit {
  border-color: rgba(161,1,1,.5);
}

.rt-septic-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #A10101;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(161,1,1,.8);
}

.rt-node-one { left: 8%; top: 45%; }
.rt-node-two { right: 10%; top: 35%; }
.rt-node-three { left: 45%; top: -6px; }
.rt-node-four { left: 50%; bottom: -6px; }

.rt-septic-system-panel {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  background: rgba(255,255,255,.96);
  color: #111;
  padding: 52px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  border-left: 6px solid #A10101;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity .45s ease, visibility .45s ease, transform .45s ease;
}

.rt-septic-system-panel.rt-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rt-septic-system-panel > span {
  display: block;
  margin-bottom: 12px;
  color: #A10101;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rt-septic-system-panel h3 {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(2.5rem, 4vw, 2.5rem);
  line-height: .95;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.rt-septic-system-panel p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.rt-septic-system-panel ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rt-septic-system-panel li {
  position: relative;
  padding-left: 20px;
  color: #111;
  font-weight: 850;
}

.rt-septic-system-panel li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #A10101;
  transform: rotate(45deg);
}

.rt-septic-system-panel a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px;
  background: #A10101;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  transition: .25s ease;
}

.rt-septic-system-panel a:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 1199px) {
  .rt-septic-system-stage {
    grid-template-columns: 200px 1fr 430px;
    gap: 24px;
  }

  .rt-septic-system-panel {
    padding: 38px;
  }

  .rt-septic-system-tab {
    min-height: 74px;
  }
}

@media (max-width: 991px) {
  .rt-septic-system-stage {
    display: block;
    min-height: auto;
  }

  .rt-septic-system-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 35px;
  }

  .rt-septic-system-visual {
    min-height: 420px;
  }

  .rt-septic-system-panel {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .rt-septic-system-panel.rt-active {
    display: block;
  }

  .rt-septic-system-panel ul {
    grid-template-columns: 1fr;
  }

  .rt-septic-system-orbit {
    width: 430px;
    height: 280px;
  }
}

@media (max-width: 575px) {
  .rt-septic-system-hub {
    padding: 85px 0;
  }

  .rt-septic-system-stage {
    width: min(100% - 28px, 1575px);
  }

  .rt-septic-system-tabs {
    grid-template-columns: 1fr;
  }

  .rt-septic-system-visual {
    min-height: 330px;
  }

  .rt-septic-system-orbit {
    width: 310px;
    height: 210px;
  }

  .rt-septic-system-panel {
    padding: 34px;
  }
}



/**** Gallery Section ****/
.pci-gallery-page,
.pci-gallery-page * {
  box-sizing: border-box;
}

.pci-gallery-page {
  position: relative;
  padding: 200px 100px 100px 100px;
  background: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.pci-gallery-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 82, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 82, 31, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
}

.pci-gallery-page::after {
  content: "GALLERY";
  position: absolute;
  right: -20px;
  bottom: -22px;
  color: rgba(17, 17, 17, 0.045);
  font-size: clamp(90px, 15vw, 230px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.pci-gallery-page .pci-container {
  position: relative;
  z-index: 2;
}

.pci-gallery-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.pci-gallery-heading p {
  margin: 0 0 14px;
  color: #a10101;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pci-gallery-heading h1 {
  margin: 0;
  color: #111;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.pci-gallery-heading span {
  display: block;
  max-width: 640px;
  margin: 20px auto 0;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.pci-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pci-gallery-item {
  margin: 0;
  padding: 0;
}

.pci-gallery-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: #111;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.14);
  isolation: isolate;
}

.pci-gallery-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: grayscale(12%) contrast(1.03);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.pci-gallery-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62)),
    linear-gradient(120deg, rgba(161, 1, 1, 0.55), transparent 44%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pci-gallery-link::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pci-gallery-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pci-gallery-overlay i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #a10101;
  color: #fff;
  font-size: 18px;
  transform: skew(-10deg);
}

.pci-gallery-overlay span {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pci-gallery-link:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) contrast(1.08);
}

.pci-gallery-link:hover::before,
.pci-gallery-link:hover::after {
  opacity: 1;
}

.pci-gallery-link:hover::after {
  transform: scale(1);
}

.pci-gallery-link:hover .pci-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Magnific popup polish */
.mfp-bg {
  background: #000;
  opacity: 0.92;
}

.mfp-figure::after {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.mfp-title {
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .pci-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pci-gallery-page {
    padding: 74px 0;
  }

  .pci-gallery-heading {
    margin-bottom: 38px;
  }

  .pci-gallery-heading h1 {
    font-size: 40px;
  }

  .pci-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pci-gallery-link {
    aspect-ratio: 1 / 0.86;
  }
}



/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: font2; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 1.5rem; font-family: font2; color: rgb(75,75,75);
}
.area p {
	font-size: 17px; text-align: justify; color: rgb(12,12,12);
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

/**** Contact Section ****/


/**** Testimonials Section ****/
.testimonials {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}


/**** Sections On Every Page ****/
.rt-contact-section {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,.94), rgba(17,17,17,.82)),
    url("/img/homepage/site-services-01.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.rt-contact-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .35;
}

.rt-contact-wrap {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1450px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.rt-contact-kicker {
  display: inline-block;
  color: #fff;
  background: #A10101;
  padding: 10px 16px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  margin-bottom: 22px;
}

.rt-contact-content h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 45px);
  line-height: 65px;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-weight: 950;
}

.rt-contact-content p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.rt-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.rt-contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.rt-contact-info-card:hover {
  background: #A10101;
  border-color: #A10101;
  color: #fff;
  transform: translateY(-6px);
}

.rt-contact-info-card i {
  width: 52px;
  height: 52px;
  background: #A10101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 auto;
  transition: .25s ease;
}

.rt-contact-info-card:hover i {
  background: #fff;
  color: #A10101;
}

.rt-contact-info-card strong {
  display: block;
  font-weight: 950;
  margin-bottom: 4px;
}

.rt-contact-info-card span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: .95rem;
}

.rt-contact-service-list {
  margin-top: 28px;
  padding: 28px;
  background: rgba(0,0,0,.28);
  border-left: 5px solid #A10101;
}

.rt-contact-service-list strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-contact-service-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.rt-contact-service-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  font-weight: 700;
}

.rt-contact-service-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: #A10101;
  transform: rotate(45deg);
}

.rt-contact-form-panel {
  position: relative;
  background: #fff;
  color: #111;
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
}

.rt-contact-form-panel:before {
  content: "";
  position: absolute;
  left: -18px;
  top: 36px;
  width: 18px;
  height: 120px;
  background: #A10101;
}

.rt-contact-form-header {
  padding: 34px 40px 22px; text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.rt-contact-form-header span {
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  font-weight: 950;
}

.rt-contact-form-header h3 {
  margin: 8px 0 0;
  color: #111;
  font-size: clamp(2rem, 3vw, 30px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.rt-contact-form-shell {
  min-height: 560px;
  padding: 36px 40px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rt-contact-form-shell form {
  width: 100%;
}

.rt-contact-form-shell input,
.rt-contact-form-shell select,
.rt-contact-form-shell textarea {
  max-width: 100%;
}

@media (max-width: 991px) {
  .rt-contact-section {
    padding: 90px 0;
		text-align:center;
  }
.rt-contact-content h2 {
    font-size: clamp(1.8rem, 5vw, 45px);
    line-height: 45px;
}
  .rt-contact-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .rt-contact-form-shell {
    min-height: 500px;
  }
}

@media (max-width: 650px) {
  .rt-contact-wrap {
    width: min(100% - 28px, 1450px);
  }

  .rt-contact-info-grid {
    grid-template-columns: 1fr;
  }

  .rt-contact-form-header,
  .rt-contact-form-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rt-contact-form-shell {
    min-height: 460px;
  }
}



.rt-contact-hero {
  padding: 110px 0;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.rt-contact-hero-wrap {
  width: min(100% - 40px, 1450px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.rt-contact-hero-content span,
.rt-contact-expect-content span {
  display: inline-block;
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 950;
  margin-bottom: 18px;
}

.rt-contact-hero-content h1,
.rt-contact-expect-content h2 {
     margin: 0;
    font-size: clamp(3rem, 6vw, 65px);
    line-height: 75px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 950;

}

.rt-contact-hero-content p,
.rt-contact-expect-content p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  font-size: 1.08rem;
}

.rt-contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rt-contact-hero-actions a {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #A10101;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  transition: .25s ease;
}

.rt-contact-hero-actions a:nth-child(2) {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
}

.rt-contact-hero-actions a:hover {
  background: #fff;
  color: #111;
}

.rt-contact-map-shell {
  position: relative;
  min-height: 580px;
  box-shadow: 0 35px 90px rgba(0,0,0,.38);
  border: 12px solid rgba(255,255,255,.08);
}

.rt-contact-map-shell iframe {
  width: 100%;
  height: 580px;
  display: block;
  filter: grayscale(.2) contrast(1.05);
}

.rt-contact-cards {
 position: relative;
    z-index: 3;
    background: #111;
    padding-bottom: 100px;
}

.rt-contact-cards-grid {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: 0 25px 70px rgba(0,0,0,.14);
}

.rt-contact-card {
  color: #111;
  text-decoration: none;
  padding: 34px 28px;
  border-right: 1px solid rgba(17,17,17,.1);
  transition: .25s ease;
}

.rt-contact-card:last-child {
  border-right: 0;
}

.rt-contact-card i {
  width: 52px;
  height: 52px;
  background: #A10101;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: .25s ease;
}

.rt-contact-card span {
  display: block;
  color: rgba(17,17,17,.6);
  font-weight: 800;
  margin-bottom: 6px;
}

.rt-contact-card strong {
  display: block;
  color: #111;
  font-size: 1.05rem;
  font-weight: 950;
}

.rt-contact-card:hover {
  background: #A10101;
  color: #fff;
  transform: translateY(-8px);
}

.rt-contact-card:hover i {
  background: #fff;
  color: #A10101;
}

.rt-contact-card:hover span,
.rt-contact-card:hover strong {
  color: #fff;
}

.rt-contact-expect {
  padding: 120px 0;
  background: #f8f8f8;
}

.rt-contact-expect-wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.rt-contact-expect-content h2 {
  color: #111;
  font-size: clamp(2.7rem, 5vw, 50px); line-height: 65px;
}

.rt-contact-expect-content p {
  color: rgba(17,17,17,.7);
}

.rt-contact-steps {
  display: grid;
  gap: 20px;
}

.rt-contact-steps article {
  position: relative;
  background: #fff;
  padding: 34px 36px 34px 110px;
  box-shadow: 0 16px 42px rgba(0,0,0,.06);
  border-left: 5px solid transparent;
  transition: .25s ease;
}

.rt-contact-steps article:hover {
  border-color: #A10101;
  transform: translateX(8px);
}

.rt-contact-steps b {
  position: absolute;
  left: 34px;
  top: 34px;
  color: #A10101;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 950;
}

.rt-contact-steps h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 1.4rem;
  font-weight: 950;
}

.rt-contact-steps p {
  margin: 0;
  color: rgba(17,17,17,.68);
  line-height: 1.7;
}

.rt-contact-routing {
  padding: 120px 0;
  background: #fff;
}

.rt-contact-route-grid {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.rt-contact-route-card {
  position: relative;
  min-height: 460px;
  color: #fff;
  background: #111;
  overflow: hidden;
  text-decoration: none;
}

.rt-contact-route-card img,
.rt-contact-route-card:before {
  position: absolute;
  inset: 0;
}

.rt-contact-route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .65s ease;
}

.rt-contact-route-card:before {
  content: "";
  z-index: 1;
  background: linear-gradient(0deg, rgba(17,17,17,.92), rgba(17,17,17,.25));
}

.rt-contact-route-card div {
  position: relative;
  z-index: 2;
  min-height: 460px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rt-contact-route-card span {
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 950;
  margin-bottom: 14px;
}

.rt-contact-route-card h3 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
}

.rt-contact-route-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .rt-contact-hero-wrap,
  .rt-contact-expect-wrap {
    grid-template-columns: 1fr;
  }

  .rt-contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rt-contact-route-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .rt-contact-hero-wrap,
  .rt-contact-cards-grid,
  .rt-contact-expect-wrap,
  .rt-contact-route-grid {
    width: min(100% - 28px, 1450px);
  }

  .rt-contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .rt-contact-map-shell,
  .rt-contact-map-shell iframe {
    min-height: 420px;
    height: 420px;
  }

  .rt-contact-steps article {
    padding: 32px;
  }

  .rt-contact-steps b {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    margin-bottom: 14px;
  }
}

.rt-contact-route-card div {
  position: relative;
  z-index: 2;
  min-height: 460px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rt-contact-route-card span {
  color: #A10101;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 950;
  margin-bottom: 14px;
}

.rt-contact-route-card h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1.12;
  text-transform: none;
  font-weight: 900;
}

.rt-contact-route-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.rt-contact-route-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  font-weight: 750;
}

.rt-contact-route-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #A10101;
  transform: rotate(45deg);
}

.rt-contact-route-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 26px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 950;
}

.rt-contact-route-card:hover strong {
  color: #A10101;
}

/* ========================================== */
/* === Misc. Section ======================== */
/* ========================================== */

/****  Referrals Owl Carousel ****/

/**** Default Classes ****/
body {
	font-family: 'Montserrat', sans-serif;
}
body#barbajs {
	visibility: visible;
}
a, button, .btn {
	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
a {
	cursor:pointer;	text-decoration: none !important;
}
a:hover {
	color: #252525; text-decoration: underline;
}
.rt-footer {
  background: #f8f6ef;
  color: #111;
}

.rt-footer-main {
  position: relative;
  padding: 70px 0 55px;
  overflow: hidden;
}

.rt-footer-main:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,17,17,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .45;
}

.rt-footer-wrap {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
}

.rt-footer-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-bottom: 42px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(17,17,17,.12);
}

.rt-footer-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #111;
  text-decoration: none;
  padding: 0 30px;
  border-right: 1px solid rgba(17,17,17,.12);
}

.rt-footer-contact-card:first-child {
  padding-left: 0;
}

.rt-footer-contact-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.rt-footer-contact-card i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #A10101;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(161,1,1,.22);
  flex: 0 0 auto;
}

.rt-footer-contact-card span,
.rt-footer-column h3,
.rt-footer-areas h3,
.rt-footer-counties h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 950;
}

.rt-footer-contact-card strong {
  display: block;
  color: rgba(17,17,17,.72);
  font-size: 1rem;
  font-weight: 650;
}

.rt-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .8fr 1.35fr;
  gap: 58px;
  align-items: start;
}

.rt-footer-brand img {
  max-width: 280px;
  margin-bottom: 28px;
}

.rt-footer-brand p {
  max-width: 430px;
  color: rgba(17,17,17,.72);
  line-height: 1.8;
  margin: 0 0 28px;
}

.rt-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.rt-footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17,17,17,.14);
  color: #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .25s ease;
}

.rt-footer-socials a:hover {
  background: #A10101;
  border-color: #A10101;
  color: #fff;
  transform: translateY(-4px);
}

.rt-footer-column h3,
.rt-footer-areas h3,
.rt-footer-counties h3 {
  position: relative;
  margin: 0 0 26px;
}

.rt-footer-column h3:after,
.rt-footer-areas h3:after,
.rt-footer-counties h3:after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #A10101;
  margin-top: 12px;
}

.rt-footer-column a {
  display: block;
  color: rgba(17,17,17,.72);
  text-decoration: none;
  margin-bottom: 13px;
  font-weight: 650;
  transition: .25s ease;
}

.rt-footer-column a:hover {
  color: #A10101;
  padding-left: 8px;
}

.rt-footer-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rt-footer-area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(161,1,1,.08);
  color: #111;
  font-weight: 850;
  transition: .25s ease;
}

.rt-footer-area-chips span:hover {
  background: #A10101;
  color: #fff;
  transform: translateY(-3px);
}

.rt-footer-counties {
  margin-top: 50px;
  padding-top: 42px;
  border-top: 1px solid rgba(17,17,17,.12);
}

.rt-footer-county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rt-footer-county-grid article {
  background: #fff;
  border-left: 4px solid #A10101;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0,0,0,.055);
  transition: .25s ease;
}

.rt-footer-county-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(0,0,0,.09);
}

.rt-footer-county-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-weight: 950;
}

.rt-footer-county-grid p {
  margin: 0;
  color: rgba(17,17,17,.68);
  line-height: 1.6;
  font-size: .95rem;
}

.rt-footer-bottom {
  background: #111;
  color: #fff;
  padding: 28px 0;
}

.rt-footer-bottom-wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.rt-footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.rt-vms-link {
  text-align: center;
}

.rt-vms-link a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
}

.rt-vms-link img {
  max-width: 125px;
}

.rt-footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9rem;
}

.rt-footer-bottom-links a:hover,
.rt-footer-bottom-wrap > a:hover {
  color: #A10101;
}

.rt-trademark-disclaimer {
  background: #111;
  color: rgba(255,255,255,.52);
  text-align: center;
  padding: 0 20px 28px;
}

.rt-trademark-disclaimer p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: .78rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .rt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rt-footer-county-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .rt-footer-contact-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
	
	.rt-footer-brand p {
    max-width: max-content;
}
.rt-footer {
    background: #f8f6ef;
    color: #111;
    text-align: center;
}
.rt-footer-column h3:after, .rt-footer-areas h3:after, .rt-footer-counties h3:after {
    width: 100%;
}
  .rt-footer-contact-card,
  .rt-footer-contact-card:first-child,
  .rt-footer-contact-card:last-child {
    padding: 0;
    border-right: 0;
		justify-content: center;
  }

  .rt-footer-bottom-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rt-footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .rt-footer-wrap,
  .rt-footer-bottom-wrap {
    width: min(100% - 28px, 1380px);
  }

  .rt-footer-grid,
  .rt-footer-county-grid {
    grid-template-columns: 1fr;
  }

  .rt-footer-main {
    padding-top: 55px;
  }
}



/* === Lg. Laptop CSS Section ================= */
@media screen and (max-width : 1440px) {
	/*** Don't place anything here, unless absolutely necessary ***/
}
/* === Sm. Laptop CSS Section ================= */
@media screen and (max-width: 1024px) {
	
}
/* === Tablet CSS Section ===================== */
@media screen and (max-width: 768px) {

}
/* === Mobile CSS Section ===================== */
@media screen and (max-width: 425px) {

/**** Top Header Section ****/
.mobile-top-header {
	display:block !important; padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow: visible;
}
.mobile-menu {
	text-align: center; position: fixed; height: 100%; width: 100%;	display: block;	padding-top: 6em; top: 100%; border: 0;	background: #232323; border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all;	-webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
	font-size: 2em;	color: #c5c5c5 !important;
}
.mobile-menu-custom-show {
	top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover;	padding: 40px 0 0; top:0; left:0; width: 100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding: 0 25px;
}
#mobile-menu-header {
	margin-top: 0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style: none; padding: 0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(0,0,0);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(0,0,0);
}
.top-header {
	background: white; display: none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display: none;
}
.header-contact_info .navbar-brand {
	font-size: 1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content: flex-start;
}
.top-header div[class*='col-'] {
	display: flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background: none; margin: 0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size: inherit; line-height: inherit;
}

/**** Navigation Section ****/
.dropdown-wrapper {
	margin: 0; padding: 0;
}
.navbar-sidebar .dropdown-menu-mobile {
	position: relative; display: none; top: 0; left: 0; z-index: 1000; float: left; height: 0px; margin: 0; width: 100%; padding: 0; font-size: 18px; color: #e6e6e6 !important; text-align: left; list-style: none; background-color: rgb(200,200,200); border: 0; visibility: hidden; border-radius: 0; transform: scale(1,0); -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.dropdown-menu-animate {
	display: inline-block !important; transform: scale(1,1) !important; padding: 25px 0 !important; height: auto !important; visibility: visible !important;
}
.navbar-sidebar .dropdown-menu-mobile a {
	color: rgb(75,75,75); font-weight:600 !important; font-size: 1.3em; font-family: 'Raleway'; text-align: center;
}
.navbar-sidebar {
	padding-top: 84px; height: 100%; width: 200px; background-color: rgb(250,250,250); position: fixed !important; z-index: 1; overflow: auto;
}
.bar-block .dropdown-hover, .bar-block .dropdown-click {
	width: 100%;
}
.bar-block .dropdown-hover .dropdown-content, .bar-block .dropdown-click .dropdown-content {
	min-width: 100%;
}
.bar-block .dropdown-hover .button, .bar-block .dropdown-click .button {
	width: 100%; text-align: left; padding: 8px 16px;
}
.main, #main {
	transition: margin-left .4s;
}
.modal {
	display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%;	overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);
}
.modal-content {
	margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 1200px;
}
.bar {
	width: 100%; overflow: hidden;
}
.center .bar {
	display: inline-block; width: auto;
}
.bar .bar-item {
	padding: 8px 16px; float: left; width: auto; border: none; display: block; outline: 0;
}
.bar .dropdown-hover, .bar .dropdown-click {
	position: static; float: left;
}
.bar .button {
	white-space: normal;
}
.bar-block .bar-item {
	width: 100%; display: block; padding: 8px 16px; text-align: left; border: none; white-space: normal; float: none; outline: 0;
}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}

/**** Home Section ****/
.home-header-section {
	padding-top: 125px;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: .5rem 0; margin: .125rem 0 0; font-size: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(87, 86, 87); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-item {
	display: block;	width: 100%; padding: .25rem 1.5rem; clear: both; color: rgb(255,255,255); text-align: inherit;	white-space: nowrap; background: 0 0; border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.video .pad {
	padding: 350px 0px 0px 300px; position: absolute;
}
.video .pad h5 {
	font-weight: 500; color: rgb(255,255,255); font-size: 50px; text-shadow: 0px 0px 5px #000; font-family: 'Arial'; text-align: left;
}
.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 25px; font-family: 'Arial'; text-align: left;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
.home1 {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.home1 .pad {
	padding-top: 85px;
}
.home1 h1 {
	font-family: 'font2'; font-size: 35px; text-align: left; font-weight: 800; color: rgb(196,41,56);
}
.home1 p {
	font-size: 17px; font-family: 'font2'; font-weight: 600; text-align: justify; color: rgb(150,150,150);
}
.home1 span {
	color: rgb(83,82,82);
}

/**** About Section ****/


/**** Services Section ****/


/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: font2; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 1.5rem; font-family: font2; color: rgb(75,75,75);
}
.area p {
	font-size: 17px; text-align: justify; color: rgb(12,12,12);
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

/**** Testimonials Section ****/
.testimonials {
	padding: 30px 0 30px 0; background: rgb(255,255,255);
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.contact-section {
	padding: 50px 0 50px 0;
}
.contact-section h3 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; color: rgb(12,12,12);
}

/**** Footer Section ****/
.footer-section {
	padding-top: 30px; text-align: center;
}
.footer-section img {
	max-width: 210px; padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: rgb(255,255,255);
}
.service-cities a {
	font-size: 18px; line-height: 10px; color: rgb(255,255,255);
}

/**** Misc. Section ****/
.btn {
	background: rgb(249,78,1); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0; position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
	position: fixed; transform: scale(1,1); border: 0; background: white; border-radius: 0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.alert-dismissible .close {
	position: absolute; top: 0; right: 0; background: transparent; border: none; padding: 0.75rem 1.25rem; color: rgb(80,80,80); font-family: 'font2'; outline: none; z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}
.lnr {
	display: inline-block; fill: currentColor; width: 1em; height: 1em; vertical-align: -0.2em; cursor: pointer;
}

}
/* === Sm. Mobile CSS Section ================= */
@media screen and (max-width: 375px) {

}