/* * {
  margin: 0%;
  padding: 0%;
  color: #313e41;
  line-height: 1.5;
} */

/* * { border: 1px solid red !important; } */


.above-fold {
  display: block;
  background-image: url(./assets/header-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: clamp(60vw, 60vw, 100vh);
  background-position: bottom;
  overflow: hidden;
}

.slider {
  position: absolute;
  padding: 30px 70px 10px 70px;
  background-color: #0084cf;
  width: 75%;
  box-sizing: border-box;
  left: 50%;
  transform: translateX(-50%);
  top: clamp(calc(60vw - 150px), calc(60vw - 150px), calc(100vh - 70px));
}

.above-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  max-width: 1500px;
  margin: auto;
  padding: 0 10vw;
}

.above-fold h3 {
  margin-left: -30px;
  color: #ffffff;
  letter-spacing: 3px;
}

#top-p {
  margin-top: -20px;
}

.above-grid p {
  margin-top: 0px;
  margin-left: -30px;
  max-width: 27.5em;
}

.above-fold .buttons {
  margin-top: 3000px;
  margin-left: -30px;
}
.col-2,
.col-1 {
  margin-top: 70px;
}
.below-fold {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 0 10vw;
}

.blue-text {
  color: #0084cf;
}

h3.blue-text {
  letter-spacing: 3px;
}
.logo {
  padding-top: 25px;
  padding-left: 35px;
  width: 300px;
}

/* CARD FLIP */
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 100%;

  perspective: 1000px;
  height: auto;
  min-height: 230px;
  /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card-front h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 229px;
  color: #0084cf;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #fff;
  color: #0084cf;
  box-sizing: border-box;
}

/* Style the back side */
.flip-card-back {
  background-color: #fff;
  color: rgba(49, 62, 65, 0.75);
  font-size: 19px;
  transform: rotateY(180deg);
  padding: 20px;
  box-sizing: border-box;
}

.flip-card-back p.cartite {
  padding: 0;
  margin: 0;
  text-align: left;
  font-weight: 700;
  color: #0084cf;
  margin-bottom: 15px;
}

.flip-card-back p {
  text-align: left;
  margin: 0;
}

.btn {
  background-color: #e9ae22;
  padding: 20px 25px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: block;
  width: 350px;
  margin-top: 150px;
  letter-spacing: 2px;
}

.btn::after {
  content: url(/assets/darkdown.svg);
  display: block;
  position: absolute;
  left: 100%;
  top: -0.5px;
  z-index: -1;
  width: 69px;
}

.btn img {
  position: absolute;
  top: 50%;
  left: calc(100% - 80px);
  transform: translate(-50%, -50%);
  transition: top 0.5s;
  height: auto;
}

.btn:hover img.bro {
  top: calc(50% - 15px);
}

section.whitcont {
  width: 100%;
  max-width: 1320px;
  margin: auto;
}

section.c2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sec-right {
  grid-column: 2;
}

a .btn.sec-right {
  width: 350px;
}

#card-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #0084cf;
  width: 100vw;
  justify-self: center;
}

.anihead {
  font-size: 29px;
  font-weight: bold;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 85px;
  text-transform: uppercase;
  letter-spacing: 0.3ex;
  white-space: nowrap;
}

.anihead > div {
  color: inherit;
}

.anihead > div.vp {
  margin-left: -1.4ex;
}

.aniwrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100%;
}

#card-sec svg {
  width: 1200px;
  position: absolute;
  right: 0;

  aspect-ratio: 1024/930;
}

#all-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  max-width: 750px;
  margin: 60px 0;
}

@media (max-width: 1800px) {
  .above-fold {
    height: clamp(70vw, 70vw, 100vh);
  }
  .slider {
    top: clamp(calc(70vw - 150px), calc(70vw - 150px), 100%);
  }
}

@media (max-width: 1500px) {
  .above-fold {
    height: clamp(80vw, 80vw, 100vh);
  }
  .slider {
    top: clamp(calc(70vw - 50px), calc(70vw - 50px), 100%);
  }
}

@media (max-width: 1200px) {
  .above-fold {
    height: clamp(85vw, 85vw, 200vh);
  }

  .slider {
    top: clamp(calc(85vw - 170px), calc(85vw - 170px), calc(100vh - 70px));
  }

  #card-sec {
    grid-template-columns: 1fr;
    padding-bottom: 10px;
  }

  #all-cards {
    width: 100%;
    justify-self: center;
  }

  .anihead {
    position: static;
    transform: none;
    text-align: center;
    padding: 30px 0;
  }
  .aniwrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
    position: static;
    aspect-ratio: unset;
  }
  #card-sec svg {
    width: 100%;
    position: static;
    left: 0;
    aspect-ratio: unset;
  }
}

@media (max-width: 1100px) {
  .btn {
    width: 300px;
  }
}

@media (max-width: 742px) {
  #all-cards {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
  }
}

.form {
  background-color: orange;
}

.big-margin {
}

.hands {
  position: relative;
  top: -1em;
  width: calc(100% - 30px);
  display: block;
}

#alltopslides .slick-track {
}

#alltopslides .slick-slide > div > div {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#alltopslides p {
  text-align: center;
  color: #fff;
}

.slick-slide p {
  padding-bottom: 0;
  margin-bottom: 0;
}

#alltopslides .slick-slide {
  padding: 15px;
}
#alltopslides .slick-slide.slick-active + .slick-active::before {
  content: "";
  position: absolute;
  border-left: 2px solid #fff;
  height: calc(100% - 10px);
  display: block;
  left: 0px;
}

#alltopslides .slick-slide:first-child {
  border-left: 1px solid transparent;
}
#alltopslides {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

.slick-next:before {
  content: url(/assets/right.svg);
}

.slick-prev:before {
  content: url(/assets/left.svg);
}

/* cw styles start here */
:root {
  --vscGreen: #f3776e;
  --vscLightBlue: #3aa7a7;
  --vscPurple: #2f7d32;
  --vscCoral: #c24b8f;

  --vscBlue: #124d70;
}

.cat {
  background-color: #a0a6aa;
}

#green.cat.active,
#green_accordian {
  background-color: var(--vscGreen);
  color: white;
}

#lightBlue.cat.active,
#lightblue_accordian {
  background-color: var(--vscLightBlue);
  color: white;
}

#purple.cat.active,
#purple_accordian {
  background-color: var(--vscPurple);
  color: white;
}

#coral.cat.active,
#coral_accordian {
  background-color: var(--vscCoral);
  color: white;
}

#blue.cat.active,
#blue_accordian {
  background-color: var(--vscBlue);
  color: white;
}

/* ////////////// */
#green:hover {
  background-color: var(--vscGreen);
}

#lightBlue:hover {
  background-color: var(--vscLightBlue);
}

#purple:hover {
  background-color: var(--vscPurple);
}

#coral:hover {
  background-color: var(--vscCoral);
}

#blue:hover {
  background-color: var(--vscBlue);
}

/* ////////////////////////// */

.green_text {
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vscGreen);
}

.lightBlue_text {
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--vscLightBlue);
}

.purple_text {
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vscPurple);
}

.coral_text {
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vscCoral);
}

.blue_text {
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vscBlue);
}

.main-slide h3 {
  font-size: 20px;
}

.buttons {
  background-color: #e9ae22;
  border: none;
  padding: 20px 25px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 2px;
}

@media (max-width: 970px) {
}

@media screen and (max-width: 970px) {
  .buttons {
    width: 100%;
  }
}

.buttons:hover {
  background-color: #d9a019;
  color: white;
}

h2 {
  font-size: 42px;
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 3px;
  color: #313e41;
}

p {
  font-size: 19px;
  font-family: "PT Sans", sans-serif;
  margin: 2rem auto;
  line-height: 1.75;
}

.info-sec {
  max-width: 1500px;
  padding: 0 10vw;
  margin: 6rem auto 0 auto;
}

@media screen and (max-width: 970px) {
  .info-sec {
    padding: 0 2rem;
  }
}

.flex {
  display: flex;
  max-height: 700px;
}

.cats {
  min-width: 435px;
}

div#accordian-container {
  display: none;
}

@media screen and (max-width: 1200px) {
  /* accordian */
  div#accordian-container {
    display: block;
  }

  .ul-accordian li {
    padding: 20px;
    list-style-type: none;
  }

  .ul-accordian h3 {
    font-size: 20px;
  }

  .ul-accordian li.q {
    font-weight: bold;
    cursor: pointer;
    margin: 8px auto;
  }

  .ul-accordian li.a {
    display: none;
  }

  /* end accordian  */
  .flex {
    display: none;
  }

  .cats {
    display: none;
  }
}

.main {
  width: 60%;
  padding-left: 9px;
}

@media screen and (max-width: 970px) {
  .main {
    width: 100%;
    padding-left: 0;
  }
}

.cats .slick-slide img {
  display: inline;
  position: relative;
  object-fit: contain;
  z-index: 900;
  vertical-align: middle;
  padding: 20px 30px 20px 5px;
  width:60px;
}

.cats-slick .slick-list {
  margin-top: -5px;
  margin-bottom: -5px;
}

.cats-slick .slick-slide {
  margin: 8px 0;
}

.cat {
  list-style: none;
  padding: 10px;
  position: relative;
  letter-spacing: 1px;
  padding: 5px 10px;
}

.cat a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  letter-spacing: 2px;
}

.main-slide {
  width: 100%;
}

.main-slide span {
  display: block;
  width: 100%;
  position: relative;
}

.copy_section {
  padding: 15px 0;
  margin-left: 15px;
}

.copy_section p {
  line-height: 1.2;
  margin: 10px auto;
}

.copy_section.b_b {
  border-bottom: 1px solid #a0a6aa;
}

.slick-disabled {
  opacity: 0.2;
}

#_form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1500px;
  padding: 0 10vw 2rem 10vw;
  margin: 1rem auto 0 auto;
  overflow: hidden;
  max-height: 900px;
  grid-column-gap: 50px;
}
.form_copy h2 {
  letter-spacing: 3px;
}

form#inline_form {
  min-width: 606px;
}

@media screen and (max-width: 970px) {
  form#inline_form {
    min-width: unset;
  }
}

@media screen and (max-width: 1200px) {
  #_form {
    grid-template-columns: 1fr;
    max-height: unset;
  }
}
@media screen and (max-width: 970px) {
  #_form {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 2rem;
    max-height: unset;
  }
}

img#globe {
  width: 100%;
  position: relative;
  bottom: 0;
  max-width: 900px;
  padding-top: 70px;
  left: 0;
}

footer {
  position: relative;
  z-index: 999;
}

.blue-foot {
  background-color: var(--vscBlue);
  padding: 50px 0;
}

.container_footer_blue {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1500px;
  padding: 0 10vw;
  align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 970px) {
  .container_footer_blue {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 2rem;
    text-align: center;
  }

  .container_footer_blue .buttons {
    width: 100%;
    margin: 12px auto;
    max-width: 445px;
  }
}

.container_footer_blue h2 {
  color: white;
  letter-spacing: 3px;
}

.container_footer_blue p {
  color: white;
  margin: 10px auto;
}

div#wsd-root-footer dl {
  display: inline-block;
  padding: 0;
  margin: 0;
  width: calc(100% - 145px);
  padding: 0;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  color: #fff;
}
div#wsd-root-footer dd {
  padding: 0;
  margin: 0;
  width: 100% !important;
  margin-inline-start: 0;
}
div#wsd-root-footer div.wsd_remember_me {
  display: none;
}
div#wsd-root-footer div {
  display: inline-block;
  margin: 10px;
}

input#wsd_home_email {
  padding: 20px;
  max-height: 60px;
  width: 100% !important;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
}
input#submit_0 {
  background-color: #e9ae22;
  border: none;
  padding: 20px 20px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0;
  letter-spacing: 2px;
}

.wsd_remember_me {
  display: none;
}

#wsd_widgets_action dt {
  display: none;
}
.white-foot {
  background-color: #efefef;
  padding: 70px 0 100px 0;
}

.container_footer_white {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1500px;
  padding: 0 10vw;
  align-items: center;
  margin: 0 auto;
}

.small_holder {
  margin: 100px auto 0 auto;
}

@media screen and (max-width: 970px) {
  .small_holder {
    margin: 20px auto 0 auto;
  }
}

.small_holder small {
  color: #313e41;
}

@media screen and (max-width: 970px) {
  .container_footer_white {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }

  .container_footer_white .vsc_logo {
    margin: 0 auto;
    text-align: center;
  }
}

.container_footer_white p {
  font-size: 15px;
  color: var(--vscBlue);
}

@media screen and (max-width: 970px) {
  .container_footer_white p {
    text-align: center;
  }
}

.socials {
  padding-left: 120px;
  margin: 0 auto;
}

@media screen and (max-width: 970px) {
  .socials {
    padding-left: 0;
    text-align: center;
    margin: 20px auto;
  }
}

.socials a {
  margin-left: 20px;
}

.globe_holder {
  position: relative;
  max-height: 500px;
  overflow: hidden;
}

footer {
  /* width: 100vw; */
  bottom: 0;
}

#b-text {
  grid-column: 1/-1;
  margin-top: clamp(260px, 25vh, 370px);
}

.below-fold {
  width: calc(100% - 20vw);
  max-width: 1500px;
  margin: auto;
  margin-bottom: 130px;
}

.bimg {
  margin: auto;
  padding-top: 5em;
  display: block;
  max-width: 100%;
}

@media (min-width: 2500px) {
  .above-fold {
    height: clamp(40vw, 40vw, 100vh);
  }
  .slider {
    top: clamp(calc(40vw - 70px), calc(40vw - 70px), 100%);
  }
}

#mobhead {
  display: none;
}
@media (max-width: 1000px) {
  #mobhead {
    display: block;
  }

  h1 .title-1 {
    margin-left: 5vw;
  }
  h1 .title-2 {
    margin-left: calc(5vw + 35px);
  }
  h1 .title-3 {
    margin-left: calc(5vw + 70px);
  }
  #card-sec {
    padding-bottom: 40px;
  }
  .col-2 h1 {
    display: none;
  }

  .below-fold {
    width: 80vw;
  }
  #b-text {
    margin-top: 0;
  }
  .above-fold {
    height: auto;
    background-image: none;
    background: #fff;
  }
  .above-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .slider {
    position: relative;
    top: 40px;
    width: 100%;
  }

  .wrapper {
    height: auto;
    background-image: url(./assets/header-background.png);
    background-size: cover;
  }

  .col-1 {
    height: 120vw;
    width: 100%;
    overflow: hidden;
  }

  .above-fold h3 {
    margin-left: 0;
  }
  .hands {
    position: relative;
    top: -1em;
    width: calc(60% - 30px);
    display: block;
    margin: auto;
  }
  .col-2 {
    padding: 0 10vw;
  }
  .col-2 h1 {
  }
  .col-2 h1 .title-1,
  .col-2 h1 .title-2,
  .col-2 h1 .title-3 {
    color: #0084cf;
    margin: 0;
  }

  .above-fold h3 {
    color: #0084cf;
  }

  .above-grid p {
    margin: 0;
    max-width: 100%;
    margin-bottom: 2em;
  }

  .above-fold .buttons {
    margin: 0;
  }

  #alltopslides .slick-slide {
    border-left: none;
  }
  .below-fold {
    grid-template-columns: 1fr;
  }

  .big-margin {
    margin: 2vh 0;
  }
}
@media (max-width: 620px) {
  .col-1 {
    /* height: 150vw; */
    width: 100%;
    overflow: hidden;
  }
  .below-fold {
    /* padding-left: 0; */
    float: left;
  }
  .btn {
    width: 250px;
    max-width: 100%;
    letter-spacing: 3px;
    font-size: 16px;
    min-height: 29px;
    margin-left: -20px;
    margin-top: 40px;
  }
  .bro {
    display: none;
  }
  h2 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
    font-weight: bold;
  }
}

#alltopslides .slick-track {
  display: flex !important;
}

#alltopslides .slick-slide {
  height: inherit !important;
}
/* cw style end here */

.end {
  justify-self: end;
}

@media screen and (max-width: 970px) {
  .end {
    justify-self: unset;
  }
}

.sub-slick,
.sub-slick_1,.sub-slick_2,.sub-slick_3 {
  position: relative;
}

button.next-arrow.slick-arrow {
  right: 0;
  position: absolute;
  border: none;
  cursor: pointer;
  top: calc(100% - 50px);
  background: none;
}

button.prev-arrow.slick-arrow {
  position: absolute;
  border: none;
  cursor: pointer;
  right: 80px;
  top: calc(100% - 50px);
  background: none;
}

button.next.slick-arrow,button.next2.slick-arrow,button.next3.slick-arrow {
  position: absolute;
  border: none;
  cursor: pointer;
  right: 0;
  top: calc(100% - 50px);
  background: none;
}

button.prev.slick-arrow,button.prev2.slick-arrow,button.prev3.slick-arrow {
  position: absolute;
  border: none;
  cursor: pointer;
  right: 80px;
  top: calc(100% - 50px);
  background: none;
}

button.next-arrow.slick-arrow:hover {
  opacity: 0.8;
  right: 0;
  position: absolute;
  border: none;
  cursor: pointer;
}

button.prev-arrow.slick-arrow:hover {
  opacity: 0.8;
  position: absolute;
  border: none;
  cursor: pointer;
  right: 80px;
}

button.next.slick-arrow:hover, button.next2.slick-arrow:hover,button.next3.slick-arrow:hover  {
  opacity: 0.8;
  position: absolute;
  border: none;
  cursor: pointer;
  right: 0;
}

button.prev.slick-arrow:hover,button.prev2.slick-arrow:hover,button.prev3.slick-arrow:hover {
  opacity: 0.8;
  position: absolute;
  border: none;
  cursor: pointer;
  right: 80px;
}

.cat_overlay {
  height: 100%;
  width: 100%;
  max-width: 90px;
  position: absolute;
  z-index: 777;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.slick-slider {
  z-index: 900;
}

.cats-slick {
  padding-inline-start: 0;
}

div#wsd-root dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}

@media (max-width: 650px) {
  div#wsd-root dl {
    grid-template-columns: 1fr;
  }
}

div#wsd-root dd {
  width: 100% !important;
  padding: 0;
  margin: 0;
}

div#wsd-root dd:last-child {
  grid-column: 1/-1;
}

div#wsd-root dl input {
  padding: 20px;
  max-height: 60px;
  width: 100% !important;
  box-sizing: border-box;
  background: rgba(0, 132, 207, 0.06);
  border: none;
  border-radius: 0;
}

div#wsd-root dl textarea {
  padding: 20px;
  width: 100% !important;
  box-sizing: border-box;
  background: rgba(0, 132, 207, 0.06);
  border: none;
  height: 150px;
  border-radius: 0;
}

div#wsd-root {
}

.form_holder p {
  margin-top: 9em;
}

#_form .blue_text {
  text-transform: none;
  font-weight: 700;
}

.blue-foot h2 {
  margin-block-end: 0;
}

.ul-accordian img {
  width: 40px;
  vertical-align: bottom;
  padding-right: 10px;
}

.ul-accordian {
  padding-inline-start: 0;
}

div#vid-d {
  position: fixed;
  display: none;
  width: 99vw;
  height: 99vh;
  overflow: hidden;
  overscroll-behavior: contain;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div#vid-d video {
  width: calc(100% - 10vw);
  object-fit: contain;
  overflow: hidden;
  display: block;
  aspect-ratio: 1920/1080;
  box-sizing: border-box;
}
.form_holder p {
  margin-top: 9em;
}

p a,
ol li a {
  color: var(--vscBlue);
}

p a:visited,
ol li a:visited {
  color: var(--vscBlue);
}
@media (max-width: 700px) {
  .below-fold h3 br {
    display: none;
  }
}
.below-fold ul {
  list-style-image: url("assets/plus.svg");
  list-style-position: inherit;
  padding-inline-start: 17px;
}
.below-fold ul li {
  padding: 7px;
}

/* ///////////////////////////// */
/* Content Page(s) */
/* ///////////////////////////// */

/* 
   970px
   786px
*/

.article-copy ol li::marker,
.article-copy ul li::marker,
.article-copy ol li span,
.article-copy ul li span {
  font-weight: 600;
  color: var(--vscLightBlue);
}

.article-copy ol li,
.article-copy ul li {
  margin-bottom: 30px;
}

#arts {
  background-image: url(assets/images/green-pastures-blue-sky.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

div#fixed-banner {
  z-index: 9999;
  height: 367px;
  width: 100%;
  position: static;
  top: 0;
  display: grid;
  grid-template-columns: 35% 30% 35%;
  max-width: 1500px;
  margin: auto;
}

#arts.scrolled {
  background-image: url(assets/images/h2.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.scrolled div#fixed-banner {
  height: 100px;
}

.scrolled img.banner-img-left {
  /* width: 72%; */
  height: 57px;
  margin-top: 0;
}

.scrolled .cta-title {
  margin: 0;
  font-size: 22px;
}

.scrolled #fixed-banner-hand img {
  display: none;
}

.scrolled div#fixed-banner-cta {
  grid-template-columns: auto auto;
  white-space: nowrap;
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
}
div#fixed-banner-logo {
  display: grid;
  justify-self: left;
  align-content: center;
}

div#fixed-banner-hand {
  justify-self: right;
  display: grid;
  align-content: end;
  margin-bottom: 0;
}

div#fixed-banner-cta {
  display: grid;
  justify-self: right;
  align-content: center;
  align-self: center;
}

.cta-title {
  margin-top: 0;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: clamp(1.375rem, 1.0045rem + 1.1952vw, 2.125rem);
  font-weight: 600;
}

.cta-btn-blue {
  background-color: var(--vscBlue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 1em;
  align-content: center;
  justify-self: center;
  height: 26px;
  width: 180px;
  display: grid;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-align: center;
}

.cta-btn-blue:hover {
  background-color: var(--vscLightBlue);
}

.article-content {
  margin: 80px auto 0 auto;
  max-width: 1500px;
}

@media screen and (max-width: 1550px) {
  .article-content {
    padding: 0 10vw 2rem 10vw;
  }
  div#fixed-banner-logo {
    padding-left: 10vw;
  }
  div#fixed-banner-cta {
    padding-right: 10vw;
  }
}

@media screen and (max-width: 1080px) {
  .cta-title {
    display: none;
  }
  .scrolled div#fixed-banner-cta {
    grid-column-gap: 0;
  }
  .banner-img-middle {
    display: none;
  }
}

@media screen and (max-width: 970px) {
  .article-content {
    padding: 0 2rem;
  }
  .banner-img-left {
    /* height: 60%; */
    height: 67px;
    margin-top: 0;
  }
}

.article-heading {
  font-size: clamp(2rem, 0.7649rem + 3.9841vw, 4.5rem);
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.article-date {
  text-transform: uppercase;
  font-weight: 200;
  font-size: clamp(1rem, 0.9382rem + 0.1992vw, 1.125rem);
}
span.article-author {
  font-size: clamp(1rem, 0.9382rem + 0.1992vw, 1.125rem);
  display: block;
  color: var(--vscBlue);
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: 1em;
}

.article-h3 {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: clamp(1.375rem, 1.0045rem + 1.1952vw, 2.125rem);
}

figure {
  display: block;
  margin: 0;
  padding: 0;
}

.article-img {
  width: 100%;
  max-width: 1500px;
  display: block;
}

figcaption {
  background-color: #efefef;
  font-size: 16px;
  padding: 2em 4vw;
}

.cap-small {
  background-color: #fff;
}

.article-accent-line {
  display: block;
  position: relative;
  left: 0;
  bottom: 2em;
}

@media screen and (max-width: 970px) {
  .article-accent-line {
    margin-top: 3em;
  }
}

.article-fig-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1500px;
}

@media screen and (max-width: 970px) {
  .article-fig-small {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  div#fixed-banner-logo {
    padding-left: 2rem;
  }
  div#fixed-banner-cta {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .article-fig-small {
    padding: 0;
  }
  .banner-img-left,
  .scrolled .banner-img-left {
    height: 47px;
  }

  div#fixed-banner,
  .scrolled div#fixed-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  div#fixed-banner {
    height: 100px;
  }

  div#fixed-banner-hand {
    display: none;
  }

  div#fixed-banner-logo,
  .scrolled div#fixed-banner-logo {
    padding: 0;
    padding-left: 0;
    margin: 0 auto;
  }
  div#fixed-banner-cta,
  .scrolled div#fixed-banner-cta {
    padding: 0;
    padding-right: 0;
    margin: 0 auto;
  }
  .cta-btn-blue,
  .scrolled .cta-btn-blue {
    font-size: 14px;
    width: 128px;
    height: 18px;
  }
}

@media screen and (max-width: 414px) {
  .cta-btn-blue,
  .scrolled .cta-btn-blue {
    font-size: 12px;
    width: 112px;
    height: 16px;
  }
  img.banner-img-left,
  .scrolled img.banner-img-left {
    height: 38px;
  }
}



#single_article  .container_footer_blue {
  display: block;
  max-width: 1500px;
  padding: 0 10vw;
  align-items: center;
  margin: 0 auto;
  vertical-align: middle;
  text-align:center;
}

#single_article .container_footer_blue p {
  color: white;
  margin: 10px auto;
}

#single_article .container_footer_blue img {
    vertical-align: middle;
}

#single_article .container_footer_blue p {
    font-size: 32px;
    vertical-align: middle;
}

#single_article .container_footer_blue .buttons {
    font-size: 17px;
    color: white;
    padding: 20px 30px;
}