@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  block-size: auto; /* Ensures aspect ratio is maintained (equivalent to height: auto) */
}
.container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
}
.container nav a {
    text-decoration: none;
}
.container nav a:visited {
    text-decoration: none;
    color: #fff;
}
nav h2 {
    font-size: 32px;
    color: #cc003d;
    z-index: 2;
}
nav p {
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
}
header{
    padding-top: 20px;
    padding-bottom: 20px;
}
body {
    background-image: url(../images/hero-image-19.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.container.homePage {
  height: 100vh;
}
.main {
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.text_area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 80vh;
}
.text_area .title {
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
}
.text_area .title h1 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.text_area .title p {
    margin: 24px 0;
    font-size: 26px;
    font-weight: 600;
}
.slider-width {
    padding: 0 10%;
    /*margin-top: 100px;*/
}
.bx-wrapper {
    margin-bottom: 25px !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #fff !important;
}
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #000 !important;
}
#slider-loader {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* hide slider until ready */
.slider {
    visibility: hidden;
}

blockquote{
    font-size: 1.4em;
    font-style:italic;
    color: #555555;
    width: 60%;
    margin: 0 auto;
    padding:1.2em 30px 1.2em 75px;
    border-left:8px solid #136cb9;
    line-height:1.6;
    position: relative;
    background:#EDEDED;
}

blockquote::before{
    font-family:Arial;
    content: "\201C";
    color:#136cb9;
    font-size:4em;
    position: absolute;
    left: 10px;
    top:-10px;
}

blockquote::after{
    content: '';
}

blockquote span{
    display:block;
    color:#333333;
    font-style: normal;
    font-weight: bold;
    margin-top:1em;
}


@media screen and (max-width: 964px) {
    .container {
        padding: 0;
    }
}

@media screen and (max-width: 672px) {
  .bx-pager {
    display: none;
  }
  nav h2 {
    font-size: 22px;
  }
  nav p {
        font-size: 16px;
  }
  .slider-width {
        padding: 0;
  }
  blockquote {
    width: 100%;
  }
} 
