/* styles go here */


@font-face {
  font-family: 'Fssiena Bold';
  src: url('../fonts/FSSienaWeb-Bold.eot');
  src: url('../fonts/FSSienaWeb-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/FSSienaWeb-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Fssiena Medium';
  src: url('../fonts/FSSienaWeb-Medium.eot');
  src: url('../fonts/FSSienaWeb-Medium.eot#iefix') format('embedded-opentype'),
  url('../fonts/FSSienaWeb-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Fssiena';
  src: url('../fonts/FSSienaWeb-Regular.eot');
  src: url('../fonts/FSSienaWeb-Regular.eot#iefix') format('embedded-opentype'),
  url('../fonts/FSSienaWeb-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Butler Bold';
    src: url('../fonts/butler_bold-webfont.woff2') format('woff2'),
         url('../fonts/butler_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Butler Medium';
    src: url('../fonts/butler_medium-webfont.woff2') format('woff2'),
         url('../fonts/butler_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Butler';
    src: url('../fonts/butler_regular-webfont.woff2') format('woff2'),
         url('../fonts/butler_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    margin:0;
    padding: 0;
}
.site-main {
    background-image: url(../images/va-watermark.png);
    background-repeat: no-repeat;
}
.heading {
    text-align: left !important;
    padding: 50px 0;
}
h1 {
    margin:0;
    font-family: "Butler Bold";
    text-transform: uppercase;
    position: relative;
    border-bottom: 1px solid;
    padding-bottom: 10px !important;
    padding-left: 55px;
    text-align: left !important;
    position: relative;
    border-bottom: 1px solid;
    font-size: 20px
}

@media screen and (min-width: 768px) {
  h1 {
        padding-left:95px !important;
        font-size: 34px
    }
}

h1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 24px;
    background-image: url("../images/heading-icon.jpg");
    background-repeat: no-repeat;
    background-size: contain
}

@media screen and (min-width: 768px) {
h1:before {
        width:83px;
        height: 42px
    }
}
p {
        font-size: 1.2rem;
    font-family: "Fssiena";
    font-weight: 400;
    line-height: 1.3;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
}

.info-box {
        font-family: "Butler Bold";

    position: relative;
    transition: 0.4s;
    overflow: hidden;
    margin-bottom:30px;
}

.info-box h2 {
    position: absolute;
    bottom: 0px;
    left: 10px;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px;
    background-color: #0c2340;
    z-index: 100
}

.info-box a:link img {
    transition: 0.3s;
    z-index: 88
}

.info-box a:link:hover img{
    transform: scale(1.1)
}

.info-box img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

.wpb_single_image .vc_single_image-wrapper {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
}

  .hero {
      position: relative;
      width: 100%;
      height: 70vh;
      min-height: 400px;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

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

    /* Optional dark overlay */
    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
    }

    /* Navigation dots */
    .dots {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .dot {
      width: 10px;
      height: 10px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .dot.active {
      background: #fff;
      transform: scale(1.2);
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hero {
        height: 60vh;
        min-height: 300px;
      }
    }