/*!
Theme Name: CDN
Theme URI: https://climatediscussionnexus.com
Description: A theme for CDN
Author: CDN
Author URI: https://climatediscussionnexus.com
Version: 1.1.1
Template: oxygen
*/
/******************************************************************
Site Name: 
Author: CDN

Stylesheet: Main Stylesheet
******************************************************************/
/*********************
IMPORT ELEMENTS
*********************/
/******************************************************************

Stylesheet: Variables

******************************************************************/
/* Colours */
/* Spacing / Padding */
/******************************************************************

Stylesheet: Typography

******************************************************************/
/*********************
FONT FACE
*********************/
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,800,900|Open+Sans:400,600,700");
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
  text-rendering: optimizelegibility;
}
.h1.bottom,
.h2.bottom,
.h3.bottom,
.h4.bottom,
.h5.bottom,
h1.bottom,
h2.bottom,
h3.bottom,
h4.bottom,
h5.bottom {
  margin-bottom: 2rem;
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  text-decoration: none;
}

h1,
.h1 {
  font: 900 3.5rem/1.2em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
}

h2,
.h2 {
  font: 900 2rem/1.2em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
}

h3,
.h3 {
  font: 600 1.5rem/1.5em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h4,
.h4 {
  font: 700 1.125rem/1.5em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h5,
.h5 {
  font: 400 2rem/1.2em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h6,
.h6 {
  font: 400 1rem/1.2em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p {
  font: 400 1rem/1.625em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
}
p:first-child {
  margin-top: 0;
}

::selection {
  background: #e7e247;
  color: #ffffff;
}

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

Stylesheet: Mixins Stylesheet

******************************************************************/
/*************************
MEDIA QUERY (MQ)
*************************/
/**********************
BUTTONS
**********************/
/**************************
RESPONSIVE RATIO
**************************/
/*************************
MEDIA QUERY (MQ)
*************************/
/*********************************
SVG BACKGROUND IMAGE WITH FALLBACK
*********************************/
/* USAGE
.lb_div {
    @include background-image('bg');
}
** must have bg.svg, bg.png & bg@2x.png
*/
/*************************
TYPOGRAPHY
*************************/
/*********************
IMPORT PAGES
*********************/
/******************************************************************

Stylesheet: Universal Site Styles

Only put styles in here that will be used across the entire site.
For styles only applying to one particular page, use the appropriate
page SCSS file.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/******************************************************************

Site Name: Climate Discussion Network

Stylesheet: Typography

******************************************************************/
.oxygen-builder-body .lb-sr,
.oxygen-builder-body .lb-sr-fade {
  visibility: visible;
}

html {
  font-size: 16px;
}
@media (max-width: 1120px) {
  html {
    font-size: 12px !important;
  }
}

body {
  font-family: 400 1rem/1.625em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  color: #000000;
  color-adjust: economy;
  -webkit-print-color-adjust: economy;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  outline: none !important;
}
body .lb-sr,
body .lb-sr-fade {
  visibility: hidden;
}

/*********************
LINK STYLES
*********************/
a,
a:visited {
  color: #009fb7;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:focus, a:hover,
a:visited:focus,
a:visited:hover {
  color: #009fb7;
}
a:focus:not(:focus-visible),
a:visited:focus:not(:focus-visible) {
  outline: none;
}
a:link,
a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/*********************
HEADER & NAV STYLES
*********************/
/******************************************************************

Site Name: Climate Discussion Network


Stylesheet: Global Header

******************************************************************/
/*********************
Header
*********************/
.oxy-search-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #22272a;
  display: flex;
  padding: 0 8.3333333333vw;
  align-items: center;
  justify-content: flex-end;
  transform: translateY(-100%);
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
@media (max-width: 1120px) {
  .oxy-search-form {
    height: 60px;
  }
}
@media (max-width: 600px) {
  .oxy-search-form {
    justify-content: flex-start;
  }
}
.oxy-search-form.active {
  transform: translateY(0);
}
.oxy-search-form .close-btn {
  color: #ffffff;
  position: absolute;
  right: 2rem;
  font-size: 1.5rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  cursor: pointer;
}
@media (max-width: 600px) {
  .oxy-search-form .close-btn {
    right: 8.3333333333vw;
  }
}
.oxy-search-form .close-btn:hover {
  color: #e7e247;
}
.oxy-search-form div {
  display: flex;
}
.oxy-search-form div #s {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 0 1rem !important;
  width: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  outline: none !important;
}
.oxy-search-form div #s::placeholder {
  color: #ffffff;
  text-transform: uppercase;
}
.oxy-search-form div #searchsubmit {
  background: transparent;
  border: 2px solid #ffffff;
  height: 40px;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  display: flex;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -2px;
  text-transform: uppercase;
  box-sizing: content-box !important;
  padding: 0 2rem !important;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
}
.oxy-search-form div #searchsubmit:hover {
  color: #22272a;
}
.oxy-search-form div #searchsubmit:hover::before {
  transform: translateX(0);
}
.oxy-search-form div #searchsubmit::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-101%);
  z-index: -1;
}

#section-2-23 {
  height: 0;
  z-index: 10;
  background: #22272a;
}
@media (max-width: 1120px) {
  #section-2-23 {
    height: 60px;
    padding: 0 8.3333333333vw;
  }
}
#section-2-23 .ct-new-columns {
  align-items: center;
  height: 100%;
}
#section-2-23 .ct-new-columns > div {
  width: 50% !important;
  flex-direction: row;
  align-items: center;
}
#section-2-23 .ct-new-columns > div:first-child {
  justify-content: flex-start;
}
#section-2-23 .ct-new-columns > div:last-child {
  justify-content: flex-end;
}
#section-2-23 .ct-new-columns > div:last-child .ct-fancy-icon {
  width: 1.15rem;
  cursor: pointer;
  margin-left: 2rem;
  color: #ffffff;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
#section-2-23 .ct-new-columns > div:last-child .ct-fancy-icon:hover {
  color: #e7e247;
}
#section-2-23 .ct-new-columns #code_block-26-23 {
  display: none;
  align-items: flex-end;
}
@media (max-width: 1120px) {
  #section-2-23 .ct-new-columns #code_block-26-23 {
    display: flex;
  }
}
#section-2-23 .ct-new-columns #code_block-26-23 .mobile-btn {
  width: 23px;
  cursor: pointer;
}
#section-2-23 .ct-new-columns #code_block-26-23 .mobile-btn > div {
  margin-bottom: 6px;
  background: #e7e247;
  width: 100%;
  height: 2px;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform-origin: left;
}
#section-2-23 .ct-new-columns #code_block-26-23 .mobile-btn > div:nth-child(3) {
  margin-bottom: 0;
}
#section-2-23 .ct-new-columns #code_block-26-23 .mobile-btn.active > div:nth-child(1) {
  transform: rotate(45deg);
}
#section-2-23 .ct-new-columns #code_block-26-23 .mobile-btn.active > div:nth-child(2) {
  transform: scaleX(0);
}
#section-2-23 .ct-new-columns #code_block-26-23 .mobile-btn.active > div:nth-child(3) {
  transform: rotate(-45deg);
}
#section-2-23 .ct-new-columns #div_block-5-23 #mobile-logo {
  width: 156px;
  height: auto;
}
#section-2-23 .ct-new-columns #div_block-5-23 #mobile-logo svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
#section-2-23 .ct-new-columns #div_block-5-23 #link-33-23 {
  display: none;
}
@media (max-width: 1120px) {
  #section-2-23 .ct-new-columns #div_block-5-23 #link-33-23 {
    display: block;
  }
}
#section-2-23 .ct-new-columns #div_block-6-23 {
  flex-direction: row;
  align-items: center;
}
#section-2-23 .ct-new-columns #div_block-6-23 .ct-fancy-icon {
  display: none;
}
@media (max-width: 1120px) {
  #section-2-23 .ct-new-columns #div_block-6-23 .ct-fancy-icon {
    display: flex;
  }
}

#section-3-23 {
  padding: 0 0 0 8.3333333333vw;
  height: 100px;
}
@media (max-width: 1440px) {
  #section-3-23 {
    padding-left: 4.1666666667vw;
  }
}
@media (max-width: 1120px) {
  #section-3-23 {
    display: none !important;
  }
}
#section-3-23 .ct-new-columns {
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
}
#section-3-23 .ct-new-columns #div_block-8-23 svg {
  width: 228px;
  height: auto;
}
#section-3-23 .ct-new-columns #div_block-8-23 svg .cls-2 {
  mix-blend-mode: screen;
  stroke: #fff;
  stroke-dasharray: 338;
  stroke-dashoffset: 338;
  animation-direction: alternate;
  animation: dash linear infinite;
  /*   animation-duration: 3s; */
}
#section-3-23 .ct-new-columns #div_block-8-23 svg .cls-3 {
  fill: #6aa6dc;
}
#section-3-23 .ct-new-columns #div_block-8-23 svg .line-1 {
  animation-duration: 4s;
  animation-delay: 0.5s;
}
#section-3-23 .ct-new-columns #div_block-8-23 svg .line-2 {
  animation-duration: 3s;
  animation-delay: 1s;
}
#section-3-23 .ct-new-columns #div_block-8-23 svg .line-3 {
  animation-duration: 3s;
}
#section-3-23 .ct-new-columns #div_block-8-23 svg .line-4 {
  animation-duration: 5s;
  animation-delay: 2s;
}
#section-3-23 .ct-new-columns #div_block-8-23 svg .line-5 {
  animation-duration: 5s;
  animation-delay: 2.5s;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 338;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: -338;
  }
}
@media (max-width: 1280px) {
  #section-3-23 .ct-new-columns #div_block-8-23 svg {
    height: 50px;
    width: auto;
  }
}
#section-3-23 .ct-new-columns .ct-fancy-icon.search-icon {
  width: 1.15rem;
  cursor: pointer;
  margin-left: 1.5rem;
  color: #000000;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
#section-3-23 .ct-new-columns .ct-fancy-icon.search-icon:hover {
  color: #396c98;
}
#section-3-23 .ct-new-columns #div_block-45-23 {
  flex: 1;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
#section-3-23 .ct-new-columns #div_block-45-23 nav #menu-main-menu li {
  background: transparent !important;
  border: 0 !important;
  display: block;
  line-height: 0;
  margin-right: 2rem;
}
#section-3-23 .ct-new-columns #div_block-45-23 nav #menu-main-menu li:last-child {
  margin-right: 0;
}
#section-3-23 .ct-new-columns #div_block-45-23 nav #menu-main-menu li.current_page_item a::before {
  transform: translateX(0);
}
#section-3-23 .ct-new-columns #div_block-45-23 nav #menu-main-menu li.current_page_item a:hover::before {
  transform: translateX(0);
}
#section-3-23 .ct-new-columns #div_block-45-23 nav #menu-main-menu li a {
  background: transparent !important;
  border: 0 !important;
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 100px !important;
  text-transform: uppercase;
  color: #000000;
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
#section-3-23 .ct-new-columns #div_block-45-23 nav #menu-main-menu li a::before {
  content: "";
  width: 100%;
  height: 6px;
  background: #e7e247;
  position: absolute;
  left: 0;
  bottom: 1em;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-101%);
}
#section-3-23 .ct-new-columns #div_block-45-23 nav #menu-main-menu li a:hover::before {
  transform: translateX(-50%);
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #396c98;
  justify-content: flex-end;
  padding-right: 3rem;
  padding-left: 3rem;
  margin-left: 2rem;
}
@media (max-width: 1440px) {
  #section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 {
    padding-right: 4.1666666667vw;
  }
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 .ct-fancy-icon {
  width: 1.15rem;
  cursor: pointer;
  margin-left: 3rem;
  color: #ffffff;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 .ct-fancy-icon:hover {
  color: #e7e247;
}
@media (max-width: 1120px) {
  #section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav {
    display: none !important;
  }
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav #menu-top-menu li {
  background: transparent !important;
  border: 0 !important;
  display: block;
  line-height: 0;
  margin-right: 2rem;
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav #menu-top-menu li:last-child {
  margin-right: 0;
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav #menu-top-menu li.current_page_item a::before {
  transform: translateX(0);
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav #menu-top-menu li.current_page_item a:hover::before {
  transform: translateX(0);
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav #menu-top-menu li a {
  background: transparent !important;
  border: 0 !important;
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 100px !important;
  text-transform: uppercase;
  color: #e7e247;
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav #menu-top-menu li a::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #e7e247;
  position: absolute;
  left: 0;
  bottom: 1em;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-101%);
}
#section-3-23 .ct-new-columns #div_block-45-23 #div_block-47-23 nav #menu-top-menu li a:hover::before {
  transform: translateX(-50%);
}

/*********************
Desktop Navigation
*********************/
/*********************
Tablet/Mobile Navigation
*********************/
.mobile-menu {
  display: none;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 60px;
  left: 0;
  background: #22272a;
  width: 100%;
  height: 100vh;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  z-index: 999999;
}
@media (max-width: 1120px) {
  .mobile-menu {
    display: flex;
  }
}
.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu ul li {
  list-style: none;
  margin-bottom: 1.5rem;
}
.mobile-menu ul li.current_page_item a::before {
  transform: translateX(0);
}
.mobile-menu ul li.current_page_item a:hover::before {
  transform: translateX(0);
}
.mobile-menu ul li a {
  background: transparent !important;
  border: 0 !important;
  font-size: 2rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5rem !important;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  width: auto;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 1rem !important;
  position: relative;
  overflow: hidden;
}
.mobile-menu ul li a::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #e7e247;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-101%);
}
.mobile-menu ul li a:hover::before {
  transform: translateX(-50%);
}
.mobile-menu .social {
  display: flex;
  margin-top: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .mobile-menu .social {
    margin-top: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .mobile-menu .social {
    margin-top: 8.3333333333vw !important;
  }
}
.mobile-menu .social a {
  color: #ffffff;
  margin-right: 1.5rem;
}
.mobile-menu .social a:last-child {
  margin-right: 0;
}
.mobile-menu .social a:hover {
  color: #e7e247;
}
.mobile-menu .social a .ct-fancy-icon {
  width: 1.5rem;
}
@media (max-width: 1120px) {
  .mobile-menu .social a .ct-fancy-icon {
    width: 1.833rem;
  }
}
.mobile-menu .social a .ct-fancy-icon > svg {
  height: 1.5rem;
  width: 1.5rem;
}
@media (max-width: 1120px) {
  .mobile-menu .social a .ct-fancy-icon > svg {
    height: 1.833rem;
    width: 1.833rem;
  }
}
.mobile-menu .social a:first-child .ct-fancy-icon > svg {
  height: 1.25rem;
}
@media (max-width: 1120px) {
  .mobile-menu .social a:first-child .ct-fancy-icon > svg {
    height: 1.5rem;
  }
}

#div_block-56-23 {
  margin-right: 2rem;
}
@media (max-width: 1440px) {
  #div_block-56-23 {
    display: none;
  }
}
#div_block-56-23 a {
  color: #22272a;
  opacity: 0.5;
  margin-right: 1rem;
}
@media (max-width: 1120px) {
  #div_block-56-23 a {
    display: none;
  }
}
#div_block-56-23 a:last-child {
  margin-right: 0;
}
#div_block-56-23 a:hover {
  color: #e7e247;
  opacity: 1;
}
#div_block-56-23 a .ct-fancy-icon {
  width: 1.5rem;
}
@media (max-width: 1120px) {
  #div_block-56-23 a .ct-fancy-icon {
    width: 1.833rem;
  }
}
#div_block-56-23 a .ct-fancy-icon > svg {
  height: 1.5rem;
  width: 1.5rem;
}
@media (max-width: 1120px) {
  #div_block-56-23 a .ct-fancy-icon > svg {
    height: 1.833rem;
    width: 1.833rem;
  }
}
#div_block-56-23 a:first-child .ct-fancy-icon > svg {
  height: 1.25rem;
}
@media (max-width: 1120px) {
  #div_block-56-23 a:first-child .ct-fancy-icon > svg {
    height: 1.5rem;
  }
}
#div_block-56-23 #link-33-23 {
  display: none;
}
@media (max-width: 1120px) {
  #div_block-56-23 #link-33-23 {
    display: block;
  }
}

#logo {
  width: 210px;
  height: auto;
  display: flex;
}
#logo svg path {
  fill: #396c98;
  stroke: #396c98;
}

/*********************
HERO STYLES
*********************/
/*********************
GLOBAL ELEMENTS
*********************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/*********************
Please add global elements as a partial to the 'elements' folder and import here. 
Example of great candidates are title areas, accordions, or tabs.
*********************/
/******************************************************************

Site Name: Climate Discussion Network

Stylesheet: Buttons

******************************************************************/
.button,
a.ct-link-button {
  background: transparent !important;
  border: 0 !important;
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 0 !important;
  font-weight: 700;
  line-height: 1em !important;
  text-transform: uppercase;
  color: #000000;
  display: inline-block;
  width: auto;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 5px !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.button::before,
a.ct-link-button::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #e7e247;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-50%);
}
.button:hover,
a.ct-link-button:hover {
  color: #000000;
}
.button:hover::before,
a.ct-link-button:hover::before {
  transform: translateX(0);
}
.button.white,
a.ct-link-button.white {
  color: #ffffff;
}
.button.white::before,
a.ct-link-button.white::before {
  background: #e7e247;
}
.button.white:hover,
a.ct-link-button.white:hover {
  color: #ffffff;
}
.button.top,
a.ct-link-button.top {
  margin-top: 2rem !important;
}
.button.bottom,
a.ct-link-button.bottom {
  margin-bottom: 2rem !important;
}

.alm-btn-wrap .alm-load-more-btn {
  background: none !important;
  color: #396c98 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}
.alm-btn-wrap .alm-load-more-btn:hover {
  background: none !important;
}
.alm-btn-wrap .alm-load-more-btn.loading {
  opacity: 0.5 !important;
}

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

Site Name: CDN

Stylesheet: Accordion

******************************************************************/
.accordions {
  width: 100%;
}

.accordion-sml {
  width: 100%;
  margin-bottom: 10px;
}
.accordion-sml:last-child {
  margin-bottom: 0 !important;
}
.accordion-sml > .accordion-sml-inner {
  width: 100%;
}
.accordion-sml > .accordion-sml-inner > .title {
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #f3f3f3;
  padding: 20px 40px;
}
@media (max-width: 1440px) {
  .accordion-sml > .accordion-sml-inner > .title {
    padding: 15px 30px;
  }
}
@media (max-width: 1120px) {
  .accordion-sml > .accordion-sml-inner > .title {
    padding: 15px 20px;
  }
}
@media (max-width: 600px) {
  .accordion-sml > .accordion-sml-inner > .title {
    padding: 15px;
  }
}
.accordion-sml > .accordion-sml-inner > .title.active > .title-inner::after {
  transform: translateY(-50%);
}
.accordion-sml > .accordion-sml-inner > .title.active > .title-inner h5 {
  color: #396c98;
}
.accordion-sml > .accordion-sml-inner > .title > .title-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.accordion-sml > .accordion-sml-inner > .title > .title-inner h5 {
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  padding-right: 30px;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  width: calc(100% - 24px);
}
@media (max-width: 1440px) {
  .accordion-sml > .accordion-sml-inner > .title > .title-inner h5 {
    font-size: 16px !important;
  }
}
@media (max-width: 1120px) {
  .accordion-sml > .accordion-sml-inner > .title > .title-inner h5 {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .accordion-sml > .accordion-sml-inner > .title > .title-inner h5 {
    font-size: 14px !important;
  }
}
@media (max-width: 1120px) {
  .accordion-sml > .accordion-sml-inner > .title > .title-inner h5 {
    width: calc(100% - 20px);
  }
}
.accordion-sml > .accordion-sml-inner > .title > .title-inner .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.accordion-sml > .accordion-sml-inner > .title > .title-inner .arrow svg {
  width: 24px;
  height: auto;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
@media (max-width: 1120px) {
  .accordion-sml > .accordion-sml-inner > .title > .title-inner .arrow svg {
    width: 20px;
  }
}
.accordion-sml > .accordion-sml-inner > .title.active::after {
  transform: translateX(0);
}
.accordion-sml > .accordion-sml-inner > .title.active .arrow svg {
  transform: rotate(180deg);
}
.accordion-sml > .accordion-sml-inner > .body {
  display: none;
}
.accordion-sml > .accordion-sml-inner > .body > .body-inner {
  width: 100%;
  background-color: rgba(243, 243, 243, 0.2);
  padding: 20px 40px;
}
@media (max-width: 1440px) {
  .accordion-sml > .accordion-sml-inner > .body > .body-inner {
    padding: 15px 30px;
  }
}
@media (max-width: 1120px) {
  .accordion-sml > .accordion-sml-inner > .body > .body-inner {
    padding: 15px 20px;
  }
}
@media (max-width: 600px) {
  .accordion-sml > .accordion-sml-inner > .body > .body-inner {
    padding: 15px;
  }
}

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

Site Name: Climate Discussion Network

Stylesheet: Gravity Form Styles

For universal gravity forms style overrides. For individual page form overrides please use the specific page SCSS file.

This is not an exhaustive list. 
For other GF CSS classes, go here: https://www.gravityhelp.com/documentation/article/css-targeting-samples/

******************************************************************/
/*********************
GRAVITY FORM UNIVERSAL STYLES
*********************/
.gform_wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3, .gform_wrapper .gform_body .gform_fields#gform_fields_2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .gform_wrapper .gform_body .gform_fields#gform_fields_3, .gform_wrapper .gform_body .gform_fields#gform_fields_2 {
    display: block;
  }
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .ginput_container_name, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .ginput_container_name {
  margin-top: 0;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .ginput_container_name span, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .ginput_container_name span {
  padding-top: 0px !important;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .ginput_container_name input, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .ginput_container_name input {
  margin-top: 12px;
}
@media (max-width: 600px) {
  .gform_wrapper .gform_body .gform_fields#gform_fields_3 .ginput_container_name input, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .ginput_container_name input {
    margin: 10px 0 0;
  }
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--email, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--email {
  padding: 0;
  margin: 0;
  flex-basis: 100%;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--email .ginput_container, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--email .ginput_container {
  padding: 0;
  margin: 0;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--email .ginput_container label, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--email .ginput_container label {
  display: none;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--email .ginput_container input, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--email .ginput_container input {
  background: transparent;
  padding: 0 1rem !important;
  width: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  outline: none !important;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--name, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--name {
  flex-basis: 100%;
  padding-right: 0;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--name input, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--name input {
  background: transparent;
  padding: 0 1rem !important;
  width: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  outline: none !important;
}
@media (max-width: 600px) {
  .gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--name #input_3_2_6, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--name #input_3_2_6 {
    margin-top: 0;
  }
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent {
  flex-basis: 100%;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}
@media (max-width: 600px) {
  .gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent {
    margin-top: 10px !important;
  }
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent .ginput_container, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent .ginput_container {
  display: flex;
  margin-top: 0;
}
@media (max-width: 600px) {
  .gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent .ginput_container, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent .ginput_container {
    margin-top: 10px;
  }
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent .ginput_container input, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent .ginput_container input {
  margin-right: 15px;
  margin-top: 6px;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent .ginput_container label, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent .ginput_container label {
  font-size: 12px;
  color: #000000;
}
@media (max-width: 600px) {
  .gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent .ginput_container label, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent .ginput_container label {
    font-size: 10px;
  }
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent .ginput_container label a, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent .ginput_container label a {
  color: #000000;
  font-weight: bold;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--consent .ginput_container label a:hover, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--consent .ginput_container label a:hover {
  color: #396c98;
}
.gform_wrapper .gform_body .gform_fields#gform_fields_3 .field--captcha, .gform_wrapper .gform_body .gform_fields#gform_fields_2 .field--captcha {
  margin-top: 0 !important;
  height: 0 !important;
}
.gform_wrapper .gform_body .gform_fields .gfield {
  margin-top: 2rem;
}
.gform_wrapper .gform_body .gform_fields .gfield:first-child {
  margin-top: 0;
}
.gform_wrapper .gform_body .gform_fields .gfield label.gfield_consent_label {
  display: block !important;
}
.gform_wrapper .gform_body .gform_fields .gfield input[type=text],
.gform_wrapper .gform_body .gform_fields .gfield select,
.gform_wrapper .gform_body .gform_fields .gfield textarea {
  border: 2px solid #22272a;
  background: transparent;
  color: #000000;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 40px !important;
  padding: 0 1.5rem !important;
  outline: none !important;
}
.gform_wrapper .gform_body .gform_fields .gfield input[type=text]::placeholder,
.gform_wrapper .gform_body .gform_fields .gfield select::placeholder,
.gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder {
  color: #000000;
}
.gform_wrapper .gform_body .gform_fields .gfield#field_1_1 span label {
  display: none;
}
.gform_wrapper .gform_body .gform_fields .gfield#field_1_5 li input {
  display: none;
}
.gform_wrapper .gform_body .gform_fields .gfield#field_1_5 li input:checked + label::after {
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield#field_1_5 li label {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-right: 0;
  font: 400 1rem/1.625em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700 !important;
  color: #000000;
}
.gform_wrapper .gform_body .gform_fields .gfield#field_1_5 li label::before {
  width: 1rem;
  height: 1rem;
  content: "";
  position: absolute;
  border: 1px solid #000000;
  background: transparent;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.gform_wrapper .gform_body .gform_fields .gfield#field_1_5 li label::after {
  width: 1rem;
  height: 1rem;
  content: "";
  position: absolute;
  background: #000000;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}

input[type=password] {
  letter-spacing: 0.3em;
}

@media (max-width: 600px) {
  #input_1_1_3_container {
    margin-bottom: 2rem;
  }
}

.subscribe-form-container form {
  display: flex;
  align-items: flex-start;
}
.subscribe-form-container {
  background: #e7e247;
  margin-bottom: 50px;
  padding: 30px 35px;
  width: 100%;
  min-width: 1000px;
}
@media (max-width: 1440px) {
  .subscribe-form-container {
    margin-bottom: 40px;
    padding: 30px;
    width: 90%;
    min-width: 900px;
  }
}
@media (max-width: 1120px) {
  .subscribe-form-container {
    min-width: initial;
  }
}
@media (max-width: 600px) {
  .subscribe-form-container {
    margin-bottom: 35px;
    padding: 30px 25px;
    width: 100%;
  }
}
.subscribe-form-container form {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1120px) {
  .subscribe-form-container form {
    flex-flow: wrap;
  }
}
.subscribe-form-container .gform_heading {
  margin: 0 40px 0 0 !important;
  align-self: center;
  width: auto !important;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .subscribe-form-container .gform_heading {
    margin: 0 30px 0 0 !important;
  }
}
@media (max-width: 1120px) {
  .subscribe-form-container .gform_heading {
    width: 100% !important;
    margin: 0 0 15px !important;
  }
}
@media (max-width: 600px) {
  .subscribe-form-container .gform_heading {
    white-space: normal;
  }
}
.subscribe-form-container .gform_heading .gform_description {
  font: 600 1.5rem/1.5em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 !important;
  width: 100% !important;
}
@media (max-width: 1750px) {
  .subscribe-form-container .gform_heading .gform_description {
    font-size: 20px;
  }
}
.subscribe-form-container .gform_body {
  margin-right: 40px;
  max-width: initial;
}
@media (max-width: 1440px) {
  .subscribe-form-container .gform_body {
    margin-right: 30px;
  }
}
@media (max-width: 1120px) {
  .subscribe-form-container .gform_body {
    max-width: initial;
    flex: 1;
  }
}
@media (max-width: 600px) {
  .subscribe-form-container .gform_body {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.subscribe-form-container .gform_body .gfield {
  padding-right: 0 !important;
}
@media (max-width: 600px) {
  .subscribe-form-container .gform_body .field--consent#field_3_4 {
    margin-top: 10px !important;
  }
}
.subscribe-form-container .gform_body .ginput_container {
  margin-top: 0 !important;
}
.subscribe-form-container .gform_footer {
  width: auto !important;
  padding: 0 !important;
  margin-top: 20px !important;
}
@media (max-width: 600px) {
  .subscribe-form-container .gform_footer {
    width: 100% !important;
  }
}
.subscribe-form-container .gform_footer .submit-button::before {
  background: #396c98;
}
.subscribe-form-container .validation_error {
  display: none !important;
}
.subscribe-form-container .gform_wrapper li.gfield.gfield_error {
  max-width: initial !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.subscribe-form-container .gform_wrapper li.gfield.gfield_error .validation_message {
  display: none !important;
}
.subscribe-form-container .gform_wrapper li.gfield.gfield_error input[type=text] {
  border-width: 2px !important;
}
.subscribe-form-container .gform_wrapper li.gfield.gfield_error input[type=text]::placeholder {
  color: #790000 !important;
}

.subscribe-search {
  display: flex;
  flex-flow: row;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .subscribe-search {
    flex-flow: wrap;
  }
}
.subscribe-search .subscribe-form-container {
  margin-bottom: 2rem;
  min-width: initial;
}
@media (max-width: 1440px) {
  .subscribe-search .subscribe-form-container {
    width: 55%;
  }
}
@media (max-width: 1120px) {
  .subscribe-search .subscribe-form-container {
    width: 90%;
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
@media (max-width: 600px) {
  .subscribe-search .subscribe-form-container {
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .subscribe-search .subscribe-form-container form {
    flex-flow: wrap;
  }
}
.subscribe-search .subscribe-form-container form .gform_heading {
  white-space: nowrap;
  margin-right: 30px !important;
}
@media (max-width: 1440px) {
  .subscribe-search .subscribe-form-container form .gform_heading {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 1120px) {
  .subscribe-search .subscribe-form-container form .gform_heading {
    white-space: normal;
  }
}
@media (max-width: 1750px) {
  .subscribe-search .subscribe-form-container form .gform_heading .gform_description {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .subscribe-search .subscribe-form-container form .gform_heading .gform_description {
    font-size: 1.5rem;
  }
}
.subscribe-search .subscribe-form-container form .gform_body {
  margin-right: 30px !important;
}
@media (max-width: 600px) {
  .subscribe-search .subscribe-form-container form .gform_body {
    margin-right: 0 !important;
  }
}
.subscribe-search .search-wrapper {
  margin-bottom: 2rem;
}

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

Site Name: Climate Discussion Network

Stylesheet: Row & columns

******************************************************************/
.ct-section {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.ct-section .ct-section-inner-wrap {
  margin: 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.ct-section.top {
  padding-top: 8.3333333333vw !important;
}
@media (max-width: 1120px) {
  .ct-section.top {
    padding-top: 12.5vw !important;
  }
}
@media (max-width: 600px) {
  .ct-section.top {
    padding-top: 16.6666666667vw !important;
  }
}
.ct-section.bottom {
  width: 100%;
  padding-bottom: 8.3333333333vw !important;
}
@media (max-width: 1120px) {
  .ct-section.bottom {
    padding-bottom: 12.5vw !important;
  }
}
@media (max-width: 600px) {
  .ct-section.bottom {
    padding-bottom: 12.5vw !important;
  }
}
.ct-section.left {
  padding-left: 8.3333333333vw !important;
}
.ct-section.right {
  padding-right: 8.3333333333vw !important;
}
.ct-section.top-half {
  padding-top: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .ct-section.top-half {
    padding-top: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .ct-section.top-half {
    padding-top: 8.3333333333vw !important;
  }
}
.ct-section.bottom-half {
  padding-bottom: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .ct-section.bottom-half {
    padding-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .ct-section.bottom-half {
    padding-bottom: 6.25vw !important;
  }
}
.ct-section.left-half {
  padding-left: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .ct-section.left-half {
    padding-left: 8.3333333333vw !important;
  }
}
.ct-section.right-half {
  padding-right: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .ct-section.right-half {
    padding-right: 8.3333333333vw !important;
  }
}
@media (max-width: 1120px) {
  .ct-section.first-row {
    padding-top: 0 !important;
  }
}
.ct-section.gutters {
  padding-left: 16.6666666667vw !important;
  padding-right: 16.6666666667vw !important;
}
@media (max-width: 1440px) {
  .ct-section.gutters {
    padding-left: 8.3333333333vw !important;
    padding-right: 8.3333333333vw !important;
  }
}
@media (max-width: 600px) {
  .ct-section.gutters {
    padding-left: 8.3333333333vw !important;
    padding-right: 8.3333333333vw !important;
  }
}
.ct-section.lrg-gutters {
  padding-left: 25vw !important;
  padding-right: 25vw !important;
}
@media (max-width: 1440px) {
  .ct-section.lrg-gutters {
    padding-left: 8.3333333333vw !important;
    padding-right: 8.3333333333vw !important;
  }
}
@media (max-width: 600px) {
  .ct-section.lrg-gutters {
    padding-left: 8.3333333333vw !important;
    padding-right: 8.3333333333vw !important;
  }
}

.ct-new-columns > .ct-div-block {
  padding: 0;
  background-size: cover !important;
  background-position: center !important;
}

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

Site Name: Climate Discussion Network

Stylesheet: Tabs

******************************************************************/
.oxy-tabs-wrapper {
  padding-bottom: 2rem;
}
@media (max-width: 1120px) {
  .oxy-tabs-wrapper {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }
}
.oxy-tabs-wrapper .oxy-tab {
  padding: 0 !important;
  padding-right: 1rem !important;
  margin: 0;
  margin-right: 1rem;
  position: relative;
}
.oxy-tabs-wrapper .oxy-tab::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
}
.oxy-tabs-wrapper .oxy-tab:first-child {
  padding-left: 0;
}
.oxy-tabs-wrapper .oxy-tab:last-child {
  margin-right: 0 !important;
  padding-right: 0 !important;
}
.oxy-tabs-wrapper .oxy-tab:last-child::before {
  display: none;
}
.oxy-tabs-wrapper .oxy-tab[class*=active] .ct-text-block::after {
  transform: translateX(0);
}
.oxy-tabs-wrapper .oxy-tab .ct-text-block {
  position: relative;
  color: #000000;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  overflow: hidden;
  padding-bottom: 2px;
  letter-spacing: 1px;
}
.oxy-tabs-wrapper .oxy-tab .ct-text-block::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #396c98;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-100%);
  z-index: 1;
}
.oxy-tabs-wrapper .oxy-tab .ct-text-block:hover::after {
  transform: translateX(-50%);
}

.oxy-tabs-contents-wrapper {
  padding: 0;
}
.oxy-tabs-contents-wrapper .oxy-tab-content {
  padding: 0;
}

.tabs-search {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  width: 100%;
  margin-top: -2rem;
  margin-bottom: 2rem;
}
.tabs-search .oxy-tabs-wrapper {
  padding-top: 2rem;
}

.search-wrapper {
  width: auto !important;
  margin-left: auto;
}
@media (max-width: 600px) {
  .search-wrapper {
    width: 100% !important;
  }
}
.search-wrapper .search {
  display: flex;
  justify-content: flex-end;
  width: 16.6666666667vw;
  position: relative;
}
.search-wrapper .search::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url("/wp-content/uploads/2019/01/iconfinder_icon-ios7-search-strong_211817.svg");
  background-size: cover !important;
  background-position: center !important;
  position: absolute;
  right: 0.5rem;
  top: 11px;
}
@media (max-width: 1120px) {
  .search-wrapper .search::after {
    top: 15px;
    right: 1rem;
  }
}
@media (max-width: 1440px) {
  .search-wrapper .search {
    width: 18.75vw;
  }
}
@media (max-width: 1120px) {
  .search-wrapper .search {
    width: 33.3333333333vw;
  }
}
@media (max-width: 600px) {
  .search-wrapper .search {
    width: 100%;
  }
}
.search-wrapper .search input {
  border: 2px solid #22272a;
  background: transparent;
  color: #000000;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  line-height: 40px !important;
  padding: 0 1.5rem !important;
  outline: none !important;
  position: relative;
}
.search-wrapper .search input::placeholder {
  color: #000000;
}

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

Site Name: Climate Discussion Network

Stylesheet: Sign up row

******************************************************************/
#section-29-16 {
  background: #e4e4e4;
}
#section-29-16 h2 {
  margin-top: 1rem;
  margin-bottom: 3rem;
  color: #396c98;
}
#section-29-16 .ct-link-button::before {
  background: #396c98;
}

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

Site Name: Climate Discussion Network

Stylesheet: Cookie Consent

******************************************************************/
.cc-window {
  background-color: #e4e4e4 !important;
}
.cc-window .cc-message {
  font: 400 1rem/1.625em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
}
.cc-window .cc-message a {
  color: #396c98;
}
.cc-window .cc-message a:hover {
  color: #22272a;
}
.cc-window .cc-btn {
  background: transparent !important;
  border: 0 !important;
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 0 !important;
  font-weight: 700;
  line-height: 1em !important;
  text-transform: uppercase;
  color: #000000 !important;
  display: inline-block;
  width: auto;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 5px !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cc-window .cc-btn:hover::before {
  transform: translateX(0);
}
.cc-window .cc-btn::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #396c98;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .cc-window .cc-btn {
    flex: initial !important;
  }
}

/*********************
FOOTER STYLES
*********************/
/******************************************************************

Site Name: Climate Discussion Network

Stylesheet: Global Footer

******************************************************************/
footer.ct-section {
  padding-left: 8.3333333333vw;
  padding-right: 8.3333333333vw;
  background: #22272a;
  color: #ffffff;
  padding-top: 4.1666666667vw;
  padding-bottom: 4.1666666667vw;
}
@media (max-width: 600px) {
  footer.ct-section {
    padding-top: 8.3333333333vw;
    padding-bottom: 8.3333333333vw;
    margin-top: 50px;
  }
}
footer.ct-section .ct-new-columns {
  flex-wrap: nowrap;
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns {
    flex-wrap: wrap-reverse;
  }
}
footer.ct-section .ct-new-columns #div_block-5-24 {
  width: 20.8333333333vw !important;
  justify-content: flex-start;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-5-24 {
    width: 16.6666666667vw !important;
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-5-24 {
    justify-content: flex-end;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-5-24 {
    width: 100% !important;
    align-items: center;
    padding-top: 4.1666666667vw !important;
  }
}
@media (max-width: 600px) and (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-5-24 {
    padding-top: 6.25vw !important;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-5-24 {
    padding-top: 8.3333333333vw !important;
  }
}
footer.ct-section .ct-new-columns #div_block-5-24 a:hover {
  opacity: 0.7;
}
footer.ct-section .ct-new-columns #div_block-5-24 a #footer-logo {
  width: 4.1666666667vw;
  margin-bottom: 3rem;
}
footer.ct-section .ct-new-columns #div_block-5-24 a #footer-logo svg path {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-5-24 a #footer-logo {
    width: 6.25vw;
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-5-24 a #footer-logo {
    width: 10.4166666667vw;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-5-24 a #footer-logo {
    width: 17.5vw;
  }
}
footer.ct-section .ct-new-columns #div_block-7-24 {
  width: 20.8333333333vw !important;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-7-24 {
    width: 25vw !important;
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-7-24 {
    display: none;
  }
}
footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list {
  flex-wrap: wrap;
}
footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list li {
  background: transparent !important;
  border: 0 !important;
  flex-basis: 50%;
  padding: 0.5rem 0;
  display: block;
}
footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list li:nth-last-child(1), footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list li:nth-last-child(2) {
  flex-basis: 100%;
}
footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list li.current_page_item a::before {
  transform: translateX(-50%);
}
footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list li a {
  background: transparent !important;
  border: 0 !important;
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1em !important;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 5px !important;
  position: relative;
  overflow: hidden;
}
footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list li a::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #e7e247;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-101%);
}
footer.ct-section .ct-new-columns #div_block-7-24 nav .oxy-nav-menu-list li a:hover::before {
  transform: translateX(-50%);
}
footer.ct-section .ct-new-columns #div_block-6-24 {
  position: relative;
  margin-left: 4.1666666667vw;
  width: 37.5vw !important;
  justify-content: flex-end;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-6-24 {
    width: 41.6666666667vw !important;
    margin-left: 0;
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-6-24 {
    width: 66.6666666667vw !important;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 {
    width: 100% !important;
    align-items: center !important;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 {
  width: 100%;
  margin-bottom: 1rem;
  justify-content: flex-end;
  padding-top: 200px;
}
@media (max-width: 1600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 {
    padding-top: calc(1vw + 200px);
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 {
    margin-bottom: 12.5vw;
    z-index: 999;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 {
    max-width: 41.6666666667vw;
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 a {
  display: flex;
  height: 100%;
  color: #ffffff;
  margin-right: 3rem;
}
footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 a:last-child {
  margin-right: 0;
}
footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 a:hover {
  color: #e7e247;
}
footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 a .ct-fancy-icon {
  width: 1.5rem;
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 a .ct-fancy-icon {
    width: 1.833rem;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 a .ct-fancy-icon > svg {
  width: 30px;
  height: 30px;
}
footer.ct-section .ct-new-columns #div_block-6-24 #div_block-13-24 a:first-child .ct-fancy-icon > svg {
  height: 22px;
}
footer.ct-section .ct-new-columns #div_block-6-24 #widget-18-24 {
  position: absolute;
  top: calc(-7.16667vw - 30px);
  right: 0;
  background: #e7e247;
  padding: 40px 60px;
  min-width: 630px;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-6-24 #widget-18-24 {
    min-width: 500px;
    padding: 35px;
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-6-24 #widget-18-24 {
    position: relative;
    top: 0;
    margin-top: calc(-4.1666666667vw - 20px);
    margin-bottom: 4.1666666667vw;
    min-width: initial;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 #widget-18-24 {
    margin-top: calc(-8.3333333333vw - 50px);
    padding: 25px 20px;
    margin-bottom: 6.25vw;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper {
  margin: 0;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper form {
  display: flex;
  flex-flow: wrap;
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper form {
    flex-flow: column;
    align-items: flex-start;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading {
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading {
    margin-bottom: 10px;
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading {
    margin-bottom: 10px;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading .gform_description {
  font: 900 2rem/1.2em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
  width: 100% !important;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading .gform_description {
    font-size: 28px;
  }
}
@media (max-width: 1120px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading .gform_description {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_heading .gform_description {
    font-size: 20px;
    margin-bottom: 10px !important;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body {
  flex: 1;
  margin-right: 40px;
  max-width: 76%;
}
@media (max-width: 1440px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body {
    margin-right: 30px;
  }
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body {
    flex: 100%;
    width: 100%;
    max-width: initial;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body .ginput_container {
  margin-top: 0;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body #field_2_2 {
  flex-basis: 100%;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body #field_2_2 input {
  padding-left: 10px !important;
  margin-top: 12px !important;
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body #field_2_2 input {
    margin-top: 0 !important;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body #field_2_1 {
  padding: 0;
  margin: 0;
  flex-basis: 100%;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body #field_2_1 label {
  display: none;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body .field--consent {
  margin-top: 10px !important;
}
@media (max-width: 600px) {
  footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_body .field--consent {
    padding: 0px 0 10px;
  }
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-end;
  width: auto;
  padding-bottom: 5px !important;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .gform_footer .submit-button::before {
  background: #396c98;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper .validation_error {
  display: none !important;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper li.gfield.gfield_error {
  max-width: initial !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper li.gfield.gfield_error .validation_message {
  display: none !important;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper li.gfield.gfield_error input[type=text] {
  border-width: 2px;
}
footer.ct-section .ct-new-columns #div_block-6-24 .gform_wrapper li.gfield.gfield_error input[type=text]::placeholder {
  color: #790000 !important;
}

.gform_confirmation_message {
  color: #000000 !important;
}

.grecaptcha-badge {
  display: none !important;
}

.home,
.page-id-7 {
  /******************************************************************

  Stylesheet: Home Page

  Styles for Homepage ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.home #section-2-7,
.page-id-7 #section-2-7 {
  position: relative;
}
@media (max-width: 1600px) {
  .home #section-2-7,
  .page-id-7 #section-2-7 {
    padding-top: 3.1667vw !important;
  }
}
@media (max-width: 1120px) {
  .home #section-2-7,
  .page-id-7 #section-2-7 {
    padding-top: 4.1666666667vw !important;
  }
}
@media (max-width: 1120px) {
  .home #section-2-7,
  .page-id-7 #section-2-7 {
    height: auto;
  }
}
.home #section-2-7 .ct-new-columns > div,
.page-id-7 #section-2-7 .ct-new-columns > div {
  width: 50% !important;
}
@media (max-width: 600px) {
  .home #section-2-7 .ct-new-columns > div,
  .page-id-7 #section-2-7 .ct-new-columns > div {
    width: 100% !important;
  }
}
.home #section-2-7 .ct-new-columns > div:first-child h3,
.page-id-7 #section-2-7 .ct-new-columns > div:first-child h3 {
  color: #396c98;
}
.home #section-2-7 .ct-new-columns > div:last-child,
.page-id-7 #section-2-7 .ct-new-columns > div:last-child {
  padding-left: 8.3333333333vw;
}
@media (max-width: 600px) {
  .home #section-2-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-2-7 .ct-new-columns > div:last-child {
    padding-left: 45.8333333333vw;
    padding-top: 8.3333333333vw !important;
  }
}
@media (max-width: 600px) and (max-width: 1120px) {
  .home #section-2-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-2-7 .ct-new-columns > div:last-child {
    padding-top: 12.5vw !important;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .home #section-2-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-2-7 .ct-new-columns > div:last-child {
    padding-top: 16.6666666667vw !important;
  }
}
@media (max-width: 340px) {
  .home #section-2-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-2-7 .ct-new-columns > div:last-child {
    padding-top: 4.1666666667vw !important;
  }
}
@media (max-width: 340px) and (max-width: 1120px) {
  .home #section-2-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-2-7 .ct-new-columns > div:last-child {
    padding-top: 6.25vw !important;
  }
}
@media (max-width: 340px) and (max-width: 600px) {
  .home #section-2-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-2-7 .ct-new-columns > div:last-child {
    padding-top: 8.3333333333vw !important;
  }
}
.home #section-2-7 .slider-wrapper,
.page-id-7 #section-2-7 .slider-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease;
  -webkit-transition: opacity 1s ease, transform 1s ease;
}
.home #section-2-7 .slider-wrapper.slick-initialized,
.page-id-7 #section-2-7 .slider-wrapper.slick-initialized {
  visibility: visible;
  opacity: 1;
}
.home #section-2-7 .slider-wrapper.posts__img,
.page-id-7 #section-2-7 .slider-wrapper.posts__img {
  transform: translateY(10px);
}
.home #section-2-7 .slider-wrapper.posts__img.slick-initialized,
.page-id-7 #section-2-7 .slider-wrapper.posts__img.slick-initialized {
  transform: translateY(0);
}
.home #section-2-7 .posts,
.page-id-7 #section-2-7 .posts {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
@media (max-width: 1120px) {
  .home #section-2-7 .posts,
  .page-id-7 #section-2-7 .posts {
    flex-direction: column;
  }
}
.home #section-2-7 .posts__text,
.page-id-7 #section-2-7 .posts__text {
  width: 54.1666666667%;
  padding-left: 12.5vw;
  padding-right: 4.1666666667vw;
  padding-bottom: 30px;
}
@media (max-width: 1440px) {
  .home #section-2-7 .posts__text,
  .page-id-7 #section-2-7 .posts__text {
    padding-left: 8.3333333333vw;
    padding-right: 2.0833333333vw;
  }
}
@media (max-width: 1120px) {
  .home #section-2-7 .posts__text,
  .page-id-7 #section-2-7 .posts__text {
    width: 100%;
    padding-right: 25vw;
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .home #section-2-7 .posts__text,
  .page-id-7 #section-2-7 .posts__text {
    padding-right: 8.3333333333vw;
  }
}
.home #section-2-7 .posts__img,
.page-id-7 #section-2-7 .posts__img {
  width: 45.8333333333%;
  height: 490px;
  flex: 1;
  position: relative;
  align-self: flex-end;
  margin: -2rem 0 1rem;
}
@media (max-width: 1750px) {
  .home #section-2-7 .posts__img,
  .page-id-7 #section-2-7 .posts__img {
    height: 420px;
  }
}
@media (max-width: 1440px) {
  .home #section-2-7 .posts__img,
  .page-id-7 #section-2-7 .posts__img {
    height: 410px;
  }
}
@media (max-width: 1120px) {
  .home #section-2-7 .posts__img,
  .page-id-7 #section-2-7 .posts__img {
    width: 100%;
    height: 50vw;
    margin-top: 0;
  }
}
.home #section-2-7 .posts__img img,
.page-id-7 #section-2-7 .posts__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home #section-2-7 .posts .post.slick-slide,
.page-id-7 #section-2-7 .posts .post.slick-slide {
  padding: 0 10px;
  margin: 0 -10px;
}
.home #section-2-7 .posts .post h1,
.page-id-7 #section-2-7 .posts .post h1 {
  margin-bottom: 30px;
  font-size: 3rem;
}
@media (max-width: 1440px) {
  .home #section-2-7 .posts .post h1,
  .page-id-7 #section-2-7 .posts .post h1 {
    margin-bottom: 25px;
    font-size: 2.75rem;
  }
}
@media (max-width: 1120px) {
  .home #section-2-7 .posts .post h1,
  .page-id-7 #section-2-7 .posts .post h1 {
    font-size: 2.5rem;
  }
}
.home #section-2-7 .posts .post h2,
.page-id-7 #section-2-7 .posts .post h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #396c98;
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  .home #section-2-7 .posts .post h2,
  .page-id-7 #section-2-7 .posts .post h2 {
    font-size: 28px;
  }
}
@media (max-width: 1120px) {
  .home #section-2-7 .posts .post h2,
  .page-id-7 #section-2-7 .posts .post h2 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .home #section-2-7 .posts .post h2,
  .page-id-7 #section-2-7 .posts .post h2 {
    font-size: 20px;
  }
}
.home #section-2-7 .posts .post__text,
.page-id-7 #section-2-7 .posts .post__text {
  display: flex;
  flex-direction: column;
}
.home #section-2-7 .posts .post__title,
.page-id-7 #section-2-7 .posts .post__title {
  color: #000000;
}
.home #section-2-7 .posts .post__title:hover,
.page-id-7 #section-2-7 .posts .post__title:hover {
  color: #396c98;
}
.home #section-2-7 .posts .post__button,
.page-id-7 #section-2-7 .posts .post__button {
  margin-top: 30px;
}
@media (max-width: 1440px) {
  .home #section-2-7 .posts .post__button,
  .page-id-7 #section-2-7 .posts .post__button {
    margin-top: 25px;
  }
}
.home #section-2-7 .posts .post__button a,
.page-id-7 #section-2-7 .posts .post__button a {
  color: #22272a;
}
.home #section-2-7 .posts .post__button a::before,
.page-id-7 #section-2-7 .posts .post__button a::before {
  background: #396c98;
}
.home #section-2-7 .posts .post__img,
.page-id-7 #section-2-7 .posts .post__img {
  height: 100%;
  width: 100%;
}
.home #section-2-7 .posts .post__meta,
.page-id-7 #section-2-7 .posts .post__meta {
  font-size: 0.9em;
}
.home #section-2-7 .posts .slick-list,
.page-id-7 #section-2-7 .posts .slick-list {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.home #section-2-7 .posts .slick-track,
.page-id-7 #section-2-7 .posts .slick-track {
  height: 100%;
}
.home #section-2-7 .posts .slick-slide,
.page-id-7 #section-2-7 .posts .slick-slide {
  display: inline-block;
}
.home #section-2-7 .posts .slick-dots,
.page-id-7 #section-2-7 .posts .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  margin: -5px -15px;
  margin-top: 45px;
}
@media (max-width: 1600px) {
  .home #section-2-7 .posts .slick-dots,
  .page-id-7 #section-2-7 .posts .slick-dots {
    margin-top: 25px;
  }
}
.home #section-2-7 .posts .slick-dots li,
.page-id-7 #section-2-7 .posts .slick-dots li {
  display: flex;
  cursor: pointer;
  padding: 5px 15px;
}
.home #section-2-7 .posts .slick-dots li .bar,
.page-id-7 #section-2-7 .posts .slick-dots li .bar {
  background: #22272a;
  opacity: 0.2;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  height: 6px;
  width: 60px;
}
@media (max-width: 1120px) {
  .home #section-2-7 .posts .slick-dots li .bar,
  .page-id-7 #section-2-7 .posts .slick-dots li .bar {
    height: 4px;
    width: 50px;
  }
}
.home #section-2-7 .posts .slick-dots li:hover .bar,
.page-id-7 #section-2-7 .posts .slick-dots li:hover .bar {
  opacity: 0.8;
}
.home #section-2-7 .posts .slick-dots li.slick-active .bar,
.page-id-7 #section-2-7 .posts .slick-dots li.slick-active .bar {
  background: #396c98;
  opacity: 1;
}
.home #section-3-7,
.page-id-7 #section-3-7 {
  position: relative;
  padding-left: 8.3333333333vw;
  padding-right: 8.3333333333vw;
}
.home #section-3-7::before,
.page-id-7 #section-3-7::before {
  content: "";
  position: absolute;
  background: #e7e247;
  height: 100%;
  width: calc(100% - 4.1666666667vw);
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1440px) {
  .home #section-3-7::before,
  .page-id-7 #section-3-7::before {
    width: 100%;
  }
}
.home #section-3-7 .ct-section-inner-wrap,
.page-id-7 #section-3-7 .ct-section-inner-wrap {
  display: flex;
  align-items: stretch;
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper {
  margin: 0;
  display: flex;
  align-items: center;
  padding-left: 2.0833333333vw !important;
}
@media (max-width: 1120px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper {
    flex-direction: column;
    padding: 4.166vw 0 !important;
  }
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading {
  margin: 0 !important;
  width: auto !important;
  white-space: nowrap;
}
@media (max-width: 1600px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading {
    width: auto;
    white-space: nowrap;
    margin-right: 80px !important;
  }
}
@media (max-width: 1120px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading {
    width: 100% !important;
    padding-left: 4.166vw;
    margin-right: 0 !important;
  }
}
@media (max-width: 600px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading {
    padding-left: 0;
    white-space: normal;
    width: 100%;
  }
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description {
  font: 600 1.5rem/1.5em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin: 0 !important;
}
@media (max-width: 1440px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description {
    font-size: 23px;
  }
}
@media (max-width: 1120px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper .gform_heading .gform_description {
    font-size: 20px;
  }
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form {
  display: flex;
  align-items: center;
  padding: 2.0833333333vw 0 2.0833333333vw 4.1666666667vw !important;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 1120px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form {
    justify-content: flex-start;
    flex-flow: wrap;
    padding: 4.1666666667vw 0 !important;
  }
}
@media (max-width: 600px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form {
    padding: 2vw 0 !important;
  }
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body {
  width: auto;
  margin-right: 40px;
}
@media (max-width: 1440px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body {
    margin-right: 30px;
  }
}
@media (max-width: 1120px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body {
    width: 60vw;
  }
}
@media (max-width: 600px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_body {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer {
  padding: 22px 0 0 0 !important;
  margin: 0 !important;
  display: flex;
  justify-content: flex-end;
  flex-basis: 0;
  align-self: flex-start;
}
@media (max-width: 1120px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer {
    width: 27.0833333333vw;
  }
}
@media (max-width: 600px) {
  .home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer,
  .page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer {
    width: 100%;
    padding-top: 0 !important;
  }
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer .submit-button::before,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .gform_footer .submit-button::before {
  background: #396c98;
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form .validation_error,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form .validation_error {
  display: none !important;
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error {
  max-width: initial !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error .validation_message,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error .validation_message {
  display: none !important;
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error input[type=text],
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error input[type=text] {
  border-width: 2px !important;
}
.home #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error input[type=text]::placeholder,
.page-id-7 #section-3-7 .ct-section-inner-wrap .gform_wrapper form li.gfield.gfield_error input[type=text]::placeholder {
  color: #790000 !important;
}
.home #section-3-7 .ct-section-inner-wrap #div_block-10-7,
.page-id-7 #section-3-7 .ct-section-inner-wrap #div_block-10-7 {
  width: 8.3333333333vw;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1120px) {
  .home #section-3-7 .ct-section-inner-wrap #div_block-10-7,
  .page-id-7 #section-3-7 .ct-section-inner-wrap #div_block-10-7 {
    display: none;
  }
}
.home #section-3-7 .ct-section-inner-wrap #div_block-10-7 a,
.page-id-7 #section-3-7 .ct-section-inner-wrap #div_block-10-7 a {
  background: #e7e247;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.home #section-3-7 .ct-section-inner-wrap #div_block-10-7 a::before,
.page-id-7 #section-3-7 .ct-section-inner-wrap #div_block-10-7 a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateY(-101%);
  z-index: 1;
}
.home #section-3-7 .ct-section-inner-wrap #div_block-10-7 a img,
.page-id-7 #section-3-7 .ct-section-inner-wrap #div_block-10-7 a img {
  position: relative;
  z-index: 2;
}
.home #section-3-7 .ct-section-inner-wrap #div_block-10-7 a:hover::before,
.page-id-7 #section-3-7 .ct-section-inner-wrap #div_block-10-7 a:hover::before {
  transform: translateY(0);
}
.home #section-12-7,
.page-id-7 #section-12-7 {
  padding-left: 8.3333333333vw;
  padding-right: 16.6666666667vw;
  padding-top: 4.1666666667vw;
  padding-bottom: 4.1666666667vw;
  margin-top: 8.3333333333vw;
  margin-bottom: 11.33vw;
  position: relative;
  color: #ffffff;
}
@media (max-width: 1600px) {
  .home #section-12-7,
  .page-id-7 #section-12-7 {
    margin-bottom: 10.33vw;
  }
}
@media (max-width: 1500px) {
  .home #section-12-7,
  .page-id-7 #section-12-7 {
    margin-bottom: 11.33vw;
  }
}
@media (max-width: 1400px) {
  .home #section-12-7,
  .page-id-7 #section-12-7 {
    margin-bottom: 10.33vw;
  }
}
@media (max-width: 1440px) {
  .home #section-12-7,
  .page-id-7 #section-12-7 {
    padding-right: 8.3333333333vw;
  }
}
@media (max-width: 1120px) {
  .home #section-12-7,
  .page-id-7 #section-12-7 {
    margin-bottom: 8.3333333333vw;
  }
}
@media (max-width: 600px) {
  .home #section-12-7,
  .page-id-7 #section-12-7 {
    padding-top: 8.3333333333vw;
    padding-bottom: 0;
    margin-bottom: calc(8.3333333333vw + 45px);
  }
}
.home #section-12-7::before,
.page-id-7 #section-12-7::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #396c98;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 600px) {
  .home #section-12-7::before,
  .page-id-7 #section-12-7::before {
    height: calc(100% - 20.8333333333vw);
  }
}
.home #section-12-7 .ct-new-columns,
.page-id-7 #section-12-7 .ct-new-columns {
  flex-wrap: nowrap;
}
@media (max-width: 1120px) {
  .home #section-12-7 .ct-new-columns,
  .page-id-7 #section-12-7 .ct-new-columns {
    flex-wrap: wrap-reverse;
  }
}
.home #section-12-7 .ct-new-columns > div:first-child,
.page-id-7 #section-12-7 .ct-new-columns > div:first-child {
  width: 45.8333333333vw !important;
  display: flex;
  justify-content: center;
  margin: calc(-4.1666666667vw - 60px) 0;
}
@media (max-width: 1440px) {
  .home #section-12-7 .ct-new-columns > div:first-child,
  .page-id-7 #section-12-7 .ct-new-columns > div:first-child {
    width: 50vw !important;
  }
}
@media (max-width: 600px) {
  .home #section-12-7 .ct-new-columns > div:first-child,
  .page-id-7 #section-12-7 .ct-new-columns > div:first-child {
    width: 100% !important;
  }
}
@media (max-width: 1440px) {
  .home #section-12-7 .ct-new-columns > div:first-child,
  .page-id-7 #section-12-7 .ct-new-columns > div:first-child {
    margin: calc(-6.25vw - 20px) 0;
  }
}
@media (max-width: 1120px) {
  .home #section-12-7 .ct-new-columns > div:first-child,
  .page-id-7 #section-12-7 .ct-new-columns > div:first-child {
    margin: 0;
  }
}
.home #section-12-7 .ct-new-columns > div:first-child .ct-code-block,
.page-id-7 #section-12-7 .ct-new-columns > div:first-child .ct-code-block {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  box-shadow: 0 3px 6px rgba(34, 39, 42, 0.16);
}
.home #section-12-7 .ct-new-columns > div:first-child .ct-code-block a,
.page-id-7 #section-12-7 .ct-new-columns > div:first-child .ct-code-block a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home #section-12-7 .ct-new-columns > div:first-child .ct-code-block a:hover img,
.page-id-7 #section-12-7 .ct-new-columns > div:first-child .ct-code-block a:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.home #section-12-7 .ct-new-columns > div:first-child .ct-code-block a img,
.page-id-7 #section-12-7 .ct-new-columns > div:first-child .ct-code-block a img {
  width: 6.25vw;
  height: 6.25vw;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform-origin: center;
  opacity: 0.9;
}
@media (max-width: 1120px) {
  .home #section-12-7 .ct-new-columns > div:first-child .ct-code-block a img,
  .page-id-7 #section-12-7 .ct-new-columns > div:first-child .ct-code-block a img {
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
}
@media (max-width: 600px) {
  .home #section-12-7 .ct-new-columns > div:first-child .ct-code-block a img,
  .page-id-7 #section-12-7 .ct-new-columns > div:first-child .ct-code-block a img {
    width: 14.5833333333vw;
    height: 14.5833333333vw;
  }
}
.home #section-12-7 .ct-new-columns > div:last-child,
.page-id-7 #section-12-7 .ct-new-columns > div:last-child {
  justify-content: center;
  width: 29.1666666667vw !important;
  padding-left: 8.3333333333vw;
}
@media (max-width: 1550px) {
  .home #section-12-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-12-7 .ct-new-columns > div:last-child {
    padding-left: 4.1666666667vw;
  }
}
@media (max-width: 1440px) {
  .home #section-12-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-12-7 .ct-new-columns > div:last-child {
    width: 33.3333333333vw !important;
  }
}
@media (max-width: 600px) {
  .home #section-12-7 .ct-new-columns > div:last-child,
  .page-id-7 #section-12-7 .ct-new-columns > div:last-child {
    width: 100% !important;
    padding-left: 0;
    padding-bottom: 8.3333333333vw;
  }
}
.home #section-12-7 .ct-new-columns > div:last-child h2,
.page-id-7 #section-12-7 .ct-new-columns > div:last-child h2 {
  margin-bottom: 2rem;
}
.home #section-12-7 .ct-new-columns > div:last-child p:last-child,
.page-id-7 #section-12-7 .ct-new-columns > div:last-child p:last-child {
  margin-bottom: 0;
}
.home #section-12-7 .ct-new-columns > div:last-child .ct-link-button,
.page-id-7 #section-12-7 .ct-new-columns > div:last-child .ct-link-button {
  margin-top: 2.5rem !important;
}
@media (max-width: 1440px) {
  .home #section-12-7 .ct-new-columns > div:last-child .ct-link-button,
  .page-id-7 #section-12-7 .ct-new-columns > div:last-child .ct-link-button {
    margin-top: 2rem !important;
  }
}
.home #section-20-7,
.page-id-7 #section-20-7 {
  padding-right: 8.3333333333vw;
  padding-left: 8.3333333333vw;
  margin-top: 4.1666666667vw;
  margin-bottom: 8.3333333333vw;
}
@media (max-width: 1120px) {
  .home #section-20-7,
  .page-id-7 #section-20-7 {
    margin-top: 8.3333333333vw;
  }
}
.home #section-20-7 .posts-wrapper,
.page-id-7 #section-20-7 .posts-wrapper {
  width: 100%;
}
.home #section-20-7 .posts-wrapper .view-more-container,
.page-id-7 #section-20-7 .posts-wrapper .view-more-container {
  align-items: flex-end;
  margin-left: auto;
  width: 40%;
  border-top: thin solid #396c98;
  margin-top: 40px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts-wrapper .view-more-container,
  .page-id-7 #section-20-7 .posts-wrapper .view-more-container {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts-wrapper .view-more-container,
  .page-id-7 #section-20-7 .posts-wrapper .view-more-container {
    width: 60%;
  }
}
.home #section-20-7 .posts-wrapper .view-more::before,
.page-id-7 #section-20-7 .posts-wrapper .view-more::before {
  background-color: #396c98;
}
.home #section-20-7 .posts-wrapper .view-more.top,
.page-id-7 #section-20-7 .posts-wrapper .view-more.top {
  margin-top: 1rem !important;
}
.home #section-20-7 .posts,
.page-id-7 #section-20-7 .posts {
  width: 100%;
  padding: 0 4.1666666667vw;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts,
  .page-id-7 #section-20-7 .posts {
    padding: 0;
  }
}
.home #section-20-7 .posts .post__title,
.page-id-7 #section-20-7 .posts .post__title {
  color: #000000;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts .post__title,
  .page-id-7 #section-20-7 .posts .post__title {
    font-size: 18px;
  }
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts .post__title,
  .page-id-7 #section-20-7 .posts .post__title {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts .post__title,
  .page-id-7 #section-20-7 .posts .post__title {
    margin-bottom: 8px;
  }
}
.home #section-20-7 .posts .post__title .nowrap,
.page-id-7 #section-20-7 .posts .post__title .nowrap {
  white-space: nowrap;
  margin-left: 5px;
}
.home #section-20-7 .posts .post__title .nowrap svg,
.page-id-7 #section-20-7 .posts .post__title .nowrap svg {
  height: 0.85em;
  width: auto;
  vertical-align: baseline;
}
.home #section-20-7 .posts .post__excerpt,
.page-id-7 #section-20-7 .posts .post__excerpt {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .home #section-20-7 .posts .post__excerpt,
  .page-id-7 #section-20-7 .posts .post__excerpt {
    margin-bottom: 8px;
  }
}
.home #section-20-7 .posts .post__meta,
.page-id-7 #section-20-7 .posts .post__meta {
  color: #22272a;
}
.home #section-20-7 .posts .post__img,
.page-id-7 #section-20-7 .posts .post__img {
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .home #section-20-7 .posts .post__img,
  .page-id-7 #section-20-7 .posts .post__img {
    margin-bottom: 0;
  }
}
.home #section-20-7 .posts .post a:hover .post__title,
.page-id-7 #section-20-7 .posts .post a:hover .post__title {
  color: #396c98;
}
.home #section-20-7 .posts__primary,
.page-id-7 #section-20-7 .posts__primary {
  display: flex;
  margin: -10px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary,
  .page-id-7 #section-20-7 .posts__primary {
    margin: -8px;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary,
  .page-id-7 #section-20-7 .posts__primary {
    flex-direction: column;
    margin: 0;
  }
}
.home #section-20-7 .posts__primary .post,
.page-id-7 #section-20-7 .posts__primary .post {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 10px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary .post,
  .page-id-7 #section-20-7 .posts__primary .post {
    padding: 8px;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary .post,
  .page-id-7 #section-20-7 .posts__primary .post {
    flex-direction: row;
    padding: 0;
    margin: -8px;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary .post__img, .home #section-20-7 .posts__primary .post__info,
  .page-id-7 #section-20-7 .posts__primary .post__img,
  .page-id-7 #section-20-7 .posts__primary .post__info {
    width: 50%;
    padding: 8px;
  }
}
.home #section-20-7 .posts__primary .post__img:hover .post__img__inner,
.page-id-7 #section-20-7 .posts__primary .post__img:hover .post__img__inner {
  box-shadow: 0 3px 6px rgba(34, 39, 42, 0.16);
}
.home #section-20-7 .posts__primary .post__img:hover ~ .post__info .post__title,
.page-id-7 #section-20-7 .posts__primary .post__img:hover ~ .post__info .post__title {
  color: #396c98;
}
.home #section-20-7 .posts__primary .post__img__inner,
.page-id-7 #section-20-7 .posts__primary .post__img__inner {
  display: flex;
  position: relative;
  width: 100%;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
.home #section-20-7 .posts__primary .post__img__inner .post__icon,
.page-id-7 #section-20-7 .posts__primary .post__img__inner .post__icon {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background-color: #ffffff;
  height: 45px;
  width: 45px;
  padding: 10px;
  text-align: center;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary .post__img__inner .post__icon,
  .page-id-7 #section-20-7 .posts__primary .post__img__inner .post__icon {
    height: 35px;
    width: 35px;
  }
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__primary .post__img__inner .post__icon,
  .page-id-7 #section-20-7 .posts__primary .post__img__inner .post__icon {
    padding: 8px;
  }
}
.home #section-20-7 .posts__primary .post__img__inner .post__icon svg,
.page-id-7 #section-20-7 .posts__primary .post__img__inner .post__icon svg {
  width: auto;
  height: 100%;
}
.home #section-20-7 .posts__primary .post__img img,
.page-id-7 #section-20-7 .posts__primary .post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home #section-20-7 .posts__primary .post:first-child,
.page-id-7 #section-20-7 .posts__primary .post:first-child {
  width: calc(60% + 20px);
  flex-direction: row-reverse;
  margin: -10px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary .post:first-child,
  .page-id-7 #section-20-7 .posts__primary .post:first-child {
    width: calc(60% + 16px);
    margin: -8px;
  }
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__primary .post:first-child,
  .page-id-7 #section-20-7 .posts__primary .post:first-child {
    width: 33.334%;
    margin: 0;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary .post:first-child,
  .page-id-7 #section-20-7 .posts__primary .post:first-child {
    flex-direction: row;
    margin: -8px;
    width: calc(100% + 16px);
  }
}
.home #section-20-7 .posts__primary .post:first-child .post__img,
.page-id-7 #section-20-7 .posts__primary .post:first-child .post__img {
  width: 63.6363636364%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary .post:first-child .post__img,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__img {
    width: 58.3333333333%;
  }
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__primary .post:first-child .post__img,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__img {
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary .post:first-child .post__img,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__img {
    margin-bottom: 0;
  }
}
.home #section-20-7 .posts__primary .post:first-child .post__info,
.page-id-7 #section-20-7 .posts__primary .post:first-child .post__info {
  width: 36.3636363636%;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary .post:first-child .post__info,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__info {
    width: 41.6666666667%;
  }
}
.home #section-20-7 .posts__primary .post:first-child .post__img,
.home #section-20-7 .posts__primary .post:first-child .post__info,
.page-id-7 #section-20-7 .posts__primary .post:first-child .post__img,
.page-id-7 #section-20-7 .posts__primary .post:first-child .post__info {
  padding: 10px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary .post:first-child .post__img,
  .home #section-20-7 .posts__primary .post:first-child .post__info,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__img,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__info {
    padding: 8px;
  }
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__primary .post:first-child .post__img,
  .home #section-20-7 .posts__primary .post:first-child .post__info,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__img,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__info {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary .post:first-child .post__img,
  .home #section-20-7 .posts__primary .post:first-child .post__info,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__img,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__info {
    padding: 8px;
    width: 50%;
  }
}
.home #section-20-7 .posts__primary .post:first-child .post__icon,
.page-id-7 #section-20-7 .posts__primary .post:first-child .post__icon {
  height: 60px;
  width: 60px;
  padding: 15px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__primary .post:first-child .post__icon,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__icon {
    height: 45px;
    width: 45px;
    padding: 10px;
  }
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__primary .post:first-child .post__icon,
  .page-id-7 #section-20-7 .posts__primary .post:first-child .post__icon {
    height: 35px;
    width: 35px;
    padding: 8px;
  }
}
.home #section-20-7 .posts__primary .post:not(:first-child),
.page-id-7 #section-20-7 .posts__primary .post:not(:first-child) {
  width: 20%;
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__primary .post:not(:first-child),
  .page-id-7 #section-20-7 .posts__primary .post:not(:first-child) {
    width: 33.333%;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary .post:not(:first-child),
  .page-id-7 #section-20-7 .posts__primary .post:not(:first-child) {
    width: calc(100% + 16px);
  }
}
.home #section-20-7 .posts__primary .post:not(:first-child) .post__excerpt,
.page-id-7 #section-20-7 .posts__primary .post:not(:first-child) .post__excerpt {
  display: none;
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__primary .post:not(:first-child) .post__excerpt,
  .page-id-7 #section-20-7 .posts__primary .post:not(:first-child) .post__excerpt {
    display: block;
  }
}
@media (max-width: 600px) {
  .home #section-20-7 .posts__primary .post:not(:last-child),
  .page-id-7 #section-20-7 .posts__primary .post:not(:last-child) {
    margin-bottom: 12px;
  }
}
.home #section-20-7 .posts__secondary,
.page-id-7 #section-20-7 .posts__secondary {
  border-top: thin solid rgba(57, 108, 152, 0.35);
  margin-top: 40px;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__secondary,
  .page-id-7 #section-20-7 .posts__secondary {
    margin-top: 30px;
    padding-top: 30px;
  }
}
@media (max-width: 1120px) {
  .home #section-20-7 .posts__secondary,
  .page-id-7 #section-20-7 .posts__secondary {
    display: none;
  }
}
.home #section-20-7 .posts__secondary__inner,
.page-id-7 #section-20-7 .posts__secondary__inner {
  display: flex;
  margin: -10px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__secondary__inner,
  .page-id-7 #section-20-7 .posts__secondary__inner {
    margin: -8px;
  }
}
.home #section-20-7 .posts__secondary .post,
.page-id-7 #section-20-7 .posts__secondary .post {
  width: 25%;
  padding: 10px;
}
@media (max-width: 1440px) {
  .home #section-20-7 .posts__secondary .post,
  .page-id-7 #section-20-7 .posts__secondary .post {
    padding: 8px;
  }
}

.page-id-9 {
  /******************************************************************

  Stylesheet: About

  Styles for About page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-9 #section-2-9 {
  position: relative;
}
.page-id-9 #section-2-9::before {
  content: "";
  width: 100%;
  height: calc(100% - 8.3333333333vw);
  background: #396c98;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1550px) {
  .page-id-9 #section-2-9::before {
    height: calc(100% - 7.5vw);
  }
}
@media (max-width: 1120px) {
  .page-id-9 #section-2-9::before {
    height: calc(100% - 8.3333333333vw);
  }
}
@media (max-width: 768px) {
  .page-id-9 #section-2-9::before {
    height: calc(100% - 6.25vw);
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9::before {
    display: none;
  }
}
.page-id-9 #section-2-9 h1 {
  color: #ffffff;
  padding-top: 4.1666666667vw !important;
  padding-bottom: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .page-id-9 #section-2-9 h1 {
    padding-top: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9 h1 {
    padding-top: 8.3333333333vw !important;
  }
}
@media (max-width: 1120px) {
  .page-id-9 #section-2-9 h1 {
    padding-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9 h1 {
    padding-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9 h1 {
    color: #000000;
  }
}
.page-id-9 #section-2-9 .ct-new-columns {
  flex-wrap: nowrap;
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9 .ct-new-columns {
    flex-wrap: wrap;
  }
}
.page-id-9 #section-2-9 .ct-new-columns .ct-div-block {
  width: 50% !important;
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9 .ct-new-columns .ct-div-block {
    width: 100% !important;
  }
  .page-id-9 #section-2-9 .ct-new-columns .ct-div-block:first-child {
    display: none;
  }
}
.page-id-9 #section-2-9 .ct-new-columns .ct-div-block .oxy-rich-text {
  margin-top: 2.0833333333vw;
  color: #ffffff;
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9 .ct-new-columns .ct-div-block .oxy-rich-text {
    color: #000000;
  }
}
.page-id-9 #section-2-9 .ct-new-columns .ct-div-block .oxy-rich-text h4 {
  color: #e7e247;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .page-id-9 #section-2-9 .ct-new-columns .ct-div-block .oxy-rich-text h4 {
    color: #396c98;
    margin-top: 1rem;
  }
}
.page-id-9 #section-2-9 .ct-new-columns .ct-div-block img {
  max-width: 25vw;
}
@media (max-width: 1440px) {
  .page-id-9 #section-2-9 .ct-new-columns .ct-div-block img {
    max-width: 33.3333333333vw;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-3-9 {
    padding-top: 4.1666666667vw !important;
    padding-bottom: 4.1666666667vw !important;
  }
}
@media (max-width: 600px) and (max-width: 1120px) {
  .page-id-9 #section-3-9 {
    padding-top: 6.25vw !important;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .page-id-9 #section-3-9 {
    padding-top: 8.3333333333vw !important;
  }
}
@media (max-width: 600px) and (max-width: 1120px) {
  .page-id-9 #section-3-9 {
    padding-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .page-id-9 #section-3-9 {
    padding-bottom: 6.25vw !important;
  }
}
.page-id-9 #section-3-9 h3 {
  color: #244765;
  width: 54.1666666667vw;
  padding-left: 1em;
  position: relative;
}
@media (max-width: 1440px) {
  .page-id-9 #section-3-9 h3 {
    width: 70.8333333333vw;
  }
}
@media (max-width: 1120px) {
  .page-id-9 #section-3-9 h3 {
    width: 100%;
  }
}
.page-id-9 #section-3-9 h3::before {
  content: '"';
  position: absolute;
  color: #e7e247;
  left: -0.1em;
  top: -50%;
  line-height: 1;
  font-size: 8.5rem;
  opacity: 0.5;
  z-index: -1;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (max-width: 1440px) {
  .page-id-9 #section-3-9 h3::before {
    font-size: 111px;
    top: -25%;
  }
}
@media (max-width: 1120px) {
  .page-id-9 #section-3-9 h3::before {
    font-size: 87px;
    top: -0.25em;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-3-9 h3::before {
    font-size: 56px;
    left: 0.05em;
  }
}
.page-id-9 #section-4-9 .ct-new-columns {
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .page-id-9 #section-4-9 .ct-new-columns {
    align-items: flex-start;
  }
  .page-id-9 #section-4-9 .ct-new-columns p:first-child {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-4-9 .ct-new-columns {
    flex-wrap: wrap;
  }
}
.page-id-9 #section-4-9 .ct-new-columns #div_block-12-9 {
  width: 58.3333333333vw !important;
  padding-left: 16.6666666667vw;
  padding-right: 8.3333333333vw;
}
@media (max-width: 1440px) {
  .page-id-9 #section-4-9 .ct-new-columns #div_block-12-9 {
    padding-left: 8.3333333333vw;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-4-9 .ct-new-columns #div_block-12-9 {
    width: 100% !important;
  }
}
.page-id-9 #section-4-9 .ct-new-columns #div_block-13-9 {
  width: 41.6666666667vw !important;
}
@media (max-width: 600px) {
  .page-id-9 #section-4-9 .ct-new-columns #div_block-13-9 {
    display: none;
  }
}
.page-id-9 #section-19-9 > div h2 {
  color: #396c98;
  margin-bottom: 2rem;
}
.page-id-9 #section-19-9 > div .ct-new-columns {
  align-items: flex-start;
  flex-wrap: nowrap;
}
@media (max-width: 600px) {
  .page-id-9 #section-19-9 > div .ct-new-columns {
    flex-wrap: wrap;
  }
}
.page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block:first-child {
  padding-right: 2.0833333333vw;
}
@media (max-width: 600px) {
  .page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block:first-child {
    padding: 0;
  }
}
.page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block:last-child {
  padding-left: 2.0833333333vw;
}
@media (max-width: 600px) {
  .page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block:last-child {
    padding: 0;
  }
}
.page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block h3 {
  color: #244765;
  padding-left: 1.2em;
  position: relative;
  padding-top: 2em;
}
.page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block h3::before {
  content: '"';
  position: absolute;
  color: #e7e247;
  left: -0.1em;
  top: 5%;
  line-height: 1;
  font-size: 8.5rem;
  opacity: 0.5;
  z-index: -1;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (max-width: 1440px) {
  .page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block h3::before {
    font-size: 111px;
    top: 10%;
    left: -0.05em;
  }
}
@media (max-width: 1120px) {
  .page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block h3::before {
    font-size: 87px;
    top: 0.15em;
  }
}
@media (max-width: 600px) {
  .page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block h3::before {
    font-size: 56px;
    left: 0.05em;
    top: 0.4em;
  }
}
.page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block .ct-link-button {
  margin-top: 2rem !important;
}
@media (max-width: 600px) {
  .page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block .ct-link-button {
    margin-bottom: 2rem !important;
  }
}
.page-id-9 #section-19-9 > div .ct-new-columns .ct-div-block .ct-link-button:before {
  background: #396c98;
}

.page-id-16,
.page-id-728,
.archive {
  /******************************************************************

  Stylesheet: News

  Styles for News page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-16 .ct-inner-content .heading-wrapper,
.page-id-728 .ct-inner-content .heading-wrapper,
.archive .ct-inner-content .heading-wrapper {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.page-id-16 .ct-inner-content .heading-wrapper h1,
.page-id-728 .ct-inner-content .heading-wrapper h1,
.archive .ct-inner-content .heading-wrapper h1 {
  margin: 0.5rem 0.5rem 0.5rem 0;
}
.page-id-16 .ct-inner-content .heading-wrapper .search-wrapper,
.page-id-728 .ct-inner-content .heading-wrapper .search-wrapper,
.archive .ct-inner-content .heading-wrapper .search-wrapper {
  margin: 0.5rem 0;
}
.page-id-16 .ct-inner-content .ct-code-block,
.page-id-728 .ct-inner-content .ct-code-block,
.archive .ct-inner-content .ct-code-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1120px) {
  .page-id-16 .ct-inner-content .ct-code-block,
  .page-id-728 .ct-inner-content .ct-code-block,
  .archive .ct-inner-content .ct-code-block {
    display: block;
  }
}
.page-id-16 .ct-inner-content .ct-code-block .category-title-wrap,
.page-id-728 .ct-inner-content .ct-code-block .category-title-wrap,
.archive .ct-inner-content .ct-code-block .category-title-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper,
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper .alm-reveal,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper .alm-reveal,
.archive .ct-inner-content .ct-code-block .article-wrapper,
.archive .ct-inner-content .ct-code-block .article-wrapper .alm-reveal {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper::after,
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper .alm-reveal::after,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper::after,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper .alm-reveal::after,
.archive .ct-inner-content .ct-code-block .article-wrapper::after,
.archive .ct-inner-content .ct-code-block .article-wrapper .alm-reveal::after {
  content: none;
}
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper article,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper article,
.archive .ct-inner-content .ct-code-block .article-wrapper article {
  width: 18.75vw;
  margin-bottom: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .page-id-16 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-728 .ct-inner-content .ct-code-block .article-wrapper article,
  .archive .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .page-id-16 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-728 .ct-inner-content .ct-code-block .article-wrapper article,
  .archive .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 8.3333333333vw !important;
  }
}
@media (max-width: 1440px) {
  .page-id-16 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-728 .ct-inner-content .ct-code-block .article-wrapper article,
  .archive .ct-inner-content .ct-code-block .article-wrapper article {
    width: 27.7777777778vw;
  }
}
@media (max-width: 1120px) {
  .page-id-16 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-728 .ct-inner-content .ct-code-block .article-wrapper article,
  .archive .ct-inner-content .ct-code-block .article-wrapper article {
    width: 37.5vw;
  }
}
@media (max-width: 600px) {
  .page-id-16 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-728 .ct-inner-content .ct-code-block .article-wrapper article,
  .archive .ct-inner-content .ct-code-block .article-wrapper article {
    width: 100%;
  }
}
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper article .info .excerpt,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper article .info .excerpt,
.archive .ct-inner-content .ct-code-block .article-wrapper article .info .excerpt {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper article .info a,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper article .info a,
.archive .ct-inner-content .ct-code-block .article-wrapper article .info a {
  color: #000000;
}
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper article .info a:hover,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper article .info a:hover,
.archive .ct-inner-content .ct-code-block .article-wrapper article .info a:hover {
  color: #396c98;
}
.page-id-16 .ct-inner-content .ct-code-block .article-wrapper article .info .extra,
.page-id-728 .ct-inner-content .ct-code-block .article-wrapper article .info .extra,
.archive .ct-inner-content .ct-code-block .article-wrapper article .info .extra {
  font-size: 0.9em;
  color: #435058;
  font-weight: 600;
}
.page-id-16 #section-29-16,
.page-id-728 #section-29-16,
.archive #section-29-16 {
  background: #e4e4e4;
}
.page-id-16 #section-29-16 h2,
.page-id-728 #section-29-16 h2,
.archive #section-29-16 h2 {
  margin-top: 1rem;
  margin-bottom: 3rem;
  color: #396c98;
}
.page-id-16 .subscribe-form-container,
.page-id-728 .subscribe-form-container,
.archive .subscribe-form-container {
  width: 100%;
}
.page-id-16 .subscribe-form-container form,
.page-id-728 .subscribe-form-container form,
.archive .subscribe-form-container form {
  display: flex;
  align-items: flex-start;
}
.page-id-16 .subscribe-form-container .gform_heading,
.page-id-728 .subscribe-form-container .gform_heading,
.archive .subscribe-form-container .gform_heading {
  align-self: center;
  width: auto;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .page-id-16 .subscribe-form-container .gform_heading,
  .page-id-728 .subscribe-form-container .gform_heading,
  .archive .subscribe-form-container .gform_heading {
    white-space: normal;
  }
}
.page-id-16 .subscribe-form-container .gform_body,
.page-id-728 .subscribe-form-container .gform_body,
.archive .subscribe-form-container .gform_body {
  max-width: initial;
}
@media (max-width: 600px) {
  .page-id-16 .subscribe-form-container .gform_body .field--consent#field_3_4,
  .page-id-728 .subscribe-form-container .gform_body .field--consent#field_3_4,
  .archive .subscribe-form-container .gform_body .field--consent#field_3_4 {
    margin-top: 10px !important;
  }
}
.page-id-16 .subscribe-form-container .gform_footer,
.page-id-728 .subscribe-form-container .gform_footer,
.archive .subscribe-form-container .gform_footer {
  margin-top: 20px !important;
}

.page-id-5259,
.page-id-7910 {
  /******************************************************************

  Stylesheet: Comeback

  Styles for Comeback page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-5259 .ct-inner-content h1,
.page-id-7910 .ct-inner-content h1 {
  margin-bottom: 2rem;
  text-transform: uppercase !important;
}
.page-id-5259 .ct-inner-content .ct-code-block,
.page-id-7910 .ct-inner-content .ct-code-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1120px) {
  .page-id-5259 .ct-inner-content .ct-code-block,
  .page-id-7910 .ct-inner-content .ct-code-block {
    display: block;
  }
}
.page-id-5259 .ct-inner-content .ct-code-block .category-title-wrap,
.page-id-7910 .ct-inner-content .ct-code-block .category-title-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-id-5259 .ct-inner-content .ct-code-block .article-wrapper,
.page-id-7910 .ct-inner-content .ct-code-block .article-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article,
.page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article {
  width: 18.75vw;
  margin-bottom: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 8.3333333333vw !important;
  }
}
@media (max-width: 1440px) {
  .page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article {
    width: 20.8333333333vw;
  }
}
@media (max-width: 1120px) {
  .page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article {
    width: 37.5vw;
  }
}
@media (max-width: 600px) {
  .page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article,
  .page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article {
    width: 100%;
  }
}
.page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article .info .excerpt,
.page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article .info .excerpt {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article .info a,
.page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article .info a {
  color: #396c98;
}
.page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article .info a:hover,
.page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article .info a:hover {
  color: #22272a;
}
.page-id-5259 .ct-inner-content .ct-code-block .article-wrapper article .info .extra,
.page-id-7910 .ct-inner-content .ct-code-block .article-wrapper article .info .extra {
  font-size: 0.9em;
  color: #435058;
  font-weight: 600;
}

.page-id-11,
.category-backgrounders,
.category-fact-checks,
.category-crystal-ball,
.category-readouts {
  /******************************************************************

  Stylesheet: video

  Styles for video page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-11 h1,
.category-backgrounders h1,
.category-fact-checks h1,
.category-crystal-ball h1,
.category-readouts h1 {
  margin-bottom: 2rem;
}
.page-id-11 .menu-main-menu-container,
.page-id-11 .menu-top-menu-container,
.category-backgrounders .menu-main-menu-container,
.category-backgrounders .menu-top-menu-container,
.category-fact-checks .menu-main-menu-container,
.category-fact-checks .menu-top-menu-container,
.category-crystal-ball .menu-main-menu-container,
.category-crystal-ball .menu-top-menu-container,
.category-readouts .menu-main-menu-container,
.category-readouts .menu-top-menu-container {
  width: 100%;
}
.page-id-11 .social,
.category-backgrounders .social,
.category-fact-checks .social,
.category-crystal-ball .social,
.category-readouts .social {
  justify-content: center;
  width: 100%;
}
.page-id-11 .category-title-wrap,
.category-backgrounders .category-title-wrap,
.category-fact-checks .category-title-wrap,
.category-crystal-ball .category-title-wrap,
.category-readouts .category-title-wrap {
  width: 100%;
}
.page-id-11 .ct-inner-content .ct-code-block,
.category-backgrounders .ct-inner-content .ct-code-block,
.category-fact-checks .ct-inner-content .ct-code-block,
.category-crystal-ball .ct-inner-content .ct-code-block,
.category-readouts .ct-inner-content .ct-code-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block,
  .category-backgrounders .ct-inner-content .ct-code-block,
  .category-fact-checks .ct-inner-content .ct-code-block,
  .category-crystal-ball .ct-inner-content .ct-code-block,
  .category-readouts .ct-inner-content .ct-code-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-id-11 .ct-inner-content .ct-code-block .text,
.category-backgrounders .ct-inner-content .ct-code-block .text,
.category-fact-checks .ct-inner-content .ct-code-block .text,
.category-crystal-ball .ct-inner-content .ct-code-block .text,
.category-readouts .ct-inner-content .ct-code-block .text {
  margin-bottom: 3rem;
  padding: 0 12.5vw;
}
@media (max-width: 1440px) {
  .page-id-11 .ct-inner-content .ct-code-block .text,
  .category-backgrounders .ct-inner-content .ct-code-block .text,
  .category-fact-checks .ct-inner-content .ct-code-block .text,
  .category-crystal-ball .ct-inner-content .ct-code-block .text,
  .category-readouts .ct-inner-content .ct-code-block .text {
    padding: 0 8.3333333333vw;
  }
}
@media (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .text,
  .category-backgrounders .ct-inner-content .ct-code-block .text,
  .category-fact-checks .ct-inner-content .ct-code-block .text,
  .category-crystal-ball .ct-inner-content .ct-code-block .text,
  .category-readouts .ct-inner-content .ct-code-block .text {
    padding: 0;
    order: 1;
    margin-bottom: 2rem;
  }
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper {
    justify-content: space-between;
    order: 3;
  }
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
  width: calc(25% - 1rem);
  margin: 0 0.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 1440px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
    width: calc(33.3333333333% - 2rem);
    margin: 0 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
    width: calc(50% - 1.0416666667vw);
    margin: 0;
    margin-bottom: 2.0833333333vw !important;
  }
}
@media (max-width: 1120px) and (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 3.125vw !important;
  }
}
@media (max-width: 1120px) and (max-width: 600px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 4.1666666667vw !important;
  }
}
@media (max-width: 600px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
    width: 100%;
    margin-bottom: 4.1666666667vw !important;
  }
}
@media (max-width: 600px) and (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article {
    margin-bottom: 8.3333333333vw !important;
  }
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic {
  background-size: cover !important;
  background-position: center !important;
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a {
  width: 100%;
  height: 9.1666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1440px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a {
    height: 14.5833333333vw;
  }
}
@media (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a {
    height: 20.8333333333vw;
  }
}
@media (max-width: 600px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a {
    height: 45.8333333333vw;
  }
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a:hover img,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a:hover img,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a:hover img,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a:hover img,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a:hover img {
  transform: scale(1.1);
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a img {
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform-origin: center;
}
@media (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a img {
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
}
@media (max-width: 600px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .pic a img,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article .pic a img {
    width: 14.5833333333vw;
    height: 14.5833333333vw;
  }
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info {
  background: #f3f3f3;
  padding: 1.0416666667vw;
}
@media (max-width: 1120px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info {
    padding: 2.0833333333vw;
  }
}
@media (max-width: 600px) {
  .page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info,
  .category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info {
    padding: 4.1666666667vw;
  }
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info a,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info a,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info a,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info a,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info a {
  color: #000000;
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info a:hover,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info a:hover,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info a:hover,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info a:hover,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info a:hover {
  color: #396c98;
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info .extras,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info .extras,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info .extras,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info .extras,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info .extras {
  font-size: 0.9em;
  margin-top: 0.5rem;
  color: #435058;
  font-weight: 600;
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info .extras .cat a,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info .extras .cat a,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info .extras .cat a,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info .extras .cat a,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info .extras .cat a {
  pointer-events: none !important;
  color: #435058;
}
.page-id-11 .ct-inner-content .ct-code-block .article-wrapper article .info .date,
.category-backgrounders .ct-inner-content .ct-code-block .article-wrapper article .info .date,
.category-fact-checks .ct-inner-content .ct-code-block .article-wrapper article .info .date,
.category-crystal-ball .ct-inner-content .ct-code-block .article-wrapper article .info .date,
.category-readouts .ct-inner-content .ct-code-block .article-wrapper article .info .date {
  color: #435058;
  margin-bottom: 0 !important;
}

.page-id-13 {
  /******************************************************************

  Stylesheet: Contact

  Styles for Contact page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-13 #section-2-13 h1 {
  margin-bottom: 2rem;
}
@media (max-width: 1120px) {
  .page-id-13 #section-2-13 .ct-new-columns > .ct-div-block {
    width: 100%;
  }
}
.page-id-13 #section-2-13 .ct-new-columns .ct-text-block {
  margin-bottom: 2rem;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block {
  margin-bottom: 1.5rem;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block:last-child,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block:last-child {
  margin-bottom: 0;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block .ct-fancy-icon,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block .ct-fancy-icon {
  color: #396c98;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 2rem;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block .ct-fancy-icon > svg,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block .ct-fancy-icon > svg {
  height: 1.5rem;
  width: 1.5rem;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block .ct-fancy-icon #svg-fancy_icon-23-13,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block .ct-fancy-icon #svg-fancy_icon-23-13 {
  width: 1.25rem;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block .ct-fancy-icon + .oxy-rich-text p,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block .ct-fancy-icon + .oxy-rich-text p {
  margin-bottom: 0;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block .ct-fancy-icon + .oxy-rich-text a,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block .ct-fancy-icon + .oxy-rich-text a {
  color: #000000;
}
.page-id-13 #section-2-13 .ct-new-columns #div_block-17-13 > .ct-div-block .ct-fancy-icon + .oxy-rich-text a:hover,
.page-id-13 #section-2-13 .ct-new-columns #div_block-31-13 > .ct-div-block .ct-fancy-icon + .oxy-rich-text a:hover {
  color: #396c98;
}
.page-id-13 #section-2-13 #div_block-17-13 p,
.page-id-13 #section-2-13 #div_block-17-13 .oxy-rich-text {
  font-weight: 600 !important;
}
@media (max-width: 1120px) {
  .page-id-13 #section-2-13 #div_block-17-13 {
    display: none;
  }
}
.page-id-13 #section-2-13 #div_block-31-13 {
  display: none;
}
.page-id-13 #section-2-13 #div_block-31-13 p,
.page-id-13 #section-2-13 #div_block-31-13 .oxy-rich-text {
  font-weight: 600 !important;
}
@media (max-width: 1120px) {
  .page-id-13 #section-2-13 #div_block-31-13 {
    display: block;
    margin-top: 4.1666666667vw !important;
  }
}
@media (max-width: 1120px) and (max-width: 1120px) {
  .page-id-13 #section-2-13 #div_block-31-13 {
    margin-top: 6.25vw !important;
  }
}
@media (max-width: 1120px) and (max-width: 600px) {
  .page-id-13 #section-2-13 #div_block-31-13 {
    margin-top: 8.3333333333vw !important;
  }
}
@media (max-width: 600px) {
  .page-id-13 #section-2-13 #div_block-31-13 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page-id-13 #section-2-13 #div_block-31-13 > div {
    flex-basis: 100%;
  }
}
.page-id-13 #gform_submit_button_1 {
  color: #000 !important;
}

.page-id-72 {
  /******************************************************************

  Stylesheet: Donate

  Styles for Donate page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-72 #section-2-72 {
  position: relative;
}
.page-id-72 #section-2-72 .oxy-rich-text {
  padding-bottom: 40vh;
}
.page-id-72 #section-2-72 .ct-widget {
  width: 50vw;
}
@media (max-width: 1440px) {
  .page-id-72 #section-2-72 .ct-widget {
    width: 66.6666666667vw;
  }
}
@media (max-width: 1120px) {
  .page-id-72 #section-2-72 .ct-widget {
    width: 100%;
  }
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_12, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_4 {
  display: none !important;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield select,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield textarea {
  border: 1px solid #e4e4e4;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio label,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox label, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_5 label, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 label, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_2 label {
  display: block !important;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 > label, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_2 > label, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_8 > label, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_6 > label {
  display: block !important;
  font: 600 1.5rem/1.5em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  color: #396c98;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 > label .gfield_required, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_2 > label .gfield_required, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_8 > label .gfield_required, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_6 > label .gfield_required {
  display: none;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 {
  margin-top: 0;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .ginput_container {
  margin-top: 0;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .ginput_container input,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .ginput_container select {
  margin-top: 2rem;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_7 .ginput_container select {
  height: 45px;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_9 li {
  width: 100% !important;
}
@media (max-width: 1120px) {
  .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_2 .gfield_radio li {
    width: 50%;
    margin-right: 0;
    padding-right: 1rem;
  }
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield#field_4_3 .gfield_radio li label {
  font: 600 1.5rem/1.5em "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400 !important;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield.single-contribution .gfield_radio > li:last-child input[type=text], .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield.monthly-contribution .gfield_radio > li:last-child input[type=text] {
  display: block !important;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1120px) {
  .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio,
  .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox {
    flex-wrap: wrap;
  }
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li {
  display: inline-block;
  width: auto;
  margin-right: 1.75rem;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li:last-child,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li:last-child {
  margin-right: 0;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li input,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li input {
  display: none;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li input:checked + label::after,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li input:checked + label::after {
  opacity: 1;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li label,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li label {
  display: block;
  position: relative;
  padding-left: 1.5rem;
  margin-right: 0;
  font: 400 1rem/1.625em "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
  box-sizing: content-box !important;
  white-space: nowrap;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li label::before,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li label::before {
  width: 1rem;
  height: 1rem;
  content: "";
  position: absolute;
  border: 2px solid #396c98;
  background: transparent;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 100%;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li label::after,
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li label::after {
  width: 1rem;
  height: 1rem;
  content: "";
  position: absolute;
  background: #396c98;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  border-radius: 100%;
}
@media (max-width: 600px) {
  .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield #input_4_8_6 {
    margin-top: 2rem;
  }
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield #input_4_2 {
  align-items: flex-start;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield #input_4_2 li label::before, .page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield #input_4_2 li label::after {
  top: 0.35em;
  transform: none;
}
.page-id-72 #section-2-72 .ct-widget .gform_wrapper .gform_body .gform_fields .gfield #input_4_2 li label em {
  font-size: 80%;
  line-height: 1;
}
.page-id-72 #section-2-72 .gform_footer {
  display: inline-block;
  width: auto;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-size: 1rem;
  padding-bottom: 5px !important;
  line-height: 1em !important;
}
.page-id-72 #section-2-72 .gform_footer::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #e7e247;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform: translateX(-50%);
}
.page-id-72 #section-2-72 .gform_footer:hover {
  color: #000000;
}
.page-id-72 #section-2-72 .gform_footer:hover::before {
  transform: translateX(0);
}
.page-id-72 #section-2-72 #image-5-72 {
  position: absolute;
  width: 22.9166666667vw;
  top: 4.1666666667vw;
  right: 8.3333333333vw;
}
@media (max-width: 1120px) {
  .page-id-72 #section-2-72 #image-5-72 {
    display: none;
  }
}
.page-id-72 .interac-email {
  display: flex;
  align-items: center;
}
.page-id-72 .interac-email img {
  margin-right: 1rem;
  width: 60px;
  height: auto;
}
@media (max-width: 1120px) {
  .page-id-72 .interac-email img {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .page-id-72 .interac-email img {
    width: 40px;
  }
}
.page-id-72 .interac-email strong {
  color: #396c98;
}

.search-results {
  /******************************************************************

  Stylesheet: Search Results

  Styles for search result page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.search-results .search-result {
  list-style: none;
  margin-bottom: 2rem;
}
.search-results .ct-code-block {
  width: 100%;
}
.search-results .search-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.3333333333vw;
}
@media (max-width: 1120px) {
  .search-results .search-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .search-results .search-wrapper {
    grid-template-columns: 1fr;
  }
}
.search-results .search-wrapper .extra {
  color: #435058;
  font-weight: 600;
}
.search-results #code_block-4-591 {
  width: 100%;
}
.search-results .article-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search-results .article-wrapper article {
  width: 18.75vw;
  margin-bottom: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .search-results .article-wrapper article {
    margin-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .search-results .article-wrapper article {
    margin-bottom: 8.3333333333vw !important;
  }
}
@media (max-width: 1440px) {
  .search-results .article-wrapper article {
    width: 20.8333333333vw;
  }
}
@media (max-width: 1120px) {
  .search-results .article-wrapper article {
    width: 37.5vw;
  }
}
@media (max-width: 600px) {
  .search-results .article-wrapper article {
    width: 100%;
  }
}
.search-results .article-wrapper article .info .excerpt {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.search-results .article-wrapper article .info a {
  color: #396c98;
}
.search-results .article-wrapper article .info a:hover {
  color: #22272a;
}
.search-results .article-wrapper article .info .extra {
  color: #435058;
  font-weight: 600;
}
.search-results .pagination-wrapper {
  padding-top: 4.1666666667vw !important;
  text-align: center;
}
@media (max-width: 1120px) {
  .search-results .pagination-wrapper {
    padding-top: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .search-results .pagination-wrapper {
    padding-top: 8.3333333333vw !important;
  }
}
.search-results .pagination-wrapper .page-numbers {
  margin-right: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}
.search-results .pagination-wrapper .page-numbers:last-child {
  margin-right: 0;
}

.single-post,
.single-videos,
.single {
  /******************************************************************

  Stylesheet: Article/Post template

  Styles for post templates ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.single-post .see-comments,
.single-videos .see-comments,
.single .see-comments {
  width: auto;
  padding: 0.25rem 2rem;
  background: #e7e247;
  color: #000000;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  position: fixed;
  right: 25vw;
  bottom: 2.0833333333vw;
  z-index: 10;
}
@media (max-width: 1440px) {
  .single-post .see-comments,
  .single-videos .see-comments,
  .single .see-comments {
    right: 8.3333333333vw;
  }
}
.single-post .see-comments img,
.single-videos .see-comments img,
.single .see-comments img {
  width: 1rem;
  margin-left: 1rem;
}
.single-post .see-comments:hover,
.single-videos .see-comments:hover,
.single .see-comments:hover {
  background: #e4e4e4;
  color: #000000;
}
.single-post .see-comments.hidden,
.single-videos .see-comments.hidden,
.single .see-comments.hidden {
  pointer-events: none;
  opacity: 0;
}
.single-post .ct-code-block,
.single-videos .ct-code-block,
.single .ct-code-block {
  width: 100%;
}
.single-post .ct-code-block .content a,
.single-videos .ct-code-block .content a,
.single .ct-code-block .content a {
  color: #396c98;
  font-weight: 600;
}
.single-post .ct-code-block .content a:hover,
.single-videos .ct-code-block .content a:hover,
.single .ct-code-block .content a:hover {
  text-decoration: underline;
}
.single-post .ct-code-block .featured-image,
.single-videos .ct-code-block .featured-image,
.single .ct-code-block .featured-image {
  width: 100%;
  height: 22.9166666667vw;
  background-size: cover !important;
  background-position: center !important;
  margin-bottom: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .single-post .ct-code-block .featured-image,
  .single-videos .ct-code-block .featured-image,
  .single .ct-code-block .featured-image {
    margin-bottom: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .single-post .ct-code-block .featured-image,
  .single-videos .ct-code-block .featured-image,
  .single .ct-code-block .featured-image {
    margin-bottom: 8.3333333333vw !important;
  }
}
@media (max-width: 1120px) {
  .single-post .ct-code-block .featured-image,
  .single-videos .ct-code-block .featured-image,
  .single .ct-code-block .featured-image {
    height: 31.25vw;
  }
}
@media (max-width: 600px) {
  .single-post .ct-code-block .featured-image,
  .single-videos .ct-code-block .featured-image,
  .single .ct-code-block .featured-image {
    display: none;
    height: 41.6666666667vw;
  }
}
.single-post .ct-code-block .featured-image.video a,
.single-videos .ct-code-block .featured-image.video a,
.single .ct-code-block .featured-image.video a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.single-post .ct-code-block .featured-image.video a:hover img,
.single-videos .ct-code-block .featured-image.video a:hover img,
.single .ct-code-block .featured-image.video a:hover img {
  transform: scale(1.1);
}
.single-post .ct-code-block .featured-image.video a img,
.single-videos .ct-code-block .featured-image.video a img,
.single .ct-code-block .featured-image.video a img {
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  transform-origin: center;
}
@media (max-width: 1120px) {
  .single-post .ct-code-block .featured-image.video a img,
  .single-videos .ct-code-block .featured-image.video a img,
  .single .ct-code-block .featured-image.video a img {
    width: 8.3333333333vw;
    height: 8.3333333333vw;
  }
}
@media (max-width: 600px) {
  .single-post .ct-code-block .featured-image.video a img,
  .single-videos .ct-code-block .featured-image.video a img,
  .single .ct-code-block .featured-image.video a img {
    width: 14.5833333333vw;
    height: 14.5833333333vw;
  }
}
@media (max-width: 600px) {
  .single-post .ct-code-block .featured-image.video,
  .single-videos .ct-code-block .featured-image.video,
  .single .ct-code-block .featured-image.video {
    display: block !important;
  }
}
.single-post .ct-code-block .title,
.single-videos .ct-code-block .title,
.single .ct-code-block .title {
  margin-bottom: 1rem;
  color: #396c98;
}
.single-post .ct-code-block .cat a,
.single-videos .ct-code-block .cat a,
.single .ct-code-block .cat a {
  color: #396c98;
}
.single-post .ct-code-block .share,
.single-videos .ct-code-block .share,
.single .ct-code-block .share {
  margin-top: 1rem;
  display: flex;
}
.single-post .ct-code-block .share a,
.single-videos .ct-code-block .share a,
.single .ct-code-block .share a {
  opacity: 0.5;
  margin-right: 1.25rem;
}
.single-post .ct-code-block .share a:hover,
.single-videos .ct-code-block .share a:hover,
.single .ct-code-block .share a:hover {
  opacity: 0.8;
}
.single-post .ct-code-block .share a svg,
.single-videos .ct-code-block .share a svg,
.single .ct-code-block .share a svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #707070;
}
.single-post .ct-code-block blockquote p,
.single-videos .ct-code-block blockquote p,
.single .ct-code-block blockquote p {
  padding: 0.5rem 2rem !important;
  margin: 0 !important;
  position: relative;
  font-weight: 600 !important;
  font-style: normal;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f3f3f3;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.single-post .ct-code-block blockquote p::before,
.single-videos .ct-code-block blockquote p::before,
.single .ct-code-block blockquote p::before {
  display: none;
}
.single-post .ct-code-block h6,
.single-videos .ct-code-block h6,
.single .ct-code-block h6 {
  font-size: 1.2rem;
  color: #396c98;
  font-weight: 700;
  margin: 2rem;
  position: relative;
}
.single-post .ct-code-block h6::before,
.single-videos .ct-code-block h6::before,
.single .ct-code-block h6::before {
  content: '"';
  position: absolute;
  color: #244765;
  left: -2.5rem;
  top: -1.25rem;
  line-height: 1;
  font-size: 4rem;
  z-index: -1;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.single-post .ct-code-block .direction,
.single-videos .ct-code-block .direction,
.single .ct-code-block .direction {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.single-post .ct-code-block .direction a,
.single-videos .ct-code-block .direction a,
.single .ct-code-block .direction a {
  font-size: 1.1rem;
  color: #396c98;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
}
.single-post .ct-code-block .direction a img,
.single-videos .ct-code-block .direction a img,
.single .ct-code-block .direction a img {
  width: 1.5rem;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
.single-post .ct-code-block .direction a:first-child img,
.single-videos .ct-code-block .direction a:first-child img,
.single .ct-code-block .direction a:first-child img {
  margin-right: 1rem;
}
.single-post .ct-code-block .direction a:first-child:hover,
.single-videos .ct-code-block .direction a:first-child:hover,
.single .ct-code-block .direction a:first-child:hover {
  color: #22272a;
}
.single-post .ct-code-block .direction a:first-child:hover img,
.single-videos .ct-code-block .direction a:first-child:hover img,
.single .ct-code-block .direction a:first-child:hover img {
  transform: translateX(-0.25rem) !important;
}
.single-post .ct-code-block .direction a:last-child img,
.single-videos .ct-code-block .direction a:last-child img,
.single .ct-code-block .direction a:last-child img {
  margin-left: 1rem;
}
.single-post .ct-code-block .direction a:last-child:hover,
.single-videos .ct-code-block .direction a:last-child:hover,
.single .ct-code-block .direction a:last-child:hover {
  color: #22272a;
}
.single-post .ct-code-block .direction a:last-child:hover img,
.single-videos .ct-code-block .direction a:last-child:hover img,
.single .ct-code-block .direction a:last-child:hover img {
  transform: translateX(0.25rem) !important;
}
.single-post .crp_related,
.single-videos .crp_related,
.single .crp_related {
  width: 100%;
  margin-top: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .single-post .crp_related,
  .single-videos .crp_related,
  .single .crp_related {
    margin-top: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .single-post .crp_related,
  .single-videos .crp_related,
  .single .crp_related {
    margin-top: 8.3333333333vw !important;
  }
}
.single-post .crp_related h3,
.single-videos .crp_related h3,
.single .crp_related h3 {
  margin-bottom: 1.5rem;
}
.single-post .crp_related ul,
.single-videos .crp_related ul,
.single .crp_related ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.single-post .crp_related ul li,
.single-videos .crp_related ul li,
.single .crp_related ul li {
  list-style: none;
  width: calc(33.3333333333% - 1.3888888889vw);
  margin-right: 0 !important;
}
.single-post .crp_related ul li:nth-child(3n+1),
.single-videos .crp_related ul li:nth-child(3n+1),
.single .crp_related ul li:nth-child(3n+1) {
  margin-right: 2.0833333333vw !important;
}
.single-post .crp_related ul li:nth-child(3n+2),
.single-videos .crp_related ul li:nth-child(3n+2),
.single .crp_related ul li:nth-child(3n+2) {
  margin-right: 2.0833333333vw !important;
}
.single-post .crp_related ul li:nth-child(n),
.single-videos .crp_related ul li:nth-child(n),
.single .crp_related ul li:nth-child(n) {
  margin-bottom: 2.0833333333vw !important;
}
.single-post .crp_related ul li:nth-last-child(1),
.single-videos .crp_related ul li:nth-last-child(1),
.single .crp_related ul li:nth-last-child(1) {
  margin-bottom: 0 !important;
}
.single-post .crp_related ul li:nth-last-child(2),
.single-videos .crp_related ul li:nth-last-child(2),
.single .crp_related ul li:nth-last-child(2) {
  margin-bottom: 0 !important;
}
.single-post .crp_related ul li:nth-last-child(3),
.single-videos .crp_related ul li:nth-last-child(3),
.single .crp_related ul li:nth-last-child(3) {
  margin-bottom: 0 !important;
}
.single-post .crp_related ul li:nth-child(3n+3),
.single-videos .crp_related ul li:nth-child(3n+3),
.single .crp_related ul li:nth-child(3n+3) {
  margin-right: 0 !important;
}
@media (max-width: 1120px) {
  .single-post .crp_related ul li,
  .single-videos .crp_related ul li,
  .single .crp_related ul li {
    width: calc(50% - 1.0416666667vw);
    margin-right: 0 !important;
  }
  .single-post .crp_related ul li:nth-child(2n+1),
  .single-videos .crp_related ul li:nth-child(2n+1),
  .single .crp_related ul li:nth-child(2n+1) {
    margin-right: 2.0833333333vw !important;
  }
  .single-post .crp_related ul li:nth-child(n),
  .single-videos .crp_related ul li:nth-child(n),
  .single .crp_related ul li:nth-child(n) {
    margin-bottom: 2.0833333333vw !important;
  }
  .single-post .crp_related ul li:nth-last-child(1),
  .single-videos .crp_related ul li:nth-last-child(1),
  .single .crp_related ul li:nth-last-child(1) {
    margin-bottom: 0 !important;
  }
  .single-post .crp_related ul li:nth-last-child(2),
  .single-videos .crp_related ul li:nth-last-child(2),
  .single .crp_related ul li:nth-last-child(2) {
    margin-bottom: 0 !important;
  }
  .single-post .crp_related ul li:nth-child(2n+2),
  .single-videos .crp_related ul li:nth-child(2n+2),
  .single .crp_related ul li:nth-child(2n+2) {
    margin-right: 0 !important;
  }
  .single-post .crp_related ul li:last-child,
  .single-videos .crp_related ul li:last-child,
  .single .crp_related ul li:last-child {
    display: none;
  }
}
@media (max-width: 600px) {
  .single-post .crp_related ul li,
  .single-videos .crp_related ul li,
  .single .crp_related ul li {
    width: calc(100% - 0vw);
    margin-right: 0 !important;
  }
  .single-post .crp_related ul li:nth-child(1n+1),
  .single-videos .crp_related ul li:nth-child(1n+1),
  .single .crp_related ul li:nth-child(1n+1) {
    margin-right: 2.0833333333vw !important;
  }
  .single-post .crp_related ul li:nth-child(1n+0),
  .single-videos .crp_related ul li:nth-child(1n+0),
  .single .crp_related ul li:nth-child(1n+0) {
    margin-right: 2.0833333333vw !important;
  }
  .single-post .crp_related ul li:nth-child(n),
  .single-videos .crp_related ul li:nth-child(n),
  .single .crp_related ul li:nth-child(n) {
    margin-bottom: 2.0833333333vw !important;
  }
  .single-post .crp_related ul li:nth-last-child(1),
  .single-videos .crp_related ul li:nth-last-child(1),
  .single .crp_related ul li:nth-last-child(1) {
    margin-bottom: 0 !important;
  }
  .single-post .crp_related ul li:nth-child(1n+1),
  .single-videos .crp_related ul li:nth-child(1n+1),
  .single .crp_related ul li:nth-child(1n+1) {
    margin-right: 0 !important;
  }
  .single-post .crp_related ul li:last-child,
  .single-videos .crp_related ul li:last-child,
  .single .crp_related ul li:last-child {
    display: block;
  }
}
.single-post .crp_related ul li img,
.single-videos .crp_related ul li img,
.single .crp_related ul li img {
  width: 100%;
  height: auto;
}
.single-post .crp_related ul li .crp_title,
.single-videos .crp_related ul li .crp_title,
.single .crp_related ul li .crp_title {
  display: block;
  margin-top: 0.5rem;
  color: #396c98;
  font-weight: 600;
  text-decoration: none;
}
.single-post .oxy-comments,
.single-videos .oxy-comments,
.single .oxy-comments {
  padding-top: 4.1666666667vw !important;
}
@media (max-width: 1120px) {
  .single-post .oxy-comments,
  .single-videos .oxy-comments,
  .single .oxy-comments {
    padding-top: 6.25vw !important;
  }
}
@media (max-width: 600px) {
  .single-post .oxy-comments,
  .single-videos .oxy-comments,
  .single .oxy-comments {
    padding-top: 8.3333333333vw !important;
  }
}
.single-post .oxy-comment-form,
.single-videos .oxy-comment-form,
.single .oxy-comment-form {
  margin-top: 2rem;
  font: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #396c98;
}
.single-post .oxy-comment-form input[type=text],
.single-post .oxy-comment-form select,
.single-post .oxy-comment-form textarea,
.single-videos .oxy-comment-form input[type=text],
.single-videos .oxy-comment-form select,
.single-videos .oxy-comment-form textarea,
.single .oxy-comment-form input[type=text],
.single .oxy-comment-form select,
.single .oxy-comment-form textarea {
  border: 1px solid #707070;
  background: transparent;
  color: #000000;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 40px !important;
  padding: 0 1.5rem !important;
  outline: none !important;
}
.single-post .oxy-comment-form input[type=text]::placeholder,
.single-post .oxy-comment-form select::placeholder,
.single-post .oxy-comment-form textarea::placeholder,
.single-videos .oxy-comment-form input[type=text]::placeholder,
.single-videos .oxy-comment-form select::placeholder,
.single-videos .oxy-comment-form textarea::placeholder,
.single .oxy-comment-form input[type=text]::placeholder,
.single .oxy-comment-form select::placeholder,
.single .oxy-comment-form textarea::placeholder {
  color: #000000;
}
.single-post .oxy-comment-form input.submit,
.single-videos .oxy-comment-form input.submit,
.single .oxy-comment-form input.submit {
  text-transform: uppercase;
  font-size: 1rem !important;
  display: inline-block;
  width: auto;
  background: #396c98 !important;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
.single-post .oxy-comment-form input.submit:hover,
.single-videos .oxy-comment-form input.submit:hover,
.single .oxy-comment-form input.submit:hover {
  background: #244765 !important;
}
.single-post .comments-list li article a,
.single-videos .comments-list li article a,
.single .comments-list li article a {
  color: #396c98;
}

.error404 {
  /******************************************************************

  Stylesheet: 404

  Styles for 404 page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.error404 #section-3-25 {
  height: 80vh;
}
.error404 #section-3-25 .ct-section-inner-wrap {
  padding-bottom: 0;
  justify-content: center;
  padding-left: 16.6666666667vw !important;
  padding-right: 16.6666666667vw !important;
}
@media (max-width: 1440px) {
  .error404 #section-3-25 .ct-section-inner-wrap {
    padding-left: 8.3333333333vw !important;
    padding-right: 8.3333333333vw !important;
  }
}
@media (max-width: 600px) {
  .error404 #section-3-25 .ct-section-inner-wrap {
    padding-left: 8.3333333333vw !important;
    padding-right: 8.3333333333vw !important;
  }
}
.error404 #section-3-25 .ct-section-inner-wrap .oxy-rich-text {
  width: 70%;
}
@media (max-width: 1120px) {
  .error404 #section-3-25 .ct-section-inner-wrap .oxy-rich-text {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .error404 #section-3-25 .ct-section-inner-wrap .oxy-rich-text {
    width: 100%;
  }
}
.error404 #section-3-25 .ct-section-inner-wrap .oxy-rich-text h2,
.error404 #section-3-25 .ct-section-inner-wrap .oxy-rich-text p {
  margin-bottom: 2rem;
}

.page-id-6188 {
  /******************************************************************

  Stylesheet: Cookies

  Styles for Cookies page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-6188 .table::-webkit-scrollbar {
  width: 0.5rem;
  height: 4px;
}
.page-id-6188 .table::-webkit-scrollbar-track {
  background: rgba(57, 108, 152, 0.25);
}
.page-id-6188 .table::-webkit-scrollbar-thumb {
  background-color: #396c98;
}
@media (max-width: 600px) {
  .page-id-6188 .table {
    max-width: 83.3333333333vw;
    overflow-x: scroll;
  }
}
@media (max-width: 600px) {
  .page-id-6188 .table table {
    width: 75rem;
  }
}
.page-id-6188 .table table tbody tr:nth-child(odd) {
  background-color: rgba(57, 108, 152, 0.15);
}
.page-id-6188 .table table tbody tr td {
  padding: 10px;
}
.page-id-22767,
.page-id-24198,
.tax-product_cat {
  /******************************************************************

  Stylesheet: Shop

  Styles for search result page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.page-id-22767 h1,
.page-id-24198 h1,
.tax-product_cat h1 {
  text-transform: uppercase !important;
}
.page-id-22767 .ct-inner-content,
.page-id-24198 .ct-inner-content,
.tax-product_cat .ct-inner-content {
  padding: 30px 8.3333333333vw 8.3333333333vw;
}
.page-id-22767 ul.products li.product img,
.page-id-24198 ul.products li.product img,
.tax-product_cat ul.products li.product img {
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
.page-id-22767 ul.products li.product:hover .woocommerce-loop-product__title,
.page-id-24198 ul.products li.product:hover .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product:hover .woocommerce-loop-product__title {
  color: #396c98;
}
.page-id-22767 ul.products li.product:hover img,
.page-id-24198 ul.products li.product:hover img,
.tax-product_cat ul.products li.product:hover img {
  box-shadow: 0px 5px 8px #ccc;
}
@media (max-width: 600px) {
  .page-id-22767 ul.products li.product:hover img,
  .page-id-24198 ul.products li.product:hover img,
  .tax-product_cat ul.products li.product:hover img {
    margin-bottom: 0.5em;
  }
}
.page-id-22767 ul.products li.product .woocommerce-loop-product__title,
.page-id-24198 ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
  letter-spacing: 0;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
}
@media (max-width: 1120px) {
  .page-id-22767 ul.products li.product .woocommerce-loop-product__title,
  .page-id-24198 ul.products li.product .woocommerce-loop-product__title,
  .tax-product_cat ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
  }
}
.page-id-22767 ul.products li.product .button,
.page-id-24198 ul.products li.product .button,
.tax-product_cat ul.products li.product .button {
  display: none !important;
  color: #396c98;
  text-align: left !important;
  letter-spacing: 0;
  overflow: hidden;
  position: relative;
}
.page-id-22767 ul.products li.product .button:hover,
.page-id-24198 ul.products li.product .button:hover,
.tax-product_cat ul.products li.product .button:hover {
  color: #396c98;
}
.page-id-22767 ul.products li.product .price,
.page-id-22767 ul.products li.product .price span,
.page-id-24198 ul.products li.product .price,
.page-id-24198 ul.products li.product .price span,
.tax-product_cat ul.products li.product .price,
.tax-product_cat ul.products li.product .price span {
  font-weight: 400;
}
@media (max-width: 600px) {
  .page-id-22767 ul.products li.product .price,
  .page-id-22767 ul.products li.product .price span,
  .page-id-24198 ul.products li.product .price,
  .page-id-24198 ul.products li.product .price span,
  .tax-product_cat ul.products li.product .price,
  .tax-product_cat ul.products li.product .price span {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .page-id-22767 .woocommerce-ordering,
  .page-id-24198 .woocommerce-ordering,
  .tax-product_cat .woocommerce-ordering {
    float: right !important;
  }
}

.woocommerce-cart {
  /******************************************************************

  Stylesheet: Shop - Cart

  Styles for search result page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.woocommerce-cart .ct-inner-content {
  padding: 80px 8.3333333333vw 120px;
}
.woocommerce-cart a {
  color: #396c98;
}
.woocommerce-cart .wc-proceed-to-checkout {
  float: right;
}
.woocommerce-cart .cart .button,
.woocommerce-cart .checkout-button {
  color: #FFF !important;
  display: block;
  margin-right: 10px !important;
  background-color: #396c98 !important;
  padding: 15px !important;
}
.woocommerce-cart .cart .button::before,
.woocommerce-cart .checkout-button::before {
  display: none;
}
.woocommerce-cart .cart .button:hover,
.woocommerce-cart .checkout-button:hover {
  background-color: #2b5273 !important;
}
.woocommerce-cart .checkout-button {
  justify-content: flex-end;
}
.woocommerce-cart .coupon {
  align-items: center;
  justify-content: center;
  display: flex;
}
.woocommerce-cart .coupon input[type=text] {
  width: 200px !important;
  max-width: 50%;
}

.single-product {
  /******************************************************************

  Stylesheet: Shop - Product

  Styles for search result page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.single-product .product-wrapper {
  padding: 80px 8.3333333333vw;
}
@media (max-width: 600px) {
  .single-product .product-wrapper {
    padding-bottom: 0px;
  }
}
.single-product .variations_form {
  max-width: 400px;
}
.single-product .variations_form .variations tr {
  margin-bottom: 10px;
}
.single-product .variations_form .variations th {
  text-align: left;
}
@media (max-width: 1120px) {
  .single-product .summary {
    margin-bottom: 0;
  }
}
.single-product .summary .price {
  margin-top: 5px;
}
.single-product .summary .price span {
  font-size: 20px;
  font-weight: 400;
}
.single-product .variations {
  margin-top: 10px;
}
.single-product .single_add_to_cart_button {
  background-color: #396c98 !important;
  color: #FFF !important;
  margin-left: 20px;
  padding: 0 !important;
  display: block !important;
  border-radius: 5px;
  font-family: "Lato", sans-serif !important;
  letter-spacing: 0;
}
.single-product .single_add_to_cart_button::before {
  display: none;
}
.single-product .single_variation_wrap {
  width: 100%;
}
.single-product .single_variation_wrap > a {
  margin-bottom: 20px;
  display: block;
}
.single-product .product_meta {
  margin-top: 20px;
}
.single-product .product_meta span {
  font-size: 14px;
}
.single-product .product_meta span.posted_in {
  display: block;
}
.single-product .woocommerce-variation-price {
  padding-bottom: 20px;
}
.single-product .woocommerce-variation-price::before {
  display: block;
  content: "Product Variant Price: ";
  left: 0;
}
@media (max-width: 1120px) {
  .single-product .woocommerce-tabs {
    margin: 0 !important;
  }
}
.single-product .woocommerce-tabs .description_tab a {
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .single-product .woocommerce-tabs .description_tab a {
    padding: 10px;
  }
}
.single-product .oxy-related-products {
  margin-top: 30px;
}
@media (max-width: 1120px) {
  .single-product .oxy-related-products {
    margin-top: 0;
  }
}
.single-product .oxy-related-products h2 {
  margin-bottom: 10px;
}
.single-product .oxy-related-products .related.products .product a.add_to_cart_button,
.single-product .oxy-related-products .related.products .product a.product_type_variable {
  display: none;
}
.single-product .oxy-related-products .related.products .product img {
  margin-bottom: 0;
}
.single-product .oxy-related-products .related.products .product h2 {
  letter-spacing: 0;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li {
  border: 0 !important;
}
.single-product .comment-form input {
  color: #FFF !important;
}
.single-product .woocommerce-tabs {
  margin-top: 40px;
  margin-bottom: 40px;
}

.woocommerce,
.page-id-22767,
.page-id-24198 {
  /******************************************************************

  Stylesheet: Shop - Universal

  Styles for search result page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.woocommerce .oxy-mini-cart,
.page-id-22767 .oxy-mini-cart,
.page-id-24198 .oxy-mini-cart {
  justify-content: flex-end;
  align-self: flex-end;
}
.woocommerce .oxy-mini-cart .oxy-woo-mini-cart__icon,
.page-id-22767 .oxy-mini-cart .oxy-woo-mini-cart__icon,
.page-id-24198 .oxy-mini-cart .oxy-woo-mini-cart__icon {
  fill: #396c98;
}
.woocommerce .oxy-mini-cart .oxy-woo-mini-cart__items-count,
.page-id-22767 .oxy-mini-cart .oxy-woo-mini-cart__items-count,
.page-id-24198 .oxy-mini-cart .oxy-woo-mini-cart__items-count {
  color: #396c98;
}
.woocommerce .oxy-woo-mini-cart__flyout,
.page-id-22767 .oxy-woo-mini-cart__flyout,
.page-id-24198 .oxy-woo-mini-cart__flyout {
  max-width: 390px;
  border: 1px solid #ccc;
}
.woocommerce .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons,
.page-id-22767 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons,
.page-id-24198 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons {
  flex-direction: row;
}
.woocommerce .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a,
.page-id-22767 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a,
.page-id-24198 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a {
  display: block;
  color: #000000 !important;
  font-family: "Lato", sans-serif !important;
  letter-spacing: 0 !important;
  padding-right: 10px;
  font-weight: 700 !important;
  width: auto;
  margin-right: 10px !important;
  transition: 0.5s cubic-bezier(0.14, 0.73, 0.39, 0.89);
  font-size: 14px !important;
}
.woocommerce .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a::before,
.page-id-22767 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a::before,
.page-id-24198 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a::before {
  display: none;
}
.woocommerce .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a:hover,
.page-id-22767 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a:hover,
.page-id-24198 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart__buttons a:hover {
  color: #396c98 !important;
}
.woocommerce .oxy-woo-mini-cart__flyout .woocommerce-mini-cart-item a,
.page-id-22767 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart-item a,
.page-id-24198 .oxy-woo-mini-cart__flyout .woocommerce-mini-cart-item a {
  color: #396c98;
}
.woocommerce .woocommerce-notices-wrapper,
.page-id-22767 .woocommerce-notices-wrapper,
.page-id-24198 .woocommerce-notices-wrapper {
  margin-top: 20px;
}
.woocommerce .woocommerce-notices-wrapper a::before,
.page-id-22767 .woocommerce-notices-wrapper a::before,
.page-id-24198 .woocommerce-notices-wrapper a::before {
  display: none;
}

.woocommerce-checkout {
  /******************************************************************

  Stylesheet: Checkout

  Styles for search result page ONLY. If the styles will be used across the site,
  use the _base.scss file.

  ******************************************************************/
}
.woocommerce-checkout .ct-inner-content {
  padding: 80px 8.3333333333vw 120px;
}
.woocommerce-checkout #order_review_heading {
  margin-top: 40px;
}
.woocommerce-checkout #place_order {
  color: #FFF;
  background-color: #396c98 !important;
  padding: 15px !important;
  font-family: "Lato";
}
.woocommerce-checkout #place_order::before {
  display: none;
}
.woocommerce-checkout #place_order:hover {
  background-color: #2b5273 !important;
}

/*********************
PRINT STYLESHEET
*********************/
@media print {
  /******************************************************************

  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */