@font-face {
  font-family: "Kuunari";
  src: url(/fonts/KuunariRegular.otf) format("opentype");
}
@font-face {
  font-family: "Kuunari Bold";
  src: url(/fonts/KuunariBold.otf) format("opentype");
}
@font-face {
  font-family: "SliderFont";
  src: url(/fonts/gabriela-black-hdr.otf) format("opentype");
}
@font-face {
  font-family: "gabriela";
  src: url(/fonts/Gabriela-Regular.ttf) format("truetype");
}
* {
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 19px;
}
body {
  overflow-x: hidden;
}
.main h1:nth-child(1) {
  margin-top: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Kuunari;
}
h1 {
  font-size: 55px;
  margin: 15px 0 20px 0;
  color: #293A68;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 60px;
}
h3 {
  font-size: 34px;
  font-weight: normal;
  margin: 20px 0 15px 0;
  color: #293A68;
  line-height: 1.4rem;
}
h4 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: normal;
  margin: 10px 0 10px;
  color: #293A68;
}
h2 {
  font-size: 46px;
  line-height: 1em;
  font-weight: normal;
  margin: 0px 0 15px 0;
  color: #293A68;
}
strong {
  font-weight: 500;
}
i {
  font-family: fontawesome;
  font-style: normal;
}
p {
  line-height: 33px;
  padding: 0 0 15px 0;
}
#header {
  background: linear-gradient(90deg, #222734 0%, #283966 45%, #293a67 55%, #151d34 100%);
}
#header .header-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px 15px 60px;
}
#header .header-inner .logo-col {
  max-width: 435px;
}
#header .header-inner .logo-col img {
  max-width: 100%;
}
#header .header-inner .nav-col a {
  color: #fff;
  font-family: 'Kuunari';
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 22px;
}
#header .header-inner .nav-col a:hover {
  color: #329BBE;
}
.content-row {
  display: flex;
  padding-bottom: 60px;
}
.content-row.removeBottomPadding {
  padding-bottom: 0;
}
.content-row .row-image img {
  width: 100%;
}
.content-row.imageRight {
  flex-direction: row;
}
.content-row.imageRight .row-text {
  padding: 0 70px 0px 0px;
}
.content-row.imageLeft {
  flex-direction: row-reverse;
}
.content-row.imageLeft .row-text {
  padding: 0 0px 0px 70px;
}
.content-row.imageCenter {
  flex-direction: column;
}
.content-row.imageCenter .row-text {
  width: 100%;
}
.content-row.imageCenter .row-image {
  width: 100%;
  padding: 30px 0 0px 0px;
}
.content-row.twentyFive .row-image {
  width: 25%;
}
.content-row.twentyFive .row-text {
  width: 75%;
}
.content-row.fullWidth .row-image {
  width: 100%;
}
.content-row.fullWidth .row-text {
  width: 100%;
}
.content-row.fifty .row-image {
  width: 50%;
}
.content-row.fifty .row-text {
  width: 50%;
}
.content-row.seventyFive .row-image {
  width: 75% ;
}
.content-row.seventyFive .row-text {
  width: 25%;
}
.content-row.third .row-image {
  width: 33% ;
}
.content-row.third .row-text {
  width: 66%;
}
.width-wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 60px;
}
.width-wrapper label.freeform-label {
  display: none !important;
}
.width-wrapper button {
  background: none !important;
  border: none !important;
  color: #293A68 !important;
  font-family: SliderFont !important;
  font-size: 30px !important;
  padding: 0 !important;
  position: relative;
}
.width-wrapper button:hover {
  color: #329BBE !important;
}
.width-wrapper button:disabled::after {
  content: '';
  position: absolute;
  top: 80%;
  right: -40%;
  margin-top: -30px;
  margin-left: -30px;
  width: 30px;
  height: 30px;
  border-radius: 35px;
  border: 3px solid grey;
  border-top-color: black;
  animation: loading 2s linear infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#footer {
  background: linear-gradient(90deg, #222734 0%, #283966 45%, #293a67 55%, #151d34 100%);
}
#footer .ftr-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 30px 60px;
}
#footer .ftr-inner .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
#footer .ftr-inner .top-row .info-col {
  width: 30%;
}
#footer .ftr-inner .top-row .info-col a {
  display: block;
  padding-bottom: 10px;
  color: #fff;
  text-decoration: none;
}
#footer .ftr-inner .top-row .info-col a:hover {
  color: #329BBE;
}
#footer .ftr-inner .top-row .info-col p {
  color: #fff;
}
#footer .ftr-inner .top-row .ftr-links {
  width: 30%;
  text-align: right;
}
#footer .ftr-inner .top-row .ftr-links a {
  color: #fff;
  text-decoration: none;
  padding-left: 15px;
  display: inline-block;
}
#footer .ftr-inner .top-row .ftr-links a:hover {
  color: #329BBE;
}
#footer .ftr-inner .top-row .ftr-links a i {
  font-size: 25px;
}
