body {
    font-family: var(--font-primary);
    font-size: 1rem;
    text-decoration: none;
    color: var(--slate-800);
}

a {
    color: inherit;
    text-decoration: inherit;
}


.font-secondary {
    font-family: var(--font-secondary);
}

.container-custom {
--bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container-custom {
    max-width: 1140px;
  }
}

/* HEADER */
@media(max-width:767px) {
    .custom-logo {
        width: 100%;
        height: 50px;
    }
}


/* INTRO */

.hero-section {
    height: 685px;
}


.sub-hero-section {
    min-height: 180px;
}

@media(min-width:1200px) {
    .sub-hero-section {
        min-height: 380px;
    }
}

.slider-intro .slick-list,
.slider-intro .slick-list .slick-track,
.slider-intro .slick-list .slick-track .slick-slide,
.slider-intro .slick-list .slick-track .slick-slide > div {
    height: 100%;
}

.slider-intro .slick-arrow {
    z-index: 2;
    width: 50px;
    height: 50px;
}

.slider-intro .slick-prev {
    left: 1rem;
}

.slider-intro .slick-next {
    right: 1rem;
}

.slick-prev:before, .slick-next:before {
    font-family: remixicon !important;
    font-size: 50px;
}

.slider-intro .slick-prev:before {
    content: "\ea64";
}

.slider-intro .slick-next:before {
    content: "\ea6e";
}

@media(min-width:1200px) {
    .hero-section h1 {
        font-size: 3.125rem;
    }
}

.img-white img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(306deg) brightness(103%) contrast(101%);
}

.img-orange img {
    filter: invert(62%) sepia(29%) saturate(5185%) hue-rotate(349deg) brightness(101%) contrast(92%);
}

.title-style-1:before,
.title-style-1:after,
.title-style-2:before,
.title-style-2:after {
    content: "";
    position: absolute;
    background-color: transparent;
}

.title-style-1:before,
.title-style-1:after {
    left: 50%;
    transform: translateX(-50%);
}

.title-style-2:before,
.title-style-2:after {
    left: 0;
    /* transform: translateX(-50%); */
}

.title-style-1:before,
.title-style-2:before {
    width: 50px;
    height: 5px;
    bottom: -2px;
}

.title-style-1:after,
.title-style-2:after {
    width: 200px;
    height: 1px;
    bottom: 0;
}

.title-white-border:before,
.title-white-border:after {
    background-color: #fff;
}

.title-primary-border:before,
.title-primary-border:after {
    background-color: var(--primary-900);
}

.title-style-1 h2,
.title-style-2 h2 {
    font-weight: 700;
}

.service-box:hover {
    color: #fff !important;
    background-color: var(--primary-900) !important;
}

.service-box .service-icon {
    width: 130px;
    height: 130px;
}

.service-box:hover .service-icon {
    background-color: #fff !important;
}

.service-box .service-icon img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.service-box:hover .service-icon img {
    filter: invert(15%) sepia(97%) saturate(2884%) hue-rotate(195deg) brightness(96%) contrast(101%);
}

/* Custom Arrow Styles */
.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.slick-prev::before, .slick-next::before {
    font-size: 24px;
    color: black;
}

.slick-prev {
    left: -60px; /* Adjust position */
}

.slick-next {
    right: -60px; /* Adjust position */
}

/* Custom Arrows */
.custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

.custom-prev {
    left: -50px;
}

.custom-next {
    right: -50px;
}

.request-quote-section {
    background-image: url(../images/pattern-bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.img-primary-900 img {
    filter: invert(15%) sepia(97%) saturate(2884%) hue-rotate(195deg) brightness(96%) contrast(101%);
}

.social-list a:hover {
    background-color: var(--orange-600) !important;
}

.google-map:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background-color: var(--primary-50);
}

.map-container {
    position: relative;
    padding-bottom: 36.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}
  
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* About Page */
.check-list ul {
    display: block;
    margin: 0;
    padding: 0;
}

.check-list li {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li::before {
    content: "";
    content: "\eb7b";
    font-family: remixicon !important;
    font-style: normal;
    font-weight: 800;
    color: var(--green-600);
    position: absolute;
    left: 0;
}