/********** Template CSS **********/
html,
body {
  margin: 0;
  overflow-x: hidden;  /* Prevent horizontal scrolling */
}

:root {
    --primary: var(--bs-primary);
    --secondary: var(--bs-secondary);
    --light: var(--bs-light);
    --dark: var(--bs-dark);
    --highlight:var(--bs-success);
} 

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

section {
    scroll-margin-top: 80px; /* Adjust based on navbar height */
  }

.section-separator-about{
    min-height: 50px;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.no-padding {
    padding: 0px !important;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--bs-dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.text-weight-medium {
    font-weight: 500;
}

.text-opacity {
    opacity: 0.4;
}

.text-big {
    font-size: 10.5rem;
    line-height: 1;
}

.text-semi-big {
    font-size: 6.0rem;
    line-height: 1;
}

.text-quarter-big {
    font-size: 2.5rem;
    line-height: 1;
}

.text-eigth-big {
    font-size: 1.25rem;
    line-height: 1;
}


.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

#navbar-parent {
    top: 0;
    position: fixed;
    z-index: 4;
}

.bg-light-opacity {
    background-color: rgba(0,0,0, 0.4); 
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.border-right {
    border-right: 1px solid;;
}

.border-light {
    border-color: var(--light) !important;
}

.navbar-light .navbar-nav .nav-link {
    opacity: 1;
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
    
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
    
}

.navbar-nav {
  display: flex;
  align-items: center; /* Vertical centering */
  justify-content: center; /* Optional: horizontal centering */

}

.navbar-nav .nav-link {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 120px; /* Adjust as needed */
    text-align: center; /* Optional: to center the text */
}

.navbar .logo {
    background-image: url(/static/img/logo.webp);
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 100px;
    min-height: 100px;
}

.navbar .greensky {
    background-color: white;
    padding: 5px;
}

.fix-top {
    transition: background-color 0.3s ease-in !important;
    background-color: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
}

.whatsapp-contact {
    background-color: #25D366 !important;
    padding-left: 2px;
    padding-top: 16px;
    padding-bottom: 10px;
    padding-right: 15px;
}

.whatsapp-contact .container-fluid,
.whatsapp-contact .container-fluid .row {
    margin:0px;
    padding:0px;
}

.whatsapp-contact .container-fluid .quote-text {
    padding-top: 9px;
}

.whatsapp-contact i {
    margin-top: -10px;
    font-size: 2rem;
}

/* Main container height: 80% desktop, 100% mobile */
.index .landing-video-carousel-parent {
    background-color: black;
    position: relative;
    height: 80vh;
    overflow: hidden;
    padding: 0;
}

@media (max-width: 768px) {
    .index .landing-video-carousel-parent {
        height: 100vh;
    }
}

/* Overlay on top of videos */
.index .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: none; /* hidden until video loads */
}

/* Carousel container */
.index .landing-video-carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

/* Carousel item (each video wrapper) */
.index .landing-video-carousel-item {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.index .landing-video-carousel-item.active {
    opacity: 1;
    z-index: 1;
  }

/* Background video */
.index .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slogan container overlayed above everything */
.index .slogan-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    padding: 1rem;
}

/* Text enhancements */
.index .slogan-text,
.index .read-more {
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}


/*About Section*/
.about .why-choose-us{
    padding-bottom: 0px;
}
.about .why-choose-us .text-big{
    font-weight: 500;
    font-size: 4rem;
}

.desktop-why-choose-us .row-2{
    margin-top: 30px;
}

.desktop-why-choose-us .cards-container {
    max-width: 1500px
}

.carousel-indicators [data-bs-target] {
  background-color: var(--dark);
}


.card {
    display: flex; /* Enable flexbox for the card */
    flex-direction: column; /* Stack card content vertically */
    height: 100%; /* Ensure card takes full height of its container */
    background-color: var(--color--card);
    text-align: left;
    padding: 1rem 4rem 4rem;
    cursor: pointer;
    border: 0; /* Remove default border */
    border-radius: 0.3rem; /* Match rounded-3 */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); /* Match shadow-lg */
}

.card:hover .text-opacity {
    opacity: 1 !important;
}

.card-body.container {
    display: flex; /* Enable flexbox for the card body */
    flex-direction: column; /* Stack text and icon rows */
    height: 100%; /* Ensure card body takes full height of the card */
}

.card .text-row {
    margin-bottom: auto; /* Push the icon row to the bottom */
    /* min-height: 60%; This might need adjustment based on content */
}

.card .text-opacity {
    opacity: 0.8;
}

.card .card-title {
    font-weight: 500;
    font-size: 2rem;
    text-align: center; /* Override container's text-align */
    width: 100%; /* Override container's width */
}

.card .card-description {
    font-size: 1.1rem;
}

.card .text-center { /* Apply text-center to paragraphs */
    text-align: center !important;
}

.card .row { /* Basic row styling - might need adjustments */
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-left: 0px;
}

.card .icon-row { /* Explicit class for the icon's row */
    display: flex;
    justify-content: center; /* Center the icon horizontally */
    align-items: center; /* Center the icon vertically within its row if needed */
}

.card .icon {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 128px;
    height: 128px;
}

.fa.fa-x {
    color: transparent !important;
    -webkit-text-stroke-width: 2px;
}

.fa.custom-fa {
    -webkit-text-stroke-color: var(--dark);
    color: transparent !important;
}

/*End about Section*/



/* Styling for emphasized first two words */
.highlight-word {
    font-size: 1.8rem;
    color: var(--highlight);
    font-weight: bold;
}

/* Images */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 equal columns */
    grid-template-rows: 500px 500px;        /* 2 rows of 500px */
    width: 100vw;
    height: 1000px;
    
    /* border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black; */
  }

  .image-container {
    border: 1px solid var(--primary);
    padding: 1px;
    height: 100%;
    opacity: 0;
    transition: transform 1.5s ease, opacity 0.8s ease;
    
  }

  .top-row {
    border-top: 1px solid transparent;
  }
  
  .bottom-row {
    border-bottom: 1px solid transparent;
  }

  /* Initial transforms */
  .from-left    { transform: translateX(-500px); }
  .from-right   { transform: translateX(500px); }
  .from-top     { transform: translateY(-500px); }
  .from-bottom  { transform: translateY(500px); }

  /* When visible, reset transform */
  .visible {
    transform: translate(0, 0);
    opacity: 1;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    display: block;
    image-rendering: pixelated;
  }


/*Service Items*/
/* --- Services Image Hover CSS --- */

#services {
    max-width: 2000px;
}

.service-item .image-hover-box {
    width: 100%;
    
    min-height: 500px;
    position: relative;
    overflow: hidden;
    
    cursor: pointer;
    margin: 20px;
    border-radius: 10px;
  }
  
  .service-item  .image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
.service-item  .img-front,
  .service-item .img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
  }
  
  .service-item  .img-front {
    z-index: 1;
    opacity: 1;
  }
  
  .service-item  .img-back {
    z-index: 2;
    opacity: 0;
  }
  
  .service-item .image-hover-box:hover .img-back {
    opacity: 1;
  }
  
  .service-item .image-hover-box:hover .img-front {
    opacity: 0;
  }
  
  .service-item .overlay-text {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: background-color 0.4s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center rows */
    
  }
  
  .service-item .image-hover-box:hover .overlay-text {
    background-color: rgba(0, 0, 0, 0);
  }
  
  .service-item .overlay-text h2 {
    top:50%;
    margin: 0;
    font-size: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    z-index: 4;
    position: relative;
  }

  .service-item .overlay-text a {
    top:50%;
    /* margin: 0;
    font-size: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); */
    z-index: 4;
    position: relative;
  }
  
  .service-item .overlay-text a {
    margin-top: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
}

.service-item .overlay-text a:hover {
    cursor: pointer;
    color: var(--dark) !important;
}

/* Slogan */
.slogan-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: var(--light);
}

.slogan-text {
    font-size: clamp(2rem, 5vw, 4rem);
    padding: 20px;
    display: inline-block;
}

.slogan-container .read-more-container {
    padding: 20px;
}

.slogan-container .read-more {
    padding: 25px 40px;
}

.slogan-container .read-more:hover {
    cursor: pointer;
    color: var(--dark) !important;
}


.why-choose-us .arrow{
    width: 150px;
}

.read-more-container .bbb-logo{
    margin-top: 20px;
    max-height: 50px;
}

/* Company Info */
.index .company-info {
    padding-top: 100px;
    padding-bottom: 100px;
}

.index .company-info .container {
    max-width: 1600px;
}

.testimonial {
    position: relative;
}

#testimonialCarousel .carousel-inner {
    min-height: 200px;
  }


/* End company info */

/* Start Project Facts */
.project-facts .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-facts .item .icon {
    width: 128px;
    height: 128px;
    margin-bottom: 10px;
}

.project-facts .item i{
    font-size: 5rem;
}

/* End Project Facts */



/* Media queries */

@media (max-width: 4000px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 35px 15px;
    }
}


@media (max-width: 1250px) {
    
    .text-big {
        font-size: 6.5rem;
        line-height: 1;
    }

    .text-semi-big {
        font-size: 3.0rem;
        line-height: 1;
    }

    .text-quarter-big {
        font-size: 1.75rem;
        line-height: 1;
    }


    #navbar-parent .py-3 {
        padding: 0px !important;
    }

    .navbar .logo {
        min-width: 75px;
        min-height: 75px;
    }

    /* Change the color of the hamburger icon to white */
    .navbar-toggler i {
        color: white;
        font-size: 1.5rem; /* Adjust size if necessary */
    }

    /* Optionally, change the color of the navbar items to match */
    .navbar-light .navbar-nav .nav-link {
        color: white;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary); /* Keep the active state visible */
    }

    .whatsapp-contact{
        background-color: transparent !important;
        font-size: 1rem;
        padding: 2px;
    }

    .whatsapp-contact i{
        font-size: 1.75rem;
        color: #25D366
    }


    .landing-video-carousel {
        height: 100vh;
    }

    .index .header-overlay {
        height: 100vh;
    }

    .service-item .image-hover-box {
        margin: 0px;
        margin-top: 40px;
        min-height: 40vh;
    }

    
}

@media (max-width: 768px) {
    
    .project-facts .border-right {
        border-right: none;

        border-bottom: solid 1px white;
    }


    .section-separator-about{
        min-height: 10px;
    }
    
    .image-grid {
        display: block; /* Switch from flex to block to allow full width */
      }
    
      .image-grid .image-container {
        display: none;
      }
    
      .image-grid .image-container:nth-child(2) {
        display: block;
        width: 100%;
      }
    
      .image-grid .image-container img {
        width: 100%;
        height: auto;
        display: block;
      }

     .card {
        padding: 1rem 1rem 1rem;
    }

    .card .card-title {
        font-size: 1.5rem;
    }

    .card .icon {
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 96px;
        height: 96px;
    }
}

/* Testimonials */

.faqs-testimonials {
    min-width: 1400px;
}

.faqs-testimonials {
    margin-top: 150px;
    margin-bottom: 150px;
}

.faqs-testimonials .testimonial-image {
    background-image: url(/static/img/testimonial.jpg);
    background-size: cover;
    min-height: 100%;
    
}

.faqs-testimonials .carousel-overlap {
    margin-left: -200px;
    z-index: 2;
}

@media (max-width: 768px) {
    .faqs-testimonials {
        margin-top: 10px;
        margin-bottom: 10px;
        min-width: 100% !important;
    }

    .faqs-testimonials .testimonial-image {
        margin-top: 50px;
        min-width: 100%;
        min-height: 300px;
        
    }

    .faqs-testimonials .carousel-overlap {
        margin-left: 0px;
        margin-top: -50px;
    }
  }


.faqs-testimonials {
    min-width: 1400px;
}

.faqs-testimonials {
    margin-top: 150px;
    margin-bottom: 150px;
}

.faqs-testimonials .testimonial-image {
    background-image: url(/static/img/testimonial.jpg);
    background-size: cover;
    min-height: 100%;
    
}

.faqs-testimonials .carousel-overlap {
    margin-left: -200px;
    z-index: 2;
}

@media (max-width: 768px) {
    .faqs-testimonials {
        margin-top: 10px;
        margin-bottom: 10px;
        min-width: 100% !important;
    }

    .faqs-testimonials .testimonial-image {
        margin-top: 50px;
        min-width: 100%;
        min-height: 300px;
        
    }

    .faqs-testimonials .carousel-overlap {
        margin-left: 0px;
        margin-top: -50px;
    }
  }


.faqs-testimonials .custom-accordion .accordion-button {
  font-weight: 400; /* Normal weight */
}

.faqs-testimonials .custom-accordion .accordion-item {
  border: none;
}

.faqs-testimonials .custom-accordion .accordion-button {
  border: none;
  box-shadow: none;
  position: relative;
  padding-right: 2.5rem;
}

.faqs-testimonials .custom-accordion .accordion-button::after {
  display: none !important; /* Remove default Bootstrap arrow */
}

.faqs-testimonials .custom-accordion .accordion-button h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
}

.faqs-testimonials .custom-accordion .accordion-button span {
    color: var(--dark)
}

.faqs-testimonials .custom-accordion .accordion-body {
  padding: 1rem;
  background-color: var(--dark);
  color: var(--light);
  border: solid 1px var(--dark);
}

.faqs-testimonials .custom-accordion .custom-icon {
  font-weight: bold;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

/* End Testimonials */

  @supports (-webkit-touch-callout: none) {
    
    .slogan-overlay {
      height: 100dvh; /* Fix for iOS Safari */
    }
  }

  @media (min-width: 1920px) {
    .roof {
      min-width: 60%;
    }
  }


  .logo-section {
    position: relative;
    width: 100%;
    min-height: 1300px;
    overflow: hidden;
  }

  .logo-section .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/img/red-roof2.jpg'); /* Replace this */
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .logo-section .overlay {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding-left: 3vw;
  }

  .logo-grid {
    margin-top: 50px;
  }


  .logo-section .frosted-bootstrap {
    background: rgba(255, 255, 255, 0.15); /* translucent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

  .logo-section .logo-grid img {
    width: 100%;
    margin: 10px;
    
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
  }

  @media (max-width: 2300px) { 
    .logo-section .logo-grid img {
        
        
    }
  }

  @media (max-width: 768px) {
    .logo-section{
        min-height: 900px; /* Adjust height for smaller screens */
    }
    
    .logo-section .container,
    .logo-section .container-fluid,
    .logo-section .row,
    .logo-section .col {
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 0px;
        margin-left:  0px;
    }

    .logo-section .logo-grid img {
        margin: 5px;
        max-height: 50px;
    }
  }

.map-row {
    margin-top: 200px;
}

.map-row .map {
    text-align: right;
    padding-right: 150px;
    margin-bottom: 100px;
    border-right: solid 1px var(--dark);
}

.map-row .map img {
    max-height: 1000px;
}


.map-row ul .list-group-item {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 10px;
    border: 0px;
}

.map-row ul .list-group-item span{
    margin: 20px;
}

@media (max-width: 768px) {
    .map-row {
        margin-top: 50px;
    }

    .map-row .map {
        text-align: center;
        padding-right: 15px;
        margin-bottom: 10px;
        border-right: solid 1px var(--dark);
    }

    .map-row .text-quarter-big {
        font-size: 1.4rem;
    }

    .map-row ul .list-group-item {
        margin: 2px;
        padding-left: 0px;
        padding-right: 0px;
        font-size: 1.0rem;
    }

    .map-row ul .list-group-item span{
        margin: 0px;
    }

    .map-row .service-area {
        margin-top: 40px;
    }
}


.footer {
    margin: 0px 0px;
}  

.footer .logo {
    background-image: url(/static/img/logo.webp);
    background-repeat: no-repeat;
    background-size: contain;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--primary);
    transform: skew(40deg);
}


.footer .bbb-logo-container{
    
}

.footer .license{
    font-weight: 500;
    font-size: 1.75rem;
}

.footer .bbb-logo{
    max-height: 100px;
    max-width: 200px;
}

@media (min-width: 992px) {

    .footer .license{
        font-weight: 500;
        font-size: 1.5rem;
    }

    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}

.contact-us-header {
    position: relative; /* Needed for z-index layering */
    margin-top: 80px;
    height: 80vh;
    background-image: url(/static/img/contact-us-2.jpg);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;

    justify-content: center;  /* center horizontally */
    align-items: center;   

    padding-left: 0px;
    padding-right: 0px;
}

.contact-us-header .overlay { 
    position: absolute;
    height: 100%;
    width: 100%;    
    
}

.contact-us-header .form { 
    margin-right: 100px;
    padding: 50px 50px;
}

.contact-us-header .form .btn{ 
    display: block;
}


.contact-us-info { 
    padding: 100px;  
    margin-bottom: 20px;
}

.contact-us-info .text-quarter-big { 
    font-size: 1.7rem;
}

.contact-us-info .icon {
    margin-bottom: 40px;
}

.contact-us-info .info-set-border {
    border-right: solid 1px white;
}

.contact-us-info .left-info-set { 
    border-right: 1px solid white;
}

.contact-us-info .top-info-set { 
    border-bottom: 1px solid white;
}

@media (max-width: 1248px) {
    .contact-us-header .form{
        position: relative;
        margin-right: 0px;
    }
}

@media (max-width: 1024px) { 
    .contact-us-header {
        background-size: cover;
    }

    .contact-us-header .overlay  {
        opacity: 0.8;
        background-color: rgba(0,0,0);
    }

    .contact-us-header .form-title {
        color: white !important;
    }
}


@media (max-width: 768px) {
    
    .contact-form{
        margin-top: 20px;
    }

    .contact-form .form{
        padding-top: 10px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;

    }

     .contact-us-info {
        height: auto;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .contact-us-info .container-fluid {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    .contact-us-info .info-set{
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contact-us-info .icon {
        text-align: right;
    }

    .contact-us-info .info-text {
        text-align: left;
    }

    .contact-us-info .info-set .text-quarter-big {
        font-size: 1.5rem;
    }

    .contact-us-info .info-set i {
        
    }

    .contact-us-info .icon {
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 2px;
    }

    

    .contact-us-info .info-set-border {
        border-right: none;
    }

    .contact-us-info .whatsapp .fa-phone-alt{
        display: none;
    }
}