.border-btn {
    border-radius: 0;
}
#map {
    height: 550px;
    width: 100%;
    margin-top: 50px;
    /* Adds space above the map */
}

@media (max-width: 767px) {
    #map {
    height: 400px;
    }
}

.marker {
    background-size: cover;
    width: 100px;
    height: auto;
}

.header-text-3 {
    font-size: 16px;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .mobile-font-size {
    font-size: 22px;
    }
}

@media (max-width: 768px) {
    .button-font-size {
    font-size: 15px !important;
    }
}

.custom-flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.custom-flex-row div.col-md-3 {
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}

.custom-flex-row div.col-md-3 p {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}
.bg-alt, .section-light-border {background:#F3F3F3;border-top:1px solid #ccc; border-bottom:1px solid #ccc;}


@media only screen and (max-width: 768px) {
    .pt-sm-30 {
        padding-top: 30px;
    }
    .pb-sm-30 {
        padding-bottom: 30px;
    }
}
.about-heading-title {
    padding-top: 44px;
}
@media only screen and (min-width: 768px) {
    .about-heading-title {
        padding-top: 0;
    }
}
/* Added this Css for the testimonial images to shown image height 100% */
.absolute-testimonial-image {
    display: none;
}
@media only screen and (min-width: 1200px) {
    .absolute-testimonial-image {
        position: absolute;
        height: 100%;
        width: 50%;
        top: 0;
        left: 0;
        z-index: 2;
        display: block;
    }

    .absolute-testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 768px) {
    .testimonial-section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .mb-width {
        width: 100%;
    }

    .mb-width .lp-inline {
        flex-direction: column;
        justify-content: center;
    }

    .mb-width .lp-inline .lp-icon-container {
        margin-bottom: 10px;
    }

    .mb-10 {
        margin-bottom: 10px;
    }

}

@media only screen and (max-width: 576px) {
    .faq-accordian .custom-flex-row div.col-md-3 {
        flex-direction: row;
        margin-bottom: 12px;
    }
    .faq-accordian .custom-flex-row div.col-md-3.no-margin-mobile {
        margin-top: 0;
    }
    

}

.round-img {
    border-radius: 0;
}

/* Make wells stretch full width in values section on smaller screens */
@media (max-width: 991px) {
    .values-section .row.d-flex .col-md-4 {
        width: 100%;
    }
    .values-section .row.d-flex .col-md-4 .well {
        width: 100% !important;
    }
}

/* CORE VALUE START */
.cv-row{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  justify-content:center;
  margin-left:-5px;
  margin-right:-5px;
}

.core-value-item{
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-top:5px;
  padding-left:5px;
  padding-right:5px;
  margin-bottom:5px;
  display:flex;
  box-sizing: border-box;
}

@media (max-width: 991px){
  .core-value-item{ flex: 0 0 50%; max-width: 50%; }
}

@media (max-width: 575px){
  .core-value-item{ flex: 0 0 100%; max-width: 100%; }
}

/* Default WELL box */
.cv-box{
  flex:1;
  background:#333;
  padding:40px 25px;
  text-align:center;
  transition: all .25s ease;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

/* Text default + hover color */
.cv-text{
  color:#fff;
  transition:color .25s ease;
}

.core-value-item:hover .cv-text{
  color:#fff;
}

/* Hover lift effect */
.core-value-item:hover .cv-box{
  transform: translate(-2px, -2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* LOGO ITEM */
.cv-logo-box{
  flex:1;
  background:#f3f3f3;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:220px;
  transition: all .25s ease;
}

.octogon-bg {
        position: relative;
    }

.octogon-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/images/bg-octagon.png");
    background-repeat: repeat;
    opacity: 0.1;
    pointer-events: none;

    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 32%,
            rgba(0, 0, 0, 0.5) 42%,
            transparent 52%);

    mask-image: linear-gradient(to bottom,
            black 0%,
            black 32%,
            rgba(0, 0, 0, 0.5) 42%,
            transparent 52%);
}

.octogon-bg > * {
    position: relative;
    z-index: 1;
}
 /* CORE VALUE END */



/* Flex alignment utilities */
.align-self-start {
  align-self: flex-start;
}
.align-self-end {
  align-self: flex-end;
}

h3.cv-text {
    font-size: 30px;
}

@media (min-width: 993px) and (max-width: 1200px) {
    h3.cv-text {
        font-size: 25px;
    }
}