/* font */
* {
    font-family: 'Comfortaa', cursive;
    font-size: 16px;
}

:root {
    /* colors */
    --gargoyle-gas-color: #ffe548;
    --dark-imperial-blue-color: #0b4f6c;
    --vivid-cerulean-color: #00a6fb;
    --alabaster-color: #ecebe4;
    --orange-soda-color: #f55d3e;
    --raisin-black-color: #232323;
    --header-footer-text-color: #ecebe4;
    --grey: rgb(169, 169, 169);
}

html {
    scroll-behavior: smooth;
}
/* ################################################################################################ */
/* colors */
.gargoyle-gas-color {
    background-color: var(--gargoyle-gas-color);
}

.dark-imperial-blue-color {
    background-color: var(--dark-imperial-blue-color);
}

.vivid-cerulean-color {
    background-color: var(--vivid-cerulean-color);
}

.alabaster-color {
    background-color: var(--alabaster-color);
}

.orange-soda-color {
    background-color: var(--orange-soda-color);
}

.raisin-black-color {
    background-color: var(--raisin-black-color);
}

.footer-text-color,
.header-text-color,
.footer-text-color a {
    color: var(--header-footer-text-color);
}

.white-font-color {
    color: #ffffff;;
}

/* end - colors */
/* ################################################################################################ */

.inline-list {
    display: inline;
    margin-top: 10px;
}

.gallery-image {
    height: 120px;
    width: 120px;
    margin-top: 5px;
}

.center-align {
    transform: translate(-50%, -30%);
    position: relative;
    top: 30px;
}

.banner-text-container {
    position: relative;
    top: 40%;
    width: 100%;
    font-size: x-large;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.banner-overlay {
    background-color: rgba(169, 169, 169, 0.5);
}

.banner {
    position: absolute;
    overflow: hidden;
}

.three-quarters-height {
    left: 0px;
    top: 0px;
    height: 75%;
    width: 100%;
    /* position: absolute; */
}

.map-height {
    padding: 0px;
    height: 500px;
    width: 100%;
}

.verticle-center {
    margin-top: auto;
    margin-bottom: auto;
}

.company-name {
    margin-left: 20px;
    font-size: 1.5em;
}

.company-cert-heading {
    display: block;
    font-size: 0.6em;
    color: var(--gargoyle-gas-color);
    text-align: right;
}

.company-sub-heading {
    display: block;
    font-size: 0.75em;
}

.logo-max-height-width {
    max-width: 125px;
    max-height: 50px;
}

.centered-heading {
    text-align: center;
    padding: 20px;
}

.div-opacity-with-bg-img {
    opacity: 0.9;
}

.div-opacity-50 {
    opacity: 0.5;
}

.small-font {
    font-size: 14px;
}

.footer-link {
    text-decoration: none;
}

#elformo_honeypot {
    display: none;
}

.card-img-custom {
    height: 225px;
}

.card-custom-md {
    height: 475px;
    margin-top: 10px;
}

.card-custom-lg {
    height: 550px;
    margin-top: 10px;
}

/* paddings - start */
/* ################################################################################################ */
.xl-padding {
    padding-top: 150px;
    padding-bottom: 150px;
}

.lg-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.md-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.sm-padding {
    padding-top: 20px;
    padding-bottom: 20px;
}

.xs-padding {
    padding-top: 10px;
    padding-bottom: 10px;
}

.address-padding {
    padding-left: 100px;
}

.no-padding {
    padding: 0px;
}
/* paddings - end */

/* margins - start */
/* ################################################################################################ */
.xl-margin {
    margin-top: 150px;
    margin-bottom: 150px;
}

.lg-margin {
    margin-top: 100px;
    margin-bottom: 100px;
}

.md-margin {
    margin-top: 50px;
    margin-bottom: 50px;
}

.sm-margin {
    margin-top: 20px;
    margin-bottom: 20px;
}

.xs-margin {
    margin-top: 10px;
    margin-bottom: 10px;
}
/* margins - end */

/* navigation */
/* ################################################################################################ */
.navigation-bar {
    height: 50px;
}

ul.navigation-bar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}

.navigation-bar li {
    float: left;
}

.navigation-bar li a {
    display: block;
    color: var(--header-footer-text-color);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navigation-bar li a:hover {
    text-decoration: none;
    color:  var(--header-footer-text-color);
}

.cert-img {
    max-height: 500px;    /* Limit the maximum height to 500px on desktop */
    height: auto;         /* Let the height adjust automatically based on the image's aspect ratio */
    width: auto;          /* Let the width adjust automatically */
}

/* end navigation */
/* ################################################################################################ */
/* client logo slider - start */
  .slick-slide {
      margin: 0px 20px;
  }
  
  .slick-slide img {
      width: 100%;
  }
  
  .slick-slider
  {
      position: relative;
      display: block;
      box-sizing: border-box;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
              user-select: none;
      -webkit-touch-callout: none;
      -khtml-user-select: none;
      -ms-touch-action: pan-y;
          touch-action: pan-y;
      -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list
  {
      position: relative;
      display: block;
      overflow: hidden;
      margin: 0;
      padding: 0;
  }
  .slick-list:focus
  {
      outline: none;
  }
  .slick-list.dragging
  {
      cursor: pointer;
      cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list
  {
      -webkit-transform: translate3d(0, 0, 0);
         -moz-transform: translate3d(0, 0, 0);
          -ms-transform: translate3d(0, 0, 0);
           -o-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
  }
  
  .slick-track
  {
      position: relative;
      top: 0;
      left: 0;
      display: block;
  }
  .slick-track:before,
  .slick-track:after
  {
      display: table;
      content: '';
  }
  .slick-track:after
  {
      clear: both;
  }
  .slick-loading .slick-track
  {
      visibility: hidden;
  }
  
  .slick-slide
  {
      display: none;
      float: left;
      height: 100%;
      min-height: 1px;
  }
  [dir='rtl'] .slick-slide
  {
      float: right;
  }
  .slick-slide img
  {
      display: block;
  }
  .slick-slide.slick-loading img
  {
      display: none;
  }
  .slick-slide.dragging img
  {
      pointer-events: none;
  }
  .slick-initialized .slick-slide
  {
      display: block;
  }
  .slick-loading .slick-slide
  {
      visibility: hidden;
  }
  .slick-vertical .slick-slide
  {
      display: block;
      height: auto;
      border: 1px solid transparent;
  }
  .slick-arrow.slick-hidden {
      display: none;
  }

/* client logo slider -end */

#rte-nationwide {
    width: 786px;
    height: 400px;
}

.center-this-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
}
/* ################################################################################################ */
/* Media Queries */

@media only screen and (max-width: 1199px) {
    * {
        font-size: 14px;
    }

    h3 {
        font-size: 21px;
    }

    h4 {
       font-size: 18px;
    }

    div.footer-font-size,
    div.footer-font-size > span,
    div.footer-font-size > a {
        font-size: 10px;
    }

    #rte-nationwide {
        width: 786px;
        height: 400px;
    }
}

@media only screen and (max-width: 992px) {
    * {
        font-size: 14px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
       font-size: 18px;
    }

    div.footer-font-size,
    div.footer-font-size > span,
    div.footer-font-size > a {
        font-size: 10px;
    }

    .card-custom-lg {
        height: 475px;
    }

    #rte-nationwide {
        width: 786px;
        height: 500px;
    }

}

@media only screen and (max-width: 768px) {
    * {
        font-size: 11px;
    }

    h2 {
        font-size: 16px;
        font-weight: bold;
    }

    h3 {
        ont-size: 18px;
    }

    h4 {
       font-size: 15px;
    }

    div.footer-font-size,
    div.footer-font-size > span,
    div.footer-font-size > a {
        font-size: 8px;
    }

    .card-title {
        font-weight: bold;
    }

    .card-img-custom {
        height: initial;
    }

    .card-custom-md {
        margin-top: 10px;
    }

    .card-custom-lg {
        margin-top: 10px;
    }

    .banner-text-container {
        top: 5%;
    }

    .company-name {
        margin-left: 20px;
        font-size: 1em;
    }

    .logo-max-height-width {
        max-width: 100px;
        max-height: 40px;
    }

    .address-padding {
        padding-top: 30px;
        padding-left: 0px;
    }

    #rte-nationwide {
        width: 500px;
        height: 275px;
    }
}
