/* ============================================================
   Red Star Safety & Traffic — Main Website Stylesheet
   ============================================================ */

/* ── Google Fonts are loaded in HTML ── */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --red: #c0000c;
  --red-dark: #8a0008;
  --red-light: #e8001080;
  --red-glow: rgba(192, 0, 12, 0.4);
  --black: #0d0d0d;
  --dark: #141414;
  --dark2: #1e1e1e;
  --dark3: #252525;
  --white: #ffffff;
  --grey: #b0b0b0;
  --grey-light: #f5f5f5;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Barlow", sans-serif;
  --nav-h: 101px;
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1{
  font-size: 3.5rem;
}
h2{
  font-size: 3rem;
}
h3{
  font-size: 2.5rem;
}
h3{
  font-size: 2.2rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 2;
  font-size: 18px;
}





#button {
  display: inline-block;
  background-color: var(--red);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}




/* ── Utility ─────────────────────────────────────────────── */
.section-pad {
  padding: 6% 0;
}
.section-pad-sm {
  padding: 5% 0;
}
.container-xl {
  max-width: 90%!important;
  margin: 0 auto;
  padding: 0 24px;
}
.text-red {
  color: var(--red);
}
.bg-dark2 {
  background: var(--dark2);
}
.bg-dark3 {
  background: var(--dark3);
}

.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.2rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 0 24px var(--red-glow);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}


.elementbtn {
  animation: tilt-shaking 5s infinite;
}

@keyframes tilt-shaking {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transform: rotate(0deg);
  }

  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75% {
    transform: rotate(5deg);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-5deg);
  }
}







/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
#mainNav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgb(222 222 222);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 0, 12, 0.25);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
  height: auto;
}
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo-text {
  line-height: 1.15;
}
.nav-logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav-logo-text span {
  font-size: 0.68rem;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--red);
  border-radius: var(--radius);
  transition:
    color var(--transition),
    background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: #7b0202;
  /* background: rgba(255, 255, 255, 0.409);*/
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
  padding: 8px 0;
  z-index: 100;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  transition:
    color var(--transition),
    background var(--transition),
    padding-left var(--transition);
}
.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(192, 0, 12, 0.12);
  padding-left: 20px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn-primary {
  padding: 10px 22px;
  font-size: 1rem;
}
.nav-emergency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-text 2s infinite;
}
@keyframes pulse-text {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 20px 0 30px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav a {
  display: block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mobile-nav a:hover {
  color: var(--red);
  background: rgba(192, 0, 12, 0.06);
}
.mobile-nav .mobile-sub a {
  padding-left: 46px;
  font-size: 0.88rem;
  color: var(--grey);
}
.mobile-nav .mobile-cta {
  padding: 20px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav .mobile-cta a {
  border: none;
  padding: 0;
}













/* Gallery Styles */
.gallery_container {
  max-width: 100%;
}

@media (min-width: 1300px) and (max-width: 2560px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (min-width: 700px) and (max-width: 1299px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 300px) and (max-width: 699px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.gallery_item {
  margin-bottom: 5px;
  overflow: hidden;
}

.popup-gallery a {
  display: block;
  width: 100%;
  border: 1px solid #fff;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
  transform: scale(1.05);
  border-color: #fff;
}

.popup-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 250px;
  max-height: 250px;
}

@media only screen and (max-width: 1000px) {
  .popup-gallery img {
    min-height: 150px;
    max-height: 150px;
  }
}

/* END  */

.singicon_btn_nlf {
  position: absolute;
  top: 44%;
  bottom: 56%;
  left: 44%;
  right: 56%;
  opacity: 0;
}

.singicon_btn_nlf svg {
  color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
  opacity: 1;
}

.hover_affect_nlf:hover img {
  opacity: 0.5;
}







/************************************/
/***	26. Contact Us Page css	  ***/
/************************************/
.page-contact {
  padding: 5% 0;
}
#contact .contact-info-item {
    border: 0px solid var(--red);
    padding: 10px;
    height: calc(100% - 10px);
    margin-bottom: 10px;
    align-items: center;
}

.contact-info-item {
    border: 2px solid red;
    border-radius: 30px;
    padding: 15% 5%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    background-color: #232222;
}
.contact-info-item:hover{
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
}
.contact-info-item .icon-box {
  background: var(--red);
  border-radius: 10px;
  width: 52px;
  height: 52px;
  display: flex;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-info-item .icon-box img {
  max-width: 30px;
  filter: brightness(0) saturate(100%) invert(95%) sepia(14%) saturate(6536%) hue-rotate(328deg) brightness(111%) contrast(92%);
}

.contact-info-item .contact-info-content h3 {
  font-size: 2.1rem;
  font-weight: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
 font-family: var(--font-display);
}

.contact-info-item .contact-info-content p {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.contact-us-form {
  padding: 5% 0;
  background-color: var(--dark2);
}

.contact-us-img img {
  border-radius: 30px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.contact-form {
  margin-left: 25px;
}

.contact-form .form-control {
  padding: 15px 20px;
  background-color: transparent;
  border: 2px solid var(--red);
  border-radius: 10px;
  color: #fff;
  box-shadow: none;
}
.contact-form .form-control::placeholder {
    color: #eee;
}
.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 730px;
}












/* ══════════════════════════════════════════════════════════
   EMERGENCY DISPATCH BANNER
══════════════════════════════════════════════════════════ */
.emergency-banner {
  background: #c0000cba;
  text-align: center;
  padding: 9px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 998;
}
.emergency-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}
.brand_logo img {
  width: 100px;
}
/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 2% 0px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  /* background: linear-gradient(
    135deg,
    rgba(192, 0, 12, 0.05) 0%,
    rgba(192, 0, 12, 0.02) 100%
  );
  border-left: 1px solid rgba(192, 0, 12, 0.15); */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 0, 12, 0.12);
  border: 1px solid rgba(192, 0, 12, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff9999;
  margin-bottom: 22px;
}
.hero-badge i {
  color: var(--red);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero-h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* Quote Form */
.quote-form-card {
  background: #1e1e1e5c;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}
.quote-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.quote-form-card p {
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option {
  background: var(--dark2);
}
.quote-form-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════════════════
   TRUST BADGES
══════════════════════════════════════════════════════════ */
#trust {
  background: var(--dark2);
  padding: 50px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.trust-card:hover {
  border-color: rgba(192, 0, 12, 0.4);
  transform: translateY(-3px);
}
.trust-icon {
  width: 70px;
  height: 70px;
  background: rgba(192, 0, 12, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 2rem;
}
.trust-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
#services {
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(192, 0, 12, 0.3);
}
.service-card-img {
  height: 100%;
  background: var(--dark3);
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-img .service-num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  color: var(--red);
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 1.2rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.service-card .btn-outline-red {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════ */
#why {
  background: var(--dark2);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-img-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}
.why-img-badge .lbl {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.why-item-247 {
  background:
    linear-gradient(rgba(50, 1, 1, 0.693), rgba(42, 0, 0, 0.716)),
    url("./../assets/images/ChatGPT\ Image\ Jun\ 1\,\ 2026\,\ 09_22_08\ PM.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why-item-fast {
  background:
    linear-gradient(rgba(50, 1, 1, 0.693), rgba(42, 0, 0, 0.716)),
    url("./../assets/images/fast.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.why-item-cert {
  background:
    linear-gradient(rgba(50, 1, 1, 0.693), rgba(42, 0, 0, 0.716)),
    url("./../assets/images/team.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.why-item-coverage {
  background:
    linear-gradient(rgba(50, 1, 1, 0.693), rgba(42, 0, 0, 0.716)),
    url("./../assets/images/coverage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.why-item-commercial {
  background:
    linear-gradient(rgba(50, 1, 1, 0.693), rgba(42, 0, 0, 0.716)),
    url("./../assets/images/commercial.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.why-item-safe {
  background:
    linear-gradient(rgba(50, 1, 1, 0.693), rgba(42, 0, 0, 0.716)),
    url("./../assets/images/safety.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.why-item-icon {
  color: var(--red);
  font-size: 3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item-text strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.why-item-text span {
  font-size: 1.2rem;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════════════════════════ */
#areas {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#areas .area_bg {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

#areas .area_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#areas .area_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

#areas .container-xl {
  position: relative;
  z-index: 2;
}

#serviceareas .area-card{
  padding: 15% 5%;
  background-position: center center;
  background-size: cover;
  position: relative;
  margin-bottom: 30px;
}
#serviceareas .area-card::after{
  content: "";
  position: absolute;
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
#serviceareas .area-card:hover::after {
  background: rgba(0, 0, 0, 0.1);
  opacity: 0.0; 
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

#serviceareas .area-card .areacontent{
  position: relative;
  z-index: 12;
  display: flex;
}
#serviceareas .area-card .area-text{
  margin-left: 20px;
}
#serviceareas .area-card .area-text h4{
  color: #fff;
}
#serviceareas .area-card:hover .areacontent{
  opacity: 0.0; 
  transition: 0.5s ease;
}
/* #serviceareas .area-card:hover::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
  z-index: -1;
} */











/* blog v2 customization styles */

#blog .blog-wrap {
    margin-bottom: 30px;
}
#blog .blog-wrap{
    display: flex!important;
}
#blog .post-pagination {
    margin-top: 20px;
}
#blog .blog-wrap .img-wrap {
    position: relative;
    width: 100%;
}
.date-holder {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #c0000c;
}
#blog .blog-wrap .img-wrap:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #fff;
}
#blog .blog-wrap .img-wrap .date-holder {
    padding: 20px 18px 15px;
}
#blog .blog-wrap .img-wrap .date-holder h2 {
    color: #fff;
    font-size: 15px;
    margin: 0;
    
}
#blog .blog-wrap .img-wrap .date-holder h2 b {
    display: block;
    font-size: 22px;
}

#blog .blog-wrap .img-wrap,
#blog .blog-wrap .content-wrap {
    display: table-cell;
    vertical-align: middle;
}
#blog .blog-wrap .content-wrap {
    background: #F5F4F4;
    padding-left: 30px;
    align-content: center;
  text-align: left;
  width: 100%;
}
#blog .blog-wrap .content-wrap:before {
    display: none;
}
#blog .post-pagination ul li.active a, #blog .post-pagination ul li:hover a {
    background: #FD9C1E;
    border-color: #FD9C1E;
}


/* contact content customization styles */

#contact-content {
    padding-bottom: 80px;
}
#contact-content .section-title {
    margin-bottom: 73px;
}
#contact-content .section-title h1 {
    margin: 0;
}
#contact-content + .google-map {
    margin-top: 0;
}
#contact-content .section-title p {
    color: #999999;
    font-size: 18px;
    margin: 0;
    margin-top: 40px;

}
#contact-content .contact-form {
    padding-right: 35px;
}
#contact-content .contact-form p:last-child  {
    margin-bottom: 0;
}

#contact-content .contact-form button {
    background: #2E2E2E;
    padding: 0 24px;
}
#contact-content .contact-info ul li .icon-box,
#contact-content .contact-info ul li .text-box {
    display: table-cell;
    vertical-align: middle;
}
#contact-content .contact-info ul li .icon-box i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--red);
    color: var(--red);
    text-align: center;
    line-height: 48px;
}
#contact-content .contact-info ul li {
    border: 1px solid #E5E5E5;
    padding: 25px 0px 25px 30px;
    margin-bottom: 30px;
}
#contact-content .contact-info ul li:last-child {
    margin-bottom: 0;
}
#contact-content .contact-info ul li .icon-box i.fa-map-marker {
    font-size: 30px;
}
#contact-content .contact-info ul li .icon-box i.fa-envelope-o {
    font-size: 23px;
}
#contact-content .contact-info ul li .icon-box i.fa-phone {
    font-size: 30px;
}
#contact-content .contact-info ul li .text-box {
    padding-left: 30px;
}
#contact-content .contact-info ul li .text-box p {
    margin: 0;
    font-size: 15px;
    color: #A3A3A3;
}


/* blog customization styles */


#blog-post .blog-content .img-holder {
    position: relative;
}
#blog-post .blog-content .img-holder .date-holder {
    position: absolute; 
    top: 0;
    left: 0;
    background: #c0000c;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    height: max-content;
    padding: 20px;
    text-transform: uppercase;
}
#blog-post .blog-content .img-holder .date-holder b {
    font-size: 22px;
    display: block;
}

#blog-post .blog-content .img-holder:before,
#blog-post .blog-content .img-holder:after {
    display: none;
}

#blog-post article .meta {
    font-size: 0;
    border-bottom: 1px solid #E1E1E6;
    padding-bottom: 10px;
    margin-bottom: 23px;
}
#blog-post article .meta li {
    display: inline-block;
}
#blog-post article .meta li a {
    font-size: 18px;
    color: #B0B0B0;
    text-transform: capitalize;
    padding-right: 30px;
    display: block;
    font-weight: 500;
    
    transition: all .3s ease;
}
#blog-post article .meta li a:hover {
    color: #c0000c;
}
#blog-post article .meta li a i {
    color: #c0000c;
    font-size: 18px;
    margin-right: 10px;
}
#blog-post article .meta li a i.fa-comments-o {
    font-size: 18px;
}
#blog-post article {
    font-weight: normal;
}
#blog-post article > a {
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;    
}
#blog-post article > a i {
    color: #c0000c;
    font-size: 15px;
    margin-right: 10px;    
}
#blog-post .post-pagination ul {
    text-align: left;
}

#blog-post .blog-left.pull-right .sidebar-widget {
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
}


/*  search page customization styles */

#blog-post article.search-result {
    margin-bottom: 0px;
    padding: 30px;
    border: 1px solid transparent;
}
#blog-post article.search-result:nth-child(even) {
    background: #F9F9F9;
    border-color: #EBEBEB;
}
.blog-content article.search-result .img-holder,
.blog-content article.search-result .img-holder + .content {
    vertical-align: top;
    display: table-cell;
}
.blog-content article.search-result .img-holder {
    width: 168px;
}
.blog-content article.search-result .img-holder + .content {
    padding-left: 30px;
}
.blog-content article.search-result .content span {
    font-family: 'PT Serif', sans-serif;
    font-size: 15px;
    font-style: italic;
    color: #9F9F9F;
    margin-bottom: 3px;
    display: inline-block;
}
.blog-content article.search-result .content h3 {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 3px;
}
.blog-content article.search-result .content p {
    font-size: 18px;
    color: #8E8D8D;
    margin: 0;
    font-weight: 500;
    margin-bottom: 5px;
}
.blog-content article.search-result .content a {
    color: #36ABFC;
    font-size: 18px;
    font-weight: 500;
}

/* testimonial customization styles */


#testimonials .single-testimonial {
    border: none;
    margin: 0;
}
#testimonials .single-testimonial .profile-info img {
    position: static;
    bottom: 0;
}
#testimonials .single-testimonial .profile-info,
#testimonials .single-testimonial .content {
    display: table-cell;
    vertical-align: top;
    margin: 0;
    padding: 0;
    width: auto;
}
.testimonials_v1 #testimonials.testimonials_v1_content .single-testimoinal-wrap .single-testimonial .content {
    width: auto;
    padding: 0 25px;
    border: 0;
}
.testimonials_v1 #testimonials.testimonials_v1_content .single-testimoinal-wrap .single-testimonial .content h2 {
    color: #312F3E;
    font-size: 18px;
    text-transform: capitalize;
    font-style: italic;
    text-align: right;
    margin: 0;
    margin-top: 30px;
}
#testimonials .single-testimonial .profile-info {
    width: 144px;
}
.testimonials_v1 #testimonials.testimonials_v1_content .single-testimoinal-wrap {
    margin: 0;
    margin-bottom: 30px;
    box-shadow: 0 0 21px rgba(0,0,0,.06);
}
#testimonials .single-testimonial .content p {
    margin-top: 25px;
}

.testimonials-v2 .section-title h1 {
    margin: 0;
    padding: 0;
}
.testimonials-v2 .section-title h1:before  {
    display: none;
}
.testimonials-v2 .section-title h1:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c0000c;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 50px;
}
.testimonials-v2 .section-title p {
    color: #979696;
    font-size: 18px;
    margin-bottom: 80px;
}

.single-testimonial {
    margin-bottom: 30px;
    border: 2px solid #E7E7E7;
}
.single-testimonial .profile-info,
.single-testimonial .content {
    display: table-cell;
    vertical-align: top;
    margin: 0;
    padding: 0;
    width: auto;
}
.single-testimonial .content {
    width: auto;
    padding: 0 25px;
    border: 0;
}
.single-testimonial .content h2 {
    color: #312F3E;
    font-size: 18px;
    text-transform: capitalize;
    font-style: italic;
    text-align: right;
    margin: 0;
    margin-top: 30px;
}
.single-testimonial .profile-info {
    width: 144px;
}
.single-testimonial .content p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 25px;
}
.single-testimonial .content .fa {
    font-size: 19px;
    margin-right: 10px;
    color: #c0000c;
}



/* gallery v4 styles */


#project-version-one .gallery-v4 .single-project-item  {
    width: 20%;
    float: left;
    margin-bottom: 0;
}
.single-project-item {
    position: relative;
    overflow: hidden;
}
.single-project-item .content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
}
.single-project-item .content-wrapper:before {
    background: rgba(73,147,220, .9);
}
.single-project-item .content {
    display: table;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s ease;
}
.single-project-item .content .button-box {
    position: absolute;
    top: 20px;
    right: 20px;
}
.single-project-item .content .button-box a {
    color: rgba(255,255,255, 1);
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 28px;
    border: 1px solid rgba(255,255,255,1);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}
.single-project-item .content .text-box {
    display: table-cell;
    vertical-align: bottom;
}
.single-project-item .content .text-box h4 {
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    margin-bottom: 5px;
}
.single-project-item .content .text-box span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 500;
    
}
.single-project-item:hover .content {
    opacity: 1;
}

/**
* Project version 3 Styles.
**/

#project-version-one.project-v3 {
    background: #f9f9f9;    
}
#project-version-one .two-col-gallery img {
    width: 100%;
}
#project-version-one .two-col-gallery .single-project-item .content {
    text-align: center;
    background: #fff;
    padding: 20px 0;
    display: block;
    opacity: 1;
}
#project-version-one .two-col-gallery .single-project-item .content h4 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
    margin: 0;
    color: #787878;
}
#project-version-one .two-col-gallery .single-project-item .content span {
    font-size: 18px;
    text-transform: capitalize;
    color: #787878;
    font-weight: 600;
}
#project-version-one .two-col-gallery .single-project-item:hover .content h4 {
    color: #fff;
}
#project-version-one .two-col-gallery .single-project-item:hover .content span {
    color: #fff;
}
#project-version-one .two-col-gallery .single-project-item .overlay {
    position: relative;
}
#project-version-one .two-col-gallery .single-project-item .overlay:before {
    content: ' ';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 0%;
    background: rgba(0,0,0,.60);
    z-index: 1;
    transition: all .3s ease;
}
#project-version-one .two-col-gallery .single-project-item .overlay:after {
    content: ' ';
    width: auto;
    height: auto;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border: 1px solid #808080;
    z-index: 2;
    visibility: hidden;
}
#project-version-one .two-col-gallery .single-project-item:hover .overlay:before {
    height: 100%;
}
#project-version-one .two-col-gallery .single-project-item:hover .overlay:after {
    visibility: visible;
}
#project-version-one .two-col-gallery .single-project-item .content:before {
    background: var(--red);
}
#project-version-one .two-col-gallery .single-project-item:hover .content:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/* one page header update styles */

header.construct.header-curvy .mainmenu-container > ul.mainmenu.one-page-scroll-menu > li > a {
    padding: 0 15px;
}
















.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.area-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  transition: all var(--transition);
  cursor: pointer;
}
/* .area-card:hover {
  border-color: var(--red);
  background: rgba(192, 0, 12, 0.07);
  transform: translateY(-2px);
} */
.area-icon {
  color: var(--red);
  font-size: 3rem;
  flex-shrink: 0;
}
.area-text strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}
.area-text span {
  font-size: 1rem;
  color: var(--grey);
}

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
#gallery {
  background: var(--dark2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:nth-child(1) {
  grid-column: 1/3;
}
.gallery-item:nth-child(1) img {
  height: 280px;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 0, 12, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .overlay {
  background: rgba(192, 0, 12, 0.35);
}
.overlay i {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay i {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
#testimonials {
  background: var(--black);
}

.testimonials-slider {
  margin-top: 52px;
}

.testimonial-card {
  background: #1e1e1e73;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-top: 12px;
  margin-bottom: 30px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-card figure {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: -1;
}
.testimonial-card figure img {
  width: 6%;
  height: 62px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  font-size: 1.2rem;
}

.author-company {
  font-size: 1rem;
  color: var(--grey);
  margin-top: 2px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 0, 12, 0.4);
}
.testimonial-text {
  font-size: 1.1em;
}
.testimonials-slider .owl-stage {
  display: flex;
}

.testimonials-slider .owl-item {
  display: flex;
}

.testimonials-slider .owl-item .testimonial-card {
  width: 100%;
}
.testimonials-slider .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonials-slider .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: var(--dark2) !important;
  border: 1px solid var(--border) !important;
  transition: 0.3s ease;
}

.testimonials-slider .owl-nav button:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.testimonials-slider .owl-nav span {
  font-size: 26px;
  line-height: 1;
}
.stars {
  color: #f5c518;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
#cta-band {
  background: var(--red);
  padding: 70px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
  max-width: 560px;
}
.cta-band-inner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
#cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════ */
#blog {
  background: var(--dark2);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.blog-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 0, 12, 0.25);
}
.blog-card-img {
  height: 100%;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body{
  color: var(--grey);
}

.blog-tag {
  display: inline-block;
  background: rgba(192, 0, 12, 0.15);
  color: #ff9999;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-weight: 700;
  line-height: 1;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 1.2rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-meta {
  font-size: 0.76rem;
  color: var(--grey);
  display: flex;
  gap: 14px;
}
.blog-meta i {
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
#contact {
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}
/* .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
} */
.contact-info-item {
  display: flex;
  gap: 16px;
}
.page-contact .contact-info-item{
  display: block;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(192, 0, 12, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-info-item a,
.contact-info-item span {
  font-size: 1rem;
  color: var(--white);
}
.contact-info-item a:hover {
  color: var(--red);
}
.map-embed {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

.contact-form-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.contact-form-card p {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form-card textarea {
  height: 110px;
  resize: vertical;
}
.contact-form-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}
.footer-brand span {
  color: var(--red);
}
.footer-desc {
  font-size: 1.2rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--grey);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: normal;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px;
  padding: 0px;
}
.footer-links a {
  font-size: 1.2rem;
  color: var(--grey);
  transition:
    color var(--transition),
    padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: "›";
  color: var(--red);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.2rem;
  color: var(--grey);
}
.footer-contact-item i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--white);
}
.footer_copr_wrap a {
  color: var(--red);
  font-weight: 600;
}
.footer_copr_wrap a:hover {
  color: #fff;
}
/* ══════════════════════════════════════════════════════════
   FLOATING MOBILE BUTTONS
══════════════════════════════════════════════════════════ */
.mobile-float {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.mobile-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-float .mf-call {
  background: var(--red);
  color: var(--white);
}
.mobile-float .mf-quote {
  background: var(--dark2);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   GROUP LANDING MODAL
══════════════════════════════════════════════════════════ */
#groupModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: modalFadeIn 0.5s 0.3s forwards;
}
@keyframes modalFadeIn {
  to {
    opacity: 1;
  }
}

.group-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  background: var(--black);
  border: 1px solid rgba(192, 0, 12, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  animation: modalSlideUp 0.5s 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes modalSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.group-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
}
.group-modal-close:hover {
  background: var(--red);
}

/* The modal body re-uses the existing group landing styles
   but scoped inside #groupModal */
#groupModal .modal-landing {
  padding: 20px;
  background: linear-gradient(
    160deg,
    rgba(120, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:last-child {
  background: #ae070788;
  border-color: var(--red-dark);
  justify-content: center;
  align-items: center;
  padding: 40px 32px;
  text-align: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card:last-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.service-card:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(26 0 0 / 66%);
  z-index: -1;
}
/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .quote-form-card {
    max-width: 540px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-img-wrap img {
    height: 320px;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-column: 1/3;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
}
@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) {
    grid-column: 1/3;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-accent {
    display: none;
  }
  body {
    padding-bottom: 56px;
  }
  #groupModal .modal-landing {
    padding: 24px 16px 36px;
  }
}
@media (min-width: 901px) {
  .mobile-float {
    display: none !important;
  }
}


.cta-band-inner h2{
  color: #fff;
}
.service-two-tab-title h2{
   margin-bottom: 20px;
}
.service-two-tab-title ul{
  margin: 0px;
  padding: 0px;
}
.service-two-tab-title li{ 
    display: inline-block;
    background: #333333;
    border: 1px solid #E5E5E5;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 14px 25px;
    width: 100%;
    position: relative;
    transition: all .3s ease;
}

.img-caption h4{
  color: #fff;
}
.service-two-tab-title li:hover{
   color: #fff;
   background: rgb(185 1 13);
}
.single-sidebar .img-box .img-caption {
  bottom: 0;
  width: 100%;
  background: rgb(185 1 13);
  padding: 15px 30px 10px;
}
.call-to-action-box{
  margin-top: 50px;
}
.service-two-tab-title ul li:last-child a {
    margin-bottom: 0;
}
.service-two-tab-title li a:before {
    width: 5px;
    height: 56px;
    content: '';
    position: absolute;
    left: -2px;
    top: -1px;
    bottom: -1px;
    background: transparent;
    transition: all .3s ease;
}
.service-two-tab-title ul li.active a:after {
    height: 100%;
    font-family: 'FontAwesome';
    content: '\f0d9 ';
    position: absolute;
    right: -2px;
    top: 0;
    line-height: 56px;
    color: #F9F9F9;
    font-size:  2.2rem;
    background: transparent;
    transition: all .3s ease;
}
.service-two-tab-title ul li.active a,
.service-two-tab-title ul li a:hover {
    background: ;
    color: #FFFFFF;
    border-color: #212A3B;
}
.service-two-tab-title ul li.active a:before,
.service-two-tab-title ul li a:hover:before {
    background: var(--red);
}




/* #groupModal {
  display: none !important;
}
html,
body {
  overflow-y: auto !important;
} */




/**
*****************************************
* Table Of content

*****************************************
*****************************************
**/

.ptb{
    padding: 5% 0;
}

.anim-3,
.anim-3-all * {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.anim-5,
.anim-5-all * {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.anim-7,
.anim-7-all * {
  transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}

.pt0 {
    padding-top: 0 !important;
}



.container {
    max-width: 90%!important;
  }



.bookappbtn{
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid #c0000c;
  display: inline-block;
  line-height: 36px;
  padding: 0 5px;
  position: relative;
  background-color: #c0000c;	
  margin-left: 10px;
  top: -30px;
}
.bookappbtn:hover{
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid #c0000c;
  background-color: #000000;	
  transition: .5s;
}

/**
* Parallax Eelement Styles.
**/
.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
}


/**
* Background Image effect Styles.
**/

.bg-img-sharp-effect {
    -webkit-filter: contrast(0.75);
    filter: contrast(0.75);
    mix-blend-mode: overlay;
}


/**
* Top Bar Styles.
**/

#topbar {
    background: #012c3c;
    color: #999ea3;
}
#topbar .container .row {
    margin: 0;
}
#topbar .social ul li {
    display: inline;
}
#topbar .social ul li a {
    display: inline-block;
    font-size: 18px;
    line-height: 49px;
    border-left: 1px solid #073D51;
    padding: 0 12px;
    color: #999ea3;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#topbar .social ul li:hover a {
    background: #c0000c;
    color: #fff;
}
#topbar .social ul li a i {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#topbar .social ul li:hover a i {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
#topbar .social ul li:last-child a {
    /*border-right: 1px solid #073D51;*/
}
#topbar .contact-info ul li {
    float: left;
}
#topbar .contact-info ul li a {
    display: inline-block;
    font-size: 18px;
    line-height: 49px;
    padding: 0 0px;
    margin-right: 42px;
    color: #A2A2A2;
    
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#topbar .contact-info ul li:hover a,
#topbar .contact-info ul li a:before {
    /*background: #12AEF8;*/
    color: #fff;
}
#topbar .contact-info ul li a i.fa {
    font-size: 15px;
    margin-right: 5px;
}
#topbar .contact-info ul li:last-child a {
    /*border-right: 1px solid #073D51;*/
}
/**
* Header Styles.
**/


header .logo {
    margin: 20px 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
header .mainmenu-container ul {
    text-align: right;
    display: inline-block;
}
header .mainmenu-container ul li {
    display: inline-block;
    line-height: 105px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
header .mainmenu-container ul li a {
    display: inline-block;
    font-size: 18px;
    color: #515050;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 12px;
    position: relative;
    vertical-align: bottom;
}
header .mainmenu-container > ul > li.current > a,
header .mainmenu-container ul li a:hover {
    color: #c0000c;
}
header .mainmenu-container ul li a:before {
    height: 4px;
    background: #c0000c;
}
header .mainmenu-container ul li.current a:before {
    right: 0;
}
header .mainmenu-container ul li.top-icons a {
    padding: 0 5px;
}
header .mainmenu-container ul li.top-icons a i {
    color: #31AFE2;
    font-size: 18px;
    border: 1px solid #D8D8D8;
    padding: 10px;
    border-radius: 50%;
    transition: all .3s ease;

}
header .mainmenu-container ul li.top-icons:hover a i {
    border-color: #c0000c;
    color: #c0000c;
}
header .search-box {
    background: #c0000c;
    padding: 10px 0;
    display: none;
}
header .search-box form {
    background: #fff;
    border: 1px solid #fff;
    height: 35px;
    padding: 0px 10px;
    line-height: 35px;
    border-radius: 4px;
    font-size: 18px;
}
header .search-box form input {
    width: 87%;
    background: none;
    border: none;
    outline: none;
}
header .search-box form button {
    background: none;
    color: #E3960A;
    outline: none;
    border: none;
}
header .cart-box {
    background: var(--red);
    padding: 10px 0;
    display: none;
}
header .cart-box p {
    color: #fff;
    font-size: 15px;
    text-align: right;
    margin-bottom: 0;
}
header .cart-box .icon {
    font-size: 18px;
}
header .cart-box span {
    color: #c0000c;
    font-weight: bold;
    
}
.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 3px 5px rgba(81, 183, 227, .2);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
header.header-fixed .mainmenu-container ul li {
    line-height: 75px;
}
header.header-fixed .logo {
    margin: 5px 0;
}
.header-fixed .bookappbtn {
  top: -18px;
}

/**
* Navigation Dropdown Styles.
**/

.mainmenu-container ul > li {
    position: relative;
    margin: 0;
    padding: 0;
}
.mainmenu-container ul > li > ul {
    background: #191919;
    position: absolute;
    top: 200%;
    left: 0;
    z-index: 9999;
    width: 225px;
    visibility: hidden;
    opacity: 0;
    border-top: 2px solid #c0000c;
    -webkit-box-shadow: 0px 5px 5px 1px rgba(0,0,0,.2);
    box-shadow: 0px 1px 5px 1px rgba(0,0,0,.2);
    filter: alpha(opacity=0);
    -webkit-transition: all 400ms ease 100ms;
    transition: all 400ms ease 100ms;
}
.mainmenu-container ul > li:hover > ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}
.mainmenu-container ul > li > ul > li {
    display: block;
    position: relative;
}
header nav.mainmenu-container ul > li > ul > li > a {
  border-bottom: 1px solid #2A2A2A;
  color: #767474;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  padding: 0 25px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
header nav.mainmenu-container ul > li > ul > li > a:after {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #999;
    font-size: 18px;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 20px;
    display: none;
    transition: all .3s ease;
}
header nav.mainmenu-container ul > li > ul > li > a:hover:after {
    color: #c0000c;
}
header nav.mainmenu-container ul > li > ul > li:last-child > a {
    border: none;
}
header nav.mainmenu-container ul > li > ul > li > a:hover {
    color: #c0000c;  
}
.mainmenu-container ul > li.dropdown:after {
    font-family: 'FontAwesome';
    content: '\f0d7';
    position: absolute;
    bottom: 20px;
    display: block;
    color: #c0000c;
    line-height: 20px;
    font-size: 18px;
    text-align: center;
    z-index: 5;
    width: 100%;
    cursor: pointer;
    opacity: 0;
    transition: all .3s ease;
}
.mainmenu-container ul > li.dropdown:hover:after {
    opacity: 1;
}
.header-fixed .mainmenu-container ul > li.dropdown:after {
    bottom: 10px;
}
/**
* Third Level Menu Styles.
**/

.mainmenu-container ul > li > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.mainmenu-container ul > li > ul > li > ul {
    background: #191919;
    position: absolute;
    top: 100%;
    left: 100%;
    z-index: 9999;
    width: 225px;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 400ms ease 100ms;
    transition: all 400ms ease 100ms;
}
.mainmenu-container ul > li > ul > li:hover {
    overflow: visible;
}
.mainmenu-container ul > li > ul > li:hover > ul {
    left: 100%;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    top: 0;
}
.mainmenu-container ul > li > ul > li > ul > li {
    display: block;
    position: relative;
}
.mainmenu-container ul > li > ul > li > ul > li > a {
    border-bottom: 1px solid #2A2A2A;
    color: #787878;
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 40px;
    padding: 0 25px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}
.mainmenu-container ul > li > ul > li > ul > li:last-child > a {
    border: none;
}
.mainmenu-container ul > li > ul > li.dropdown:after {
    font-family: 'FontAwesome';
    content: '\f0da';
    position: absolute;
    right: 7px;
    top: 9px;
    width: 20px;
    height: 20px;
    display: block;
    color: #999;
    line-height: 20px;
    font-size: 18px;
    text-align: center;
    z-index: 5;
    cursor: pointer;
}
.mainmenu-container ul > li > ul > li.dropdown:hover:after {
    color: #c0000c;
}
/**
* Banner Styles.
**/

.banner-container {
    width: 100%;
    position: relative;
    padding: 0;
}
.banner {
    width: 100%;
    position: relative;
}
.banner .banner-txt h1 {
    font-size: 50px;
    line-height: 50px;
    color: #2ba2e3;
    font-weight: 900;
    text-transform: uppercase;
}
.banner .banner-txt h1 span {
    color: #c0000c;
}
.banner .banner-txt h1:after {
    content: ' ';
    display: block;
    width: 190px;
    height: 2px;
    background: #fff;
    margin: 30px 0;
}
.banner .banner-txt p {
    color: #fff;
    margin-bottom: 35px;
    word-wrap: break-word;
}
.banner .banner-txt button {
    border: 1px solid #4C7B96;
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    line-height: 40px;
    padding: 0 35px;
    font-weight: bold;
}
.banner .banner-txt button:hover {
    border-color: transparent;
}
.banner .banner-txt button:before {
    background: #c0000c;
}
.banner .banner-form {
    background: #fff;
    padding-bottom: 20px;
    width: 300px !important;
}
.banner .banner-form .tab-title {
    margin: 0 -15px;
    margin-bottom: 25px;
}
.banner .banner-form .tab-title div {
    float: left;
    color: #444444;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 50px;
    border-top: 5px solid transparent;
    background: #E8E8E8;
    padding: 0 22px;
    cursor: pointer;
}
.banner .banner-form .tab-title div.active {
    background: #fff;
    border-top: 5px solid var(--red);
}
.banner .banner-form .tab-content .txt-highlight {
    font-size: 20px;
    line-height: 45px;
    color: #fff;
    font-weight: 900;
    background: #012C3C;
    text-align: center;
    text-transform: uppercase;
    margin: 0 -15px;
    margin-bottom: 20px;
}
.banner .banner-form .tab-content p {
    margin-bottom: 15px;
}
.banner .banner-form .tab-content p label {
    font-size: 15px;
    line-height: 34px;
    color: #000;
    display: inline-block;
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
    font-weight: normal;
    width: 15%;
}
.banner .banner-form .tab-content p label.error {
    display: none !important;
}
.banner .banner-form .tab-content p input[type="text"] {
    border: 1px solid #EAEAEA;
    height: 34px;
    padding-left: 10px;
    width: 77%;
    outline: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.banner .banner-form .tab-content p input[type="text"].error {
    border-color: red;
}
.banner .banner-form .tab-content p input[type="text"]:focus {
    background: var(--red);
    color: #fff;
}
.banner .banner-form .tab-content p button {
    background: #c0000c;
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    line-height: 40px;
    padding: 0 50px;
    text-transform: uppercase;
    font-weight: bold;
    float: right;
}
.banner .banner-form .tab-content p button:before {
    background: var(--red);
}
.banner .light-plumber-slider-caption h1 {
    font-size: 30px;
    line-height: 50px;
    color: #FFFFFF;
    font-weight: 300;
    text-transform: uppercase;
}
.banner .bold-plumber-slider-caption h1 {
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}
.banner .slider-3 .bold-pxslider-caption h1 {
    font-size: 38px;
    line-height: 50px;
    color: #fff;
    font-weight: 900;
    background: #c0000c;
    text-transform: uppercase;
    padding: 0 15px;
}
.banner .slider-3 .light-pxslider-caption h1 {
    font-size: 34px;
    line-height: 50px;
    color: #fff;
    font-weight: 300;
    background: #013E54;
    text-transform: uppercase;
    padding: 0 15px;
}
.banner .slider-3 .simple-pxslider-caption {
    font-size: 18px;
    line-height: 50px;
    color: #383838;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 15px;
    border-bottom: 1px solid #D8D8D8;
}
#banner .tp-bullets {
    display: none;
}
/**
* Promotional Styles.
**/

#promotional-text {
    background: #c0000c;
    color: #fff;
}
#promotional-text p {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 125px;
    font-weight: 200;
    color: #fff;
    text-align: center;
}
#promotional-text p b {
    font-weight: 500;
}
/**
* Who We Are Styles.
**/

#who-we-are {
    padding: 80px 0;
}
#who-we-are .large-box div {
    padding: 0;
}
#who-we-are .large-box .col-lg-6 img {
    width: 100%;
}
#who-we-are .large-box .col-lg-6:last-child {
    background: var(--red);
    color: #fff;
    padding: 35.5px 30px;
}
#who-we-are .large-box div h2 {
    font-size:  2.2rem;
    line-height: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}
#who-we-are .large-box div p {
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}
#who-we-are .large-box .img-holder {
    position: relative;
    overflow: hidden;
}
#who-we-are .large-box:hover .img-holder:before {
    left: 0;
}
#who-we-are .large-box .img-holder:before {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    background: rgba(81, 183, 227, .75);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#who-we-are .large-box:hover .hvr-bounce-to-left:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#who-we-are .large-box .hvr-bounce-to-left:before {
    background: #c0000c;
}
#who-we-are .single-box .img-holder {
    position: relative;
    overflow: hidden;
}
#who-we-are .single-box:hover .img-holder:before {
    bottom: 0;
}
#who-we-are .single-box .img-holder:before {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: rgba(254, 84, 84, .75);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#who-we-are .single-box h2 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    margin-top: 25px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#who-we-are .single-box:hover h2 {
    color: #12AEF8;
}
#who-we-are .single-box p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #8e8d8d;
    margin-top: 7px;
}
/**
* Section Title Styles.
**/


/**
* Section title two Styles.
**/

.section-title-style-2 h1 {
    font-size:  2.2rem;
    line-height: 70px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 50px;
    border: 1px solid #ECECEC;
    position: relative;
    border-left: 4px solid #c0000c;
    padding: 0 30px;
}



/**
* Service We Provide Styles.
**/

#service-we-provide {
    padding: 80px 0;
    background: #F9F9F9;
}
#service-we-provide .section-title h1 {
    width: 75%;
}
.service-tab-title ul li {
    font-size: 18px;
    line-height: 45px;
    color: #787878;
    font-weight: 500;
    padding: 0 25px;
    text-transform: uppercase;
    border: 1px solid #E4E4E4;
    border-top: 0;
    cursor: pointer;
    background: #fff;
    font-weight: 600;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.service-tab-title ul li:first-child {
    border-top: 1px solid #E4E4E4;
}
.service-tab-title ul li:hover,
.service-tab-title ul li.active {
    color: #c0000c;
    position: relative;
    background: #F9F9F9;
    border-right: 0;
}
.service-tab-title ul li.active:before {
    content: ' ';
    width: 6px;
    height: 100%;
    background: #c0000c;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.service-tab-content {
    position: relative;
}
.service-tab-content > div:last-child {
    padding: 0;
}
.service-tab-content p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
    margin-bottom: 40px;
}
.service-tab-content ul li {
    font-size: 18px;
    line-height: 35px;
    margin-left: 15px;
    color: #999999;
}
.service-tab-content ul li .fa {
    color: var(--red);
    margin-right: 10px;
    font-size: 18px;
}
.service-tab-content .col-lg-8 .col-lg-6:first-child {
    padding: 0;
}
.service-tab-content .col-lg-8 .row {
    margin: 0;
}
.service-tab-content .col-lg-8 .col-lg-6 img {
    width: 100%;
}
.service-tab-content .col-lg-4 {
    position: absolute;
    right: 40px;
    bottom: -84px;
    padding: 0;
}
.service-tab-content .col-lg-4 img {
    max-width: none;
    width: 288px;
}
/**
* Our Project Styles.
**/

#our-projects {
    background: url(../img/our-projects/bg.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 80px 0;
}
#our-projects .section-title h1 {
    color: #fff;
    border-color: #30505E;
}
#our-projects .section-title h1:before {
    background: #12AEF8;
}
.masonary-gallery {
    position: relative;
    padding: 0;
}
#our-projects .masonary-item {
    position: relative;
    float: left;
    overflow: hidden;
    width: 25%;
    height: 245px;
    margin-bottom: 30px;
    padding: 0 15px;
}
#our-projects .masonary-item.width-1 {
    width: 25%;
}
#our-projects .masonary-item.width-2 {
    width: 50%;
}
#our-projects .masonary-item.height-1 {
    height: 520px;
}
#our-projects .masonary-item img {
    width: 100%;
    height: 100%;
}
#our-projects .masonary-item .img-wrap {
    position: relative;
}
#our-projects .masonary-item .img-wrap .content-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    cursor: pointer;
    background: rgba(254, 84, 84, .85);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#our-projects .masonary-item:hover .img-wrap .content-wrap {
    opacity: 1;
    filter: alpha(opacity=100);
}
#our-projects .masonary-item .img-wrap .content-wrap .border {
    width: 100%;
    height: 100%;
    position: relative;
}
#our-projects .masonary-item .img-wrap .content-wrap .border:before {
    position: absolute;
    border: 1px solid #fff;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: '';
}
#our-projects .masonary-item .img-wrap .content-wrap h4 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
#our-projects .masonary-item .img-wrap .content-wrap span {
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
}
#our-projects .masonary-item .img-wrap .content-wrap .content {
    position: relative;
    top: 45%;
}
#our-projects .view-all-btn {
    text-align: center;
}
#our-projects a.view-all {
    border: 1px solid #4C7B96;
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    line-height: 35px;
    padding: 0 29px;
    font-weight: 500;
    font-size: 18px;
    margin: auto;
    display: inline-block;
    margin-top: 35px;
}
#our-projects a.view-all:hover {
    border-color: transparent;
}
#our-projects a.view-all:before {
    background: #c0000c;
}
/**
* Our Specialist Styles.
**/

#our-specialist {
    padding: 80px 0;
}
#our-specialist .single-member {
    position: relative;
    display: block;
    padding-bottom: 75px;
}
#our-specialist .single-member:before {
    background: #E3E3E3;
}
#our-specialist .single-member img {
    display: block;
    margin: auto;
    padding-top: 25px;
}
#our-specialist .single-member .info {
    width: 100%;
    background: #8F939B;
    text-align: center;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
}
#our-specialist .single-member .info:before {
    background: #FD9C1E;
}
#our-specialist .single-member .info h2,
#our-specialist .single-member .info a,
#our-specialist .single-member .info p {
    color: #fff;
}
#our-specialist .single-member .info .social {
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    height: 0;
}
#our-specialist .col-lg-3:hover .info .social {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    display: block;
    margin-bottom: 30px;
    height: auto;
}
#our-specialist .single-member .info .social li {
    display: inline;
}
#our-specialist .single-member .info .social li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-right: 5px;
    text-align: center;
}
#our-specialist .single-member .info .social li a .fa {
    font-size: 18px;
    line-height: 32px;
}
#our-specialist .single-member .info h2 {
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}
#our-specialist .single-member .info p {
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 500;
}
#our-specialist .col-lg-3:hover .info:before,
#our-specialist .col-lg-3:focus .info:before,
#our-specialist .col-lg-3:active .info:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/**
* Testimonials Styles.
**/


#testimonials .single-testimonial {
    
}
#testimonials .single-testimonial .profile-info {
    padding: 15px 0px 15px 15px;
}
#testimonials .single-testimonial .profile-info img {
    position: relative;
    bottom: 30px;
}
#testimonials .single-testimonial .profile-info h2 {
    font-size: 18px;
    line-height: normal;
    color: #312F3E;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    margin-top: -10px;
}
#testimonials .single-testimonial .content {
    width: 61%;
    padding-top: 20px;
    padding-right: 25px;
    border-top: 2px solid #c0000c;
    padding-left: 20px;
}
#testimonials .single-testimonial .content p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
    margin-bottom: 0;
}
#testimonials .single-testimonial:before {
    background: #c0000c;
}
#testimonials .single-testimonial .content .fa {
    font-size: 19px;
    margin-right: 10px;
    color: #c0000c;
}
#testimonials .single-testimonial:hover .fa,
#testimonials .single-testimonial:hover h2,
#testimonials .single-testimonial:hover p {
    /*color: #fff;*/
}
/**
* Emergency Styles.
**/

#emergency {
    background: url(../img/emergency/bg.png) top right no-repeat;
    background-size: cover;
}
#emergency .container {
    position: relative;
    padding: 35px 0;
}
#emergency .row {
    margin: 0;
}
#emergency .col-lg-3 {
    position: absolute;
    bottom: 0px;
}
#emergency h2 {
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 5px;
}
#emergency h2 span {
    font-weight: 300;
}
#emergency p {
    font-size: 18px;
    line-height: normal;
    color: #fff;
}
#emergency p.phone-contact {
    font-size: 22px;
    color: #161F36;
    
    line-height: 46px;
    margin-bottom: 0;
}
#emergency p.phone-contact b {
    font-size: 34px;
    margin-right: 10px;
    position: relative;
    top: 5px;
}
#emergency p.phone-contact a {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    line-height: 35px;
    padding: 0 31px;
    font-weight: 500;
    font-size: 18px;
    font-weight: bold;
    margin-left: 15px;
    position: relative;
    bottom: 3px;
    outline: none;
    display: inline-block;
}
#emergency p.phone-contact a:before {
    background: #c0000c;
}
/**
* Blog Styles.
**/

#blog {
    padding: 80px 0;
}
#blog .img-wrap {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.blog-wrap {
  display: flex;
}
#blog .blog-wrap:hover .img-wrap:before {
    top: 0;
}
#blog .img-wrap:before {
    content: ' ';
    background: #c0000da7;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#blog .img-wrap img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}
#blog .img-wrap h2 {
    font-weight: bold;
    font-size:  2.2rem;
    line-height: normal;
    color: var(--red);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    margin: 11px 0;
}
#blog .content-wrap {
    background: #F5F4F4;
    padding: 25px 22px 0;
    position: relative;
}
#blog .content-wrap:before {
    content: ' ';
    width: 100%;
    height: 4px;
    background: var(--red);
    position: absolute;
    top: 0;
    left: 0;
}
#blog .content-wrap h2 {
    font-size: 18px;
    line-height: normal;
    font-weight: bold;
    color: var(--red);
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 12px;
}
#blog .content-wrap p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
    margin-bottom: 0;
}
#blog .content-wrap ul {
    margin-top: 20px;
    padding: 10px 0;
    border-top: 1px solid #DCDBDB;
    text-align: left;
}
#blog .content-wrap ul li {
    display: inline;
    color: var(--red);
}
#blog .content-wrap ul li a,
#blog .content-wrap ul li span {
    display: inline-block;
    font-size: 18px;
    color: #8e8d8d;
    padding: 0 0 0 10px;
    
}
#blog .content-wrap ul li span b {
    color: #060606;
}
#blog .content-wrap ul li a {
    color: var(--red);
}
#blog .content-wrap ul li span:after {
    content: '|';
    display: inline-block;
    font-size: 18px;
    color: #AAA9A9;
    margin-left: 10px;
}
/**
* Clients Styles.
**/

#clients .container {
    border-top: 1px solid #E2E2E2;
    padding: 50px;
    position: relative;
}
#clients .owl-carousel {
    padding: 0 20px;
    margin-top: -4px;
}
#clients .container .item img {
    opacity: .3 !important;
    filter: alpha(opacity=30);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#clients .container .item:hover img {
    opacity: 1 !important;
    filter: alpha(opacity=100);
}
#clients .container .owl-prev {
    position: absolute;
    left: -45px;
    top: -15px;
}
#clients .container .owl-next {
    position: absolute;
    right: -45px;
    top: -15px;
}
#clients .container .owl-theme .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#clients .container .owl-theme .owl-nav div {
    background: none;
}
#clients .container .owl-theme .owl-nav div .fa {
    color: #B9B9B9;
    font-size: 30px;
}
/**
* Footer Styles.
**/

footer {
    background: url(../img/resources/footer-bg.jpg) 0 0 no-repeat;
    background-size: cover;
}
footer .container {
    border-top: 4px solid #c0000c;
}
footer .container .col-lg-12 .request-for-qoute-wrap {
    text-align: center;
}
footer .container .col-lg-12 a.request-for-qoute {
    font-size: 20px;
    line-height: 45px;
    color: #fff;
    font-weight: 900;
    background: #c0000c;
    border: 1px solid #c0000c;
    text-transform: uppercase;
    display: inline-block;
    margin: auto;
    border: none;
    outline: none;
    padding: 0 45px;
}
footer .container .col-lg-12 a.request-for-qoute:hover,
footer .container .col-lg-12 a.request-for-qoute:focus {
    color: #c0000c;
}
footer .container .col-lg-12 a.request-for-qoute:before {
    background: #fff;
}
footer .footer-menu {
    margin-top: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid #1A4657;
    margin-bottom: 50px;
}
footer .footer-menu ul {
    text-align: center;
}
footer .footer-menu ul li {
    display: inline;
}
footer .footer-menu ul li a {
    display: inline-block;
    font-size: 18px;
    line-height: 45px;
    color: var(--red);
    text-transform: uppercase;
    padding: 0 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
footer .footer-menu ul li a:hover {
    color: #c0000c;
}
footer .widget h3 {
    font-size: 18px;
    line-height: normal;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #0E3C4F;
}
footer .widget p {
    font-size: 18px;
    line-height: 24px;
    color: #7e959e;
}
footer .widget a.read-more {
    color: #3288B0;
    font-size: 18px;
    line-height: 24px;
}
footer .widget .social {
    text-align: left;
    margin-top: 10px;
}
footer .widget .social li {
    display: inline;
}
footer .widget .social li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #c0000c;
    text-align: center;
    line-height: 40px;
    color: #224755;
    font-size: 17px;
    margin-right: 5px;
    -webkit-transition: all .3s ease;
    transform: rotate(0deg);
    transition: all .3s ease;
}
footer .widget .social li:hover a {
    color: #c0000c;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
footer .widget .social li a:before {
    background: #fff;
}
footer .widget .popular-post li {
    padding-bottom: 9px;
    margin-bottom: 9px;
    border-bottom: 1px solid #0E3C4F;
}
footer .widget .popular-post li:last-child {
    border: none;
}
footer .widget .popular-post li a h5 {
    font-size: 18px;
    line-height: 18px;
    color: #7e959e;
    margin: 0;
    margin-bottom: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
footer .widget .popular-post li a:hover h5 {
    color: #c0000c;
}
footer .widget .popular-post li p {
    color: #445058;
    margin-bottom: 0;
    font-size: 18px;
}
footer .widget .contact-info li {
    font-size: 18px;
    line-height: normal;
    color: #7e959e;
    padding-bottom: 7px;
    margin-bottom: 14px;
    border-bottom: 1px solid #0E3C4F;
    padding-bottom: 14px;
}
footer .widget .contact-info li:last-child {
    border: none;
}
footer .widget .contact-info li .fa {
    font-size: 19px;
    margin-right: 10px;
}
footer .widget img.positioned {
    margin-top: -35px;
}
footer .footer-menu .footer-nav-toggler {
    display: none;
}
/**
* Bottom Bar Styles.
**/

#bottom-bar {
    background: #041D26;
}
#bottom-bar .container p {
    margin-bottom: 0;
    color: #185166;
    font-size: 18px;
    line-height: 80px;
}
/**
* Page Title Styles.
**/

.page-title{
    background-size: cover;
    padding: 10% 0;
    background-position: center center;
    position: relative;
}
.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#page-title .container {
    position: relative;
}
#page-title .title {
    text-align: left;
}
#page-title .title h1 {
    text-align: center;
    display: inline-block;
    margin: auto;
    color: #fff;
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 50px;
    border-top: 1px solid rgba(132,119,117,.80);
    border-bottom: 1px solid rgba(132,119,117,.80);
    padding: 5px 0px;
    font-weight: bold;
}
#page-title .page-breadcumb {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 12px;
}
#page-title .page-breadcumb a {
    color: #fff;
}
#page-title .page-breadcumb .fa {
    font-size: 15px;
    margin-right: 5px;
    margin-left: 5px;
}
/**
* Our Mission Styles.
**/

#our-mission {
    padding: 80px 0;
}
#our-mission p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
}
#our-mission p br {
    display: none;
}
#our-mission ul li {
    font-size: 18px;
    line-height: 35px;
    color: #999999;
    
}
#our-mission ul li .fa {
    color: var(--red);
    margin-right: 10px;
    font-size: 18px;
}
#our-mission .img-holder:hover:before {
    width: 100%;
}
#our-mission .img-holder {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
/* #our-mission .img-holder:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #c0000c;
    width: 0%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
} */
#our-mission .image-caption .img-holder,
#our-mission .image-caption .content {
    display: table-cell;
    vertical-align: middle;
}
#our-mission .image-caption .img-holder {
    width: 50%;
}
#our-mission .image-caption .content {
    background: var(--red);
    padding-left: 45px;
    padding-right: 39px;
}
#our-mission .image-caption .content h2 {
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    font-size:  2.2rem;
    font-weight: bold;
    margin-bottom: 13px;
}
#our-mission .image-caption .content p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}


/**
* Featured Styles.
**/

#featured {
    background: #171E28;
    padding: 5% 0;
}
.content .upspic{
    width: 100%;
}
.about-image img{
    width: 100%;
    height: 90vh;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
#featured .content {
    margin-bottom: 30px!important;
    padding-left: 20px;
    display: flex;
    border: 1px solid #474a4e;
    padding: 20px;
}
#featured .content i {
    font-size: 2rem;
    color: var(--red);
    position: relative;
    top: 15px;
    width: 45px;
}
#featured .content img{
    position: relative;
    top: 8px;
    width: 40px;
    margin-right: 20px;
    filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(6870%) hue-rotate(28deg) brightness(100%) contrast(130%);
}
#featured .content:last-child {
    margin-bottom: 0;
}
#featured .content-wrap {
    width: 85%;
}
#featured .content-wrap h2 {
    font-size: 22px;
    line-height: normal;
    font-weight: bold;
    color: var(--red);
    text-transform: uppercase;
    min-height: 50px;
    align-content: center;
}
#featured .content-wrap p {
    font-size: 18px;
    line-height: 1.5;
    color: #A79C94;
    font-weight: 500;
    min-height: 85px;
}

.our-journey{
    background-color: #ffffffab;
    border-radius: 20px;
    padding: 20px;
}


.our-journey .section-label{
    background-color: var(--red);
    padding: 10px 5px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.our-journey h2{
    color: var(--red);
}
.our-journey p{
    color: #000;
    font-weight: 500;
}
/* #featured:hover .about-image:before {
    right: 3%;
} */
/* #featured .about-image:before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 200%;
    width: 1200px;
    background: rgba(218, 151, 0, 0.75);
    height: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
} */
/**
* Emergency Customization About page Styles.
**/

#emergency.about-page {
    background-color: #fff;
}
/**
* Service Content Styles.
**/

#service-content {
    padding: 80px 0;
}
#service-content .col-lg-8 h1 {
    color: #000000;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}
#service-content .col-lg-8 p {
    font-size: 18px;
    line-height: normal;
    color: #8E8D8D;
    font-weight: 500;
    margin-bottom: 30px;
}
#service-content .col-lg-8 p.highlighted {
    color: #3D3D3D;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}
#service-content .col-lg-8 button {
    background: #36ABFC;
    border: none;
    outline: none;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    line-height: 45px;
    height: 45px;
    margin-right: 25px;
    
    padding: 0 28px;
}
#service-content .col-lg-8 button .fa {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #fff;
}
#service-content .col-lg-8 button.bold {
    font-weight: bold;
}
#service-content:hover .img-holder:before {
    height: 100%;
}
#service-content .img-holder {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
#service-content .img-holder:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(218, 151, 0, 0.75);
    height: 0%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#service-content .hvr-bounce-to-right:before {
    background: var(--red);
}
/**
* Featured Service Styles.
**/

#featured-service {
    background: #171E28;
    padding: 80px 0;
}
#featured-service .section-title h1 {
    color: #fff;
    border-color: #3A4048;
}
#featured-service .section-title h1:before {
    background: #c0000c;
}
#featured-service .col-lg-3 h4 {
    color: #D9D9D9;
    font-size: 18px;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #2C4C58;
}
#featured-service .col-lg-3:hover .img-holder:before {
    height: 100%;
}
#featured-service .img-holder {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
#featured-service .img-holder:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(218, 151, 0, 0.75);
    height: 0%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
/**
* Why choose us Styles.
**/

#why-choose-us {
    background: var(--dark2);
}
#why-choose-us .col-lg-3 {
    text-align: center;
}
#why-choose-us .col-lg-3 .img-wrap {
    background: #34ABFF;
    display: inline-block;
    padding: 20px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 45px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#why-choose-us .col-lg-3:hover .img-wrap {
    -webkit-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    transform: rotate(405deg);
}
#why-choose-us .col-lg-3 .img-wrap img {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#why-choose-us .col-lg-3:hover .img-wrap img {
    -webkit-transform: rotate(-405deg);
    -ms-transform: rotate(-405deg);
    transform: rotate(-405deg);
}
#why-choose-us .col-lg-3 h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}
#why-choose-us .col-lg-3 p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
}
/**
* Service Emergency Styles.
**/

#emergency.service-page {
    background-color: #fff;
}
/**
* Blog page Styles.
**/

#blog-post {
    padding: 80px 0;
}
#blog-post article {
    margin-bottom: 65px;
}
#blog-post article:last-child {
    margin-bottom: 65px;
}
#blog-post article h2 {
    line-height: 30px;
    font-weight: bold;
    margin: 0;
    letter-spacing: .03em;
}
#blog-post article .img-holder {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
#blog-post article:hover .img-holder:before {
    bottom: 0;
}
#blog-post article:hover .img-holder:after {
    top: 0;
}
#blog-post article .img-holder:before {
    content: '';
    background: #c0000c;
    bottom: -100%;
    position: absolute;
    left: 0%;
    width: 50%;
    height: 100%;
    opacity: .75;
    transition: all .3s ease;
}
#blog-post article .img-holder:after {
    content: '';
    background: #c0000c;
    top:-100%;
    position: absolute;
    right: 0%;
    width: 50%;
    height: 100%;
    opacity: .75;
    transition: all .3s ease;
}

#blog-post article .post-meta {
    margin-bottom: 23px;
}
#blog-post article .post-date {
    text-align: center;
    font-size: 22px;
    line-height: 20px;
    color: #fff;
    font-weight: bold;
    width: 70px;
    height: 70px;
    padding-top: 13px;
    float: left;
    margin-right: 30px;
    background: #c0000c;
}
#blog-post article .post-date span {
    font-size: 18px;
    text-transform: uppercase;
}
#blog-post article .post-title {
    width: 75%;
    float: left;
}
#blog-post article .post-title ul {
    text-align: left;
}
#blog-post article .post-title ul li {
    display: inline;
}
#blog-post article .post-title ul li span {
    font-size: 18px;
    line-height: 13px;
    color: #BBBBBB;
    display: inline-block;
    font-weight: 500;
    border-right: 1px solid #BBBBBB;
    padding: 0 10px;
}
#blog-post article .post-title ul li:first-child span {
    padding-left: 0;
}
#blog-post article .post-title ul li:last-child span {
    border-right: none;
}
#blog-post article > p,
#blog-post.single-post article p {
    font-size: 18px;
    line-height: 2;
    color: #8E8D8D;
    font-weight: 500;
    margin-bottom: 20px;
}
#blog-post article > .read-more {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 39px;
    color: #36ABFC;
    padding: 0 0px;
    display: inline-block;
}
#blog-post article > .read-more:hover {
    color: #c0000c;
}

#blog-post .sidebar-widget {
    margin-bottom: 30px;
    padding-left: 50px;
}
#blog-post .sidebar-widget:last-child {
    margin-bottom: 0px;
}
#blog-post .blog-left .sidebar-widget {
    padding-left: 0px;
    padding-right: 50px;
}
.sidebar-widget ul{
    padding: 0px;
}
#blog-post .sidebar-widget h4 {
    font-size: 2rem;
    line-height: normal;
    font-weight: bold;
    color: var(--red);
    text-transform: capitalize;
    margin-bottom: 30px!important;
    border-bottom: 1px solid transparent;
    padding-bottom: 10px;
    position: relative;
}
#blog-post .content-wrap h5{
   color: #fff;
}
#blog-post .content-wrap h5:hover{
   color: var(--red);
   transition: .5s;
}

#blog-post .sidebar-widget h4:before {
    content: ' ';
    width: 32px;
    height: 2px;
    background: #c0000c;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
}
#blog-post .sidebar-widget form.search-form {
    border: 1px solid #E9E9E9;
    height: 45px;
    position: relative;
    overflow: hidden;
}
#blog-post .sidebar-widget form.search-form input[type='text'] {
    border: none;
    font-size: 18px;
    outline: none;
    height: 45px;
    width: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    padding-left: 20px;
    background: #161616;
    color: #fff;
}
#blog-post .sidebar-widget form.search-form button {
    border: none;
    outline: none;
    height: 45px;
    background: none;
    line-height: 45px;
    position: absolute;
    right: 0;
    padding: 0 10px;
    color: #B8B7B7;
    margin-right: 10px;
}
#blog-post .sidebar-widget .category-list {
    margin-top: -10px;
}
#blog-post .sidebar-widget .category-list li a {
    display: block;
    font-size: 18px;
    line-height: 43px;
    color: #999999;
    border-bottom: 1px solid #DCDCDC;
    font-weight: 500;
    
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#blog-post .sidebar-widget .category-list li:last-child a {
    border-bottom: 0;
}
#blog-post .sidebar-widget .category-list li a:after {
    content: '\f105';
    font-family: 'FontAwesome';
    line-height: 43px;
    position: absolute;
    right: 0;
    top: 0;
}
#blog-post .sidebar-widget .category-list li a .fa {
    margin-right: 10px;
}
#blog-post .sidebar-widget .category-list li:hover a {
    color: #c0000c;
}
#blog-post .sidebar-widget .popular-post li {
    margin-bottom: 30px;
}
#blog-post .sidebar-widget .popular-post li:last-child {
    margin-bottom: 0;
}
#blog-post .sidebar-widget .popular-post li img {
    /*float: left;*/
    /*margin-right: 30px;*/
    height: 80px;
   object-fit: cover;
   border-radius: 5px;
}
#blog-post .sidebar-widget .popular-post li .image-box,
#blog-post .sidebar-widget .popular-post li .content-wrap {
    vertical-align: middle;
    display: table-cell;
}
#blog-post .sidebar-widget .popular-post li .image-box {
    width: 120px;

}
#blog-post .sidebar-widget .popular-post li .content-wrap {
    padding-left: 30px;
    vertical-align: top;
}
#blog-post .sidebar-widget .popular-post li .content-wrap a h5 {
    color: #787878;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-transform: none;
    margin: 0;
    transition: all .3s ease;
    
    /*margin-bottom: 20px;*/
}
#blog-post .sidebar-widget .popular-post li .content-wrap a:hover h5 {
    color: #c0000c;
}
#blog-post .sidebar-widget .popular-post li .content-wrap span {
    font-size: 18px;
    line-height: 20px;
    display: inline-block;
    color: #c0000c;
    margin-top: 10px;
}
#blog-post .sidebar-widget.text-widget p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: -8px;
}
#blog-post .sidebar-widget .tag-cloud {
    margin-top: -10px;
}
#blog-post .sidebar-widget .tag-cloud a {
    font-size: 18px;
    line-height: 38px;
    color: #787878;
    background: #FBFBFB;
    border: 1px solid #E2E2E2;
    margin-right: 5px;
    display: inline-block;
    padding: 0 22px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-top: 10px;
    
}
#blog-post .sidebar-widget .tag-cloud a:hover {
    color: #fff;
    background: #404040;
    border: 1px solid #404040;
}
#blog-post .sidebar-widget .flicker-widget {
    font-size: 0;
    margin-top: -10px;
    margin-left: -5px;
    margin-right: -5px;
}
#blog-post .sidebar-widget .flicker-widget li {
    display: inline-block;
    margin: 0 4px;
    margin-top: 10px;
}

.post-pagination ul {
    text-align: center;
}
.post-pagination ul li {
    display: inline;
}
.post-pagination ul li a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    color: #8E8D8D;
    margin-right: 10px;
    text-align: center;
    border: 1px solid #E2E2E2;
    font-size:  2.2rem;
    padding: 0 17px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.post-pagination ul li.active a,
.post-pagination ul li:hover a {
    background: #404040;
    color: #fff;
    border: 1px solid #404040;
}


/**
* Contact Content Styles.
**/


.contact-info-item {
  border: 2px solid red;
  border-radius: 30px;
  padding: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}





#contact-content {
    padding: 80px 0 50px;
}
#contact-content .row > p,
#contact-content .container > p {
    font-size: 18px;
    line-height: normal;
    color: #8E8D8D;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
}
#contact-content .contact-form p {
    margin-bottom: 20px;
}
#contact-content .contact-form input,
#contact-content .contact-form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #E9E9E9;
    padding-left: 30px;
    background: #F8F8F8;
}
#contact-content .contact-form label.error {
    display: none !important;
}
#contact-content .contact-form input.error,
#contact-content .contact-form textarea.error {
    border-color: red;
}
#contact-content .contact-form textarea {
    height: 200px;
    padding-top: 15px;
}
#contact-content .contact-form button {
    background: #36ABFC;
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    line-height: 40px;
    padding: 0 43px;
    text-transform: uppercase;
    font-weight: bold;
}
#contact-content  .success {
    color: #42B8E9;
}
#contact-content .contact-info h3,
#contact-content .contact-info ul li h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}
#contact-content .contact-info p {
    font-size: 18px;
    line-height: normal;
    color: #8E8D8D;
    font-weight: 500;
    margin-bottom: 30px;
}
#contact-content .contact-info ul li img {
    float: left;
    margin-right: 15px;
}
#contact-content .contact-info ul li .content {
    float: left;
    width: 60%;
}
#contact-content .contact-info ul li h4 {
    margin-bottom: 0;
}
.google-map {
    margin-top: 60px;
    width: 100%;
    height: 440px;
}
/**
* Pricing Content Styles.
**/

#pricing-content {
    padding: 80px 0;
}
#pricing-content .col-lg-12 p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
}
#pricing-content .price-table-wrap {
    padding-top: 80px;
}
#pricing-content .price-table-wrap .price-table {
    text-align: center;
}
#pricing-content .price-table-wrap .price-table .price-content {
    border: 1px solid #F0F0F0;
    padding-bottom: 30px;
}
#pricing-content .price-table-wrap .price-table .price-table-top h3 {
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    background: #000;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}
#pricing-content .price-table-wrap .price-table .price-box {
    color: #fff;
    font-size: 20px;
    line-height: 69px;
    background: #b0b0b0;
    
    text-transform: uppercase;
}
#pricing-content .price-table-wrap .price-table .price-box span {
    font-weight: bold;
    font-size: 45px;
}
#pricing-content .price-table-wrap .price-table.bronze .price-table-top h3 {
    background: #05253E;
}
#pricing-content .price-table-wrap .price-table.silver .price-table-top h3 {
    background: #16685D;
}
#pricing-content .price-table-wrap .price-table.gold .price-table-top h3 {
    background: #BF3D28;
}
#pricing-content .price-table-wrap .price-table.platinum .price-table-top h3 {
    background: #0C3A5E;
}
#pricing-content .price-table-wrap .price-table.bronze .price-box {
    background: #002F53;
}
#pricing-content .price-table-wrap .price-table.silver .price-box {
    background: #2E786E;
}
#pricing-content .price-table-wrap .price-table.gold .price-box {
    background: #DE5842;
}
#pricing-content .price-table-wrap .price-table.platinum .price-box {
    background: #154C77;
}
#pricing-content .price-table-wrap .price-table .price-info li {
    font-size: 18px;
    line-height: 50px;
    color: #8E8D8D;
    border-bottom: 1px solid #F0F0F0;
    font-weight: 600;
}
#pricing-content .price-table-wrap .price-table button {
    font-size: 18px;
    font-weight: bold;
    line-height: 35px;
    text-transform: uppercase;
    background: #36ABFC;
    height: 35px;
    color: #fff;
    border: none;
    outline: none;
    padding: 0 35px;
    margin-top: 30px;
    transition: all .3s ease;
}
#pricing-content .price-table-wrap .price-table button:hover,
#pricing-content .price-table-wrap .price-table button:active {
    color: #fff;
}
#pricing-content .price-table-wrap .price-table button:before {
    background: var(--red);
}
/**
* Pricing FAQ Styles.
**/

#pricing-faq {
    background: #F9F9F9;
    padding: 80px 0 50px;
}
#pricing-faq ul li {
    margin-bottom: 20px;
}
#pricing-faq ul li h2 {
    font-size: 18px;
    line-height: normal;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}
#pricing-faq ul li p {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 500;
}
/**
* Projects Version one Styles.
**/

#project-version-one {
    padding: 80px 0 ;
}
#project-version-one .gallery-filter {
    margin-bottom: 50px;
    text-align: center;
    border-bottom: 1px solid #E2E2E2;
}
#project-version-one .gallery-filter li {
    display: inline;
}
#project-version-one .gallery-filter li span {
    display: inline-block;
    font-size: 18px;
    line-height: 45px;
    color: #787878;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#project-version-one .gallery-filter li.active span:before {
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--red);
    position: absolute;
    bottom: -1px;
    left: 0;
}
#project-version-one .gallery-filter li.active span,
#project-version-one .gallery-filter li:hover span {
    color: var(--red);
}
#project-version-one .single-project-item {
    margin-bottom: 30px;
    display: none;
}
#project-version-one .single-project-item .img-wrap {
    position: relative;
}
/**
* Emergency Customization Project V1 Styles.
**/

#emergency.project-v1 {
    background: #fff url(../img/emergency/bg.png) top right no-repeat;
    background-size: cover;
}
/**
* Projects Version Two Styles.
**/

#project-version-two {
    padding: 80px 0;
}
#project-version-two .gallery-filter {
    margin-bottom: 50px;
    text-align: center;
    border-bottom: 1px solid #E2E2E2;
}
#project-version-two .gallery-filter li {
    display: inline;
}
#project-version-two .gallery-filter li span {
    display: inline-block;
    font-size: 18px;
    line-height: 45px;
    color: #787878;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#project-version-two .gallery-filter li.active span:before {
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--red);
    position: absolute;
    bottom: -1px;
    left: 0;
}
#project-version-two .gallery-filter li.active span,
#project-version-two .gallery-filter li:hover span {
    color: var(--red);
}
#project-version-two .masonary-gallery {
    position: relative;
    padding: 0;
}
#project-version-two .masonary-item {
    position: relative;
    float: left;
    overflow: hidden;
    width: 25%;
    margin-bottom: 30px;
    padding: 0 15px;
}
#project-version-two .masonary-item.width-1 {
    width: 25%;
}
#project-version-two .masonary-item.width-2 {
    width: 50%;
}
#project-version-two .masonary-item.height-1 {
    height: auto;
}
#project-version-two .masonary-item img {
    width: 100%;
    height: 100%;
}
#project-version-two .masonary-item .img-wrap {
    position: relative;
}
/**
* Emergency Customization Project V2 Styles.
**/

#emergency.project-v2 {
    background: #fff url(../img/emergency/bg.png) top right no-repeat;
    background-size: cover;
}
/**
* Single Post Styles.
**/

#blog-post.single-post h1,h2,h3,h4{
    color: var(--red);
    line-height: normal;
    font-weight: 600;
    margin-top: 15px!important;
    margin-bottom: 5px!important;
} 

#blog-post.single-post h1{
    font-size: 3.5rem;
}
#blog-post.single-post h2{
    font-size: 3rem;
}
#blog-post.single-post h3{
    font-size: 2.5rem;
}
#blog-post.single-post h4{
    font-size: 2.3rem;
}

#blog-post.single-post article p {
    margin-bottom: 10px;
}
#blog-post.single-post article ul li {
    font-size: 18px;
    line-height: normal;
    color: #8e8d8d;
    font-weight: 600;
    
}
#blog-post.single-post article ul li .fa-circle {
    font-size: 7px;
    position: relative;
    bottom: 2px;
    margin-right: 7px;
    transition: all .3s ease;
}
#blog-post.single-post article ul li .fa:hover {
    
}
#blog-post.single-post article ul.highlight li {
    line-height: 2;
}
#blog-post article .expert_quote_area .col-lg-12 .expert_quote {
    background: #f5f4f4 none repeat scroll 0 0;
    border-radius: 4px;
    margin-left: 45px;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}
#blog-post article .expert_quote_area .col-lg-12 .expert_quote:before {
    background-color: #c0000c;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 6px;
}
#blog-post article .expert_quote_area .col-lg-12 .expert_quote p {
    color: #464646;
    font-size: 18px;
    font-weight: 300;
    padding: 20px 45px 5px 103px;
    position: relative;
}
#blog-post article .expert_quote_area .col-lg-12 .expert_quote p:before {
    color: #d0d0d0;
    content: "\f10d";
    font-family: 'fontawesome';
    font-size: 55px;
    left: 30px;
    position: absolute;
    top: 30px;
}
#blog-post article .expert_quote_area .col-lg-12 .expert_quote span {
    color: #c0000c;
    float: right;
    font-size: 18px;
    font-style: italic;
    padding-bottom: 30px;
    padding-right: 45px;
    text-transform: capitalize;
}
#blog-post article .shear_area .shear {
    border: 1px solid #e9e9e9;
    margin-top: 30px;
    overflow: hidden;
}
#blog-post article .shear_area .shear a {
    border: 1px solid #c0000c;
    background: #c0000c none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    float: left;
    font-weight: 700;
    margin-right: 16px;
    padding: 19px 20px;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
}
#blog-post article .shear_area .shear .social_button ul {
    float: left;
    margin: 0;
    padding: 0;
}
#blog-post article .shear_area .shear .social_button ul li {
    float: left;
}
#blog-post article .shear_area .shear .social_button ul li a {
    background-color: transparent;
    color: #c3c3c3;
    display: inline-block;
    padding: 18px 0 18px 20px;
    border: none;
}
#blog-post article .shear_area .shear .social_button ul li a i {
    font-size: 20px;
}
#blog-post article .administrator {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #ebebeb;
    margin-top: 30px;
    overflow: hidden;
}
#blog-post article .administrator .administrator_img {
    padding-bottom: 22px;
    padding-left: 10px;
    padding-top: 18px;
}
#blog-post article .administrator .administrator_text {
    margin-left: -42px;
}
#blog-post article .administrator .administrator_text h4 {
    color: #353535;
    font-size: 18px;
    font-weight: 700;
    margin-top: 18px;
    padding-top: 8px;
    text-transform: uppercase;
}
#blog-post article .administrator .administrator_text p {
    color: #999999;
    font-size: 18px;
    font-weight: 500;
}
#blog-post article .comments_area {
    border: 1px solid #ebebeb;
    margin-top: 30px;
    overflow: hidden;
}
#blog-post article .comments_area .comment_title h4 {
    color: #353535;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 30px;
    text-transform: uppercase;
}
#blog-post article .comments_area .single_comment {
    border-bottom: 1px solid #ebebeb;
    display: inline-block;
    margin: 0 25px 30px;
}
#blog-post article .comments_area .single_comment:last-child {
    border: none;
    margin-bottom: 0;
}
#blog-post article .comments_area .single_comment .comment_text {
    margin-left: -10px;
}
#blog-post article .comments_area .single_comment .comment_text h5 {
    color: #353535;
    font-size: 18px;
    font-weight: 500;
    margin-top: 1px;
    text-transform: capitalize;
}
#blog-post article .comments_area .single_comment .comment_text p.c_text {
    color: #999999;
    font-size: 15px;
    padding-bottom: 50px;
}
#blog-post article .comments_area .single_comment .comment_text p span {
    color: #e84c3d;
    margin-left: 5px;
    font-weight: 500;
    text-transform: capitalize;
}
#blog-post article .comments_area .single_comment .comment_text p span.c_date {
    color: #c2c2c2;
    font-size: 18px;
    margin-top: -5px;
    margin-right: 5px;
}
#blog-post article .comments_area .single_comment .comment_reply {
    border: medium none;
    margin: 0;
}
#blog-post article .comments_area .single_comment .comment_reply .comment_reply_img {
    margin-left: -20px;
}
#blog-post article .comment-box {
    border: 1px solid #ebebeb;
    margin-top: 30px;
}
#blog-post article .comment-box .comment-box-title h4 {
    color: #353535;
    font-size: 18px;
    font-weight: 700;
    padding: 30px 0;
    text-transform: uppercase;
}
#blog-post article .comment-box .comment-box-field .comment-box-half input[type=text] {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
    padding: 10px 0;
    width: 100%;
}
#blog-post article .comment-box .comment-box-field .comment-box-full textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #ebebeb;
    height: 186px;
    padding: 20px;
    resize: none;
    width: 100%;
}
#blog-post article .comment-box .comment-box-field .comment-box-submit input[type=submit] {
    background: #c0000c none repeat scroll 0 0;
    border: 1px solid #c0000c;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 40px;
    padding: 5px 30px;
    text-transform: uppercase;
}
/**
* Project Version 3 Styles.
**/

#project-version-one .single-project-item.col-lg-3 {
    margin-bottom: 0px;
    display: none;
    padding: 0 0px;
}
#project-version-one .single-project-item.col-lg-3 img {
    width: 100%;
    height: 100%;
}
/**
* No Search Result Styles
**/

#blog-post .no-search-content h2 {
    border-bottom: 1px solid #e2e2e2;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 30px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}
#blog-post .no-search-content h2:after {
    content: "";
    background: #12AEF8;
    width: 50px;
    height: 2px;
    position: absolute;
    top: 50px;
    left: 0;
}
#blog-post .no-search-content article h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    padding-top: 20px;
    text-transform: uppercase;
}
#blog-post .no-search-content .suggesion {
    color: #8e8d8d;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 30px;
    margin-top: 20px;
    
}
#blog-post .no-search-content .suggesion i {
    margin-right: 10px;
}
#blog-post .no-search-content .suggesion-input input[type=text] {
    border: 1px solid #e2e2e2;
    height: 40px;
    padding: 5px 15px;
    width: 75%;
}
#blog-post .no-search-content .suggesion-input input[type=button] {
    background: #36ABFC none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-left: -4px;
    padding: 6px 30px;
    border: 1px solid #36ABFC;
}
/**
* Mobile Navigation Styles.
**/

button.mainmenu-toggler {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  color: #fff;
  display: none;
  float: right;
  font-size: 18px;
  font-weight: 800;
  height: 33px;
  line-height: 13px;
  margin-right: 10px;
  outline: medium none;
  padding: 0 11px;
  transition: all 0.3s ease 0s;
}
button.mainmenu-toggler:hover {
    border-color: #c0000c;
    color: #c0000c;
}
.mainmenu-container ul li.dropdown .fa {
    display: none;
}
/** 
* Testimonials Version 1 Styles.
**/

.testimonials_v1 .testimonials_v1_content {
    background-color: #f5f4f4;
    padding: 0 25px;
}
.testimonials_v1 .section-title h1 {
    margin-bottom: 50px;
}
.testimonials_v1 #testimonials.testimonials_v1_content {
    padding: 50px 30px;
}
.testimonials_v1 #testimonials.testimonials_v1_content .single-testimoinal-wrap {
    margin-bottom: 70px;
    padding: 0;
}
.testimonials_v1 #testimonials.testimonials_v1_content .single-testimoinal-wrap:last-child {
    margin-bottom: 0;
}
.testimonials_v1 #testimonials.testimonials_v1_content .single-testimoinal-wrap .single-testimonial .content {
    width: 80.65%;
}
/** 
* Testimonials Version 2 Styles.
**/

.testimonials_v2 .testimonials_v2_content {
    background-color: #fff;
    margin-left: -15px;
    margin-right: 15px;
    padding: 0 25px;
}
.testimonials_v2 .section-title h1 {
    margin-bottom: 60px;
}
.testimonials_v2 #testimonials.testimonials_v2_content {
    padding: 0;
    background: #fff;
    margin-bottom: -60px;
}
.testimonials_v2 #testimonials.testimonials_v2_content .single-testimoinal-wrap {
    margin-bottom: 60px;
}
.testimonials_v2 #testimonials.testimonials_v2_content .single-testimoinal-wrap .single-testimonial .content {
    width: 76.24%;
    margin-bottom: 19px;
}
.testimonials_v2 #testimonials.testimonials_v2_content .single-testimoinal-wrap .single-testimonial {
    background: #F7F7F7;
}
/**
* Quick Link Side bar Style
**/

#blog-post .sidebar-widget .category-list li a.active {
    color: #c0000c;
}

/**
* Team Styles.
**/

#our-specialist.single-team-page {
    padding-bottom: 30px;
}
#our-specialist.single-team-page .col-lg-3 {
    margin-bottom: 70px;
}
#our-expertize {
    background: #f5f4f4;
    padding: 73px 0 80px;
}
#our-expertize h2 {
    font-size:  2.2rem;
    line-height: 30px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
}
#our-expertize p {
    font-weight: 500;
    color: #8E8D8D;
    font-size: 18px;
}
#our-expertize p span.highlighted {
    color: #3D3D3D;
    font-size: 18px;
    line-height: 28px;
    font-weight: normal;
}
#emergency.team-page {
    background-color: #F5F4F4;
}
/**
* Faqs Styles.
**/

#blog-post.faq .faq-content .faq-title h2 {
    /*border-bottom: 1px solid #E2E2E2;*/
    color: #000;
    font-size:  2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    padding-bottom: 20px;
    text-transform: capitalize;
    position: relative;
}
#blog-post.faq .faq-content .faq-title h2:after {
    background: #c0000c none repeat scroll 0 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 51px;
    width: 50px;
}
.faq .faq-content .faq-text p {
    color: #8e8d8d;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}
.faq .faq-content .faq-search {
    background: #f9f9f9 none repeat scroll 0 0;
    padding: 20px;
}
.faq .faq-content .faq-search input[type=text] {
    border: 1px solid #e9e9e9;
    color: #cccccc;
    font-size: 18px;
    padding: 10px 20px;
    width: 79%;
}
.faq .faq-content .faq-search input[type=button] {
    background: #36ABFC none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-left: -4px;
    padding: 10px 40px;
    text-transform: uppercase;
}
#blog-post.faq .faq-content article {
    margin-bottom: 0;
}
.faq .faq-content .general-question {
    margin-top: 50px;
}
.general-question .panel-group .panel {
    border-radius: 0;
    margin-top: 15px;
}
.general-question .panel-group .panel-default > .panel-heading {
    border-color: #e9e9e9;
    background-color: #ffffff;
}
.general-question .panel-group .panel-default .panel-title {
    color: #8e8d8d;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 0;
}
.general-question .panel-group .panel-default .panel-title a {
    display: block;
    position: relative;
}
.general-question .panel-group .panel-default .panel-title a:after {
    content: "\f106";
    font-family: fontawesome;
    background: #f9f9f9 none repeat scroll 0 0;
    border-left: 1px solid #e9e9e9;
    color: #7d7d7d;
    font-size:  2.2rem;
    padding: 9px 15px;
    position: absolute;
    right: -15px;
    top: -15px;
}
.general-question .panel-group .panel-default .panel-title a.collapsed:after {
    content: "\f107";
    font-family: fontawesome;
    background: #f9f9f9 none repeat scroll 0 0;
    border-left: 1px solid #e9e9e9;
    color: #7d7d7d;
    font-size:  2.2rem;
    padding: 9px 15px;
    position: absolute;
    right: -15px;
    top: -15px;
}
.general-question .panel-body {
    padding: 25px 15px 30px;
}
#blog-post article .general-question .panel-body .panel_body_up h2 {
    color: var(--red);
    font-size:  2.2rem;
    font-weight: 300;
    padding: 10px 0;
}
.general-question .panel-body .panel_body_up p {
    color: #8e8d8d;
    font-size: 18px;
    font-weight: 500;
}
.general-question .panel-body .panel_body_down .panel_down_img {
    float: left;
}
.general-question .panel-body .panel_body_down .panel_down_text {
    color: #8e8d8d;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    padding-left: 15px;
}
#blog-post article .popular-question h2 {
    /*border-bottom: 1px solid #e2e2e2;*/
    color: #000;
    font-size:  2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    padding-bottom: 20px;
    text-transform: capitalize;
    position: relative;
}
#blog-post article .popular-question h2:after {
    content: "";
    position: absolute;
    top: 51px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c0000c;
}

/**
* Project version 3 Styles.
**/

#project-version-one.project-v3 {
    background: #f9f9f9;    
}
#project-version-one .two-col-gallery img {
    width: 100%;
}

/**
* Project Content Styles.
**/

#project-content {
    padding: 80px 0 50px;
}
#project-content p {
    font-size: 18px;
    font-weight: 500;
    color: #8E8D8D;
}
/**
* Project Content Version Two Styles.
**/

#project-content.version-2 {
    text-align: center;
    padding: 60px 0 0px;
    margin-bottom: -30px;
}



/**
* Blog Version Two Styles.
**/


#blog .post-pagination ul {
    text-align: center;
}
#blog .post-pagination ul li {
    display: inline;
}
#blog .post-pagination ul li a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    color: #8E8D8D;
    margin-right: 10px;
    text-align: center;
    border: 1px solid #E2E2E2;
    font-size:  2.2rem;
    padding: 0 17px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#blog .post-pagination ul li.active a,
#blog .post-pagination ul li:hover a {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
}
/**
* Preloader Styles.
**/

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/resources/preloader.gif);
}


/**
* Home v2 Topbar Styles.
**/
.home-v2#topbar {
  background: #012C3C;
}
.home-v2#topbar .social ul li a {
  color: #42B8EA;
}
.home-v2#topbar .contact-info ul li a {
  color: #fff;
}

/**
* Home V2 header Styles.
**/
header.home-v2 {
  background: #42B8E9;
}
.home-v2 ul.mainmenu li a {
  color: #fff;
}
header.home-v2 ul.mainmenu li a:hover {
  color: #012C3C;
}
header.home-v2 ul.mainmenu > li.current > a {
  color: #012C3C;
}
.home-v2 ul.mainmenu li a:before,
.home-v2 nav.mainmenu-container ul > li > ul > li > a:hover {
  background: #012C3C;
  color: #fff;
}
.home-v2 .mainmenu-container ul li.top-icons a i {
  color: #fff;
  border-color: #fff;
}
.home-v2 .mainmenu-container ul > li.dropdown:after {
    color: #012C3C;
}
.home-v2 .mainmenu-container ul > li > ul li.dropdown:after {
    color: #fff;
}
.home-v2 .mainmenu-container ul > li > ul > li > ul > li:last-child > a:hover {
    color: #fff;
    background: #012C3C;
    padding: 0 20px;
}
.home-v2 .mainmenu-container ul li.top-icons:hover a i {
    color: #012C3C;
    border-color: #012C3C;
}
.home-v2 .search-box form button {
    color: #012C3C;
}
.home-v2 .search-box {
    background: #42B8E9;
}
.home-v2 .cart-box span {
    color: #012C3C;
}
.home-v2 button.mainmenu-toggler {
    color: #fff;
}
.home-v2 button.mainmenu-toggler:hover {
    color: #012C3C;
    border-color: #012C3C;
}
.home-v2 ul.mainmenu li a::before, .home-v2 nav.mainmenu-container ul > li > ul > li > a:hover {
    background: #012C3C;
}
.home-v2 .mainmenu-container ul li a::before {
    background: #012C3C;
}
/**
* Home V2 project v2 Styles.
**/

.home-v2#project-version-two {
    background: url(../img/our-projects/bg.jpg) center top no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding-bottom: 80px;
}
.home-v2#project-version-two .section-title h1 {
    color: #fff;
    border-color: #335160;
}
.home-v2#project-version-two .gallery-filter {
    border: none;
}
.home-v2#project-version-two .gallery-filter li span {
    color: #fff;
    border: 1px solid transparent;
    line-height: 30px;
}
.home-v2#project-version-two .gallery-filter li:hover span {
    color: #12AEF8;
}
.home-v2#project-version-two .gallery-filter li.active span {
    border: 1px solid #12AEF8;
    color: #12AEF8;
}
.home-v2#project-version-two .gallery-filter li.active span:before {
    display: none;
}
.home-v2#project-version-two .view-all-btn {
    text-align: center;
}
.home-v2#project-version-two a.view-all {
    border: 1px solid #4C7B96;
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    line-height: 35px;
    padding: 0 35px;
    font-weight: 600;
    font-size: 18px;
    margin: auto;
    display: inline-block;
    margin-top: 35px;
}
.home-v2#project-version-two a.view-all:hover {
    border-color: transparent;
}
.home-v2#project-version-two a.view-all:before {
    background: #c0000c;
}


/**
* home V2 blog Styles.
**/


.home-v2#blog .blog-wrap {
    margin-bottom: 35px;
}
.home-v2#blog .blog-wrap.height-big .content-wrap p {
    margin-bottom: 45px;
}

/**
* Home v2 Styles.
**/

.home-v2#pricing-faq {
    background: #102335;
    position: relative;
    z-index: 1;
}

.home-v2#pricing-faq .parallax {
    opacity: .7;
}
.home-v2#pricing-faq .section-title h1 {
    color: #fff;
    border-color: #335160;
}
.home-v2#pricing-faq ul li h2 {
    color: #12AEF8;
}
.home-v2#pricing-faq ul li p {
    color: #fff;
}

/**
* Home v2 contact Styles.
**/

.home-v2#contact-content {
    padding: 0;
    position: relative;
    margin-bottom: -60px;
    background: url(../img/resources/contact-bg.png) bottom right no-repeat fixed;
}
.home-v2#contact-content .container {
    padding: 65px 0 50px;
    overflow: hidden;
}
.home-v2#contact-content .section-title h1 {
    margin-bottom: 30px;
}
.home-v2#contact-content .container p {
    text-align: left;
}

/**
* Google map full width Styles.
**/
.google-map-full-container {
    width: 100%;
}
.google-map-full-container .google-map {
    height: 450px;
}


/**
* Subscribe Section Styles.
**/

#subscribe-section {
    background: #36A2DC;
    padding: 30px 0 20px;
}
#subscribe-section h2 {
    font-size:  2.2rem;
    line-height: 30px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 5px;
}
#subscribe-section p {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
#subscribe-section p br {
    display: none;
}
#subscribe-section .subscribe-form-wrap {
    padding: 25px 0;
}
#subscribe-section .subscribe-form-wrap input {
    width: 70%;
    height: 45px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 45px;
    background: #03394F;
    font-weight: 600;
    border: none;
    padding-left: 20px;
    margin-right: 20px;
}
#subscribe-section .subscribe-form-wrap button {
    font-size: 18px;
    line-height: 45px;
    color: #fff;
    font-weight: 900;
    background: #c0000c;
    border: 1px solid #c0000c;
    text-transform: uppercase;
    display: inline-block;
    margin: auto;
    border: none;
    outline: none;
    padding: 0 40px;
}
#subscribe-section .subscribe-form-wrap button:before {
    background: #fff;
}
#subscribe-section .subscribe-form-wrap button:hover, 
#subscribe-section .subscribe-form-wrap button:focus {
    color: #c0000c;
}

/**
* Our Achivement Styles.
**/

#our-achivement {
    background: #36A2DC;
    color: #fff;
    padding: 60px 0;
}
#our-achivement .achivement ul li {
    display: inline;
}
#our-achivement .achivement ul li span {
    display: inline-block;
    padding: 0 20px;    
    border-right: 1px dashed #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease;
}
#our-achivement .achivement ul li span b {
    font-weight: bold;
    font-size: 40px;
    
    transition: all .3s ease;

}
#our-achivement .achivement ul li span:last-child {
    border: none;
}
#our-achivement .achivement ul li span i {
    font-size: 55px;
    line-height: 75px;
    transition: all .3s ease;
}
#our-achivement .achivement:hover ul li span i,
#our-achivement .achivement:hover ul li span b {
    color: #c0000c;
}
#our-achivement .achivement:hover ul li span {
    color: #012C3C;
}


/**
* Request a qoute container Styles.
**/

#request-a-qoute-container {
    margin-top: -170px;
    position: relative;
    z-index: 9999;
}
#request-a-qoute-container .tab-title ul {
    text-align: left;
    margin-left: 3px;
}
#request-a-qoute-container .tab-title ul li {
    display: inline;
}
#request-a-qoute-container .tab-title ul li span {
    display: inline-block;
    color: #444444;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 50px;
    border-top: 5px solid transparent;
    background: #E8E8E8;
    padding: 0 22px;
    cursor: pointer;
    margin: 0 -3px; 
}
#request-a-qoute-container .tab-title ul li span.active {
    background: #fff;
    border-top: 5px solid var(--red);
    box-shadow: 5px -5px 5px  rgba(0,0,0,.2);
    position: relative;
    z-index: 999;
}
#request-a-qoute-container .tab-title ul li:last-child span.active {
    box-shadow: -5px -5px 5px  rgba(0,0,0,.2);
}
#request-a-qoute-container .tab-content {
    padding: 25px 0;
    background: #fff;
}
.tab-content .img-box{
    display: flex;
    width: 98%;
}
.tab-content .img-box img{
    object-fit: cover;
    height: 600px;
    width: 100%;
    border-radius: 20px;
}
.single-sidebar .img-box img{
   width: 100%;
   height: 300px;
   object-fit: cover;
}
#request-a-qoute-container .tab-content .success {
    color: #42B8E9;
}
#request-a-qoute-container .tab-content form ul li {
    width: 20%;
    float: left;
    padding: 0 15px;
}
#request-a-qoute-container .tab-content form ul li label {
    display: block;
    
    font-size: 15px;
    color: #000000;
    font-weight: normal;
    transition: all .3s ease;
}
#request-a-qoute-container .tab-content form ul li label.error {
    display: none !important;
}
#request-a-qoute-container .tab-content form ul li:hover label {
    color: #c0000c;
}
#request-a-qoute-container .tab-content form ul li:focus label {
    color: #42B8E9;
}
#request-a-qoute-container .tab-content form ul li input {
    display: block;
    height: 35px;
    width: 100%;
    border: 1px solid #E1E1E1;
    outline: none;
    padding: 0 10px;
    color: #000;
    transition: all .3s ease;
}
#request-a-qoute-container .tab-content form ul li input.error {
    border-color: red;
}
#request-a-qoute-container .tab-content form ul li input:hover {
    background: #42B8E9;
    color: #fff;
}
#request-a-qoute-container .tab-content form ul li input:focus {
    background: #42B8E9;
    color: #fff;
}
#request-a-qoute-container .tab-content form ul li input:focus {
    background: #42B8E9;
    color: #fff;
}
#request-a-qoute-container .tab-content form ul li input::-webkit-input-placeholder {
   color: #c1c1c1;
}

#request-a-qoute-container .tab-content form ul li input:-moz-placeholder { /* Firefox 18- */
   color: #c1c1c1;  
}

#request-a-qoute-container .tab-content form ul li input::-moz-placeholder {  /* Firefox 19+ */
   color: #c1c1c1;  
}

#request-a-qoute-container .tab-content form ul li input:-ms-input-placeholder {  
   color: #c1c1c1;  
}
#request-a-qoute-container .tab-content form ul li input:hover::-webkit-input-placeholder,
#request-a-qoute-container .tab-content form ul li input:focus::-webkit-input-placeholder {
   color: #fff;
}

#request-a-qoute-container .tab-content form ul li input:hover:-moz-placeholder,
#request-a-qoute-container .tab-content form ul li input:focus:-moz-placeholder { /* Firefox 18- */
   color: #fff;  
}

#request-a-qoute-container .tab-content form ul li input:hover::-moz-placeholder,
#request-a-qoute-container .tab-content form ul li input:focus::-moz-placeholder {  /* Firefox 19+ */
   color: #fff;  
}

#request-a-qoute-container .tab-content form ul li input:hover:-ms-input-placeholder,
#request-a-qoute-container .tab-content form ul li input:focus:-ms-input-placeholder {  
   color: #fff;  
}
#request-a-qoute-container .tab-content form ul li button {
    background: #c0000c;
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    line-height: 35px;
    height: 35px;
    text-transform: uppercase;
    font-weight: 800;
    width: 100%;
}
#request-a-qoute-container .tab-content form ul li button:hover,
#request-a-qoute-container .tab-content form ul li button:focus {
    color: #c0000c;
}
#request-a-qoute-container .tab-content form ul li button:before {
    background: #fff;
}
#request-a-qoute-container .container {
    position: relative;
}
#request-a-qoute-container .container .request-a-qoute-with-tooltip {
    position: absolute;
    top: 0;
    right: 15px;
    background: #42B8E9 none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    line-height: 45px;
    margin: auto;
    outline: medium none;
    padding: 0 45px;
    text-transform: uppercase;
}
#request-a-qoute-container .container .request-a-qoute-with-tooltip:hover,
#request-a-qoute-container .container .request-a-qoute-with-tooltip:focus {
    color: #42B8E9;
}
#request-a-qoute-container .container .request-a-qoute-with-tooltip:before {
    background: #fff;
}
#request-a-qoute-container .container .request-a-qoute-with-tooltip i {
    position: absolute;
    bottom: -17px;
    font-size: 30px;
    left: 0;
    width: 100%;
    color: #42B8E9;
}
#request-a-qoute-container .container .request-a-qoute-with-tooltip:hover i {
    color: #fff;
}


/**
* Header Variation One's header Styles.
**/

header.header-v1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 999999;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
header.header-v1 .mainmenu-container ul li {
    line-height: 90px;
}
header.header-v1 .logo {
    margin: 17px 0;
}
header.header-v1 .mainmenu-container > ul > li > a,
header.header-v1 .mainmenu-container ul li.top-icons a i {
    color: #fff;
}
header.header-v1 .mainmenu-container ul li.top-icons a i {
    border-color: #fff;
}
header.header-v1.header-fixed {
    background: var(--red);
}
header.header-v1 .top-info ul {
    text-align: right;
}
header.header-v1 .top-info ul li {
    display: inline;
}
header.header-v1 .top-info ul li span {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 40px;
    margin-left: 25px;
}
header.header-v1 .mainmenu-container > ul > li.dropdown:after {
    bottom: 10px;
}
header.header-v1 .top-info {
    transition: all .3s ease;
}
header.header-v1.header-fixed .top-info {
    display: none;
}

/**
* Header variation one's banner style Styles.
**/

#header-v1-banner {
    padding: 320px 0 0px;
    background: url(../img/slides/image6.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    height: 100vh;
    position: relative;
}
#header-v1-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}
#header-v1-banner h1 {
    font-size: 70px;
    line-height: 70px;
    margin: 0px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
    padding: 10px 20px;
}
#header-v1-banner h1.blue {
    background: #04AEEA;
    color: #002431;
}
#header-v1-banner h1.red {
    background: #c0000c;
    color: #fff;
}
#header-v1-banner p {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
    font-style: italic;
    margin: 50px 0;
}
#header-v1-banner a {
    font-size: 18px;
    line-height: 38px;
    padding: 0 40px;
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
}

/**
* Header Version three Styles.
**/

header.header-v3 .container {
    position: relative;
    z-index: 9999;
    transition: all .3s ease;
}
header.header-v3 > .container {
    margin-bottom: -25px;
}
header.header-v3.header-fixed .container {
    margin-bottom: 0;
}

header.header-v3 .header-v3-top {
    padding: 25px 0;
}
header.header-v3 .logo {
    margin-top: 0;
}
header.header-v3 .col-lg-9 ul {
    text-align: right;
}
header.header-v3 .col-lg-9 ul li {
    float: right;
    padding: 0 20px;
    border-right: 1px solid #D3D3D3;
}
header.header-v3 .col-lg-9 ul li:first-child {
    border: none;
}
header.header-v3 .col-lg-9 ul li span {
    display: inline-block;
    text-align: left;
    color: #787D84;
    font-size: 18px;
    vertical-align: bottom;
}
header.header-v3 .col-lg-9 ul li span .number {
    
}
header.header-v3 .col-lg-9 ul li span b {
    display: block;
    color: #012C3C;
    font-weight: 500;
    margin-bottom: -6px;
}
header.header-v3 .col-lg-9 ul li span .fa {
    font-size: 15px;
    color: #787D84;
    margin-right: 10px;
    transition: all .3s ease;
}
header.header-v3 .col-lg-9 ul li span a:hover .fa {
    color: #10BEDE;
}
header.header-v3 .col-lg-9 ul li span .icon {
    font-size: 30px;
    line-height: 50px;
    color: #0EC3FF;
    vertical-align: top;
    padding-right: 10px;
}
header.header-v3 .mainmenu-container {
    background: #10BEDE;
    border-bottom: 3px solid  #c0000c;
    padding: 0;
}
header.header-v3 .mainmenu-container ul {
    text-align: left;
}
header.header-v3 .mainmenu-container ul li {
    line-height: 50px;
}
header.header-v3 .mainmenu-container > ul > li > a {
    color: #fff;
    margin-right: -5px;
    position: relative;
}
header.header-v3 .mainmenu-container > ul > li:first-child > a:before {
    display: none;
}
header.header-v3 .mainmenu-container > ul > li > a:before {
    content: ' ';
    background: #0C9AB8;
    width: 1px;
    height: 22px;
    position: absolute;
    right: 0;
    top: 15px;
}
header.header-v3 .mainmenu-container > ul > li:hover > a,
header.header-v3 .mainmenu-container > ul > li.current > a {
    background: #c0000c;
}
header.header-v3 .mainmenu-container > ul > li.current > a:before,
header.header-v3 .mainmenu-container > ul > li:hover > a:before,
header.header-v3 .mainmenu-container > ul > li:hover + li > a:before,
header.header-v3 .mainmenu-container > ul > li.current + li > a:before {
    content: '';
    background: none;
    display: none;
}
header.header-v3 .mainmenu-container ul > li.dropdown:after {
    bottom: 0;
    color: #fff;
    font-size: 18px;
}
header.header-v3 .mainmenu-container ul li.top-icons a {
    margin-right: 0;
    color: #fff;
}
header.header-v3 .mainmenu-container ul li.top-icons a i {
    color: #fff;
}
header.header-v3 .mainmenu-container ul li.top-icons a:before {
    display: none;
}



/**
* Header v3 banner text Styles.
**/

#banner.header-v3 {
    background: url(../img/slides/image7.jpg) center top no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 135px 0 100px;
    position: relative;
    z-index: 999;
}
#banner.header-v3 .container {
    overflow: hidden;
}
#banner.header-v3 .col-lg-5 {
    position: relative;
    left: 6%;
}
h1.banner-header-v3-heading {
    font-size: 35px;
    line-height: 35px;
    margin: 0px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
    padding: 10px 20px;
}
h1.banner-header-v3-heading.blue {
    background: #052733;
    color: #0EC3FF;
}
h1.banner-header-v3-heading.red {
    background: #c0000c;
    color: #fff;
}
.banner-header-v3-txt {
    margin: 25px 0;
}
.banner-header-v3-txt li,
.banner-header-v3-txt li i {
    font-size: 18px;
    font-weight: bold;
    color: #000000;

}
.banner-header-v3-txt li span {
    border-bottom: 1px solid #979797;
    border-left: 1px solid #979797;
    line-height: 41px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 20px;
}
.banner-header-v3-txt li:first-child span {
    border-top: 1px solid #979797;

}
.banner-header-v3-button {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 37px;
    padding: 0 20px;
    background: #2CCAFF;
    border-bottom: 4px solid  #376f81;
    display: inline-block;
    transition: all .3s ease;
}
.banner-header-v3-button:hover {
    background: #c0000c;
    color: #fff;
}
.banner-header-v3-button:active {
    position: relative;
    top: 4px;
    border-bottom: 1px solid  #376f81;
}

/**
* Header Version Four Styles.
**/

header.header-v4 {

}
header.header-v4 .header-v4-top {
    padding: 25px 0;
}
header.header-v4 .logo {
    margin-top: 0;
}
header.header-v4 .col-lg-9 ul {
    text-align: right;
}
header.header-v4 .col-lg-9 ul li {
    float: right;
    padding: 0 20px;
    border-right: 1px solid #D3D3D3;
}
header.header-v4 .col-lg-9 ul li:first-child {
    border: none;
}
header.header-v4 .col-lg-9 ul li span {
    display: inline-block;
    text-align: left;
    color: #787D84;
    font-size: 18px;
    vertical-align: bottom;
}
header.header-v4 .col-lg-9 ul li span .number {
    
}
header.header-v4 .col-lg-9 ul li span b {
    display: block;
    color: #012C3C;
    font-weight: 500;
    margin-bottom: -6px;
}
header.header-v4 .col-lg-9 ul li span .fa {
    font-size: 15px;
    color: #787D84;
    margin-right: 10px;
    transition: all .3s ease;
}
header.header-v4 .col-lg-9 ul li span a:hover .fa {
    color: #10BEDE;
}
header.header-v4 .col-lg-9 ul li span .icon {
    font-size: 30px;
    line-height: 50px;
    color: #0EC3FF;
    vertical-align: top;
    padding-right: 10px;
}
header.header-v4 .header-v4-bottom {
    background: #F0F0F0;
    border-top: 1px solid  #D5D5D5;
}
header.header-v4 .mainmenu-container > ul {
    padding: 0;
}
header.header-v4 .mainmenu-container ul {
    text-align: left;
}
header.header-v4 .mainmenu-container ul li {
    line-height: 50px;
}
header.header-v4 .mainmenu-container > ul > li > a {
    color: #515050;
    margin-right: -5px;
    position: relative;
}
header.header-v4 .mainmenu-container > ul > li > a:before {
    content: ' ';
    background: #CACACA;
    width: 1px;
    height: 22px;
    position: absolute;
    right: 0;
    top: 15px;
}
header.header-v4 .mainmenu-container > ul > li:first-child > a:before {
    display: none;
}
header.header-v4 .mainmenu-container > ul > li:hover > a,
header.header-v4 .mainmenu-container > ul > li.current > a {
    color: #c0000c;
}
header.header-v4 .mainmenu-container ul > li.dropdown:after {
    bottom: 0;
    color: #fff;
    font-size: 18px;
}
header.header-v4 .mainmenu-container ul li.top-icons a {
    margin-right: 0;
    color: #fff;
}
header.header-v4 .mainmenu-container ul li.top-icons a i {
    color: #2DA9E9;
    border-color: #CACACA;
}
header.header-v4 .mainmenu-container ul li.top-icons a:before {
    display: none;
}
.header-v4-bottom .top-icons-wrap {
    width: auto;
}
.header-v4-bottom .top-icons-wrap form {
    height: 35px;
    background: #FFFFFF;
    border: 1px solid #CACACA;
    padding: 0 10px;
    border-radius: 5px;
    position: relative;
    top: 7px;
}
.header-v4-bottom .top-icons-wrap input,
.header-v4-bottom .top-icons-wrap button {
    height: 35px;
    border: none;
    outline: none;
    line-height: 35px;
    background: none;
    display: inline-block;
    vertical-align: top;
}

/**
* Header v2 Banner Styles.
**/

#banner.header-v2 {
    padding: 285px 0 160px;
    background: url(../img/slides/image4.jpg) right top no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

#banner.header-v2 h1 {
    font-size: 75px;
    line-height: 75px;
    color: #c0000c;
    text-transform: uppercase;
    font-weight: 800;
}
#banner.header-v2 h1 span {
    font-size: 83px;
    color: #1ACCFF;
}
#banner.header-v2 .header-v2-caption {
    margin-top: 40px;
    background: url(../img/resources/header-v2-banner-lines.png) 40px 0 no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}
#banner.header-v2 .header-v2-caption li {
    padding-bottom: 40px;
}
#banner.header-v2 .header-v2-caption li:first-child {
    padding-top: 40px;
}
#banner.header-v2 .header-v2-caption li .icon-holder {
    background: #cf0000;
    border: 5px solid #386182;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    text-align: center;
    margin-right: 40px;
}
#banner.header-v2 .header-v2-caption li .icon-holder .icon {
    font-size: 50px;
    line-height: 75px;
    color: #000000;
}
#banner.header-v2 .header-v2-caption li .icon-holder img {
    margin-top: 8px;
}
#banner.header-v2 .header-v2-caption li .icon-holder.plumbing {
    background: #FFCA1C;
}
#banner.header-v2 .header-v2-caption li .icon-holder.heating {
    background: #c0000c;
}
#banner.header-v2 .header-v2-caption li .icon-holder.handyman {
    background: #53E6B0;
}
#banner.header-v2 .header-v2-caption li .info {
    color: #fff;
    font-size: 18px;
    line-height: normal;
}
#banner.header-v2 .header-v2-caption li .info b {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}


/**
* header v4 banner Styles.
**/

.header-v4 .bold-pxslider-caption-header-v4 h1 {
    font-size: 65px;
    line-height: 65px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}
.header-v4 .bold-pxslider-caption-header-v4.red h1 {
    color: #c0000c;
}




/**
* Project Gallery Version 5 Styles.
**/

#project-version-one.project-v5 {
    background: #F9F9F9;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item {
    margin-bottom: 30px;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .col-lg-8,
#project-version-one .normal-gallery.gallery-v5 .single-project-item .col-lg-4 {
    background: #fff;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .col-lg-8 {
    padding-left: 0;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .col-lg-8 img {
    max-width: 100%;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .col-lg-4 {
    padding-top: 30px;
    padding-bottom: 30px;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .col-lg-8:before,
#project-version-one .normal-gallery.gallery-v5 .single-project-item .col-lg-4:before {
    background: #FEAF18;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover .col-lg-8:before,
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover .col-lg-4:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .meta {
    padding: 20px 0;
    position: relative;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .meta:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #12AEF8;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover .meta:before {
    background: #fff;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .meta h4 {
    font-size: 15px;
    line-height: 24px;
    color: #303030;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover .meta h4 {
    color: #fff;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .meta span {
    font-size: 18px;
    color: #A7A7A7;
    font-weight: 500;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover .meta span {
    color: #fff;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item p {
    font-size: 18px;
    font-weight: 500;
    color: #8E8D8D;
    line-height: normal;
    margin: 20px 0px;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover p {
    color: #fff;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item a.read-more {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    background: #36ABFC;
    line-height: 30px;
    display: inline-block;
    padding: 0 25px;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item a.read-more:hover {
    color: #fff;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item a.read-more:before {
    background: #2C2C2C;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .overlay {
    position: relative;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .overlay:before {
    content: ' ';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 0%;
    background: rgba(0,0,0,.60);
    z-index: 1;
    transition: all .3s ease;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item .overlay:after {
    content: ' ';
    width: auto;
    height: auto;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border: 1px solid #808080;
    z-index: 2;
    visibility: hidden;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover .overlay:before {
    height: 100%;
}
#project-version-one .normal-gallery.gallery-v5 .single-project-item:hover .overlay:after {
    visibility: visible;
}
#project-version-one .normal-gallery.gallery-v5 {
    margin: 0;
}


/**
* Page 404 content Styles.
**/

#page-404-content {
    padding: 165px 0 80px;
}
#page-404-content .container {
    background: url(../img/404/404-bg.jpg) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    padding: 60px 0;
}
#page-404-content .container .row > img {
    position: absolute;
    bottom: 0;
    left: 45px;
    transition: all .3s ease;
}
#page-404-content .container:hover .row > img {
    opacity: .5;
}
#page-404-content .container h1 {
    font-size: 45px;
    line-height: 45px;
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}
#page-404-content .container p {
    font-size: 18px;
    color: #6C6C6C;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 20px;
}
#page-404-content .container a.button-404 {
    background: #36ABFC;
    color: #fff;
    text-transform: uppercase;
    line-height: 38px;
    display: inline-block;
    padding: 0 25px;
    font-weight: 800;
    font-size: 18px;
    border: 1px solid transparent;
}
#page-404-content .container a.button-404:hover {
    color: #36ABFC;
    border-color: #36ABFC;
}
#page-404-content .container a.button-404:before {
    background: #fff;
}


/**
* Search Page Styles.
**/

#blog-post .search-content .section-title h1 {
    margin-bottom: 0;
}
#blog-post .search-content .single-search-content {
    padding: 50px 0;
    border-bottom: 1px solid #E2E2E2;
    margin: 0;
}
#blog-post .search-content .single-search-content:first-child {
    padding-top: 0;
}
#blog-post .search-content .single-search-content:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

#blog-post .search-content .single-search-content .img-holder {
    padding-left: 0;
    text-align: center;
    margin: 0;
}
#blog-post .search-content .single-search-content .content span {
    font-size: 18px;
    font-weight: 600;
    color: #C0C0C0;
    line-height: normal;
}
#blog-post .search-content .single-search-content .content h3 {
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    margin: 0;
}
#blog-post .search-content .single-search-content .content p {
    color: #8E8D8D;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
}
#blog-post .search-content .single-search-content .content a {
    color: #36ABFC;
    font-size: 18px;
    font-weight: 600;
}


/**
* Cart Page Styles
**/

.cart-page {
    padding: 80px 0;
}
.cart-page .table {
    margin: 0;
}
.cart-page table > tbody > tr > td,
.cart-page .table > thead > tr > th {
    border: none;
}
.cart-page .table thead {
    background: #F9F9F9;
}
.cart-page .table > thead > tr > th {
    font-weight: normal;
    color: #000000;
    font-size: 18px;
    line-height: 60px;
    padding: 0 40px;
    font-weight: 500;
    border: 1px solid #EBEBEB;
    border-bottom: 0;
}
.cart-page .table > thead > tr > th.close {
    color: transparent;
}
.cart-page .table > tbody > tr > td.preview {
    padding: 25px 50px;
}
.cart-page .table > tbody > tr > td {
    border: 1px solid #EBEBEB;
    padding: 80px 40px;
    font-size: 18px;
    color: #8E8D8D;
    font-weight: 600;
    
}
.cart-page .table > tbody > tr > td.del-item {
    text-align: center;
}
.cart-page .table > tbody > tr > td .select-box {
    padding: 0;
    margin: 0;
    border: 1px solid #EDEDED;
    width: 95px;
    overflow: hidden;
    background-color: #fff;

    background: #fff url(../img/cart/select-box-bg.png) no-repeat 80% 50%;
}

.cart-page .table > tbody > tr > td .select-box select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.cart-page .table > tbody > tr > td .select-box select:focus {
    outline: none;
}
.cart-page .table > tbody > tr > td.del-item {
    color: #c0000c;
    font-size: 18px;
    font-weight: normal;
}

.cart-page .bottom-box {
    padding: 30px 25px;
    background: #F9F9F9;
    margin: 0 0 50px;
}
.cart-page .bottom-box .cupon-box input {
    width: 130px;
    line-height: 36px;
    padding: 0 20px;
    border: 1px solid #EEEEEE;
    outline: none;
    margin-right: 10px;
}
.cart-page .bottom-box .cupon-box button {
    padding: 0 20px;
    color: #fff;
    background: #E3E3E3;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: normal;
    line-height: 36px;
    color: #000000;
    
}
.cart-page .add-to-cart-wrap {
    text-align: right;
}
.cart-page .add-to-cart-wrap a {
    background: #36ABFC;
    text-transform: uppercase;
    display: inline-block;
    line-height: 36px;
    font-weight: 700;
    color: #fff;
    padding: 0 40px;
    
}
.cart-page .add-to-cart-wrap a:before {
    background: var(--red);
}
.cart-page .cart-total-box li {

    line-height: 60px;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #EBEBEB;
    border-left: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
    padding: 0 25px;
}
.cart-page .cart-total-box li:first-child {
    border-top: 1px solid #EBEBEB;

}
.cart-page .cart-total-box li span {
    margin-left: 50px;
}
.cart-page .cart-total-box .cart-total {
    background: #F9F9F9;
    
}
.cart-page .cart-total-box .proceed-to-checkout {
    text-align: right;
}
.cart-page .cart-total-box .proceed-to-checkout a {
        background: #36ABFC;
    text-transform: uppercase;
    display: inline-block;
    line-height: 36px;
    font-weight: 700;
    color: #fff;
    padding: 0 40px;
    
}
.cart-page .cart-total-box .proceed-to-checkout a:before {
    background: var(--red);
}

/**
* Checkout Page Styles.
**/

#checkout-content {
    padding: 80px 0 130px;
}
#checkout-content .return-customer {
    background: #F9F9F9;
    border: 1px solid #EBEBEB;
    padding: 25px 30px;
    margin-bottom: 50px;
}
#checkout-content .return-customer p {
    margin-bottom: 0;
    font-size: 18px;
    color: #8E8E8E;
    line-height: normal;
}
#checkout-content .return-customer a {
    color: #c0000c;
}

#checkout-content label,
#checkout-content input[type="text"] {
    display: block;
}
#checkout-content label {
    font-size: 18px;
    line-height: normal;
    color: #8E8D8D;
    margin-bottom: 5px;
    font-weight: 500;
    
}
#checkout-content input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #E2E2E2;
    outline: none;
    padding: 0 20px;
    
}
#checkout-content input[type="text"]:last-child {
    margin-bottom: 0;
}
#checkout-content .left-checkout > .row {
    margin-bottom: 30px;
}

#checkout-content .select-box {
    padding: 0;
    margin: 0;
    border: 1px solid #E2E2E2;
    width: 100%;
    overflow: hidden;
    background-color: #fff;

    background: #fff url(../img/cart/select-box-bg.png) no-repeat 95% 50%;
}

#checkout-content .select-box select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

#checkout-content .select-box select:focus {
    outline: none;
}
#checkout-content .row span {
    font-size: 18px;
    font-weight: 500;
    color: #8E8D8D;

}
#checkout-content input[type="checkbox"] {
    margin: 0;
    vertical-align: middle;
    margin-right: 15px;
}
#checkout-content textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #E2E2E2;
    padding: 10px 20px;
    outline: none;
}
#checkout-content .ship-different {
    margin-top: 80px;
}
#checkout-content .order-box {
    border: 1px solid #D9D9D9;
    padding: 30px;
}
#checkout-content .order-box ul li {
    display: block;
    color: #8E8D8D;
    font-size: 18px;
    line-height: 45px;
    font-weight: 600;
}
#checkout-content .order-box ul li.total {
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
}
#checkout-content .order-box ul li span {
    float: right;
    display: inline-block;
}
#checkout-content .order-box ul li span.bold {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}
#checkout-content .order-box ul li a span {
    color: #c0000c;
}
#checkout-content .order-box ul li input[type="radio"] {
    margin-right: 10px;
}
#checkout-content .order-box ul li .note {
    background: #ECECEC;
    padding: 25px;
    color: #8E8D8D;
    line-height: 24px;
    font-size: 18px;
    font-weight: normal;
    position: relative;
    
}
#checkout-content .order-box ul li .note .fa {
    font-size: 35px;
    position: absolute;
    top: -25px;
    left: 25px;
    color: #ECECEC;
}
#checkout-content .order-box ul li a.place-order {
    background: #36ABFC;
    text-transform: uppercase;
    display: inline-block;
    line-height: 36px;
    font-weight: 700;
    color: #fff;
    padding: 0 40px;
    margin-top: 30px;
}

/**
* Shop Page Styles.
**/

.shop-page-content .row,
.shop-page-content.row {
    margin-left: -10px;
    margin-right: -10px;
}
.shop-page-content .single-shop-item {
    padding: 0 10px;
    margin-bottom: 20px;
}
.shop-page-content .single-shop-item .meta {
    background: #F8F8F8;
    padding: 30px 17px;
    text-align: center;
    border: 1px solid #F0F0F0;
}
.shop-page-content .single-shop-item .meta h4 {
    text-transform: uppercase;
    font-size: 18px;
    color: #000000;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 5px;
}
.shop-page-content .single-shop-item .meta p {
    font-size: 18px;
    font-weight: 500;
    color: #999999;
    line-height: 18px;
}
.shop-page-content .single-shop-item .meta span {
    display: block;
    
    font-size: 18px;
    color: #7E7E7E;
}
.shop-page-content .single-shop-item .meta span b {
    font-size: 20px;
    line-height: 28px;
    color: #E22D2D;
    font-weight: 600;
}
.shop-page-content .single-shop-item a.add-to-cart {
    background: #36ABFC;
    text-transform: uppercase;
    display: inline-block;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    padding: 0 20px;
    font-size: 18px;
    margin-top: 25px;
}
.shop-page-content .single-shop-item a.add-to-cart:before {
    background: #c0000c;
}
.shop-page-content .best-seller {
    margin-top: 80px;
    margin-left: 10px;
}


/**
* Product Details Page Styles.
**/

.product-details-box {
    margin-bottom: 80px;
}
.product-details-box h3 {
    color: #000000;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    margin-bottom: 0px;
    font-weight: 700;
    text-transform: uppercase;
}
.product-details-box p {
    font-size: 18px;
    color: #999999;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    padding: 20px 0;
    margin: 20px 0;
    font-weight: 500;
}
.product-details-box span {
    display: block;
    font-size: 18px;
    color: #999999;
    font-weight: 600;
    margin-bottom: 20px;
}
.product-details-box span b {
    font-size:  2.2rem;
    color: #E22D2D;
    font-weight: 700;
    
    margin-left: 10px;
}
.product-details-box span input {
    width: 36px;
    height: 36px;
    border: 1px solid #EAEAEA;
    color: #999999;
    text-align: center;
    margin-left: 10px;
}
.product-details-box a.add-to-cart {
    background: #36ABFC;
    text-transform: uppercase;
    display: inline-block;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    padding: 0 65px;
    font-size: 18px;
    margin-top: 25px;
}
.product-details-box a.add-to-cart:before {
    background: #c0000c;
}
.product-details-box img {
    border: 5px solid #F4F4F4;
}
.product-details-page-content .best-seller {
    margin-left: 0px;
}
.product-details-tab-title {
    margin: -15px;
}
.product-details-tab-title .col-lg-12 {
    padding: 0;
}
.product-details-tab-title ul li {
    display: inline;
}
.product-details-tab-title ul li.active span {
    background: #fff;
    border: 1px solid #E6E6E6;
    border-top: 2px solid #c0000c;
    border-bottom: 0;
    position: relative;
    top: 1px;
    z-index: 999;
}
.product-details-tab-title ul li span {
    display: inline-block;
    background: #F4F4F4;
    font-size: 18px;
    color: #000000;
    line-height: 45px;
    padding: 0 27px;
    margin-right: 5px;
    cursor: pointer;
}
.product-details-tab-content {
    margin-bottom: 75px;
}
.product-details-tab-content .col-lg-12 {
    border: 1px solid #E6E6E6;
    padding: 40px;
}
.product-details-tab-content .col-lg-12 p {
    font-size: 18px;
    color: #999999;
    font-weight: 500;
}


/** ====== our project with filter Gallery filter styles ====== **/

#our-projects.with-filter .gallery-filter {
    margin-bottom: 50px;
    text-align: center;
    border-bottom: 1px solid #E2E2E2;
}
#our-projects.with-filter .gallery-filter li {
    display: inline;
}
#our-projects.with-filter .gallery-filter li span {
    display: inline-block;
    font-size: 18px;
    line-height: 45px;
    color: #787878;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#our-projects.with-filter .gallery-filter li.active span:before {
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    background: #12AEF8;
    position: absolute;
    bottom: -1px;
    left: 0;
}
#our-projects.with-filter .gallery-filter li.active span,
#our-projects.with-filter .gallery-filter li:hover span {
    color: #12AEF8;
}
#our-projects.with-filter .gallery-filter {
    border: none;
}
#our-projects.with-filter .gallery-filter li span {
    color: #fff;
    border: 1px solid transparent;
    line-height: 30px;
}
#our-projects.with-filter .gallery-filter li:hover span {
    color: #12AEF8;
}
#our-projects.with-filter .gallery-filter li.active span {
    border: 1px solid #12AEF8;
    color: #12AEF8;
}
#our-projects.with-filter .gallery-filter li.active span:before {
    display: none;
}



/** ====== top bar construction styles ====== **/


#topbar.construct {
    background: #161616;
}
#topbar.construct .social ul li a {
    color: #A2A2A2;
    border-color: #212121;
    transition: all .3s ease;
}
#topbar.construct .social ul li a:hover {
    background: transparent;
    color: #E3960A;
}
#topbar.construct .contact-info ul li:hover a, 
#topbar.construct .contact-info ul li a:before {
    /*background: #1B222C;*/
}
#topbar.construct .contact-info ul li a {
    color: #A2A2A2;
    /*border-color: #E8A40A;*/
    font-size: 18px;
}
#topbar.construct .contact-info ul li a i {
    color: #E3960A;
}
#topbar.construct .contact-info ul li a i.fa-map-marker {
    font-size: 15px;
}
#topbar.construct .contact-info ul li a i.fa-envelope {
    font-size: 12px;
}
#topbar.construct .contact-info ul li a i.fa-phone {
    font-size: 18px;
}
#topbar.construct .contact-info ul li a:hover {
    color: #E3960A;
}
#topbar.construct .contact-info ul li a:hover i {
    color: #E3960A;
}

/** ====== header construct styles ====== **/


header.construct .mainmenu-container > ul > li > a {
    color: #515050;
}

header.construct .mainmenu-container > ul > li.current > a, 
header.construct .mainmenu-container ul li a:hover,
header.construct .mainmenu-container ul > li.dropdown:after,
header.construct .mainmenu-container ul > li > ul > li.dropdown:after,
header.construct nav.mainmenu-container ul > li > ul > li > a:hover,
header.construct nav.mainmenu-container ul > li > ul > li > a:hover:after,
header.construct .mainmenu-container ul > li > ul > li.dropdown:hover:after,
header.construct .mainmenu-container ul li.top-icons:hover a i {
    color: var(--red);
}
header.construct .mainmenu-container ul li a:before,
header.construct .search-box {
    background: #212121;
}
header.construct .mainmenu-container ul li a:before {
    color: var(--red);
}
header.construct .cart-box span {
    color: #1B222C;

}
header.construct .mainmenu-container ul li a:before {
    background: var(--red);
}
header.construct .mainmenu-container ul > li > ul,
header.construct .mainmenu-container ul li.top-icons:hover a i {
    border-color: var(--red);
}
header.construct .mainmenu-container ul li.top-icons a i {
    color: #C0C0C0;
    padding: 8px;
    font-size: 18px;
}
header.construct .cart-box {
    background: var(--red);
}


/** ====== construct Banner styles ====== **/


#construct-banner {
    background: url(../img/slides/image1.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    /*height: 803px;*/
}
#construct-banner .construct-banner-caption {
    padding-top: 200px;
    padding-bottom: 179px;
    padding-left: 55px;
}
#construct-banner .construct-banner-caption h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 23px;
}
#construct-banner .construct-banner-caption h2 b {
    color: #FF9600;
    font-weight: 800;
    font-size: 50px;
}
#construct-banner .construct-banner-caption ul {
    background: rgba(0,0,0,.6);
    display: inline-block;
    padding: 3px 0;
}

#construct-banner .construct-banner-caption ul li {
    display: inline;
}
#construct-banner .construct-banner-caption ul li span {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .34em;
    padding: 0 20px;
    border-right: 1px solid #fff;
}
#construct-banner .construct-banner-caption ul li:last-child span {
    border: none;
}
#construct-banner .construct-banner-caption p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .03em;
    color: #fff;
    font-weight: 300;
    margin-top: 23px;
    margin-bottom: 13px;
}
#construct-banner .construct-banner-caption a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 40px;
    display: inline-block;
    border: 1px solid #fff;
    text-transform: uppercase;
    padding: 0 44px;
}
#construct-banner .construct-banner-caption a:before {
    background: var(--red);
}


/** ====== construct welcome styles ====== **/

#construction-welcome {
    background: url(../img/construction-welcome/bg.jpg) center center no-repeat;
    background: #E9E9EA;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 80px 0;
}
.single-construction-welcome .img-holder {
    border: 5px solid #fff;
    margin-bottom: 30px;
}
.single-construction-welcome .img-holder img {
    transition: all .3s ease;
}
.single-construction-welcome .img-holder:before {
    background: var(--red);
}
.single-construction-welcome:hover .img-holder img {
    opacity: .45;
}
.single-construction-welcome:hover .img-holder:before, 
.single-construction-welcome:focus .img-holder:before, 
.single-construction-welcome:active .img-holder:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.single-construction-welcome h2 {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 0px;
}
.single-construction-welcome h2:after {
    content: '';
    width: 35px;
    background: #F7A238;
    height: 2px;
    display: block;
    margin-bottom: 15px;
    margin-top: 15px;
}
.single-construction-welcome h1 {
    color: #000000;
    font-size: 26px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: .03em;
    margin: 0;
    margin-bottom: 8px;
}
.single-construction-welcome p {
    font-size: 18px;
    line-height: normal;
    color: #818080;
    font-weight: 500;
    margin: 0;
}
.single-construction-welcome ul {
    margin-top: 19px;
}
.single-construction-welcome ul li {
    font-size: 18px;
    line-height: 40px;
    color: #818080;
    font-weight: 600;
    text-transform: uppercase;
    
}
.single-construction-welcome ul li .fa {
    margin-right: 10px;
}


/** ====== our projects construct home styles ====== **/

#project-version-one.construct.home {
    background: #171E28;
    padding-bottom: 80px;
}
#project-version-one.construct.home .section-title h1 {
    color: #FFFFFF;
    border-color: #40454D;
}
#project-version-one.construct.home .gallery-filter {
    border: none;
}
#project-version-one.construct.home .gallery-filter li {
    margin-right: 16px;
}
#project-version-one.construct.home .gallery-filter li span {
    line-height: 33px;
    border: 1px solid #333639;
    color: rgba(255,255,255,.5);
    font-size: 18px;
    font-weight: 500;
    background: #0B1928;
}
#project-version-one.construct.home .gallery-filter li.active span, 
#project-version-one.construct.home .gallery-filter li:hover span {
    color: #000000;
    background: #c0000c;
}
#project-version-one.construct.home .gallery-filter li.active span:before {
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    background: #12AEF8;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: none;
}
#project-version-one.construct.home .single-project-item .img-wrap .content-wrap:before {
    background: rgba(23, 30, 40, 0);
}
#project-version-one.construct.home .view-all-btn {
    margin-top: 50px;
}
#project-version-one.construct.home .view-all-btn a {
    line-height: 36px;
    border: 1px solid #7D8186;
    font-size: 18px;
    color: #FFFFFF;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 35px;
    font-weight: 500;
}
#project-version-one.construct.home .view-all-btn a:before {
    background: var(--red);
}

/** ====== Video section construction styles ====== **/

#video-section-construction {
    padding: 80px 0;
    background: url(../img/video-construction/bg.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;

}
#video-section-construction .video-preview,
#video-section-construction .video-text {
    display: table-cell;
    vertical-align: middle;
}
#video-section-construction .video-preview {
    width: 421px;
}
#video-section-construction .video-text {
    padding-left: 50px;
}
#video-section-construction .video-preview a {
    display: inline-block;
    background: #000;
    position: relative;
}
#video-section-construction .video-preview a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/video-construction/video-play-icon.png) center center no-repeat;
    z-index: 99;
}
#video-section-construction .video-preview img {
    opacity: .5;
    transition: all .3s ease;
}
#video-section-construction .video-preview a:hover img {
    opacity: .85;
}
#video-section-construction .video-text h2 {
    font-size: 28px;
    color: #102132;
    font-weight: 500;
    letter-spacing: .03em;
    margin: 0;
    margin-bottom: 22px;
}
#video-section-construction .video-text p {
    font-size: 18px;
    color: #777777;
    font-weight: 500;
    letter-spacing: .03em;
    margin: 0;
    margin-bottom: 50px;
}
#video-section-construction .video-text a {
    font-size: 18px;
    color: #3B3B3B;
    font-weight: 700;
    line-height: 30px;
    border: 1px solid #3B3B3B;
    letter-spacing: .03em;
    margin: 0;
    text-transform: uppercase;
    padding: 0 22px;
    display: inline-block;
}
#video-section-construction .video-text a:before {
    background: var(--red);
}


/** ====== Welcome to construct styles ====== **/

#welcome-to-construct {
    background: url(../img/welcome-to-construct/bg.jpg) 0 0 no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}
#welcome-to-construct .col-lg-7 {
    padding: 60px 50px;
}
#welcome-to-construct .col-lg-7 h2 {
    font-size:  2.2rem;
    color: var(--red);
    font-weight: bold;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 17px;
}
#welcome-to-construct .col-lg-7 p {
    font-size: 18px;
    line-height: normal;
    color: #fff;
    letter-spacing: .03em;
    font-weight: normal;
}
#welcome-to-construct .col-lg-7 h3 {
    font-size:  2.2rem;
    line-height: normal;
    color: var(--red);
    letter-spacing: .03em;
    font-weight: 500;
    margin: 0;
    margin-top: 30px;
}
#welcome-to-construct .col-lg-7 .list-box {
    margin-top: 22px;
}
#welcome-to-construct .col-lg-7 ul {
    display: table-cell;
    vertical-align: middle;
    padding-right: 95px;
}
#welcome-to-construct .col-lg-7 ul:last-child {
    padding-right: 0;
}
#welcome-to-construct .col-lg-7 ul li {
    color: #fff;
    font-size: 18px;
    line-height: 40px;
}
#welcome-to-construct .col-lg-7 ul li .fa {
    font-size: 15px;    
    margin-right: 10px;
}

#welcome-to-construct .col-lg-5 .img-holder:before {
    background: #EDB005;
}
#welcome-to-construct .col-lg-5 .img-holder img {
    max-width: none;
    transition: all .3s ease;
}
#welcome-to-construct:hover .col-lg-5 .img-holder img {
    opacity: .45;
}
#welcome-to-construct:hover .img-holder:before, 
#welcome-to-construct:focus .img-holder:before, 
#welcome-to-construct:active .img-holder:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}


/** ====== testimonials construct home styles ====== **/

#testimonials-construct-home {
    position: relative;
    background: url(../img/testimonials-construct/bg.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 80px 0;
}
#testimonials-construct-home .section-title h1 {
    border-color: #BCBFC1;
}
#testimonials-construct-home .single-testimonial-construct {
    background: #fff;
}
#testimonials-construct-home .single-testimonial-construct h3 {
    font-size: 18px;
    line-height: 37px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    background: var(--red);
    display: inline-block;
    padding: 0 49px;
    margin: 0;
    margin-bottom: 23px;
    position: relative;
    right: 50px;
    margin-top: 15px;
}
#testimonials-construct-home .single-testimonial-construct p {
    font-size: 18px;
    color: #484848;
    margin: 0;
    font-weight: 500;
}
#testimonials-construct-home .single-testimonial-construct .content {
    padding-left: 30px;
    padding-right: 10px;
    display: table-cell;
}
#testimonials-construct-home .single-testimonial-construct .img-holder {
    display: table-cell;
}
#testimonials-construct-home .single-testimonial-construct .img-holder:before {
    background: #EDB005;
}
#testimonials-construct-home .single-testimonial-construct .img-holder img {
    max-width: none;
    width: 170px;
    transition: all .3s ease;
}
#testimonials-construct-home .single-testimonial-construct:hover .img-holder img {
    opacity: .45;
}
#testimonials-construct-home .single-testimonial-construct:hover .img-holder:before, 
#testimonials-construct-home .single-testimonial-construct:active .img-holder:before, 
#testimonials-construct-home .single-testimonial-construct:focus .img-holder:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

#testimonials-construct-home .owl-theme {
    position: relative;    
}
#testimonials-construct-home .owl-theme .owl-controls {
    position: absolute;
    right: 0;
    top: -90px;
}
#testimonials-construct-home .owl-theme .owl-nav {
    margin: 0;    
}
#testimonials-construct-home .owl-theme .owl-nav [class*=owl-] {
    width: 30px;
    height: 30px;
    background: #fff;
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    padding: 0;    
    margin: 0;
    border-radius: 0;
    margin-left: 10px;
    transition: all .3s ease;
}
#testimonials-construct-home .owl-theme .owl-nav [class*=owl-]:hover {
    background: #36ABFC;
    color: #fff;
}


/** ====== our construct team styles ====== **/


#our-team-construct {
    padding: 80px 0;
    background: #272E39 url('../img/resources/team-section-bg.png') center center;
    -webkit-background-size: cover;
    background-size: cover;
}
#our-team-construct .section-title h1 {
    color: #fff;
    border-color: #444A53;
}
#our-team-construct .single-construct-member {
    text-align: center;
}
#our-team-construct .single-construct-member .content {
    text-align: center;
    padding: 0 22px;
    background: #1B222C;
    padding-top: 82.5px;
    display: block;
    border: 1px solid #565B64;
}
#our-team-construct .single-construct-member .content:before {
    background: var(--red);
}
#our-team-construct .single-construct-member:hover .content:before, 
#our-team-construct .single-construct-member:focus .content:before, 
#our-team-construct .single-construct-member:active .content:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#our-team-construct .single-construct-member .img-holder {
    border: 9px solid #1B222C;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: -82.5px;
    position: relative;
    z-index: 99;
    overflow: hidden;
}
#our-team-construct .single-construct-member h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    
    margin: 0;
    margin-top: 24px;
    transition: all .3s ease;
}
#our-team-construct .single-construct-member p {
    color: #9A9999;
    font-size: 18px;
    margin-top: 11px;
    transition: all .3s ease;
}
#our-team-construct .single-construct-member:hover p {
    color: #000000;
}
#our-team-construct .single-construct-member:hover h2,
#our-team-construct .single-construct-member:hover ul li a {
    color: #272E39;
}
#our-team-construct .single-construct-member ul {
    margin-top: 18px;
    padding-bottom: 29px;
}
#our-team-construct .single-construct-member ul li {
    display: inline;
}
#our-team-construct .single-construct-member ul li a {
    display: inline-block;
    color: var(--red);
    font-size: 18px;
    margin: 0 14px;
    transition: all .3s ease;
}


#our-team-construct .owl-theme {
    position: relative;    
}
#our-team-construct .owl-theme .owl-controls {
    position: absolute;
    right: 0;
    top: -70px;
}
#our-team-construct .owl-theme .owl-nav {
    margin: 0;    
}
#our-team-construct .owl-theme .owl-nav [class*=owl-] {
    width: 30px;
    height: 30px;
    background: #fff;
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    padding: 0;    
    margin: 0;
    border-radius: 0;
    margin-left: 10px;
    transition: all .3s ease;
}
#our-team-construct .owl-theme .owl-nav [class*=owl-]:hover {
    background: #36ABFC;
    color: #fff;
}


/** ====== Blog construct styles ====== **/



#blog-construct {
    background: #f5f5f5;
    padding: 80px 0;
}
#blog-construct .single-blog-post .img-holder {
    position: relative;
    margin-bottom: 28px;
}
#blog-construct .single-blog-post .img-holder .date {
    background: var(--red);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    padding: 66px 15px 8px 15px;
    font-weight: 500;
    
    text-transform: uppercase;
}
#blog-construct .single-blog-post .img-holder .date b {
    font-size: 25px;
    font-weight: bold;
}
#blog-construct .single-blog-post a h2 {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    letter-spacing: .03em;
    margin: 0;
    text-transform: uppercase;
    transition: all .3s ease;
}
#blog-construct .single-blog-post a h2:hover {
    color: #FFBB00;
}
#blog-construct .single-blog-post p {
    font-size: 18px;
    color: #8E8D8D;
    font-weight: 500;
    letter-spacing: .03em;
    margin: 0;
    margin-top: 15px;
}
#blog-construct .single-blog-post ul {
    border-top: 1px solid #DADADA;
    padding-top: 15px;
    margin-top: 14px;
}
#blog-construct .single-blog-post ul li {
    display: inline;
}
#blog-construct .single-blog-post ul li a,
#blog-construct .single-blog-post ul li span {
    display: inline-block;
    font-size: 18px;
    line-height: 13px;
    padding: 0 12px;
    color: #8E8D8D;
    font-weight: 500;
    
    transition: all .3s ease;
}
#blog-construct .single-blog-post ul li span {
    border-right: 1px solid #9A9A99;
    padding-left: 0;
    color: #8E8D8D;
}
#blog-construct .single-blog-post ul li span b {
    color: #4F4F4F;
}
#blog-construct .single-blog-post ul li a:hover {
    color: var(--red);
}

#blog-construct .single-blog-post .img-holder:before {
    background: var(--red);
}
#blog-construct .single-blog-post .img-holder img {
    transition: all .3s ease;
}
#blog-construct .single-blog-post:hover .img-holder img {
    opacity: .45;
}
#blog-construct .single-blog-post:hover .img-holder:before, 
#blog-construct .single-blog-post:focus .img-holder:before, 
#blog-construct .single-blog-post:active .img-holder:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}


/** ====== clients construct styles ====== **/

#clients.construct .container {
    border-top: 0;
    padding: 80px 0;
    padding-bottom: 50px;
}
#clients.construct .container .col-lg-12 {
    padding: 0 50px;
}

#clients.construct .container .owl-theme .owl-nav div .fa {
    color: #B3B3B3;
}

/** ====== Great construct team mover styles ====== **/

#great-construct-team {
    background: #162342 url(../img/resources/great-construct-team-bg.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 50px 0;
}
#great-construct-team h2 {
    text-transform: capitalize;
    color: #fff;
    letter-spacing: .03em;
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
}
#great-construct-team p {
    color: #000000;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 23px;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
}
#great-construct-team p b {
    font-size: 34px;
    color: #161616;
    font-weight: bold;
    font-family: 'PT Serif', sans-serif;
    margin-right: 10px;
    font-style: italic;
}
#great-construct-team p.has-btn {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-style: italic;
    font-weight: bold;
}
#great-construct-team p.has-btn a {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #000000;
    display: inline-block;
    line-height: 36px;
    padding: 0 27px;
    position: relative;
    bottom: 5px;
    margin-left: 10px;
}
#great-construct-team p.has-btn a:before {
    background: #FFBB00;
}



/** ====== footer construct styles ====== **/

footer.construct {
    background: #161616;
    padding: 80px 0 0px;
}
footer.construct .container {
    border-top: 0;
}
footer.construct .widget h3 {
    color: var(--red);
    border-color: #262728;
}
footer.construct .widget .popular-post li,
footer.construct .widget .contact-info li {
    border-color: #262728;
}
footer.construct .widget p,
footer.construct .widget .popular-post li a h5,
footer.construct .widget .contact-info li {
    color: #636363;
}
footer.construct .widget a.read-more {
    color: var(--red);
}
footer.construct .widget .social li a {
    background: none;
    border: 1px solid var(--red);
    color: var(--red);
}
footer.construct .widget .social li a:hover {
    background: #FFBB00;
    border: 1px solid #FFBB00;
    color: #000;
}
footer.construct .widget .social li a:before {
    background: #FFBB00;

}
footer.construct .widget .popular-post li a:hover h5 {
    color: #FFBB00;
}
footer.construct .widget .contact-info li .fa {
    color: #636363;
}
footer.construct .widget .contact-info li i,
footer.construct .widget .contact-info li span {
    display: table-cell;
    vertical-align: middle;
}
footer.construct .widget .contact-info li span {
    line-height: 21px;
    padding-left: 15px;
    
}
footer.construct .widget .our-services li a {
    font-size: 18px;
    color: #636363;
    text-transform: capitalize;
    line-height: 24px;
    
    border-bottom: 1px solid #2C2C2E;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    transition: all .3s ease;
}
footer.construct .widget .our-services li a:hover:before,
footer.construct .widget .our-services li a:hover {
    color: #FFBB00;
}
footer.construct .widget .our-services li:last-child a {
    border-bottom: 0;
}
footer.construct .widget .our-services li a:before {
    font-family: 'FontAwesome';
    content: '\f105';
    color: #636363;
    font-size: 18px;
    line-height: 14px;
    margin-right: 15px;
    transition: all .3s ease;
}
footer.construct .widget img.positioned {
    margin-top: 0px;
    position: relative;
    bottom: 20px;
    width: auto;
    max-width: none;
    float: right;
}


/** ====== bottom bar construct styles ====== **/

#bottom-bar.construct {
    background: #0F0F0F;
}
#bottom-bar.construct .container p {
    color: #3F3F3F;
}
#bottom-bar.construct .pull-right a p{
    color: var(--red)!important;
}


/*======== why choose us Styles ===========*/

#why-choose-us {
   
}
#why-choose-us .section-title h1 {
    margin-bottom: 40px;
}
#why-choose-us .section-title p {
    color: #8E8D8D;
    font-size: 18px;
    line-height: normal;
}

/*======== why choose us  Styles ===========*/
.why-choose-us-wrap {
  margin-top: 50px;
}
.why-choose-us.about-page {
  padding-top: 0px;
  padding-bottom: 80px;
}
ul.why-choose-us-facts li {
  margin-bottom: 30px;
}
ul.why-choose-us-facts li .icon-holder,
ul.why-choose-us-facts li .content {
  display: table-cell;
  vertical-align: middle;
}
ul.why-choose-us-facts li .icon-holder {
  width: 40px;
  height: 40px;
}
ul.why-choose-us-facts li .icon-holder i.icon {
  color: var(--red);
  font-size: 40px;
  line-height: 40px;
}
ul.why-choose-us-facts li .content {
  padding-left: 30px;
}
ul.why-choose-us-facts li .content h4 {
  color: #000000;
  font-weight: bold;
  
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
ul.why-choose-us-facts li .content p {
  color: #7F7F7F;
  font-size: 18px;
  line-height: normal;
  margin: 0;
}
.style-two .why-choose-us-wrap ul li {
  margin: 0;
  padding: 40px 0;
  border-bottom: 1px solid #E0E0E0;
}
.style-two .why-choose-us-wrap ul li:first-child {
  padding-top: 0;
}
.style-two .why-choose-us-wrap ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0px solid #E0E0E0;
}
.style-two .why-choose-us-wrap ul li .icon-holder {
  width: 70px;
  height: 70px;
}
.style-two .why-choose-us-wrap ul li .icon-holder i {
  line-height: 70px;
  font-size: 35px;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--red);
  text-align: center;
}

/*======== accrodion Styles ===========*/
.accrodion {
  border: 1px solid #DCDCDC;
  border-top: 0;
}
.accrodion:first-child {
    border-top: 1px solid #DCDCDC;
}
.accrodion:hover,
.accrodion.active {
  border-color: var(--red);
}
.accrodion:hover .accrodion-header,
.accrodion.active .accrodion-header {
  background: var(--red);
  border-color: var(--red);
}
.accrodion:hover .accrodion-header .icon-holder i,
.accrodion.active .accrodion-header .icon-holder i {
  color: #fff;
}
.accrodion:hover .accrodion-header h4,
.accrodion.active .accrodion-header h4,
.accrodion:hover .accrodion-header .expander:before,
.accrodion.active .accrodion-header .expander:before {
  color: #fff;
}
.accrodion:hover .accrodion-header .expander,
.accrodion.active .accrodion-header .expander {
  border-color: #fff;
}
.accrodion .accrodion-header {
  cursor: pointer;
  padding: 12px 20px;
  background: #FFFFFF;
  border-bottom: 1px solid #E1E1E1;
  position: relative;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.accrodion .accrodion-header .icon-holder,
.accrodion .accrodion-header h4 {
  display: table-cell;
  vertical-align: middle;
}
.accrodion .accrodion-header .icon-holder i {
  font-size: 20px;
  color: #C4C4C4;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.accrodion .accrodion-header h4 {
  padding-left: 10px;
  font-size: 18px;
  color: #363636;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: bold;
  
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.accrodion .accrodion-header .expander {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #999898;
  text-align: center;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.accrodion .accrodion-header .expander:before {
    color: #999898;
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    margin-left: 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    vertical-align: top;
}
.accrodion .accrodion-header .expander.plus:before {
  content: '+';
  line-height: 23px;
}
.accrodion .accrodion-header .expander.minus:before {
  content: '-';
  line-height: 20px;
}
.accrodion .accrodion-content {
  display: none;
  padding: 30px 0;
  padding-left: 30px;
  padding-right: 40px;
  background: #FFFFFF;
}
.accrodion .accrodion-content p {
  font-size: 15px;
  color: #969595;
  line-height: 24px;
  margin: 0;
  letter-spacing: .04em;
}


/*======== we are expert Styles ===========*/

.we-are-expert {
    padding: 80px 0;
}

.we-are-expert .section-title {
    margin-bottom: 50px;
}
.we-are-expert .section-title h1 {
    margin-bottom: 40px;
}
.we-are-expert .section-title p {
    color: #8E8D8D;
    font-size: 18px;
    line-height: normal;
}

.single-we-are-expert {
    position: relative;
}
.single-we-are-expert .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F3F3F3;
    border-top: 2px solid #FBB716;
    padding: 0 37px 0 45px;
    padding-top: 40px;
}
.single-we-are-expert:hover .content {
    border-color: #000000;
    background: rgba(255,180,0, .90);
}
.single-we-are-expert:hover .content h2,
.single-we-are-expert:hover .content p {
    color: #fff;
}

.single-we-are-expert .content h2 {
    font-size: 20px;
    color: #202020;
    font-weight: bold;
    margin: 0;
    margin-bottom: 10px;
}
.single-we-are-expert .content p {
    font-size: 18px;
    line-height: normal;
    color: #8D8D8D;
    
    letter-spacing: .025em;
}


/*======== service what we offer Styles ===========*/

.service-that-we-offer {
    background: url(../img/service-that-we-offer/bg.jpg) right center no-repeat;
    padding: 80px 0 50px;
}

.single-service-that-we-offer {
    margin-bottom: 30px;
}
.single-service-that-we-offer .img-holder,
.single-service-that-we-offer .content {
    display: table-cell;
    vertical-align: middle;
}
.single-service-that-we-offer .img-holder {
    width: 123px;
    background: #F6B61D;
}
.single-service-that-we-offer:hover .img-holder img {
    opacity: .30;
}
.single-service-that-we-offer:hover .content {
    background: #212121;
}
.single-service-that-we-offer:hover .content h3 {
    color: #E9A502;
}
.single-service-that-we-offer .content {
    vertical-align: top;
    border-top: 1px solid #D2D2D2;
    background: #fff;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.single-service-that-we-offer .content h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #202020;
    font-weight: bold;
    margin: 0;
    margin-bottom: 6px;
}
.single-service-that-we-offer .content p {
    font-size: 18px;
    
    color: #8D8D8D;
}


/*======== our expertize Styles ===========*/


#our-expertize {
    background: url(../img/resources/our-expertize-bg.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 80px 0;
}
#our-expertize .single-expertize {
  width: 25%;
  float: left;
  padding: 0 20px;
  text-align: center;
}
#our-expertize .single-expertize .icon {
  position: relative;
}
#our-expertize .single-expertize .icon b {
  display: block;
  color: #fff;
  font-family: 'PT Serif';
  font-size: 32px;
  font-style: italic;
  line-height: 142px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#our-expertize .single-expertize .icon b span {
  margin: 0;
}
#our-expertize .single-expertize h3 {
  margin: 0;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-top: 25px;
  margin-bottom: 18px;
}
#our-expertize .single-expertize p {
  margin: 0;
  font-size: 18px;
  
  color: #B8B8B7;  
}


/*======== our team construct Styles ===========*/

#our-team-construct.style-two {
    background: #F6F6F6;
    padding-bottom: 50px;
}
#our-team-construct.style-two .section-title h1  {
    color: #000000;
}
#our-team-construct.style-two .single-construct-member {
    margin-bottom: 30px;
    display: block;
}
#our-team-construct.style-two .single-construct-member .content {
    background: #E1E1E6;
    border-color: #E1E1E6;
}
#our-team-construct.style-two .single-construct-member .content h2 {
    color: #333333;
}
#our-team-construct.style-two .single-construct-member .img-holder {
    border-color: #fff;
}
#our-team-construct.style-two .single-construct-member ul li a {
    color: #333333;
}



/*======== header v5 Styles ===========*/

header.construct.header-curvy {
    background: #1D1D1D url('../img/resources/header-v5-bg.png') no-repeat 0 0;
    -webkit-background-size: cover;
    background-size: cover;
}
header.construct.header-curvy {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

header.construct.header-curvy .logo {
    position: relative;   
    margin: 0;
    padding: 18px 0;
    height: 100%;
    padding-right: 30px;
}
header.construct.header-curvy .logo img {
    position: relative;
    z-index: 99999;
}
header.construct.header-curvy .logo:before {
    content: ' ';
    width: 2000px;
    position: absolute;
    top: 0;
    right: 0;
    height: 110%;
    background: #E8A20D url('../img/resources/header-v5-bg.png') no-repeat 0 0;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 9999;
    transform: skewX(-45deg);
}
header.construct.header-curvy .mainmenu-container ul {
    transition: all .5s ease !important;
}
header.construct.header-curvy .mainmenu-container > ul {
    font-size: 0;
}
header.construct.header-curvy .mainmenu-container > ul > li > a {
    color: #FFFFFF;
}
header.construct.header-curvy .mainmenu-container ul li {
    line-height: 95px;
}
header.construct.header-curvy .mainmenu-container > ul > li > a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-family: 'Roboto', sans-serif;
    padding: 0 18px;
}
header.construct.header-curvy ul.top-icons-wrap > li > a {
    font-size: 18px;
    padding: 0 5px;
    position: relative;
    z-index: 9;
}
header.construct.header-curvy .mainmenu-container > ul > li.current > a,
header.construct.header-curvy .mainmenu-container ul li a:hover {
    color: #EEA010;
}
header.construct.header-curvy .mainmenu-container ul > li.dropdown:after {
    content: '\f107';
    bottom: auto;
    top: 0;
    line-height: 95px;
    opacity: 1;
    right: 0;
    left: auto;
    text-align: right;
    color: #fff;
    z-index: 2;
    width: auto;
}
header.construct.header-curvy .mainmenu-container ul > li.dropdown:hover:after,
header.construct.header-curvy .mainmenu-container ul > li.current:after {
    color: #E3960A;
}
header.construct.header-curvy .mainmenu-container ul > li > ul {
    top: 100%;
    left: 0;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease ;
}
header.construct.header-curvy .mainmenu-container ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    display: block;
}
header.construct.header-curvy .mainmenu-container ul > li > ul > li.dropdown:after {
    font-family: 'FontAwesome';
    content: '\f105';
    position: absolute;
    right: 7px;
    top: 9px;
    width: 20px;
    height: 20px;
    display: block;
    color: var(--red);
    line-height: 20px;
    font-size: 18px;
    text-align: center;
    z-index: 5;
    cursor: pointer;
}
header.construct.header-curvy .mainmenu-container ul > li > ul > li > ul {
    top: -2px;
    left: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease ;
}


/* header-v5 fixed  styles */

header.construct.header-curvy .logo img {
    transition: all .3s ease;
}
header.construct.header-curvy.header-fixed .logo img {
    width: 80%;
}

header.construct.header-curvy.header-fixed .logo {
    position: relative;
    margin: 0;
    padding: 12px 0;
    height: 100%;
    padding-right: 0;
}
header.construct.header-curvy .logo:before {
    transition: all .3s ease;
}
header.construct.header-curvy.header-fixed .logo:before {
    height: 115%;
}
header.construct.header-curvy.header-fixed .mainmenu-container > ul > li,
header.construct.header-curvy.header-fixed .mainmenu-container > ul > li.dropdown:after {
    line-height: 75px;
}


/* construction banner new styles */

.construct-banner-wrapper .construct-banner-caption h2 {
    color: #fff;
    font-size: 43px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 23px;
}
.construct-banner-wrapper .construct-banner-caption h2 b {
    color: #FF9600;
    font-weight: 800;
    font-size: 50px;
}
.construct-banner-wrapper .construct-banner-caption ul {
    background: rgba(0,0,0,.6);
    display: inline-block;
    padding: 3px 0;
}

.construct-banner-wrapper .construct-banner-caption ul li {
    display: inline;
}
.construct-banner-wrapper .construct-banner-caption ul li span {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .34em;
    padding: 0px 20px;
    border-right: 1px solid #fff;
}
.construct-banner-wrapper .construct-banner-caption ul li:last-child span {
    border: none;
    padding-right: 15px;
}
.construct-banner-wrapper .construct-banner-caption p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .03em;
    color: #fff;
    font-style: italic;
    margin-top: 23px;
    margin-bottom: 13px;
}
.construct-banner-wrapper .construct-banner-caption a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 40px;
    display: inline-block;
    border: 1px solid #fff;
    text-transform: uppercase;
    padding: 0 44px;
}
.construct-banner-wrapper .construct-banner-caption a:before {
    background: var(--red);
}
.construct-banner-wrapper .construct-banner-caption span.border {
    width: 115px;
    height: 2px;
    background: #c0000c;
    display: block;
}

/* service two tab content styles */


.service-two {
    padding-top: 80px;
    padding-bottom: 80px;
}
.service-two-tab-content .img-box {
    margin-bottom: 20px;
    width: 50%;
}
.service-two-tab-content .caption-box {
  width: 50%;
  margin-left: 20px;
  place-content: center;
}
.service-two-tab-content img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

/* .service-two-tab-content .img-box img:last-child {
    margin-left: 25px;
} */
.service-two-tab-content h1,h2,h3,h4,h5{
    color: var(--red);
    font-weight: bold;
    margin: 0;
}
.service-two-tab-content h1{{
    font-size:  3.5rem;
}
.service-two-tab-content h2{
    color: var(--red);
    font-size:  3rem;
}
.service-two-tab-content h3{
    color: var(--red);
    font-size:  2.5rem;
}
.service-two-tab-content h4{
    color: var(--red);
    font-size:  2.2rem;
}
.service-two-tab-content h5{
    color: var(--red);
    font-size:  1.7rem;
}


.service-two-tab-content p {
    font-size: 18px;
    color: #eee;
    line-height: normal;
}
.service-two-tab-content .caption-box {
    margin-top: 75px;
}
.service-two-tab-content .caption-box .text-box,
.service-two-tab-content .caption-box .caption-box-img {
    display: table-cell;
    vertical-align: middle;
}
.service-two-tab-content .caption-box .text-box {
    vertical-align: top;
    padding-right: 49px;
}
.service-two-tab-content .caption-box .caption-box-img {
    width: 251px;
}

.single-sidebar {
    margin-top: 50px;
}
.single-sidebar:first-child {
    margin-top: 0px;
}
.single-sidebar.call-to-action-box .img-box {
    display: inline-block;
    position: relative;
}
.single-sidebar.call-to-action-box .img-box .img-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #c0000c8f;
    padding: 15px 30px 10px;
}
.single-sidebar.call-to-action-box .img-box .img-caption h4 {
    color: #fff;
    text-transform: uppercase;
    
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
}
.single-sidebar.call-to-action-box .img-box .img-caption a {
    color: #fff;
    text-transform: capitalize;
    
    font-size: 18px;
    margin: 0;    
    font-style: italic;
}
.single-sidebar > h4 {
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;
    color: #242424;  
    margin: 0;  
}
.single-sidebar > h4:after {
    content: '';
    background: #12AEF8;
    height: 1px;
    width: 44px;
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
}
.single-sidebar.download-brochure ul li a:hover {
    color: #12AEF8;
} 
.single-sidebar.download-brochure ul li a:hover .fa {
    color: #12AEF8;
} 
.single-sidebar.download-brochure ul li a {
    color: #404040;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid #DEDEDE;
    
    font-weight: 500;
    padding: 25px 0px;
    display: inline-block;
    width: 100%;
    max-width: 320px;
    transition: all .3s ease;
}
.single-sidebar.download-brochure ul li a .fa {
    font-size: 20px;
    color: #A0A0A0;
    margin-right: 10px;
    transition: all .3s ease;
}
.single-sidebar.download-brochure ul li:first-child a {
    padding-top: 0;
}











