/*=======================================
              Import Fonts
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&display=swap");
/*=======================================
                Colours
========================================*/
.text-navy {
  color: #002D3F;
}

.bg-navy {
  background-color: #002D3F;
}

.text-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.bg-blue {
  background-color: #0B435A;
}

.bg-lightblue {
  background-color: #E9F1F4;
}

.bg-midblue {
  background-color: #C1D5DD;
}

.bg-lightpink {
  background-color: #FDEFEF;
}

.bg-green {
  background-color: #E0EEE2;
}

.bg-lightred {
  background-color: #FADADA;
}

.bg-orange {
  background-color: #FFDFBF;
}

.bg-purple {
  background-color: #F0E5FF;
}

/*=======================================
      Reset Styles for Main Elements
========================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*=======================================
              Box Sizing
========================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*=======================================
          Default Body Styles
========================================*/
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  letter-spacing: 0.27px;
}

/*=======================================
   Set Display Role for Older Browsers
========================================*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*=======================================
                Quotes
========================================*/
blockquote,
q {
  quotes: none;
}

blockquote {
  padding: 10px 30px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*=======================================
            Container Layout
========================================*/
.container {
  width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 1500px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .container {
    padding: 0 15px;
  }
}
/*=======================================
              Helper Classes
========================================*/
.clearfix {
  clear: both;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.text-centered {
  text-align: center;
}

/*=======================================
              Flex Classes
========================================*/
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/*=======================================
          Link Default Styles
========================================*/
a {
  text-decoration: none;
}

a.cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 0px;
}

a:hover {
  text-decoration: underline;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*=======================================
                Buttons
========================================*/
a.button.arrow {
  border: 3px solid #ffffff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #ffffff;
  text-decoration: none !important;
  width: fit-content;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
a.button.arrow span {
  padding-right: 18px;
}
a.button.arrow svg {
  width: 9px;
  height: auto;
}
a.button.arrow svg path {
  transition: all 0.3s ease-in-out;
}
a.button.arrow.white {
  color: #ffffff;
}
a.button.arrow.white svg path {
  fill: #ffffff;
}
a.button.arrow.white:hover {
  background-color: #ffffff;
  color: #002D3F;
}
a.button.arrow.white:hover svg path {
  fill: #002D3F;
}
a.button.arrow.red {
  color: #ffffff;
  background-color: #E80E57;
  border-color: #E80E57;
}
a.button.arrow.red svg path {
  fill: #ffffff;
}
a.button.arrow.red:hover {
  background-color: #ffffff;
  color: #E80E57;
}
a.button.arrow.red:hover svg path {
  fill: #E80E57;
}
a.button.arrow.navy {
  border-color: #002D3F;
  color: #002D3F;
  background-color: transparent;
}
a.button.arrow.navy svg path {
  fill: #002D3F;
}
a.button.arrow.navy:hover {
  background-color: #002D3F;
  color: #ffffff;
}
a.button.arrow.navy:hover svg path {
  fill: #ffffff;
}

a.button.regular {
  border: 3px solid #002D3F;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px 10px;
  color: #002D3F;
  text-decoration: none;
  width: fit-content;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
a.button.regular:hover {
  background-color: #002D3F;
  color: #ffffff;
}

a.button.download {
  border: 3px solid #ffffff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #ffffff !important;
  text-decoration: none !important;
  width: fit-content;
  line-height: 1;
  background-color: #E80E57;
  border-color: #E80E57;
  transition: all 0.3s ease-in-out;
}
a.button.download span {
  padding-right: 15px;
}
a.button.download svg {
  width: 20px;
  height: auto;
}
a.button.download svg path {
  transition: all 0.3s ease-in-out;
}
a.button.download:hover {
  background-color: #ffffff;
  color: #E80E57 !important;
}
a.button.download:hover svg path {
  fill: #E80E57;
}

a.button.arrow.reverse {
  display: inline-flex;
  flex-direction: row-reverse;
}
a.button.arrow.reverse span {
  padding: 0 0 0 18px;
}
a.button.arrow.reverse svg {
  transform: rotate(180deg);
}

/*=======================================
            List Default Styles
========================================*/
ul[class],
ol[class] {
  list-style: none;
}

/*=======================================
              Nice Selects
========================================*/
.sccrc-theme .nice-select {
  width: fit-content;
  min-width: 210px;
  border: none;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 17px 25px;
  height: auto;
  float: none;
  font-size: 18px;
  line-height: 1;
  color: #002D3F;
}
.sccrc-theme .nice-select:before {
  content: "";
  background-color: #E80E57;
  width: 70px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 0 15px 15px 0;
}
.sccrc-theme .nice-select:after {
  width: 12px;
  height: 12px;
  border-color: #ffffff;
  top: 22px;
  border-width: 2px;
  right: 31px;
}
.sccrc-theme .nice-select .list {
  width: fit-content;
  min-width: 100%;
  background-color: #ffffff;
  color: #002D3F;
  border-radius: 15px;
  border: none;
  z-index: 999999;
}
.sccrc-theme .nice-select .option:hover,
.sccrc-theme .nice-select .option.focus,
.sccrc-theme .nice-select .option.selected.focus {
  background-color: #E9F1F4;
}
.sccrc-theme .nice-select:active, .sccrc-theme .nice-select.open, .sccrc-theme .nice-select:focus {
  border-color: #1D284A;
}

/*=======================================
            Table Default Styles
========================================*/
.text-container table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 30px;
}
.text-container table td {
  border: 2px solid #ffffff;
}
.text-container table thead td {
  background-color: #002D3F;
  color: #ffffff;
  padding: 10px;
}
.text-container table tbody td {
  background-color: #E9F1F4;
  padding: 10px;
}

/*=======================================
              Form Elements
========================================*/
input,
button,
textarea,
select {
  font: inherit;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
textarea,
select {
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 2px solid #333;
  display: inline-block;
  padding: 6px 10px;
  margin: 5px 0;
  outline: none;
}

label {
  cursor: pointer;
}

/*=======================================
          Image Default Styles
========================================*/
img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

/*=======================================
            Text Container
========================================*/
.text-container em {
  font-style: italic;
}
.text-container strong {
  font-weight: bold;
}
.text-container p,
.text-container ul,
.text-container ol {
  margin-bottom: 20px;
}
.text-container ul,
.text-container ol {
  margin-left: 30px;
}
.text-container img {
  width: auto;
  max-width: 100%;
}
.text-container .wp-video {
  width: 100% !important;
}
.text-container iframe {
  width: 100% !important;
}
.text-container .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.text-container .video-container:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.text-container .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=======================================
            Hide Admin Bar
========================================*/
@media only screen and (max-width: 1000px) {
  #wpadminbar {
    display: none !important;
  }
  html {
    margin-top: 0 !important;
  }
}
/*=======================================
            Header & Spacing
========================================*/
header {
  padding: 0;
  width: 100%;
}

html.no-scroll {
  overflow-y: hidden;
}

/*=======================================
        Hide Header On Scroll
========================================*/
header.nav-up,
.admin-bar header.nav-up {
  top: -200px;
}

/*=======================================
            Header Contents
========================================*/
header {
  padding: 5px 0;
}
@media screen and (max-width: 1100px) {
  header {
    padding: 10px 0;
  }
}
@media screen and (max-width: 600px) {
  header .container {
    padding: 0 10px;
  }
}
header .contents {
  align-items: center;
  position: relative;
}
header .logo {
  position: relative;
  width: 340px;
}
@media screen and (max-width: 1300px) {
  header .logo {
    width: 250px;
  }
}
@media screen and (max-width: 450px) {
  header .logo {
    width: 170px;
  }
}
header .right {
  align-items: center;
}
header .right .menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  header .right .menu {
    display: none;
  }
}
header .right .menu.hide {
  display: none;
}
header .right .menu .menu-item {
  margin-left: 35px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 1200px) {
  header .right .menu .menu-item {
    margin-left: 35px;
  }
}
header .right .menu .menu-item a {
  text-decoration: none;
  color: #ffffff;
  border-bottom: 2px solid #002D3F;
}
header .right .menu .menu-item:hover > a, header .right .menu .menu-item.active > a {
  border-color: #E80E57;
}
header .right .searchbox {
  width: 500px;
  display: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
}
header .right .searchbox.search-open {
  display: block;
}
header .right .searchbox input[type=text] {
  width: 100%;
  border: none;
  background-color: #ffffff;
  border-radius: 30px;
  margin: 0;
  padding: 12px 40px 12px 20px;
}
header .right .searchbox input[type=submit] {
  display: none;
}
header .right .searchbox svg {
  position: absolute;
  right: 15px;
  top: 11px;
  width: 22px;
  height: auto;
  cursor: pointer;
}
header .right .searchbox svg path {
  fill: #002D3F;
}
header .right .search-icon {
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #0B435A;
  border-radius: 100%;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
}
header .right .search-icon span.close-search {
  display: none;
}
header .right .search-icon span.close-search svg rect {
  fill: #ffffff;
}
header .right .search-icon.search-open .icon.search {
  display: none;
}
header .right .search-icon.search-open .icon.close-search {
  display: block;
}
header .right .search-icon svg {
  width: 21px;
  height: 21px;
  position: relative;
  top: 1px;
  right: -1px;
}
header .right .application {
  margin-left: 10px;
}
@media screen and (max-width: 1320px) {
  header .right .application {
    display: none;
  }
}
header .right .application .button {
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  background-color: #E80E57;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 37px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
header .right .menu-toggle {
  margin-left: 15px;
  background-color: #ffffff;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0px;
}
@media screen and (min-width: 1201px) {
  header .right .menu-toggle {
    display: none;
  }
}
header .right .menu-toggle .btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 15px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
}
header .right .menu-toggle .btn-menu:focus {
  outline: none;
}
header .right .menu-toggle .btn-menu__text {
  margin-left: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
header .right .menu-toggle .btn-menu__bars {
  display: block;
  position: relative;
  width: 15px;
  height: 2px;
  background-color: #E80E57;
  transition: 0.3s;
}
header .right .menu-toggle .btn-menu__bars:before, header .right .menu-toggle .btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E80E57;
  transition: 0.3s;
}
header .right .menu-toggle .btn-menu__bars:before {
  transform: translate(0, -6px);
}
header .right .menu-toggle .btn-menu__bars:after {
  transform: translate(0, 6px);
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars {
  background-color: transparent;
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars:before {
  transform: rotate(45deg);
}
.menu-open header .right .menu-toggle .btn-menu .btn-menu__bars:after {
  transform: rotate(-45deg);
}
header .mobile-menu {
  display: none;
  position: absolute;
  width: 100vw;
  margin: 0 -30px;
  height: calc(100vh - 118px);
  top: 118px;
  background-color: #002D3F;
  padding: 30px;
  z-index: 99;
}
@media screen and (max-width: 600px) {
  header .mobile-menu {
    margin: 0 -10px;
  }
}
@media screen and (max-width: 450px) {
  header .mobile-menu {
    top: 83px;
    padding: 50px 30px;
    height: calc(100vh - 83px);
  }
}
header .mobile-menu .mobile-searchbox {
  max-width: 500px;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 450px) {
  header .mobile-menu .mobile-searchbox {
    margin-bottom: 10px;
  }
}
header .mobile-menu .mobile-searchbox input[type=text] {
  width: 100%;
  border: none;
  background-color: #ffffff;
  border-radius: 30px;
  margin: 0;
  padding: 12px 40px 12px 20px;
}
header .mobile-menu .mobile-searchbox input[type=submit] {
  display: none;
}
header .mobile-menu .mobile-searchbox svg {
  position: absolute;
  right: 15px;
  top: 11px;
  width: 22px;
  height: auto;
  cursor: pointer;
}
header .mobile-menu .mobile-searchbox svg path {
  fill: #002D3F;
}
header .mobile-menu .menu-item {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  margin-bottom: 30px;
}
header .mobile-menu .menu-item a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
header .mobile-menu .menu-item a:after {
  content: "";
  width: 11px;
  height: 19px;
  position: absolute;
  right: -25px;
  top: 7.5px;
  background-size: contain;
  background-repeat: no-repeat;
}
header .mobile-menu .buttons {
  margin-top: 40px;
}
header .mobile-menu .buttons .button-wrap {
  margin-bottom: 15px;
}

/*=======================================
            Main Footer
========================================*/
footer {
  padding: 150px 0 65px;
}
@media (max-width: 800px) {
  footer {
    padding: 100px 0 65px;
  }
}
footer .footer-main {
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 30px;
  margin-bottom: 110px;
}
@media (max-width: 1400px) {
  footer .footer-main {
    padding: 0;
  }
}
@media (max-width: 450px) {
  footer .footer-main {
    margin-bottom: 100px;
  }
}
footer .footer-main .column.address {
  width: 300px;
  color: #ffffff;
}
@media (max-width: 800px) {
  footer .footer-main .column.address {
    width: 100%;
    margin-bottom: 50px;
  }
}
footer .footer-main .column.address address {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 70px;
}
@media (max-width: 450px) {
  footer .footer-main .column.address address {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 50px;
  }
}
footer .footer-main .column.address .contact {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  footer .footer-main .column.address .contact {
    font-size: 20px;
    line-height: 1.3;
  }
}
footer .footer-main .column.address .contact a {
  color: #ffffff;
}
footer .footer-main .column.useful-links {
  width: calc(100% - 300px - 160px);
  color: #ffffff;
  padding: 0 120px;
}
@media (max-width: 1200px) {
  footer .footer-main .column.useful-links {
    width: calc(100% - 300px);
    padding-right: 0;
  }
}
@media (max-width: 1000px) {
  footer .footer-main .column.useful-links {
    padding-left: 70px;
  }
}
@media (max-width: 800px) {
  footer .footer-main .column.useful-links {
    width: 100%;
    padding: 0;
  }
}
footer .footer-main .column.useful-links .title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 30px;
}
footer .footer-main .column.useful-links .links-wrap {
  justify-content: space-between;
}
footer .footer-main .column.useful-links .links-wrap .links {
  width: calc(50% - 20px);
}
footer .footer-main .column.useful-links .links-wrap .links a {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 15px;
}
@media (max-width: 450px) {
  footer .footer-main .column.useful-links .links-wrap .links a {
    font-size: 16px;
    line-height: 1.3;
  }
}
footer .footer-main .column.translate {
  width: 160px;
  margin-top: 60px;
}
footer .footer-bottom {
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 700px) {
  footer .footer-bottom .copyright {
    width: 100%;
    margin-bottom: 50px;
  }
}
footer .footer-bottom .copyright strong {
  font-weight: 700;
}
footer .footer-bottom .credit a {
  color: #ffffff;
}

/*=======================================
            Footer Enquiry
========================================*/
.footer-enquiry {
  padding: 90px 0 0 0;
}
@media (max-width: 600px) {
  .footer-enquiry {
    padding-top: 70px;
  }
}
.footer-enquiry .wrapper {
  border-radius: 15px;
  padding: 85px 0;
  align-items: unset;
}
@media (max-width: 600px) {
  .footer-enquiry .wrapper {
    padding: 50px 0;
  }
}
.footer-enquiry .wrapper .left,
.footer-enquiry .wrapper .right {
  width: 50%;
  padding: 15px 100px;
}
@media (max-width: 1200px) {
  .footer-enquiry .wrapper .left,
  .footer-enquiry .wrapper .right {
    padding: 15px 50px;
  }
}
@media (max-width: 1000px) {
  .footer-enquiry .wrapper .left,
  .footer-enquiry .wrapper .right {
    width: 100%;
    padding: 0 50px;
  }
}
@media (max-width: 600px) {
  .footer-enquiry .wrapper .left,
  .footer-enquiry .wrapper .right {
    padding: 0 30px;
  }
}
.footer-enquiry .wrapper .left {
  border-right: 1px solid #E80E57;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 1000px) {
  .footer-enquiry .wrapper .left {
    margin-bottom: 50px;
    border-right: none;
  }
}
.footer-enquiry .wrapper .left .icon {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}
.footer-enquiry .wrapper .left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .footer-enquiry .wrapper .left h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
.footer-enquiry .wrapper .left .details p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .footer-enquiry .wrapper .left .details p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.footer-enquiry .wrapper .left .details p strong {
  font-weight: 700;
  padding-right: 5px;
}
.footer-enquiry .wrapper .left .details p a {
  color: #002D3F;
}
.footer-enquiry .wrapper .right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.footer-enquiry .wrapper .right h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .footer-enquiry .wrapper .right h2 {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .footer-enquiry .wrapper .right h2 {
    font-size: 28px;
    line-height: 1.4;
  }
}
.footer-enquiry .wrapper .right .form-wrap {
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-enquiry .wrapper .right .form-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
}
.footer-enquiry .wrapper .right .form-wrap .gform_required_legend {
  display: none;
}
.footer-enquiry .wrapper .right .form-wrap .gfield {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.footer-enquiry .wrapper .right .form-wrap .gfield .gfield_label {
  width: 85px;
  font-size: 18px;
  line-height: 1;
  color: #002D3F;
  font-weight: 400;
  margin-bottom: 3px;
}
@media (max-width: 600px) {
  .footer-enquiry .wrapper .right .form-wrap .gfield .gfield_label {
    width: 100%;
    margin-bottom: 8px;
  }
}
.footer-enquiry .wrapper .right .form-wrap .gfield .gfield_label .gfield_required {
  position: relative;
  top: -1px;
  color: #E80E57;
}
.footer-enquiry .wrapper .right .form-wrap .gfield .ginput_container {
  width: calc(100% - 85px);
}
@media (max-width: 600px) {
  .footer-enquiry .wrapper .right .form-wrap .gfield .ginput_container {
    width: 100%;
  }
}
.footer-enquiry .wrapper .right .form-wrap .gfield input[type=text],
.footer-enquiry .wrapper .right .form-wrap .gfield input[type=email],
.footer-enquiry .wrapper .right .form-wrap .gfield textarea {
  border-radius: 15px;
  background-color: #E9F1F4;
  border: none;
  font-size: 18px;
  line-height: 1 !important;
  padding: 15px;
}
.footer-enquiry .wrapper .right .form-wrap .gfield textarea {
  resize: none;
  line-height: 1.3 !important;
}
.footer-enquiry .wrapper .right .form-wrap #field_2_5,
.footer-enquiry .wrapper .right .form-wrap .submit-button {
  display: none;
}
.footer-enquiry .wrapper .right .form-wrap #field_2_5 {
  align-items: flex-start;
}
.footer-enquiry .wrapper .right .form-wrap #field_2_5 .gfield_label {
  margin-top: 8px;
}
.footer-enquiry .wrapper .right .form-wrap .submit-button {
  width: 100%;
  text-align: right;
}
.footer-enquiry .wrapper .right .form-wrap .submit-button input[type=submit] {
  border: 3px solid #E80E57;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  background-color: #E80E57;
  margin: 0;
}
.footer-enquiry .wrapper .right .next {
  text-align: right;
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-enquiry .wrapper .right .next {
    max-width: 600px;
    margin: 0 auto;
  }
}

/*=======================================
             Page Layout
========================================*/
#page-wrap {
  background-color: #E9F1F4;
}
#page-wrap .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  top: -125px;
}
@media (max-width: 450px) {
  #page-wrap .inner {
    padding: 0 15px;
    top: -85px;
  }
}
#page-wrap .inner .blocks {
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}
#page-wrap section .container {
  width: 100%;
  padding: 0 50px;
}
@media (max-width: 600px) {
  #page-wrap section .container {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  #page-wrap section .container {
    padding: 0 15px;
  }
}
#page-wrap section:last-of-type {
  border-radius: 0 0 15px 15px;
}

.page-intro {
  background-color: #FDEFEF;
  padding: 55px 0 110px;
  border-radius: 15px 15px 0 0;
}
@media (max-width: 600px) {
  .page-intro {
    padding: 30px 0 70px;
  }
}
.page-intro .contents.has-icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.page-intro .contents.has-icon .icon {
  width: 100px;
}
@media (max-width: 800px) {
  .page-intro .contents.has-icon .icon {
    display: none;
  }
}
.page-intro .contents.has-icon .main {
  width: calc(100% - 100px);
  padding-left: 50px;
}
@media (max-width: 800px) {
  .page-intro .contents.has-icon .main {
    width: 100%;
    padding-left: 0;
  }
}
.page-intro .above {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.page-intro h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 800px) {
  .page-intro h1 {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .page-intro h1 {
    font-size: 33px;
  }
}
.page-intro .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 30px;
  max-width: 800px;
}

/*=======================================
            Homepage Banner
========================================*/
.home-banner .left {
  width: calc(50% - 60px);
}
@media (max-width: 1200px) {
  .home-banner .left {
    width: calc(50% - 30px);
  }
}
@media (max-width: 1000px) {
  .home-banner .left {
    width: 100%;
  }
}
.home-banner .left .dots {
  width: 86px;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .home-banner .left .dots {
    width: 70px;
  }
}
@media (max-width: 600px) {
  .home-banner .left .dots {
    width: 54px;
  }
}
.home-banner .left .title {
  font-size: 58px;
  line-height: 1.13;
  font-weight: 700;
  letter-spacing: -0.87px;
}
@media (max-width: 800px) {
  .home-banner .left .title {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .home-banner .left .title {
    font-size: 33px;
  }
}
.home-banner .right {
  width: calc(50% - 60px);
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .home-banner .right {
    width: calc(50% - 30px);
  }
}
@media (max-width: 1000px) {
  .home-banner .right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .home-banner .right {
    margin-top: 40px;
  }
}
.home-banner .right .description {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}
@media (max-width: 600px) {
  .home-banner .right .description {
    font-size: 20px;
    line-height: 1.3;
  }
}
.home-banner .right .description p {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .home-banner .right .description p {
    margin-bottom: 20px;
  }
}
.home-banner .right .buttons {
  justify-content: flex-start;
  align-items: center;
  margin-top: 35px;
}
.home-banner .right .buttons .button {
  margin-right: 15px;
}
@media (max-width: 600px) {
  .home-banner .right .buttons .button {
    margin-bottom: 15px;
  }
}

#page-banner {
  padding: 75px 0 25px;
}
@media (max-width: 600px) {
  #page-banner {
    padding: 50px 0 20px;
  }
}
#page-banner.contained {
  padding: 75px 0 150px;
}
@media (max-width: 600px) {
  #page-banner.contained {
    padding: 50px 0 150px;
  }
}
@media (max-width: 450px) {
  #page-banner.contained {
    padding: 50px 0 105px;
  }
}
#page-banner .left .title {
  margin-bottom: 60px;
}
@media (max-width: 1000px) {
  #page-banner .left .title {
    margin-bottom: 0;
  }
}
@media (max-width: 1000px) {
  #page-banner .right {
    margin: 50px 0 75px;
  }
}
@media (max-width: 600px) {
  #page-banner .right {
    margin: 30px 0 75px;
  }
}
#page-banner .breadcrumb {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 20px;
}
#page-banner .breadcrumb a {
  color: #ffffff;
}

/*=======================================
            Link Cards
========================================*/
.link-cards .contents {
  justify-content: flex-start;
  align-items: unset;
  margin: 0 -12px;
}
.link-cards .card {
  width: calc(33.3333333333% - 24px);
  margin: 0 12px;
  padding: 70px 45px 45px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 60px;
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .link-cards .card {
    padding: 50px 30px 30px;
  }
}
@media (max-width: 1200px) {
  .link-cards .card {
    width: calc(50% - 24px);
    margin-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .link-cards .card {
    width: calc(100% - 24px);
  }
}
@media (max-width: 450px) {
  .link-cards .card {
    padding: 30px;
    margin-bottom: 20px;
  }
}
.link-cards .card .card-top {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.link-cards .card .card-top img {
  width: 100px;
  height: auto;
}
@media (max-width: 1400px) {
  .link-cards .card .card-top img {
    width: 75px;
  }
}
@media (max-width: 800px) {
  .link-cards .card .card-top img {
    width: 100px;
  }
}
.link-cards .card .card-top .title {
  width: calc(100% - 100px);
  padding-left: 15px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}
.link-cards .card .card-top .title.no-icon {
  padding-left: 0;
}
@media (max-width: 1400px) {
  .link-cards .card .card-top .title {
    width: calc(100% - 75px);
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .link-cards .card .card-top .title {
    width: calc(100% - 100px);
  }
}
@media (max-width: 450px) {
  .link-cards .card .card-top .title {
    font-size: 28px;
  }
}
.link-cards .card .card-main {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .link-cards .card .card-main {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
.link-cards .card .arrow {
  justify-content: flex-end;
}
.link-cards .card .arrow svg {
  width: 48px;
  height: auto;
}
@media (max-width: 450px) {
  .link-cards .card .arrow svg {
    width: 45px;
  }
}

/*=======================================
              CTA Banner
========================================*/
.cta-banner {
  padding: 60px 0 40px;
}
.cta-banner .contents {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.cta-banner .contents .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.54px;
  margin-right: 20px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .cta-banner .contents .title {
    font-size: 28px;
  }
}
.cta-banner .contents .button {
  margin-bottom: 20px;
}

/*=======================================
            News & Updates
========================================*/
.news-updates .container {
  width: 100%;
  padding: 0;
  padding-left: calc((100vw - 1440px) / 2);
}
.news-updates .contents {
  align-items: center;
}
.news-updates .contents .left {
  flex-direction: column;
  width: 375px;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
@media (max-width: 1000px) {
  .news-updates .contents .left {
    width: 100%;
    margin-bottom: 45px;
  }
}
.news-updates .contents .left .icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .news-updates .contents .left .icon {
    margin-bottom: 10px;
  }
}
.news-updates .contents .left h2 {
  font-family: Barlow;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .news-updates .contents .left h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.news-updates .contents .right {
  width: calc(100% - 375px);
  position: relative;
}
@media (max-width: 1000px) {
  .news-updates .contents .right {
    width: 100%;
    padding-left: 30px;
  }
}
@media (max-width: 450px) {
  .news-updates .contents .right {
    padding-left: 15px;
  }
}
.news-updates .contents .right:after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 10px;
  bottom: 0;
  right: 0;
  z-index: 99999;
  background-color: #002D3F;
}
@media (max-width: 450px) {
  .news-updates .contents .right:after {
    width: 15px;
  }
}
.news-updates .contents .right .articles-wrap {
  width: 100%;
  overflow-x: scroll;
}
.news-updates .contents .right .articles-wrap::-webkit-scrollbar {
  height: 10px;
  width: 4px;
  background-color: #0B435A;
  border-radius: 3px;
  position: relative;
  z-index: 99;
}
.news-updates .contents .right .articles-wrap::-webkit-scrollbar-thumb:horizontal {
  background-color: #ffffff;
  border-radius: 3px;
  cursor: grab;
  position: relative;
  z-index: 99;
}
.news-updates .contents .right .articles-wrap .articles-inner {
  justify-content: flex-start;
  align-items: unset;
  flex-wrap: nowrap;
  width: fit-content;
}
.news-updates .contents .right .articles-wrap article {
  background-color: #ffffff;
  width: 420px;
  margin-right: 40px;
  margin-bottom: 35px;
  padding: 50px 45px 45px;
  border-radius: 15px;
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .news-updates .contents .right .articles-wrap article {
    width: 360px;
    padding: 50px 30px 30px;
    margin-right: 20px;
  }
}
@media (max-width: 450px) {
  .news-updates .contents .right .articles-wrap article {
    margin-right: 10px;
  }
}
.news-updates .contents .right .articles-wrap article .dots {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  padding: 1px 1px 1px 0;
}
.news-updates .contents .right .articles-wrap article .dots svg ellipse {
  fill: #002D3F;
}
.news-updates .contents .right .articles-wrap article .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .news-updates .contents .right .articles-wrap article .title {
    font-size: 20px;
  }
}
.news-updates .contents .right .articles-wrap article .date {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 40px;
}
.news-updates .contents .right .articles-wrap article .arrow {
  justify-content: flex-end;
  align-items: center;
}
.news-updates .contents .right .articles-wrap article .arrow svg {
  width: 50px;
  height: 50px;
}
.news-updates .contents .right .articles-wrap article:last-of-type {
  margin-right: 30px;
}
@media (max-width: 450px) {
  .news-updates .contents .right .articles-wrap article:last-of-type {
    margin-right: 15px;
  }
}

/*=======================================
            Text & Video
========================================*/
.text-video .contents {
  align-items: center;
}
@media (max-width: 1200px) {
  .text-video .contents {
    flex-direction: column-reverse;
  }
}
.text-video .contents .video {
  width: 780px;
}
@media (max-width: 1200px) {
  .text-video .contents .video {
    width: 100%;
  }
}
.text-video .contents .video video {
  width: 100%;
  height: auto;
}
.text-video .contents .video .transcript {
  margin-top: 10px;
  justify-content: flex-start;
  align-items: center;
}
.text-video .contents .video .transcript svg {
  width: 20px;
  height: auto;
}
.text-video .contents .video .transcript a {
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  font-size: 18px;
  line-height: 1.3;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .text-video .contents .video .transcript a {
    font-size: 16px;
  }
}
.text-video .contents .info {
  width: calc(100% - 780px);
  padding-left: 45px;
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .text-video .contents .info {
    width: 100%;
    padding-left: 0;
    margin: 0 0 30px 0;
  }
}
.text-video .contents .info .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 420px;
}
@media (max-width: 600px) {
  .text-video .contents .info .title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.text-video .contents .info .description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 600px;
}

/*=======================================
            Text & Image
========================================*/
.text-image .contents {
  align-items: center;
}
.text-image .contents .image {
  width: 350px;
}
@media (max-width: 1000px) {
  .text-image .contents .image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.text-image .contents .image img {
  border-radius: 15px;
}
.text-image .contents .info {
  width: calc(100% - 350px);
  padding-left: 50px;
}
@media (max-width: 1000px) {
  .text-image .contents .info {
    width: 100%;
    padding-left: 0;
    margin: 30px 0 0 0;
  }
}
.text-image .contents .info .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 420px;
}
@media (max-width: 600px) {
  .text-image .contents .info .title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.text-image .contents .info .description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px;
}

/*=======================================
            Two Col Text
========================================*/
.two-col-text .contents {
  justify-content: space-between;
  align-items: flex-start;
}
.two-col-text .contents .col {
  width: calc(50% - 50px);
}
@media (max-width: 1000px) {
  .two-col-text .contents .col {
    width: 100%;
  }
  .two-col-text .contents .col.left {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .two-col-text .contents .col.left {
    margin-bottom: 30px;
  }
}
.two-col-text .contents .col .dots {
  width: 60px;
  padding: 1px 1px 1px 0;
}
@media (max-width: 600px) {
  .two-col-text .contents .col .dots {
    width: 50px;
    margin-bottom: 2px;
  }
}
.two-col-text .contents .col .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .two-col-text .contents .col .title {
    font-size: 28px;
  }
}
.two-col-text .contents .col .text-container {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .two-col-text .contents .col .text-container {
    font-size: 16px;
  }
}
.two-col-text .contents .col.right .text-container.no-title {
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .two-col-text .contents .col.right .text-container.no-title {
    margin-top: 0;
  }
}

/*=======================================
                Checklist
========================================*/
.checklist .contents {
  justify-content: space-between;
  align-items: flex-start;
}
.checklist .contents .left {
  width: 330px;
}
@media (max-width: 1200px) {
  .checklist .contents .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.checklist .contents .left .dots {
  width: 60px;
  padding: 1px 1px 1px 0;
}
@media (max-width: 600px) {
  .checklist .contents .left .dots {
    width: 50px;
    margin-bottom: 2px;
  }
}
.checklist .contents .left .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .checklist .contents .left .title {
    font-size: 28px;
  }
}
.checklist .contents .left .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 450px) {
  .checklist .contents .left .description {
    font-size: 16px;
  }
}
.checklist .contents .right {
  width: calc(100% - 330px);
  padding-left: 60px;
}
@media (max-width: 1200px) {
  .checklist .contents .right {
    width: 100%;
    padding-left: 0;
  }
}
.checklist .contents .right .item {
  padding: 25px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  justify-content: space-between;
  align-items: center;
}
.checklist .contents .right .item:last-of-type {
  margin-bottom: 0;
}
.checklist .contents .right .item .icon {
  width: 30px;
  height: auto;
}
.checklist .contents .right .item .text {
  width: calc(100% - 30px);
  padding-left: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .checklist .contents .right .item .text {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .checklist .contents .right .item .text {
    font-size: 16px;
  }
}

/*=======================================
                Statistics
========================================*/
.stats .title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
}
@media (max-width: 600px) {
  .stats .title {
    font-size: 28px;
  }
}
.stats .items {
  justify-content: flex-start;
  align-items: unset;
  margin: 0 -12px;
}
.stats .items .item {
  width: calc(25% - 24px);
  margin: 0 12px 24px;
  border-radius: 15px;
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
  padding: 35px 30px 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .stats .items .item {
    width: calc(50% - 24px);
  }
}
@media (max-width: 800px) {
  .stats .items .item {
    width: calc(100% - 24px);
  }
}
.stats .items .item .value {
  border: 8px solid #002D3F;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.stats .items .item .value span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.stats .items .item .label {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.stats .link {
  text-align: center;
  margin-top: 20px;
}

/*=======================================
                Publications
========================================*/
.publications.related-pubs {
  padding: 75px 0;
}
@media (max-width: 600px) {
  .publications.related-pubs {
    padding: 50px 0;
  }
}
.publications h2.title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
}
@media (max-width: 600px) {
  .publications h2.title {
    font-size: 28px;
  }
}
.publications .items {
  justify-content: flex-start;
  align-items: unset;
  margin: 0 -15px;
}
.publications .items .item {
  width: calc(50% - 30px);
  margin: 0 15px;
  border-radius: 15px;
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  align-items: unset;
  position: relative;
}
@media (max-width: 1000px) {
  .publications .items .item {
    width: calc(100% - 30px);
  }
}
.publications .items .item .icon {
  width: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #002D3F;
  border-radius: 15px 0 0 15px;
}
.publications .items .item .icon img,
.publications .items .item .icon svg {
  max-width: 70%;
  max-height: 50%;
  width: auto;
  height: auto;
}
.publications .items .item .main {
  width: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 15px;
}
.publications .items .item .main .cat {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.publications .items .item .main .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.publications .items .item .main .date {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}
.publications .link {
  text-align: center;
  margin-top: 20px;
}

/*=======================================
              Title & Text
========================================*/
.title-text .contents {
  align-items: flex-start;
}
.title-text .contents .left {
  width: 350px;
}
@media (max-width: 1000px) {
  .title-text .contents .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.title-text .contents .left .dots {
  width: 60px;
  padding: 1px 1px 1px 0;
}
@media (max-width: 600px) {
  .title-text .contents .left .dots {
    width: 50px;
    margin-bottom: 2px;
  }
}
.title-text .contents .left .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .title-text .contents .left .title {
    font-size: 28px;
  }
}
.title-text .contents .right {
  width: calc(100% - 350px);
  padding: 10px 0 0 50px;
}
@media (max-width: 1000px) {
  .title-text .contents .right {
    width: 100%;
    padding: 0;
  }
}
.title-text .contents .right.has-dots {
  margin-top: 15px;
}
@media (max-width: 1000px) {
  .title-text .contents .right.has-dots {
    margin-top: 0;
  }
}
.title-text .contents .right .text-container {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .title-text .contents .right .text-container {
    font-size: 16px;
  }
}
.title-text .contents .right .text-container ul li,
.title-text .contents .right .text-container ol li {
  margin-bottom: 10px;
}

/*=======================================
            Team Members
========================================*/
.team-members .intro {
  margin-bottom: 40px;
}
.team-members .intro .dots {
  width: 60px;
  padding: 1px 1px 1px 0;
}
@media (max-width: 600px) {
  .team-members .intro .dots {
    width: 50px;
    margin-bottom: 2px;
  }
}
.team-members .intro .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .team-members .intro .title {
    font-size: 28px;
  }
}
.team-members .intro .text-container {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
}
@media (max-width: 600px) {
  .team-members .intro .text-container {
    font-size: 16px;
  }
}
.team-members .main {
  justify-content: flex-start;
  align-items: unset;
  margin: 0 -15px;
}
.team-members .main.two-col .item {
  width: calc(50% - 30px);
}
@media (max-width: 800px) {
  .team-members .main.two-col .item {
    width: calc(100% - 30px);
  }
}
.team-members .main .item {
  width: calc(33.3333333333% - 30px);
  margin: 0 15px 17px;
  background-color: #E9F1F4;
  border-radius: 15px;
  justify-content: space-between;
  align-items: unset;
  min-height: 100px;
}
@media (max-width: 1100px) {
  .team-members .main .item {
    width: calc(50% - 30px);
  }
}
@media (max-width: 800px) {
  .team-members .main .item {
    width: calc(100% - 30px);
  }
}
.team-members .main .item .icon {
  width: 45px;
  background-color: #002D3F;
  border-radius: 15px 0 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.team-members .main .item .icon svg {
  width: 17px;
  height: auto;
}
.team-members .main .item .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 45px);
  padding: 17px 20px 10px 15px;
}
.team-members .main .item .info .top {
  padding-bottom: 15px;
}
.team-members .main .item .info .name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.team-members .main .item .info .name .after {
  font-weight: 400;
}
.team-members .main .item .info .role {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
.team-members .main .item .info .date {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

/*=======================================
            Accordion
========================================*/
.accordion .contents {
  padding: 0 150px;
}
@media (max-width: 1200px) {
  .accordion .contents {
    padding: 0 100px;
  }
}
@media (max-width: 1000px) {
  .accordion .contents {
    padding: 0;
  }
}
.accordion h2.title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .accordion h2.title {
    font-size: 28px;
  }
}
.accordion .item {
  border-radius: 15px;
  background-color: #E9F1F4;
  position: relative;
  padding: 17px 25px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}
.accordion .item .top {
  align-items: center;
  cursor: pointer;
}
.accordion .item .top .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  width: calc(100% - 30px);
  padding-right: 50px;
}
@media (max-width: 600px) {
  .accordion .item .top .title {
    font-size: 16px;
    width: calc(100% - 20px);
  }
}
.accordion .item .top .chevron {
  width: 30px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .accordion .item .top .chevron {
    width: 20px;
  }
}
.accordion .item.open {
  background-color: #FDEFEF;
}
.accordion .item.open .chevron {
  transform: rotate(180deg);
}
.accordion .item .main {
  font-weight: 400;
  line-height: 1.6;
  margin-top: 15px;
  display: none;
  padding: 0 50px 20px 0;
}
@media (max-width: 600px) {
  .accordion .item .main {
    padding: 0 0 20px;
  }
}

/*=======================================
            Text Block
========================================*/
.text-block .contents.boxed {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 80px;
}
@media (max-width: 1000px) {
  .text-block .contents.boxed {
    padding: 50px;
  }
}
@media (max-width: 450px) {
  .text-block .contents.boxed {
    padding: 50px 30px;
  }
}
.text-block .dots {
  width: 60px;
  padding: 1px 1px 1px 0;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .text-block .dots {
    width: 50px;
  }
}
.text-block .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .text-block .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.text-block .text-container {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .text-block .text-container {
    font-size: 16px;
  }
}
.text-block .text-container a {
  color: #E80E57;
  text-decoration: underline;
}
.text-block .text-container h1,
.text-block .text-container h2,
.text-block .text-container h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .text-block .text-container h1,
  .text-block .text-container h2,
  .text-block .text-container h3 {
    font-size: 24px;
  }
}
.text-block .text-container h4,
.text-block .text-container h5,
.text-block .text-container h6 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .text-block .text-container h4,
  .text-block .text-container h5,
  .text-block .text-container h6 {
    font-size: 20px;
  }
}

/*=======================================
            Contact Block
========================================*/
.contact-block {
  padding: 90px 0 0 0;
}
@media (max-width: 600px) {
  .contact-block {
    padding-top: 70px;
  }
}
.contact-block .wrapper {
  border-radius: 15px;
  padding: 85px 0;
  align-items: unset;
}
@media (max-width: 600px) {
  .contact-block .wrapper {
    padding: 50px 0;
  }
}
.contact-block .wrapper .left,
.contact-block .wrapper .right {
  width: 50%;
  padding: 15px 100px;
}
@media (max-width: 1200px) {
  .contact-block .wrapper .left,
  .contact-block .wrapper .right {
    padding: 15px 50px;
  }
}
@media (max-width: 1000px) {
  .contact-block .wrapper .left,
  .contact-block .wrapper .right {
    width: 100%;
    padding: 0 50px;
  }
}
@media (max-width: 600px) {
  .contact-block .wrapper .left,
  .contact-block .wrapper .right {
    padding: 0 30px;
  }
}
.contact-block .wrapper .left {
  border-right: 1px solid #E80E57;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 1000px) {
  .contact-block .wrapper .left {
    margin-bottom: 50px;
    border-right: none;
  }
}
.contact-block .wrapper .left .icon {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}
.contact-block .wrapper .left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .contact-block .wrapper .left h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
.contact-block .wrapper .left .details p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .contact-block .wrapper .left .details p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.contact-block .wrapper .left .details p strong {
  font-weight: 700;
  padding-right: 5px;
}
.contact-block .wrapper .left .details p a {
  color: #002D3F;
}
.contact-block .wrapper .right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contact-block .wrapper .right h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .contact-block .wrapper .right h2 {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-block .wrapper .right h2 {
    font-size: 28px;
    line-height: 1.4;
  }
}
.contact-block .wrapper .right .form-wrap {
  width: 100%;
}
@media (max-width: 1000px) {
  .contact-block .wrapper .right .form-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
}
.contact-block .wrapper .right .form-wrap .gform_required_legend {
  display: none;
}
.contact-block .wrapper .right .form-wrap .gfield {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact-block .wrapper .right .form-wrap .gfield .gfield_label {
  width: 85px;
  font-size: 18px;
  line-height: 1;
  color: #002D3F;
  font-weight: 400;
  margin-bottom: 3px;
}
@media (max-width: 600px) {
  .contact-block .wrapper .right .form-wrap .gfield .gfield_label {
    width: 100%;
    margin-bottom: 8px;
  }
}
.contact-block .wrapper .right .form-wrap .gfield .gfield_label .gfield_required {
  position: relative;
  top: -1px;
  color: #E80E57;
}
.contact-block .wrapper .right .form-wrap .gfield .ginput_container {
  width: 100%;
}
.contact-block .wrapper .right .form-wrap .gfield input[type=text],
.contact-block .wrapper .right .form-wrap .gfield input[type=email],
.contact-block .wrapper .right .form-wrap .gfield textarea {
  border-radius: 15px;
  background-color: #E9F1F4;
  border: none;
  font-size: 18px;
  line-height: 1 !important;
  padding: 15px;
}
.contact-block .wrapper .right .form-wrap .gfield textarea {
  resize: none;
  line-height: 1.3 !important;
}
.contact-block .wrapper .right .form-wrap #field_2_5 {
  align-items: flex-start;
}
.contact-block .wrapper .right .form-wrap #field_2_5 .gfield_label {
  margin-top: 8px;
}
.contact-block .wrapper .right .form-wrap .submit-button {
  width: 100%;
  text-align: right;
}
.contact-block .wrapper .right .form-wrap .submit-button input[type=submit] {
  border: 3px solid #E80E57;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  line-height: 1 !important;
  background-color: #E80E57;
  margin: 0;
}

/*=======================================
            News Filters
========================================*/
.news-filters {
  padding: 35px 0 45px;
}
.news-filters #filters {
  background-color: #C1D5DD;
  border-radius: 15px;
  padding: 25px 45px;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1060px) {
  .news-filters #filters {
    justify-content: space-between;
    padding: 30px;
  }
}
.news-filters #filters .label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #002D3F;
  margin-right: 20px;
}
@media (max-width: 1060px) {
  .news-filters #filters .label {
    width: 100%;
    margin-bottom: 15px;
  }
}
.news-filters #filters .filter {
  margin-right: 20px;
}
@media (max-width: 1060px) {
  .news-filters #filters .filter {
    width: calc(50% - 10px);
    margin: 0;
  }
  .news-filters #filters .filter .nice-select {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .news-filters #filters .filter {
    width: 100%;
    margin-bottom: 15px;
  }
}
.news-filters #filters .news-search {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: unset;
  flex-wrap: nowrap;
}
.news-filters #filters .news-search input[type=text] {
  width: 380px;
  border: none;
  border-radius: 15px;
  padding: 15px 25px;
  font-size: 18px;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1060px) {
  .news-filters #filters .news-search input[type=text] {
    width: 100%;
  }
}
.news-filters #filters .news-search .search-button {
  width: 70px;
  height: 100%;
  background-color: #E80E57;
  border-radius: 0 15px 15px 0;
  position: absolute;
  right: 0;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.news-filters #filters .news-search .search-button svg {
  width: 21px;
  height: auto;
}
.news-filters #filters .reset {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: underline;
  cursor: pointer;
  display: none;
}
@media (max-width: 1060px) {
  .news-filters #filters .reset {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 700px) {
  .news-filters #filters .reset {
    margin-top: 0;
  }
}

/*=======================================
            News Grid
========================================*/
.news-grid {
  padding-bottom: 40px;
}
.news-grid#past {
  padding: 80px 0 40px;
}
@media (max-width: 600px) {
  .news-grid#past {
    padding: 50px 0;
  }
}
.news-grid#past.active {
  background-color: #E9F1F4;
  padding-top: 0;
}
.news-grid#past.active .section-title {
  display: none;
}
.news-grid .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .news-grid .section-title {
    font-size: 28px;
  }
}
.news-grid .articles {
  justify-content: flex-start;
  align-items: unset;
  margin: 0 -15px;
}
.news-grid .articles article {
  background-color: #ffffff;
  width: calc(33.3333333333% - 30px);
  margin: 0 15px 65px;
  padding: 50px 45px 45px;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  min-height: 350px;
}
@media (max-width: 1200px) {
  .news-grid .articles article {
    width: calc(50% - 30px);
  }
}
@media (max-width: 800px) {
  .news-grid .articles article {
    width: calc(100% - 30px);
    min-height: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .news-grid .articles article {
    padding: 40px 35px;
  }
}
.news-grid .articles article.drop-shadow {
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
.news-grid .articles article:hover {
  box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.15);
  background-color: #FDEFEF;
}
.news-grid .articles article:hover .dots .dots-navy {
  display: none;
}
.news-grid .articles article:hover .dots .dots-red {
  display: block;
}
.news-grid .articles article:hover .arrow .arrow-navy {
  display: none;
}
.news-grid .articles article:hover .arrow .arrow-red {
  display: block;
}
.news-grid .articles article.hide {
  display: none;
}
.news-grid .articles article .dots {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  padding: 1px 1px 1px 0;
}
@media (max-width: 600px) {
  .news-grid .articles article .dots {
    width: 50px;
    margin-bottom: 10px;
  }
}
.news-grid .articles article .dots .dots-red {
  display: none;
}
.news-grid .articles article .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 600px) {
  .news-grid .articles article .title {
    font-size: 20px;
  }
}
.news-grid .articles article .date {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}
.news-grid .articles article .excerpt {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .news-grid .articles article .excerpt {
    font-size: 16px;
  }
}
.news-grid .articles article .arrow {
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
.news-grid .articles article .arrow img {
  width: 50px;
  height: 50px;
}
@media (max-width: 450px) {
  .news-grid .articles article .arrow img {
    width: 35px;
    height: 35px;
  }
}
.news-grid .articles article .arrow img.arrow-red {
  display: none;
}
.news-grid .loadmore {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 450px) {
  .news-grid .loadmore {
    margin-bottom: 20px;
  }
}
.news-grid .loadmore .button {
  display: inline-block;
}
.news-grid .no-results {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: none;
}

/*=======================================
            Single Article
========================================*/
.page-intro.article-intro {
  border-radius: 15px 15px 0 0 !important;
  padding-bottom: 20px;
}
.page-intro.article-intro .icon.circle {
  border: 8px solid #002D3F;
  border-radius: 100px;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .page-intro.article-intro .icon.circle {
    display: none;
  }
}
.page-intro.article-intro .icon.circle img {
  max-width: 70%;
  max-height: 50%;
  width: auto;
  height: auto;
}
.page-intro.article-intro h1 {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .page-intro.article-intro h1 {
    font-size: 45px;
  }
}
@media (max-width: 1000px) {
  .page-intro.article-intro h1 {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  .page-intro.article-intro h1 {
    font-size: 30px;
  }
}
.page-intro.article-intro .date {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}

.article-body {
  padding: 60px 0;
}
@media (max-width: 1200px) {
  .article-body {
    padding: 50px 0;
  }
}
@media (max-width: 450px) {
  .article-body {
    padding: 30px 0;
  }
}
.article-body .text-container {
  padding: 0 150px;
}
@media (max-width: 1200px) {
  .article-body .text-container {
    padding: 0;
  }
}
.article-body .text-container .download-button {
  margin-top: 40px;
}
.article-body .text-container .download-button.no-margin {
  margin-top: 0;
}
.article-body .tags {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 60px;
}
.article-body .tags .label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 115px;
  padding-top: 12px;
}
.article-body .tags .tags-row {
  width: calc(100% - 115px);
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 600px) {
  .article-body .tags .tags-row {
    width: 100%;
    margin-top: 20px;
  }
}
.article-body .tags .tags-row .tag {
  position: relative;
  margin-left: 17px;
  background-color: #E9F1F4;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 17px;
}
@media (max-width: 600px) {
  .article-body .tags .tags-row .tag {
    margin: 0 17px 17px 0;
    font-size: 16px;
  }
}

/*=======================================
            Publication Filters
========================================*/
#publication-filters .featured-filters {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
@media (max-width: 600px) {
  #publication-filters .featured-filters {
    display: none;
  }
}
#publication-filters .featured-filters .label {
  width: 150px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 800px) {
  #publication-filters .featured-filters .label {
    width: 100%;
  }
}
#publication-filters .featured-filters .clouds {
  width: calc(100% - 150px);
  padding-left: 20px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  #publication-filters .featured-filters .clouds {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
}
#publication-filters .featured-filters .clouds .cloud {
  border: 2px solid #002D3F;
  color: #002D3F;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 9px 15px 10px;
  margin: 0 6px 6px 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#publication-filters .featured-filters .clouds .cloud:hover, #publication-filters .featured-filters .clouds .cloud.active {
  background-color: #002D3F;
  color: #ffffff;
}
#publication-filters .nice-select {
  min-width: 380px;
}
@media (max-width: 1060px) {
  #publication-filters .nice-select {
    min-width: 0;
    width: 100%;
  }
  #publication-filters .nice-select .current {
    overflow-x: hidden;
  }
}

/*=======================================
            Publications Grid
========================================*/
.publications-grid {
  padding-bottom: 100px;
}
.publications-grid .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .publications-grid .section-title {
    font-size: 28px;
  }
}
.publications-grid .grid {
  justify-content: space-between;
  align-items: unset;
}
.publications-grid .grid .publication {
  width: calc(50% - 20px);
  background-color: #ffffff;
  border-radius: 15px;
  margin-bottom: 20px;
  align-items: unset;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 1000px) {
  .publications-grid .grid .publication {
    width: 100%;
  }
}
.publications-grid .grid .publication:hover {
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.15);
  background-color: #FDEFEF;
}
.publications-grid .grid .publication:hover .icon {
  background-color: #E80E57;
}
.publications-grid .grid .publication.hide {
  display: none;
}
.publications-grid .grid .publication .icon {
  width: 100px;
  background-color: #002D3F;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 15px 0 0 15px;
  transition: all 0.3s ease-in-out;
}
.publications-grid .grid .publication .icon img {
  max-width: 80%;
  max-height: 50%;
  width: auto;
  height: auto;
}
.publications-grid .grid .publication .meta {
  width: calc(100% - 100px);
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.publications-grid .grid .publication .meta .type {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 450px) {
  .publications-grid .grid .publication .meta .type {
    font-size: 12px;
  }
}
.publications-grid .grid .publication .meta .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .publications-grid .grid .publication .meta .title {
    font-size: 18px;
  }
}
.publications-grid .grid .publication .meta .date {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.publications-grid .loadmore {
  width: 100%;
  text-align: center;
  margin: 50px 0;
}
@media (max-width: 450px) {
  .publications-grid .loadmore {
    margin-bottom: 20px;
  }
}
.publications-grid .loadmore .button {
  display: inline-block;
}
.publications-grid .no-results {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: none;
}

/*=======================================
        Featured Publications
========================================*/
.featured-pubs {
  padding-bottom: 100px;
}
@media (max-width: 1500px) {
  .featured-pubs {
    padding: 0 50px 100px;
  }
}
@media (max-width: 1000px) {
  .featured-pubs {
    padding: 0 0 50px;
  }
}
.featured-pubs .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .featured-pubs .section-title {
    font-size: 28px;
  }
}
.featured-pubs .carousel-wrap {
  position: relative;
}
@media (max-width: 1000px) {
  .featured-pubs .carousel-wrap .carousel {
    margin: 0 -10px;
  }
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: unset;
  flex-wrap: wrap;
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication {
  width: calc(50% - 20px) !important;
  background-color: #ffffff;
  border-radius: 15px;
  margin-bottom: 20px;
  align-items: unset;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: flex !important;
}
@media (max-width: 1000px) {
  .featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication {
    width: 100% !important;
    margin: 0 10px 20px 10px;
  }
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication:hover {
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.15);
  background-color: #FDEFEF;
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .icon {
  width: 100px;
  background-color: #E80E57;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 15px 0 0 15px;
  transition: all 0.3s ease-in-out;
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .icon img {
  max-width: 80%;
  max-height: 50%;
  width: auto;
  height: auto;
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .meta {
  width: calc(100% - 100px);
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .meta .type {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 450px) {
  .featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .meta .type {
    font-size: 12px;
  }
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .meta .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .meta .title {
    font-size: 18px;
  }
}
.featured-pubs .carousel-wrap .carousel .slick-slide div:not([class]) .publication .meta .date {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 1000px) {
  .featured-pubs .carousel-wrap .arrows {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.featured-pubs .carousel-wrap .arrows .arrow {
  width: 35px;
  height: auto;
  position: absolute;
  top: calc(50% - 17px);
  cursor: pointer;
}
@media (max-width: 1000px) {
  .featured-pubs .carousel-wrap .arrows .arrow {
    position: static;
    margin: 0 10px;
  }
}
.featured-pubs .carousel-wrap .arrows .arrow.prev {
  left: -50px;
}
.featured-pubs .carousel-wrap .arrows .arrow.next {
  right: -50px;
  transform: rotate(180deg);
}

/*=======================================
            Case Filters
========================================*/
#cases-intro {
  padding: 60px 0 30px;
}
@media (max-width: 1000px) {
  #cases-intro .contents .col.left {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  #cases-intro {
    padding: 50px 0 0;
  }
}
@media (max-width: 450px) {
  #cases-intro {
    padding: 30px 0 0;
  }
}

#case-filters #grounds-filter .nice-select {
  min-width: 350px;
}
@media (max-width: 1060px) {
  #case-filters #grounds-filter .nice-select {
    min-width: 0;
    width: 100%;
  }
  #case-filters #grounds-filter .nice-select .current {
    overflow-x: hidden;
  }
}
@media (max-width: 1350px) {
  #case-filters #search-filter {
    width: calc(50% - 10px);
    margin-top: 25px;
  }
  #case-filters #search-filter input[type=text] {
    width: 100%;
  }
}
@media (max-width: 700px) {
  #case-filters #search-filter {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 1350px) {
  #case-filters .reset {
    margin-top: 20px;
  }
}

#case-filters .sorting {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
}
#case-filters .sorting .label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-right: 20px;
}
#case-filters .sorting .sort {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  opacity: 0.3;
}
#case-filters .sorting .sort.active {
  opacity: 1;
}
#case-filters .sorting .sort#alpha {
  margin-right: 30px;
}
#case-filters .sorting .sort span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-right: 8px;
}
#case-filters .sorting .sort svg {
  width: 22px;
  height: auto;
}
#case-filters .sorting .sort[data-value=new-old] svg {
  transform: rotate(180deg);
}
#case-filters .sorting .sort[data-value=a-z] svg {
  transform: rotate(180deg);
}

/*=======================================
            Cases Grid
========================================*/
.cases-grid {
  padding-bottom: 100px;
}
.cases-grid .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .cases-grid .section-title {
    font-size: 28px;
  }
}
.cases-grid .grid {
  justify-content: space-between;
  align-items: unset;
}
.cases-grid .grid .case-item {
  width: calc(50% - 20px);
  margin-bottom: 25px;
  background-color: #ffffff;
  border-radius: 15px;
  align-items: unset;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 1000px) {
  .cases-grid .grid .case-item {
    width: 100%;
  }
}
.cases-grid .grid .case-item.hide {
  display: none;
}
.cases-grid .grid .case-item:hover {
  background-color: #FDEFEF;
}
.cases-grid .grid .case-item:hover .icon {
  background-color: #E80E57;
}
.cases-grid .grid .case-item .icon {
  background-color: #002D3F;
  border-radius: 15px 0 0 15px;
  width: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 450px) {
  .cases-grid .grid .case-item .icon {
    width: 60px;
  }
}
.cases-grid .grid .case-item .icon img {
  width: 35px;
  height: auto;
}
@media (max-width: 450px) {
  .cases-grid .grid .case-item .icon img {
    width: 25px;
  }
}
.cases-grid .grid .case-item .info {
  width: calc(100% - 100px);
  padding: 20px;
}
@media (max-width: 450px) {
  .cases-grid .grid .case-item .info {
    width: calc(100% - 60px);
  }
}
.cases-grid .grid .case-item .info .type {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.cases-grid .grid .case-item .info .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .cases-grid .grid .case-item .info .name {
    font-size: 18px;
  }
}
.cases-grid .grid .case-item .info .meta p {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 3px;
}
.cases-grid .grid .case-item .info .meta p:last-of-type {
  margin-bottom: 0;
}
.cases-grid .loadmore {
  width: 100%;
  text-align: center;
  margin: 50px 0;
}
@media (max-width: 450px) {
  .cases-grid .loadmore {
    margin-bottom: 20px;
  }
}
.cases-grid .loadmore .button {
  display: inline-block;
}
.cases-grid .no-results {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: none;
}

/*=======================================
            Single Case
========================================*/
#case-intro {
  padding-bottom: 50px;
}
#case-intro .meta {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 600px) {
  #case-intro .meta {
    font-size: 16px;
  }
}
#case-intro .meta p {
  margin-bottom: 10px;
}
#case-intro .meta p strong {
  font-weight: 700;
}

.single-case #page-wrap .back-button {
  padding-top: 75px;
}

/*=======================================
            Start Application
========================================*/
.start-application .contents {
  border-radius: 15px;
  padding: 50px 35px;
  justify-content: flex-start;
  align-items: center;
}
.start-application .contents .left {
  width: calc(100% - 400px);
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1000px) {
  .start-application .contents .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.start-application .contents .left .icon {
  width: 100px;
  height: auto;
}
@media (max-width: 800px) {
  .start-application .contents .left .icon {
    display: none;
  }
}
.start-application .contents .left .text {
  width: calc(100% - 100px);
  padding-left: 25px;
}
@media (max-width: 800px) {
  .start-application .contents .left .text {
    width: 100%;
    padding-left: 0;
  }
}
.start-application .contents .left .text .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .start-application .contents .left .text .title {
    font-size: 28px;
  }
}
.start-application .contents .left .text .subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
.start-application .contents .right {
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 1000px) {
  .start-application .contents .right {
    width: 100%;
    justify-content: flex-start;
  }
}
.start-application .contents .right .button {
  font-size: 24px;
  font-weight: 700;
  padding: 30px 50px;
  border-radius: 100px;
}
@media (max-width: 1000px) {
  .start-application .contents .right .button {
    font-size: 20px;
    padding: 20px 35px;
  }
}

/*=======================================
            Flowchart
========================================*/
.flowchart .contents {
  max-width: 900px;
  margin: 0 auto;
}
.flowchart .section {
  display: none;
}
.flowchart .section.active {
  display: block;
}
.flowchart #block-1 .box {
  background-color: #E9F1F4;
}
.flowchart .box {
  border: 2px solid #002D3F;
  border-radius: 15px;
  padding: 30px 50px;
}
@media (max-width: 600px) {
  .flowchart .box {
    padding: 20px;
  }
}
.flowchart .box .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .flowchart .box .title {
    font-size: 18px;
  }
}
.flowchart .box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .flowchart .box p {
    font-size: 14px;
  }
}
.flowchart .box p:last-of-type {
  margin-bottom: 0;
}
.flowchart .arrow {
  width: 22px;
  margin: 1px auto;
}
.flowchart .decision {
  justify-content: center;
  align-items: unset;
}
@media (max-width: 600px) {
  .flowchart .decision {
    justify-content: space-between;
  }
}
.flowchart .decision.hidden {
  display: none;
}
.flowchart .decision .option-wrap {
  width: 170px;
  margin: 0 20px;
}
@media (max-width: 600px) {
  .flowchart .decision .option-wrap {
    width: calc(50% - 15px);
    margin: 0;
  }
}
.flowchart .decision .option-wrap .arrow.after {
  display: none;
}
.flowchart .decision .option-wrap.active .arrow.after {
  display: block;
}
.flowchart .decision .option {
  border: 2px solid #002D3F;
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .flowchart .decision .option {
    padding: 20px 10px;
  }
}
.flowchart .decision .option p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.flowchart .decision .option span {
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
}

/*=======================================
            Application Form
========================================*/
.app-form {
  border-radius: 15px !important;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 1000px) {
  .app-form {
    padding-bottom: 50px;
  }
}
.app-form .gform_heading,
.app-form .gf_progressbar {
  display: none;
}
.app-form #gform_4 {
  border-radius: 15px;
}
.app-form #gform_4 .gf_progressbar_wrapper {
  background-color: #FDEFEF;
  border-radius: 15px 15px 0 0;
  padding: 40px 50px 0 50px;
  margin-bottom: -5px;
}
@media (max-width: 600px) {
  .app-form #gform_4 .gf_progressbar_wrapper {
    padding: 30px 30px 0;
  }
}
@media (max-width: 450px) {
  .app-form #gform_4 .gf_progressbar_wrapper {
    padding: 30px 15px 0;
  }
}
.app-form #gform_4 .gf_progressbar_wrapper .gf_progressbar_title {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.3;
  text-transform: uppercase;
  color: #002D3F !important;
}
.app-form #gform_4 .gform_body {
  padding: 0 50px;
}
@media (max-width: 600px) {
  .app-form #gform_4 .gform_body {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  .app-form #gform_4 .gform_body {
    padding: 0 15px;
  }
}
.app-form #gform_4 .gform_fields {
  display: block !important;
}
.app-form #gform_4 #field_4_21,
.app-form #gform_4 #field_4_22,
.app-form #gform_4 #field_4_29,
.app-form #gform_4 #field_4_33,
.app-form #gform_4 #field_4_49,
.app-form #gform_4 #field_4_57,
.app-form #gform_4 #field_4_64,
.app-form #gform_4 #field_4_68 {
  background-color: #FDEFEF;
  position: relative;
  color: #002D3F;
  padding-bottom: 35px;
  max-width: 100%;
  margin-bottom: 60px !important;
  padding-top: 5px;
}
@media (max-width: 600px) {
  .app-form #gform_4 #field_4_21,
  .app-form #gform_4 #field_4_22,
  .app-form #gform_4 #field_4_29,
  .app-form #gform_4 #field_4_33,
  .app-form #gform_4 #field_4_49,
  .app-form #gform_4 #field_4_57,
  .app-form #gform_4 #field_4_64,
  .app-form #gform_4 #field_4_68 {
    margin-bottom: 30px !important;
    padding-top: 10px;
  }
}
.app-form #gform_4 #field_4_21:before,
.app-form #gform_4 #field_4_22:before,
.app-form #gform_4 #field_4_29:before,
.app-form #gform_4 #field_4_33:before,
.app-form #gform_4 #field_4_49:before,
.app-form #gform_4 #field_4_57:before,
.app-form #gform_4 #field_4_64:before,
.app-form #gform_4 #field_4_68:before {
  content: "";
  position: absolute;
  background-color: #FDEFEF;
  width: calc(100% + 100px);
  left: -50px;
  top: 0;
  height: 100%;
  z-index: 0;
}
@media (max-width: 600px) {
  .app-form #gform_4 #field_4_21:before,
  .app-form #gform_4 #field_4_22:before,
  .app-form #gform_4 #field_4_29:before,
  .app-form #gform_4 #field_4_33:before,
  .app-form #gform_4 #field_4_49:before,
  .app-form #gform_4 #field_4_57:before,
  .app-form #gform_4 #field_4_64:before,
  .app-form #gform_4 #field_4_68:before {
    width: calc(100% + 60px);
    left: -30px;
  }
}
@media (max-width: 450px) {
  .app-form #gform_4 #field_4_21:before,
  .app-form #gform_4 #field_4_22:before,
  .app-form #gform_4 #field_4_29:before,
  .app-form #gform_4 #field_4_33:before,
  .app-form #gform_4 #field_4_49:before,
  .app-form #gform_4 #field_4_57:before,
  .app-form #gform_4 #field_4_64:before,
  .app-form #gform_4 #field_4_68:before {
    width: calc(100% + 30px);
    left: -15px;
  }
}
.app-form #gform_4 #field_4_21 *,
.app-form #gform_4 #field_4_22 *,
.app-form #gform_4 #field_4_29 *,
.app-form #gform_4 #field_4_33 *,
.app-form #gform_4 #field_4_49 *,
.app-form #gform_4 #field_4_57 *,
.app-form #gform_4 #field_4_64 *,
.app-form #gform_4 #field_4_68 * {
  position: relative;
  z-index: 1;
}
.app-form #gform_4 #field_4_21 h2,
.app-form #gform_4 #field_4_22 h2,
.app-form #gform_4 #field_4_29 h2,
.app-form #gform_4 #field_4_33 h2,
.app-form #gform_4 #field_4_49 h2,
.app-form #gform_4 #field_4_57 h2,
.app-form #gform_4 #field_4_64 h2,
.app-form #gform_4 #field_4_68 h2 {
  font-size: 58px;
  line-height: 1.13;
  font-weight: 700;
  margin-bottom: 75px;
  letter-spacing: -0.87px;
}
@media (max-width: 1000px) {
  .app-form #gform_4 #field_4_21 h2,
  .app-form #gform_4 #field_4_22 h2,
  .app-form #gform_4 #field_4_29 h2,
  .app-form #gform_4 #field_4_33 h2,
  .app-form #gform_4 #field_4_49 h2,
  .app-form #gform_4 #field_4_57 h2,
  .app-form #gform_4 #field_4_64 h2,
  .app-form #gform_4 #field_4_68 h2 {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .app-form #gform_4 #field_4_21 h2,
  .app-form #gform_4 #field_4_22 h2,
  .app-form #gform_4 #field_4_29 h2,
  .app-form #gform_4 #field_4_33 h2,
  .app-form #gform_4 #field_4_49 h2,
  .app-form #gform_4 #field_4_57 h2,
  .app-form #gform_4 #field_4_64 h2,
  .app-form #gform_4 #field_4_68 h2 {
    font-size: 33px;
    margin-bottom: 30px;
  }
}
.app-form #gform_4 #field_4_21 p,
.app-form #gform_4 #field_4_22 p,
.app-form #gform_4 #field_4_29 p,
.app-form #gform_4 #field_4_33 p,
.app-form #gform_4 #field_4_49 p,
.app-form #gform_4 #field_4_57 p,
.app-form #gform_4 #field_4_64 p,
.app-form #gform_4 #field_4_68 p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .app-form #gform_4 #field_4_21 p,
  .app-form #gform_4 #field_4_22 p,
  .app-form #gform_4 #field_4_29 p,
  .app-form #gform_4 #field_4_33 p,
  .app-form #gform_4 #field_4_49 p,
  .app-form #gform_4 #field_4_57 p,
  .app-form #gform_4 #field_4_64 p,
  .app-form #gform_4 #field_4_68 p {
    font-size: 16px;
  }
}
.app-form #gform_4 #field_4_21 p:last-of-type,
.app-form #gform_4 #field_4_22 p:last-of-type,
.app-form #gform_4 #field_4_29 p:last-of-type,
.app-form #gform_4 #field_4_33 p:last-of-type,
.app-form #gform_4 #field_4_49 p:last-of-type,
.app-form #gform_4 #field_4_57 p:last-of-type,
.app-form #gform_4 #field_4_64 p:last-of-type,
.app-form #gform_4 #field_4_68 p:last-of-type {
  margin-bottom: 0;
}
.app-form #gform_4 #field_4_70 {
  color: #002D3F;
}
.app-form #gform_4 #field_4_70 h3 {
  font-size: 40px;
  line-height: 1.13;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .app-form #gform_4 #field_4_70 h3 {
    font-size: 34px;
  }
}
@media (max-width: 600px) {
  .app-form #gform_4 #field_4_70 h3 {
    font-size: 24px;
  }
}
.app-form #gform_4 #field_4_70 p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .app-form #gform_4 #field_4_70 p {
    font-size: 16px;
  }
}
.app-form #gform_4 #field_4_70 p:last-of-type {
  margin-bottom: 0;
}
.app-form #gform_4 .gfield {
  max-width: 900px;
  margin: 0 auto !important;
  padding-bottom: 25px;
}
.app-form #gform_4 .gfield .gfield_label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #002D3F;
  margin-bottom: 10px;
}
.app-form #gform_4 .gfield .gfield_description {
  color: #002D3F;
  padding: 0 0 15px 0;
  line-height: 1.5;
  font-size: 16px;
  font-style: italic;
}
.app-form #gform_4 .gfield input[type=text],
.app-form #gform_4 .gfield input[type=email],
.app-form #gform_4 .gfield textarea {
  background-color: #E9F1F4;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  line-height: 1;
  padding: 20px;
  color: #002D3F;
}
.app-form #gform_4 .gfield textarea {
  resize: none;
  line-height: 1.3;
}
.app-form #gform_4 .gfield .gchoice {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.app-form #gform_4 .gfield .gchoice input[type=radio] {
  width: 18px;
  height: 18px;
  outline: 2px solid #002D3F;
  border: 2px solid #E9F1F4;
  border-radius: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease;
  background-color: #E9F1F4;
  margin: 0 8px 0 0;
}
.app-form #gform_4 .gfield .gchoice input[type=radio]:checked {
  background-color: #E80E57;
}
.app-form #gform_4 .gfield .gchoice label {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #002D3F;
  margin-bottom: 2px;
}
.app-form #gform_4 .gfield .gform_drop_area {
  border: none;
  background-color: #E9F1F4;
  border-radius: 15px;
  color: #002D3F;
}
.app-form #gform_4 .gfield .gform_drop_area .gform_button_select_files {
  border: 3px solid #E80E57;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #ffffff;
  text-decoration: none;
  width: fit-content;
  line-height: 1 !important;
  background-color: #E80E57;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
}
.app-form #gform_4 .gfield .gform_delete_file {
  color: #002D3F;
  position: relative;
  top: -2px;
}
.app-form #gform_4 .gform_page_footer {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1000px) {
  .app-form #gform_4 .gform_page_footer {
    padding-top: 50px;
  }
}
.app-form #gform_4 .gform_page_footer .gform_next_button,
.app-form #gform_4 .gform_page_footer .gform_previous_button,
.app-form #gform_4 .gform_page_footer input[type=submit] {
  border: 3px solid #E80E57;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #ffffff;
  text-decoration: none;
  width: fit-content;
  line-height: 1 !important;
  background-color: #E80E57;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
  margin: 0 8px 8px 0;
}
.app-form #gform_4 .gform_page_footer .gform_save_link {
  border: 3px solid #002D3F;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #002D3F;
  text-decoration: none;
  width: fit-content;
  line-height: 1 !important;
  background-color: #ffffff;
  cursor: pointer;
}
.app-form #gform_4 .gform_page_footer .gform_save_link svg {
  width: auto;
  height: auto;
  margin: 0 0 0 10px;
}
.app-form #gform_4 .gform_page_footer .gform_save_link svg path {
  fill: #002D3F;
}
.app-form .form_saved_message,
.app-form .form_saved_message_sent {
  padding: 70px 50px 0;
  color: #002D3F;
  background-color: #FDEFEF;
  border-radius: 15px 15px 0 0;
}
@media (max-width: 600px) {
  .app-form .form_saved_message,
  .app-form .form_saved_message_sent {
    padding: 60px 30px 0;
  }
}
@media (max-width: 450px) {
  .app-form .form_saved_message,
  .app-form .form_saved_message_sent {
    padding: 60px 15px 0;
  }
}
.app-form .form_saved_message h2,
.app-form .form_saved_message_sent h2 {
  font-size: 58px;
  line-height: 1.13;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .app-form .form_saved_message h2,
  .app-form .form_saved_message_sent h2 {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .app-form .form_saved_message h2,
  .app-form .form_saved_message_sent h2 {
    font-size: 33px;
  }
}
.app-form .form_saved_message p,
.app-form .form_saved_message_sent p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
.app-form .form_saved_message a,
.app-form .form_saved_message_sent a {
  color: #E80E57;
  text-decoration: underline;
  word-break: break-all;
}
.app-form .form_saved_message .form_saved_message_emailform,
.app-form .form_saved_message_sent .form_saved_message_emailform {
  position: relative;
  padding-top: 30px;
}
.app-form .form_saved_message .form_saved_message_emailform:before,
.app-form .form_saved_message_sent .form_saved_message_emailform:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: calc(100% + 100px);
  left: -50px;
  top: 0;
  height: 100%;
  z-index: 0;
}
@media (max-width: 600px) {
  .app-form .form_saved_message .form_saved_message_emailform:before,
  .app-form .form_saved_message_sent .form_saved_message_emailform:before {
    width: calc(100% + 60px);
    left: -30px;
  }
}
@media (max-width: 450px) {
  .app-form .form_saved_message .form_saved_message_emailform:before,
  .app-form .form_saved_message_sent .form_saved_message_emailform:before {
    width: calc(100% + 30px);
    left: -15px;
  }
}
.app-form .form_saved_message .form_saved_message_emailform form,
.app-form .form_saved_message_sent .form_saved_message_emailform form {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}
.app-form .form_saved_message .form_saved_message_emailform .gform-body,
.app-form .form_saved_message_sent .form_saved_message_emailform .gform-body {
  padding: 0 !important;
}
.app-form .form_saved_message .form_saved_message_emailform input[type=submit],
.app-form .form_saved_message_sent .form_saved_message_emailform input[type=submit] {
  border: 3px solid #E80E57;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #ffffff;
  text-decoration: none;
  width: fit-content;
  line-height: 1 !important;
  background-color: #E80E57;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
}
.app-form .form_saved_message_sent {
  padding: 70px 50px 20px;
}
@media (max-width: 600px) {
  .app-form .form_saved_message_sent {
    padding: 60px 30px 20px;
  }
}
@media (max-width: 450px) {
  .app-form .form_saved_message_sent {
    padding: 60px 15px 20px;
  }
}
.app-form .bottom-text {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 30px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: #002D3F;
}
@media (max-width: 1060px) {
  .app-form .bottom-text {
    padding: 20px 50px 0;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .app-form .bottom-text {
    padding: 20px 30px 0;
  }
}
@media (max-width: 450px) {
  .app-form .bottom-text {
    padding: 20px 15px 0;
  }
}
.app-form .steps {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: left;
  top: 40px;
  padding-right: 50px;
  color: #002D3F;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 600px) {
  .app-form .steps {
    top: 30px;
    justify-content: flex-end;
    padding: 0 30px 0 0;
  }
}
.app-form .steps svg {
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.app-form .steps span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

#steps-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}
#steps-popup.hidden {
  display: none;
}
#steps-popup .inner {
  background-color: #FDEFEF;
  border-radius: 15px;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 650px;
  height: auto;
  padding: 30px 30px 45px 45px;
}
@media (max-width: 800px) {
  #steps-popup .inner {
    width: calc(100% - 60px);
  }
}
@media (max-width: 600px) {
  #steps-popup .inner {
    padding: 30px 30px 45px;
  }
}
#steps-popup .inner .close {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
}
#steps-popup .inner .close svg {
  width: 40px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 600px) {
  #steps-popup .inner .close svg {
    width: 30px;
  }
}
#steps-popup .inner .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  #steps-popup .inner .title {
    font-size: 24px;
  }
}
#steps-popup .inner .step {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 600px) {
  #steps-popup .inner .step {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#steps-popup .inner .step .label {
  width: 55px;
  font-weight: 700;
}
#steps-popup .inner .step .text {
  width: calc(100% - 55px);
  padding-left: 25px;
}

/*=======================================
            Search Results
========================================*/
section.search-res {
  padding: 100px 0;
}
@media (max-width: 600px) {
  section.search-res {
    padding: 50px 0;
  }
}

/*=======================================
        Translations Banner
========================================*/
.translations-banner {
  padding: 60px 0 40px;
}
.translations-banner .contents {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .translations-banner .contents {
    flex-direction: column;
    align-items: center;
  }
}
.translations-banner .contents .image {
  margin-right: 30px;
  width: 200px;
}
@media (max-width: 1100px) {
  .translations-banner .contents .image {
    margin-right: 0;
  }
}
.translations-banner .contents .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.54px;
  margin-right: 20px;
  margin-bottom: 18px;
}
@media (max-width: 1100px) {
  .translations-banner .contents .title {
    width: 100%;
    margin: 20px 0;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .translations-banner .contents .title {
    font-size: 28px;
  }
}
.translations-banner .contents .button {
  margin-bottom: 15px;
}

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