/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

header {
  background-color: white;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  z-index: 500;
  position: sticky;
  top: 0;
}

header .custom-logo {
  height: 88px;
  flex-shrink: 0;
}

header .custom-logo-link {
  flex-shrink: 0;
}

header .header-main {
  padding-block: 26px;
}

header .header-main .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (min-width: 1200px) {
  header .header-main .container {
    gap: 5vw;
  }
}
@media (min-width: 1201px) {
  header .header-main .container .hamburger {
    display: none;
  }
}
header .header-main .container .menu-primary-menu-container {
  width: 100%;
}

header .header-main .container .main-nav {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  list-style: none;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  header .header-main .container .main-nav {
    display: none;
  }
}
header .header-main .container .main-nav .sub-menu {
  position: absolute;
  top: 100%;
  z-index: 150;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25);
  padding: 15px 25px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

header .header-main .container .main-nav .sub-menu a {
  font-size: 1rem;
  line-height: 1.2;
}

header .header-main .container .main-nav a {
  text-decoration: none;
  color: #1D4F91;
  font-size: 1.1111111111rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

header .header-main .container .main-nav span.toggler {
  display: inline-block;
}

header .header-main .container .main-nav span.toggler svg {
  transition: all 0.3s ease-in-out;
}

header .header-main .container .main-nav li {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  position: relative;
}

header .header-main .container .main-nav li.mobile-only {
  display: none;
}

header .header-main .container .main-nav li.current-menu-ancestor a, header .header-main .container .main-nav li.current-menu-item a, header .header-main .container .main-nav li:hover a {
  color: #0094EA;
}

header .header-main .container .main-nav li.current-menu-ancestor span.toggler svg, header .header-main .container .main-nav li.current-menu-item span.toggler svg, header .header-main .container .main-nav li:hover span.toggler svg {
  transform: scale(-1, -1);
}

header .header-main .container .main-nav li.current-menu-ancestor span.toggler svg path, header .header-main .container .main-nav li.current-menu-item span.toggler svg path, header .header-main .container .main-nav li:hover span.toggler svg path {
  stroke: #0094EA;
}

header .header-main .container .main-nav li:hover .sub-menu {
  opacity: 1;
  height: auto;
  max-height: 500px;
}

@media (min-width: 769px) {
  header .header-main {
    padding-block: 21px 24px;
  }
  header .header-main .custom-logo {
    height: 105px;
  }
}
header .header-top-bar {
  background-color: #1D4F91;
  padding-block: 12px;
}

header .header-top-bar ul {
  list-style: none;
  padding: 0;
}

header .header-top-bar ul a {
  font-size: 0.8888888889rem;
}

@media (max-width: 767px) {
  header .header-top-bar ul {
    display: none;
  }
}
header .header-top-bar .container {
  display: flex;
  gap: 58px;
  justify-content: flex-end;
  align-items: center;
}

header .header-top-bar .container a {
  color: white;
  text-decoration: none;
}

header .header-top-bar .font-changer {
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  header .header-top-bar .font-changer {
    display: none;
  }
}
header .header-top-bar .font-changer .controls {
  display: inline-flex;
  flex-direction: row;
  margin-left: 11px;
  height: 27px;
}

header .header-top-bar .font-changer button {
  border: none;
  background: white;
  color: #0094EA;
  font-weight: bold;
  padding: 0 14px;
  cursor: pointer;
}

header .header-top-bar .font-changer button:first-child {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-right: 1px solid #CCEFFC;
  padding-right: 11px;
}

header .header-top-bar .font-changer button:last-child {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

header .search-wrapper {
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  padding: 0 15px 0 0;
}

header .search-wrapper form > div {
  display: flex;
  align-items: center;
}

header .search-wrapper #s {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: none;
  width: 4.3333333333rem;
  font-size: 1rem;
  color: white;
}

@media (max-width: 767px) {
  header .search-wrapper #s {
    width: 0;
  }
}
header .search-wrapper #s::placeholder {
  color: white;
}

header .search-wrapper #s:focus {
  outline: none;
}

header .search-wrapper #searchsubmit {
  text-indent: -5000px;
  background-color: transparent;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='18' viewBox='0 0 17 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9897 12.57L14.4498 14.95M13.6565 8.60332C13.6565 11.6703 11.1702 14.1567 8.10314 14.1567C5.03612 14.1567 2.5498 11.6703 2.5498 8.60332C2.5498 5.5363 5.03612 3.04999 8.10314 3.04999C11.1702 3.04999 13.6565 5.5363 13.6565 8.60332Z' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

header .search-wrapper:hover, header .search-wrapper:has(:focus-within) {
  border: 1px solid #1D4F91;
  border-radius: 50px;
  background-color: white;
  padding: 0 15px;
}

header .search-wrapper:hover #searchsubmit, header .search-wrapper:has(:focus-within) #searchsubmit {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.9908 11.0698L13.4508 13.4498M12.6568 7.1031C12.6568 10.1702 10.1708 12.6565 7.10378 12.6565C4.03678 12.6565 1.55078 10.1702 1.55078 7.1031C1.55078 4.0361 4.03678 1.5498 7.10378 1.5498C10.1708 1.5498 12.6568 4.0361 12.6568 7.1031Z' stroke='%230094EA' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

header .search-wrapper:hover #s, header .search-wrapper:has(:focus-within) #s {
  width: 126px;
  color: black;
}

header .search-wrapper:hover #s::placeholder, header .search-wrapper:has(:focus-within) #s::placeholder {
  color: #E0E0E0;
}

body.show-menu {
  overflow: hidden;
}

body.show-menu .mobile-menu-container {
  z-index: 1500;
  height: calc(100% - 204px);
  background-color: #F5F5F5;
  position: fixed;
  top: 204px;
  width: 100%;
  overflow-y: auto;
  padding-inline: 34px;
}

body.show-menu .mobile-menu-container > ul {
  list-style: none;
  padding: 0;
}

body.show-menu .mobile-menu-container > ul > li {
  padding: 26px 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  body.show-menu .mobile-menu-container > ul > li.mobile-only {
    display: none;
  }
}
body.show-menu .mobile-menu-container > ul > li:not(:last-child) {
  border-bottom: 1px solid #0094EA;
}

body.show-menu .mobile-menu-container > ul span.toggler {
  height: 100%;
  cursor: pointer;
  width: 50px;
  padding-block: 9px;
  display: inline-flex;
  justify-content: flex-end;
}

body.show-menu .mobile-menu-container a {
  color: #1D4F91;
  font-weight: 500;
  font-size: 1.1111111111rem;
  text-decoration: none;
}

body.show-menu .mobile-menu-container ul.sub-menu {
  flex-basis: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

body.show-menu .mobile-menu-container ul.sub-menu li {
  padding: 0;
}

body.show-menu .mobile-menu-container ul.sub-menu a {
  font-weight: 400;
  font-size: 1rem;
}

body.show-menu .mobile-menu-container li.expanded ul.sub-menu {
  max-height: 500px;
  padding: 18px 0 0;
}

@media (max-width: 767px) {
  body.show-menu .mobile-menu-container {
    top: 194px;
    height: calc(100% - 194px);
  }
}
footer {
  background-color: #1D4F91;
  color: white;
  padding-top: 12.7777777778rem;
  padding-bottom: 4.1111111111rem;
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}
@media (min-width: 769px) {
  footer {
    padding-top: 10.2777777778rem;
  }
}
footer .container {
  max-width: 1190px;
}

footer p {
  color: white;
  line-height: 1.3888888889rem;
}

footer .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4392156863);
  padding-bottom: 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.4444444444rem;
}

@media (min-width: 769px) {
  footer .footer-top {
    flex-direction: row;
  }
}
footer .footer-top > div {
  flex: 1 1 0;
}

footer .footer-top .footer-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

@media (min-width: 769px) {
  footer .footer-top .footer-about {
    align-items: flex-start;
  }
}
footer .footer-top .footer-about img {
  height: 80px;
}

footer .footer-top .footer-about p {
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 769px) {
  footer .footer-top .footer-about p {
    text-align: left;
  }
}
footer .footer-top .social-links {
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  gap: 33px;
  padding: 0;
}

footer .footer-top .social-links-block h3 {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (min-width: 769px) {
  footer .footer-top .social-links-block h3 {
    font-size: 1.2222222222rem;
  }
}
footer .footer-top .footer_company_address {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  font-weight: 700;
}

footer .footer-top .footer-links h4 {
  font-size: 1rem;
  line-height: 1.3888888889rem;
  font-weight: 700;
  margin-bottom: 15px;
}

footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
}

@media (min-width: 769px) {
  footer .footer-top .footer-links ul {
    columns: 2;
  }
}
footer .footer-top .footer-links ul li {
  margin-bottom: 15px;
}

footer .footer-top .footer-links ul a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.3888888889rem;
  font-weight: 400;
}

footer .footer-top .footer-links ul li:hover a {
  text-decoration: underline;
}

footer .footer-bottom {
  padding-top: 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 769px) {
  footer .footer-bottom {
    flex-direction: row;
  }
}
footer .footer-bottom p {
  margin-bottom: 0;
  white-space: nowrap;
}

footer .footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 769px) {
  footer .footer-bottom ul {
    flex-direction: row;
  }
}
footer .footer-bottom ul li {
  padding-left: 12px;
  line-height: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

footer .footer-bottom ul li:not(:last-child) {
  padding: 0 12px;
  border-right: 1px solid white;
}

footer .footer-bottom ul a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

footer .footer-bottom ul li:hover a {
  text-decoration: underline;
}

:root {
  --root-font-size: 18px;
}

html {
  font-size: var(--root-font-size);
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "proxima-nova", sans-serif;
}

main {
  flex: 1;
}

.heading-h1 {
  font-size: 2.1111111111rem;
  line-height: 2.7777777778rem;
  font-weight: bold;
  color: #1D4F91;
}

@media (min-width: 769px) {
  .heading-h1 {
    font-size: 3rem;
    line-height: 3.6111111111rem;
  }
}
.heading-h2 {
  font-size: 1.7777777778rem;
  line-height: 3.0555555556rem;
  font-weight: bold;
  color: #1D4F91;
}

@media (min-width: 769px) {
  .heading-h2 {
    font-size: 2.5rem;
  }
}
.heading-h3 {
  font-size: 1.5555555556rem;
  line-height: 2.2222222222rem;
  font-weight: 500;
  color: #1D4F91;
  text-decoration: none;
}

@media (min-width: 769px) {
  .heading-h3 {
    font-size: 1.9444444444rem;
    line-height: 2.5rem;
  }
}
p {
  color: black;
  font-size: 1rem;
  line-height: 1.5555555556rem;
  margin-bottom: 1.1111111111rem;
}

@media (min-width: 769px) {
  p {
    font-size: 1.1111111111rem;
    line-height: 1.6666666667rem;
  }
}
.intro p {
  font-size: 1.2222222222rem;
  line-height: 1.7777777778rem;
}

@media (min-width: 769px) {
  .intro p {
    font-size: 1.5555555556rem;
    line-height: 2.2222222222rem;
  }
}
.subtitle {
  font-size: 1.3333333333rem;
  line-height: 1.8888888889rem;
  font-style: normal;
  font-weight: 600;
  color: #0094EA;
}

@media (min-width: 769px) {
  .subtitle {
    font-size: 1.9444444444rem;
    line-height: 2.5rem;
  }
}
.home .subtitle {
  font-style: italic;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #0094EA;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #0094EA;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.gform-theme .gform-abodecp .gform_fields {
  row-gap: 1rem;
}

@media (min-width: 1025px) {
  .gform-theme .gform-abodecp .gform_fields {
    row-gap: 30px;
  }
}
.gform-theme .gform-abodecp .gform_fields .gform-grid-row {
  row-gap: 1rem;
}

@media (min-width: 1025px) {
  .gform-theme .gform-abodecp .gform_fields .gform-grid-row {
    row-gap: 30px;
  }
}
.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container select {
  outline: none;
  border: 2px solid #0094EA;
  border-radius: 64px;
  padding: 13px 38px;
  font-weight: 400;
  font-size: 1.1111111111rem;
  line-height: 100%;
  letter-spacing: 0;
  color: #1D4F91;
  height: auto;
}

.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container select option[selected] {
  background-color: #CCEFFC;
  text-decoration: underline;
}

.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container select option {
  border: 2px solid #0094EA;
}

.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container textarea,
.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container input {
  outline: none;
  border: 2px solid #0094EA;
  border-radius: 64px;
  padding: 8.5px 38px;
  font-weight: 400;
  font-size: 1.1111111111rem;
  line-height: 100%;
  letter-spacing: 0;
  color: #1D4F91;
  height: auto;
}

.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container textarea::placeholder,
.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container input::placeholder {
  color: #A7A8A9;
}

.gform-theme .gform-abodecp .gform_fields .gfield .ginput_container textarea {
  border-radius: 10px;
}

.gform-theme .gform-abodecp .gform_fields select {
  border: 2px solid #0094EA;
}

.gform-theme .gform-abodecp div.gform-footer {
  justify-content: center;
  margin-top: 40px;
}

.gform-theme .gform-abodecp div.gform-footer input[type=submit].gform_button.button {
  display: inline-block;
  border: 2px solid #1D4F91;
  border-radius: 25px;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  color: #1D4F91;
  background-color: #fff;
  transition: 0.3s;
  cursor: pointer;
  background-color: transparent;
  align-self: baseline;
}

.gform-theme .gform-abodecp div.gform-footer input[type=submit].gform_button.button:hover {
  background-color: #1D4F91;
  color: #FFFFFF;
}

.gform-theme .gform_confirmation_message,
.gform-theme .form-text-bold {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5555555556rem;
  letter-spacing: 0;
  margin-top: 7px;
  margin-bottom: 7px;
}

@media (min-width: 769px) {
  .gform-theme .gform_confirmation_message,
  .gform-theme .form-text-bold {
    font-size: 1.1111111111rem;
    line-height: 1.6666666667rem;
  }
}
.gform-theme .gfield_label {
  display: none !important;
}

.template-contact-us .hero-section-cus {
  min-height: 450px;
}

@media (min-width: 769px) {
  .template-contact-us .hero-section-cus {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 73px;
    padding-bottom: 73px;
  }
}
.template-contact-us .hero-section-cus .mobile-image img {
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .template-contact-us .hero-section-cus .mobile-image {
    display: none;
  }
}
.template-contact-us .hero-section-cus .inner-wrapper {
  background-color: #FFFFFF;
}

@media (min-width: 769px) {
  .template-contact-us .hero-section-cus .inner-wrapper {
    background-color: transparent;
  }
}
.template-contact-us .hero-section-cus .text {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1025px) {
  .template-contact-us .hero-section-cus .text {
    max-width: 55%;
    width: 100%;
  }
}
.template-contact-us .hero-section-cus .top-info {
  padding-top: 50px;
}

@media (min-width: 1025px) {
  .template-contact-us .hero-section-cus .top-info {
    padding-top: 0;
  }
}
.template-contact-us .hero-section-cus .title {
  font-weight: 700;
  font-size: 2.1111111111rem;
  line-height: 2.7777777778rem;
  letter-spacing: 0;
  vertical-align: middle;
  color: #1D4F91;
  margin-bottom: 35px;
}

@media (min-width: 1025px) {
  .template-contact-us .hero-section-cus .title {
    font-size: 3rem;
    line-height: 3.6111111111rem;
    margin-bottom: 27px;
  }
}
.template-contact-us .hero-section-cus .text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5555555556rem;
  letter-spacing: 0;
  vertical-align: middle;
  color: #1D4F91;
  margin-bottom: 43px;
}

@media (min-width: 1025px) {
  .template-contact-us .hero-section-cus .text {
    font-size: 1.5555555556rem;
    line-height: 2.2222222222rem;
    margin-bottom: 43px;
  }
}
.template-contact-us .hero-section-cus .btn-main-wrapper {
  background-color: #CCEFFC;
}

@media (min-width: 769px) {
  .template-contact-us .hero-section-cus .btn-main-wrapper {
    background-color: transparent;
  }
}
.template-contact-us .hero-section-cus .btn-wrapper {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 769px) {
  .template-contact-us .hero-section-cus .btn-wrapper {
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.template-contact-us .hero-section-cus .link {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  background-color: #1D4F91;
  border-radius: 64px;
  padding: 10px 70px;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
}

.template-contact-us .hero-section-cus .link svg {
  flex-shrink: 0;
}

.template-contact-us .form-main-wrapper {
  padding-top: 100px;
  padding-bottom: 70px;
  background-color: #FFFFFF;
}

.template-contact-us .form-main-wrapper .form-container {
  max-width: 750px;
  margin: 0 auto;
}

.template-contact-us .form-main-wrapper .form-container .top-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 50px;
}

.template-contact-us .form-main-wrapper .form-container .title {
  font-weight: 700;
  font-size: 1.7777777778rem;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1D4F91;
}

@media (min-width: 769px) {
  .template-contact-us .form-main-wrapper .form-container .title {
    font-size: 2.5rem;
    line-height: 3.0555555556rem;
  }
}
.template-contact-us .form-main-wrapper .form-container .description {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5555555556rem;
  letter-spacing: 0;
  text-align: center;
}

@media (min-width: 769px) {
  .template-contact-us .form-main-wrapper .form-container .description {
    font-size: 1.1111111111rem;
    line-height: 1.6666666667rem;
  }
}
.page-template-template-text section.text-header {
  height: 259px;
}

.page-template-template-text section.text-header .breadcrumbs {
  color: #1D4F91;
  font-size: 0.8888888889rem;
  font-weight: 400;
  margin-top: 33px;
}

@media (min-width: 769px) {
  .page-template-template-text section.text-header .breadcrumbs {
    font-size: 1rem;
  }
}
.page-template-template-text section.text-header .breadcrumbs a {
  text-decoration: none;
  color: #1D4F91;
}

.page-template-template-text section.text-header .breadcrumbs span {
  font-weight: 700;
}

.page-template-template-text section.text-header .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.page-template-template-text section.text-header h1 {
  font-size: 2.1111111111rem;
  color: #1D4F91;
  font-weight: 700;
  line-height: 2.7777777778rem;
  margin-bottom: 65px;
}

@media (min-width: 769px) {
  .page-template-template-text section.text-header h1 {
    font-size: 3rem;
    line-height: 3.6111111111rem;
  }
}
.page-template-template-text section.content {
  background-color: white;
  padding-block: 68px;
}

@media (min-width: 769px) {
  .page-template-template-text section.content {
    padding-block: 86px;
  }
}
.page-template-template-text section.content h2 {
  color: #1D4F91;
  font-weight: 700;
  font-size: 1.7777777778rem;
  margin-bottom: 35px;
}

@media (min-width: 769px) {
  .page-template-template-text section.content h2 {
    font-size: 2.5rem;
    line-height: 3.0555555556rem;
  }
}
.page-template-template-text section.content p {
  color: black;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

@media (min-width: 769px) {
  .page-template-template-text section.content p {
    font-size: 1.1111111111rem;
  }
}
.page-template-template-text section.content a {
  color: #0094EA;
  font-weight: 700;
}

.page-template-template-text section.content ul {
  padding: 0;
  margin-bottom: 2.5rem;
}

.page-template-template-text section.content li {
  font-size: 1rem;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.9rem;
}

@media (min-width: 769px) {
  .page-template-template-text section.content li {
    font-size: 1.1111111111rem;
  }
}
.page-template-template-text section.content li::before {
  content: "";
  border-radius: 50%;
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  background-color: #0094EA;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.page-template-template-text section.content li ul {
  margin-bottom: 0;
}

.page-template-template-text section.content li ul li {
  margin-top: 1rem;
}

.page-template-template-text section.content li ul li::before {
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  background-color: white;
  border: 1px solid #0094EA;
}

.search-no-results section.search-header,
.search-results section.search-header {
  height: 259px;
}

.search-no-results section.search-header .title-container,
.search-results section.search-header .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.search-no-results section.search-header h1,
.search-results section.search-header h1 {
  font-size: 2.1111111111rem;
  color: #1D4F91;
  font-weight: 700;
  line-height: 2.7777777778rem;
}

@media (min-width: 769px) {
  .search-no-results section.search-header h1,
  .search-results section.search-header h1 {
    font-size: 3rem;
    line-height: 3.6111111111rem;
  }
}
.search-no-results section.content,
.search-results section.content {
  background-color: white;
  padding-block: 68px;
}

@media (min-width: 769px) {
  .search-no-results section.content,
  .search-results section.content {
    padding-block: 86px;
  }
}
.search-no-results section.content h1.nothing-found,
.search-results section.content h1.nothing-found {
  font-weight: 700;
  font-size: 1.7777777778rem;
  line-height: 100%;
  letter-spacing: 0;
  color: #1D4F91;
}

@media (min-width: 769px) {
  .search-no-results section.content h1.nothing-found,
  .search-results section.content h1.nothing-found {
    font-size: 2.5rem;
    line-height: 3.0555555556rem;
  }
}
.search-no-results section.content a.link,
.search-results section.content a.link {
  display: inline-block;
  gap: 20px;
  font-weight: 700;
  font-size: 1.1111111111rem;
  line-height: 100%;
  letter-spacing: 0;
  text-decoration: none;
  color: #1D4F91;
  margin-bottom: 26px;
  transition: 0.3s;
}

.search-no-results section.content a.link:after,
.search-results section.content a.link:after {
  content: url(../../assets/images/arrow-right.svg);
  vertical-align: middle;
  transition: 0.3s;
  margin-left: 8px;
}

.search-no-results-form,
.search-results-form {
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 800px;
  margin-bottom: 70px;
}

.search-no-results-form input[type=search],
.search-results-form input[type=search] {
  border: 2px solid #0094EA;
  border-radius: 100px;
  padding: 11px 38px;
  width: 100%;
}

.search-no-results-form input[type=submit],
.search-results-form input[type=submit] {
  display: inline-block;
  border: 2px solid #1D4F91;
  border-radius: 25px;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  color: #1D4F91;
  background-color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

.search-no-results-form input[type=submit]:hover,
.search-results-form input[type=submit]:hover {
  background-color: #1D4F91;
  color: #FFFFFF;
}

.search-no-results-element h2,
.search-results-element h2 {
  color: #0094EA;
  font-size: 2.1111111111rem;
  margin-bottom: 35px;
}

@media (min-width: 769px) {
  .search-no-results-element h2,
  .search-results-element h2 {
    font-size: 3.0555555556rem;
  }
}
.search-no-results-element h2 a,
.search-results-element h2 a {
  color: #0094EA;
  text-decoration: none;
}

.search-no-results .pagination,
.search-results .pagination {
  font-size: 1.1111111111rem;
  font-weight: 700;
  margin-top: 50px;
}

.search-no-results .pagination .nav-links,
.search-results .pagination .nav-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.search-no-results .pagination .nav-links span.current,
.search-results .pagination .nav-links span.current {
  color: #0094EA;
}

.search-no-results .pagination .nav-links a,
.search-results .pagination .nav-links a {
  text-decoration: none;
  color: #9D9D9D;
}

.single section.text-header,
.single-resources section.text-header {
  min-height: 450px;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 450px;
}

.single section.text-header .breadcrumbs,
.single-resources section.text-header .breadcrumbs {
  color: #1D4F91;
  font-size: 0.8888888889rem;
  font-weight: 400;
  margin-top: 15px;
}

@media (min-width: 769px) {
  .single section.text-header .breadcrumbs,
  .single-resources section.text-header .breadcrumbs {
    font-size: 1rem;
  }
}
.single section.text-header .breadcrumbs a,
.single-resources section.text-header .breadcrumbs a {
  text-decoration: none;
  color: #1D4F91;
}

.single section.text-header .breadcrumbs span,
.single-resources section.text-header .breadcrumbs span {
  font-weight: 700;
}

.single section.text-header .title-container,
.single-resources section.text-header .title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 35px;
}

.single section.text-header h1,
.single-resources section.text-header h1 {
  font-size: 2.1111111111rem;
  color: #1D4F91;
  font-weight: 700;
  line-height: 2.7777777778rem;
}

@media (min-width: 769px) {
  .single section.text-header h1,
  .single-resources section.text-header h1 {
    font-size: 3rem;
    line-height: 3.6111111111rem;
  }
}
.single section.text-header .post-date,
.single section.text-header .post-author,
.single-resources section.text-header .post-date,
.single-resources section.text-header .post-author {
  font-weight: 600;
  font-size: 1.3333333333rem;
  line-height: 1.9444444444rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1D4F91;
}

@media (min-width: 769px) {
  .single section.text-header .post-date,
  .single section.text-header .post-author,
  .single-resources section.text-header .post-date,
  .single-resources section.text-header .post-author {
    font-size: 1.5555555556rem;
    line-height: 1.9444444444rem;
  }
}
.single section.content,
.single-resources section.content {
  background-color: white;
  padding-block: 68px;
}

@media (min-width: 769px) {
  .single section.content,
  .single-resources section.content {
    padding-block: 86px;
  }
}
.single section.content h2,
.single-resources section.content h2 {
  color: #1D4F91;
  font-weight: 700;
  font-size: 1.7777777778rem;
  margin-bottom: 35px;
}

@media (min-width: 769px) {
  .single section.content h2,
  .single-resources section.content h2 {
    font-size: 2.5rem;
    line-height: 3.0555555556rem;
  }
}
.single section.content p,
.single-resources section.content p {
  color: black;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

@media (min-width: 769px) {
  .single section.content p,
  .single-resources section.content p {
    font-size: 1.1111111111rem;
  }
}
.single section.content a,
.single-resources section.content a {
  color: #0094EA;
  font-weight: 700;
}

.single section.content ul,
.single-resources section.content ul {
  padding: 0;
  margin-bottom: 2.5rem;
}

.single section.content li,
.single-resources section.content li {
  font-size: 1rem;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.9rem;
}

@media (min-width: 769px) {
  .single section.content li,
  .single-resources section.content li {
    font-size: 1.1111111111rem;
  }
}
.single section.content li::before,
.single-resources section.content li::before {
  content: "";
  border-radius: 50%;
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  background-color: #0094EA;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.single section.content li ul,
.single-resources section.content li ul {
  margin-bottom: 0;
}

.single section.content li ul li,
.single-resources section.content li ul li {
  margin-top: 1rem;
}

.single section.content li ul li::before,
.single-resources section.content li ul li::before {
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  background-color: white;
  border: 1px solid #0094EA;
}

.single section.content img,
.single-resources section.content img {
  border-radius: 10px;
}

.has-white-background-color {
  background-color: white;
}

.wsp-container {
  padding-block: 64px;
}

.wsp-container .wsp-posts-title,
.wsp-container .wsp-pages-title {
  font-weight: 700;
  font-size: 2.1111111111rem;
  line-height: 2.7777777778rem;
  letter-spacing: 0;
  vertical-align: middle;
  color: #1D4F91;
  margin-bottom: 35px;
}

@media (min-width: 1025px) {
  .wsp-container .wsp-posts-title,
  .wsp-container .wsp-pages-title {
    font-size: 2.5rem;
    line-height: 3.0555555556rem;
    margin-bottom: 27px;
  }
}
.wsp-container .wsp-posts-list,
.wsp-container .wsp-pages-list {
  margin-bottom: 36px;
}

.wsp-container .wsp-posts-list li::marker,
.wsp-container .wsp-pages-list li::marker {
  color: #0094EA;
}

.wsp-container .wsp-posts-list a,
.wsp-container .wsp-pages-list a {
  text-decoration: none;
  color: #0094EA;
  font-weight: 700;
}

.wsp-container .wsp-posts-list a:hover,
.wsp-container .wsp-pages-list a:hover {
  text-decoration: underline;
}

body {
  background-color: #CCEFFC;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 1379px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.container.centered {
  text-align: center;
}

.container-narrow {
  max-width: 1005px;
}

.wp-block-quote {
  padding: 113px 40px 65px 40px;
  background-color: #1D4F91;
  border-radius: 50px;
  background-image: url("../../assets/images/quote.svg");
  background-repeat: no-repeat;
  background-position: 40px 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (min-width: 769px) {
  .wp-block-quote {
    padding: 113px 100px 70px 100px;
    border-radius: 90px;
    background-position: 100px 60px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.wp-block-quote p {
  color: #FFFFFF !important;
  font-style: italic;
  margin-bottom: 0 !important;
}