html {
  scroll-behavior: smooth;
}
html.dropdown-open {
  overflow: hidden;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --transition: all 300ms ease-in-out;
  --white: #ffffff;
  --black: #000000;
  --blue: #2355ad;
  --light-blue: #eef2f9;
}
*,
:after,
:before {
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0em;
  color: var(--black);
  background-color: var(--white);
}
/* Links
--------------------------------------------- */
a {
  color: var(--blue);
  text-decoration: none;
  outline: none;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

a:visited {
  outline: none;
}

a:hover,
a:focus,
a:active {
  outline: none;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
  outline: none;
}

/* Headings
--------------------------------------------- */

h1,
.h1 {
  font-weight: 600;
  font-size: 45px;
  line-height: 1.1;
  font-family: "Jost", sans-serif;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 1.1;
  color: #000000;
  font-family: "Jost", sans-serif;
}

h3,
.h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  font-family: "Jost", sans-serif;
}

h4,
.h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.1;
  font-family: "Jost", sans-serif;
}

h5,
.h5 {
  font-weight: 600;
  font-size: 23px;
  line-height: 29px;
}

h6,
.h6 {
  font-weight: 600;
  font-size: 19px;
  line-height: 24px;
}
p,
li {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 10px;
  color: var(--black);
}
p:last-child {
  margin-bottom: 0px;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
  margin-bottom: 0px;
}
strong {
}
p:has(> strong:only-child) {
  margin-bottom: 24px;
}

.container {
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}
section {
  clear: both;
  overflow: hidden;
  position: relative;
}

a.btn,
button,
input[type="submit"],
button[type="submit"] {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  gap: 8px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  background-color: var(--blue);
  color: var(--white) !important;
  border-radius: 5px;
  width: auto;
  text-align: center;
}
a.btn:hover,
button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: var(--black);
}
a.btn.white {
  background-color: var(--white);
  color: var(--blue) !important;
}
a.btn.white:hover {
  background-color: var(--black);
  color: var(--white) !important;
}
a.btn-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 19px;
  line-height: 27px;
  color: var(--black);
  font-family: "Jost", sans-serif;
  text-decoration: underline;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
a.btn-link span {
  display: flex;
  flex-shrink: 0;
  margin-left: 10px;
}
a.btn-link:hover {
  color: var(--blue);
  text-decoration: none;
}
a.btn-link:hover svg path {
  stroke: var(--blue);
}
a.btn-link svg path {
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.slick-arrow {
  display: flex;
  background-color: #f5f5f5;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.slick-arrow.slick-disabled {
  opacity: 60%;
}
ul.slick-dots {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
ul.slick-dots li {
  margin: 0px 5px;
}
ul.slick-dots button {
  height: 15px;
  width: 15px;
  background-color: var(--light-blue);
  font-size: 0;
  border: none;
  border-radius: 50%;
  padding: 0;
}
ul.slick-dots li.slick-active button {
  background-color: var(--blue);
}
.background_blue {
  background-color: var(--blue);
  color: var(--white);
}
.breadcrumb-wrapper a {
  color: var(--black);
}
.breadcrumb-wrapper a:hover {
  color: var(--blue);
}
.breadcrumb-wrapper:has(+ .home_banner_section),
.breadcrumb-wrapper:has(+ .landing_section) {
  position: absolute;
  z-index: 9;
  width: 100%;
  color: var(--white);
}
.breadcrumb-wrapper:has(+ .home_banner_section) a:not(:hover),
.breadcrumb-wrapper:has(+ .landing_section) a:not(:hover) {
  color: var(--white);
}

input:not(input[type="submit"], input[type="checkbox"], input[type="radio"]),
select,
textarea,
select,
textarea {
  height: 51px;
  border: 1px solid var(--black);
  border-radius: 5px;
  background-color: var(--white);
  padding: 12px 20px;
  font-size: 19px;
  line-height: 24px;
  color: var(--black);
  width: 100%;
}
textarea {
  height: auto;
  resize: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #c9c9c9;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #c9c9c9;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #c9c9c9;
  opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #c9c9c9;
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #c9c9c9;
  opacity: 1;
}
label {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 10px;
  display: flex;
  width: 100%;
}
input[type="checkbox"] {
  height: 21px;
  width: 21px;
  accent-color: var(--blue);
  overflow: hidden;
  flex-shrink: 0;
}
.section-title {
  width: 100%;
  text-align: center;
}
ul.slick-dots:has(li:only-child) {
  display: none !important;
}
/*-------------------Header-------------------*/

.header-top {
  background-color: var(--blue);
  color: var(--white);
  padding: 10px;
  text-align: center;
}
.header-top * {
  color: var(--white);
}
.header-top .row {
  justify-content: center;
  align-items: center;
}
.site-branding,
.site-branding * {
  display: flex;
}
.header-bottom .row {
  justify-content: start;
}
.header-bottom {
    padding: 20px 0;
    background: var(--white);
}
.header-top a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.header-top a:hover {
  text-decoration: none;
}
.header-right {
  margin-left: auto;
}
.site-header {
  border-bottom: 1px solid #c9c9c9;
}
.breadcrumb-wrapper {
  padding: 25px 0px;
  font-size: 13px;
  line-height: 16px;
}
.site-branding img.custom-logo {
  max-width: 215px;
}
.site-header .main-navigation a {
  color: var(--black);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.site-header .main-navigation a:hover {
  color: var(--blue);
}
.site-header .main-navigation li {
  margin: 0px 20px;
}
.header-bottom .row > div {
  display: flex;
  align-items: center;
}
.main-navigation {
  display: block;
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

body:not(.phase-results) .site-header .main-navigation li.comming-soon a {
  color: #c9c9c9;
}
.site-header .main-navigation li.comming-soon:after {
  /*content: "comming soon";*/
  position: absolute;
  font-weight: 600;
  font-size: 9px;
  line-height: 11px;
  color: var(--white);
  background-color: var(--blue);
  padding: 2px 5px;
  word-break: keep-all;
  white-space: nowrap;
  border-radius: 5px;
  top: -17px;
  left: auto;
  right: -35%;
  text-transform: uppercase;
}
.site-header .main-navigation li.comming-soon span {
  position: absolute;
  font-weight: 600;
  font-size: 9px;
  line-height: 11px;
  color: var(--white);
  background-color: var(--blue);
  padding: 2px 5px;
  word-break: keep-all;
  white-space: nowrap;
  border-radius: 5px;
  top: -17px;
  left: auto;
  right: -30px;
  text-transform: uppercase;
}
body.phase-results .site-header .main-navigation li.comming-soon span {
  display: none;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-icon .line {
  width: 25px;
  height: 2px;
  background-color: var(--blue);
  border-radius: 1.89389px;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  border-radius: 50px;
}
.menu-toggle .menu-icon {
  overflow: hidden;
  cursor: pointer;
  width: 25px;
}
.menu-toggle span.line:nth-child(1) {
  rotate: 0deg;
  top: 0;
}
.menu-toggle.active span.line:nth-child(1) {
  top: 8px;
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.menu-toggle span.line:nth-child(2) {
  transform: translateX(0%);
}
.menu-toggle.active span.line:nth-child(2) {
  transform: translateX(-101%);
}
.menu-toggle span.line:nth-child(3) {
  rotate: 0deg;
  top: 0;
}
.menu-toggle.active span.line:nth-child(3) {
  top: -8px;
  -ms-transform: rotateZ(-45deg);
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
.menu-toggle.active {
  position: absolute;
  z-index: 999;
  top: 50px;
  right: 30px;
}

.site-header.sticky {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.4s;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 10px rgb(0 0 0 / 25%);
  -webkit-font-smoothing: antialiased;
  animation: 0.9s ease 0s normal both 1 running fixedAnim;
  background: var(--white);
}
body.admin-bar .site-header.sticky {
  top: 32px;
}
body.admin-bar .site-header.sticky .header-top {
  display: none;
}
.site-header.sticky .header-bottom {
  padding: 15px 0;
}
/*-------------------Header-End-------------------*/

/*-------------------Footer-------------------*/

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url(../images/footer-social-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 62px 0px;
}
.footer-social .row {
  flex-direction: column;
}
.footer-social a.social-link {
  display: inline-flex;
  height: 45px;
  width: 45px;
  align-items: center;
  justify-content: center;
  margin: 0px 15px;
}
.footer-social .social-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social h2 {
  margin-bottom: 30px;
  color: var(--blue);
}
.footer-main {
  background-color: var(--blue);
  color: var(--white);
}
.footer-main *,
.footer-main a {
  color: var(--white);
}
.footer-CTA {
  padding: 25px 0px;
}
.footer-CTA .row {
  align-items: center;
  justify-content: center;
}
.CTA-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.CTA-wrapper > * {
  margin: 0;
  text-align: center;
}
.CTA-wrapper a {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  padding: 5px 15px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  margin: 0px 20px;
}
.CTA-wrapper a:hover {
  border-color: var(--black);
  color: var(--black);
}
.footer-main .row {
  flex-direction: column;
}
.footer-top {
  border-bottom: 1px solid #b8b8b8;
  padding: 43px 0px 36px;
}
.footer-links {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
}
.footer-links ul li {
  margin: 12px 28px;
}
.footer-bottom {
  padding: 40px 0px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-bottom-inner > div {
  padding: 0 15px;
  text-align: center;
}
.footer-social a.social-link svg path {
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.footer-social a.social-link:hover svg path {
  fill: var(--black);
}
.footer-main a:hover {
  opacity: 70%;
}
.error-404.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 62px 0px;
}
.error-404.not-found .content {
  width: 100%;
}
.error-404.not-found p {
  margin-bottom: 20px;
}
.site:has(.error-404) .breadcrumb-wrapper {
  display: none;
}
/*-------------------Footer-End-------------------*/

.default-content {
    margin-top: 30px;
    margin-bottom: 50px;
}
.default-content p + h1, 
.default-content p + h2, 
.default-content p + h3, 
.default-content p + h4, 
.default-content p + h5, 
.default-content p + h6 {
    margin-top: 30px;
}
.default-content ul,
.default-content ol{
	margin: 20px 0px 20px 20px;
}
.default-content ul, 
.default-content ul li{
	list-style:disc;
}
.default-content ol, 
.default-content ol li{
	list-style:auto;
}
/*-popup-*/
.country-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}
.country-popup .popup-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: 40%;
}
.country-popup .popup-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: #ffffff;
    padding: 50px;
    max-width: 80%;
    max-height: 80%;
}
.country-popup .country-options {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    align-items: start;
    justify-content: center;
}
.country-popup .popup-content a.country-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    max-width: initial;
    padding: 15px 0px;
}
.country-popup-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 30px 15px;
}
.country-popup .popup-content .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    background: #eef2f9;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    font-weight: 500;
	cursor:pointer;
}
.country-popup .popup-content .popup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
}
.country-popup .popup-content .popup-header h2 {
    margin-bottom: 10px;
}
.country-popup .popup-content a.country-btn .country-name {
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 21px;
    color: var(--black);
}
.country-popup .popup-content a.country-btn img.country-icon {
    max-width: 100px;
    margin: auto;
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
}
/*------------------Responsive-------------------*/

@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .main-navigation .menu-toggle {
    display: none;
  }
	.header-top .mobile-cta {
		display: none;
	}
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1371px) {
  .container {
    max-width: 1340px;
  }
  .header-center {
    padding-left: 35px;
  }
}

/*-*/

@media only screen and (max-width: 1370px) {
  .site-header .main-navigation li {
    margin: 0px 10px;
  }
  .site-header .main-navigation li.comming-soon:after {
    right: -30%;
  }
}
@media only screen and (max-width: 1199px) {
  .site-header .main-navigation li {
    margin: 0px 15px;
  }
  ,
  .site-header .main-navigation li.comming-soon span,
  .site-header .main-navigation li.comming-soon:after {
    right: -25%;
  }
  ,
  .site-header .main-navigation li.comming-soon:last-child span,
  .site-header .main-navigation li.comming-soon:last-child:after {
    right: -60%;
  }
  .site-branding img.custom-logo {
    max-width: 115px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .site-header .main-navigation a {
    font-size: 14px;
  }
  .site-header .main-navigation li {
    margin: 0px 10px;
  }
  .site-header a.btn {
    padding: 8px 10px;
  }
}
@media only screen and (max-width: 991px) {
	.header-top  .desktop-cta {
		display: none;
	}
  h3,
  .h3 {
    line-height: 33px;
  }
  .menu-toggle + div.navigation-wrapper {
    padding: 16px;
    position: fixed;
    right: 0;
    left: auto;
    height: calc((var(--vh, 1vh) * 100));
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: 99;
    min-width: 320px;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    background: var(--white);
    padding-right: 10px;
    padding-top: 100px;
    max-width: 300px;
  }
  .menu-toggle + div.navigation-wrapper.open {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .main-navigation .menu-toggle + div ul.menu {
    flex-direction: column;
    height: 100%;
    overflow-x: auto;
    align-items: start;
    justify-content: start;
    padding-right: 6px;
  }
  .main-navigation .menu-toggle + div ul.menu::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
  }
  .main-navigation .menu-toggle + div ul.menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.menu-item-has-children .icon svg path {
    fill: var(--black);
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.menu-item-has-children a:hover + .icon svg path,
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.menu-item-has-children .icon:hover svg path,
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.menu-item-has-children.open .icon svg path,
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.current_page_item .icon svg path {
    fill: var(--brown);
  }
  .main-navigation ul li a {
    color: var(--black);
    font-size: 18px;
    line-height: 18px;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.menu-item-has-children {
    padding-right: 30px;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.menu-item-has-children .icon {
    font-size: 30px;
    position: static;
    display: inline-flex;
    margin-left: 10px;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li > ul.sub-menu {
    position: static;
    padding: 0;
    background: transparent;
    border-radius: 0;
    padding-top: 10px;
    width: 100%;
    box-shadow: none;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li > ul.sub-menu li:not(:last-child) {
    border-bottom: none;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li > ul.sub-menu a {
    padding: 12px 0px;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li {
    padding: 5px 0px;
    margin: 0;
    margin-bottom: 10px;
  }
  .main-navigation ul .btn > a {
    min-width: 217px;
  }
	.site-header .main-navigation a.btn {
		padding: 8px 10px;
	}
  .menu-toggle + div.navigation-wrapper .social-link svg path {
    fill: var(--blue);
  }
  .header-bottom .row {
    justify-content: space-between;
  }
  .header-bottom .row > div.header-right {
    display: none;
  }
  .main-navigation .menu-toggle + .navigation-wrapper > div > ul > li.comming-soon {
    display: flex;
    align-items: start;
    gap: 10px;
  }
	.site-header .main-navigation li.comming-soon span,
  .site-header .main-navigation li.comming-soon:after {
      position: static;
    margin-inline-start: 10px;
  }
  .CTA-wrapper {
    flex-direction: column;
  }
  .CTA-wrapper h5 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 40px;
    line-height: 60px;
  }

  h2,
  .h2 {
    font-size: 32px;
    line-height: 42px;
  }

  h3,
  .h3 {
    font-size: 28px;
    line-height: 36px;
  }

  h4,
  .h4 {
    font-size: 22px;
    line-height: 30px;
  }

  h5,
  .h5 {
    font-size: 20px;
    line-height: 26px;
  }
  p,
  h6,
  .h6,
  label,
  li {
    font-size: 16px;
    line-height: 22px;
  }
  label {
    font-weight: 700;
  }
	input:not(input[type="submit"], input[type="checkbox"], input[type="radio"]), select, textarea, select, textarea {
		font-size: 14px;
		line-height: 20px;
	}
  .site-branding img.custom-logo {
    max-width: 100px;
  }
  .header-cta, .header-cta p{
    font-size: 13px;
    line-height: 1.3;
  }
  .footer-bottom-inner {
    flex-direction: column;
  }
  .footer-bottom-inner .site-info {
    margin-bottom: 15px;
  }
  .footer-links ul li {
    margin: 10px 20px;
  }
  .footer-social {
    padding: 40px 0px;
  }
  .footer-social a.social-link {
    margin: 0px 10px;
  }
  .footer-social a.social-link svg {
    height: 30px;
    width: 30px;
  }
  .footer-social h2 {
    margin-bottom: 15px;
  }
}


@media only screen and (max-width: 600px) {
	body.admin-bar .site-header.sticky {
	  top: 0px;
	}
}
@media only screen and (max-width: 575px) {
  h1,
  .h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h2,
  .h2 {
    font-size: 26px;
    line-height: 34px;
  }

  h3,
  .h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4,
  .h4 {
    font-size: 21px;
    line-height: 28px;
  }

  h5,
  .h5 {
    font-size: 19px;
    line-height: 24px;
  }
	.breadcrumb-wrapper {
		font-size: 11px;
		padding: 20px 0px;
	}
  .CTA-wrapper a {
    font-size: 17px;
    padding: 5px 10px;
    word-break: break-word;
  }
}
