@font-face {
  font-family: "poppins_extra_light";
  src: url("../../fonts/poppins/Poppins-ExtraLight.ttf");
}
@font-face {
  font-family: "poppins_light";
  src: url("../../fonts/poppins/Poppins-Light.ttf");
}
@font-face {
  font-family: "poppins_regular";
  src: url("../../fonts/poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "poppins_medium";
  src: url("../../fonts/poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "poppins_semibold";
  src: url("../../fonts/poppins/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "poppins_bold";
  src: url("../../fonts/poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: "poppins_black";
  src: url("../../fonts/poppins/Poppins-Black.ttf");
}
html {
  font-size: 10px;
  font-family: "poppins_regular", sans-serif;
  scroll-behavior: smooth;
}
html body {
  margin: 0;
  overflow: auto !important;
}
html body * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #0B1A31;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.purple-color {
  color: #312B61;
}

.yellow-color {
  color: #FBC702;
}

.green-color {
  color: #50B196;
}

.rose-color {
  color: #FA9D7E;
}

.red-color {
  color: #f44336;
}

.grey-color {
  color: #707070;
}

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

.white-color {
  color: #fff;
}

.blue-color {
  color: #1A87BC;
}

.light-blue-color {
  color: #2BA7DE;
}

.dark-blue-color {
  color: #101010;
}

.grey-blue-background {
  color: #dae6ee;
}

.light-blue-background {
  background-color: #2BA7DE;
}

.dark-blue-background {
  background-color: #101010;
}

.white-background {
  background-color: #fff;
}

p {
  margin: 0;
  font-size: 1.8rem;
  font-family: "poppins_light", sans-serif;
  color: #101010;
  line-height: 2.6rem;
}

h1 {
  font-size: 5.1rem;
  line-height: 1;
}

h2 {
  font-size: 4.1rem;
  line-height: 1;
}

h3 {
  font-size: 3.5rem;
  line-height: 1;
}

h4 {
  font-size: 3rem;
  line-height: 1;
}

h5 {
  font-size: 2.5rem;
  line-height: 1;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  color: #0B1A31;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

img {
  max-width: 100%;
}

hr {
  border-bottom: none;
  box-shadow: none;
  outline: none;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1.5rem 0;
  padding: 0;
}

#ui-datepicker-div {
  width: auto;
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}
table tr th, table tr td {
  font-size: 1.5rem;
}

ol, ul {
  margin: 0;
  padding-left: 0;
  font-size: 1.8rem;
  font-family: "poppins_light", sans-serif;
  color: #101010;
  line-height: 2.6rem;
}

.collapseomatic {
  cursor: pointer;
  margin: 2px;
  padding: 5px 10px 5px 20px;
  display: block;
  background: url(./../../images/collapse-down.png) no-repeat 98% center #c7dae3;
  color: #393f4f;
  border: none;
}

input,
select,
texarea,
input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

.checkbox-container {
  display: inline;
  position: relative;
  padding-left: 4.5rem;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.9rem;
  color: #373b47;
  font-weight: normal;
  font-family: "poppins_regular", sans-serif;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #fff;
  border: 1px solid #6c717d;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.7rem;
  top: 0.2rem;
  width: 0.8rem;
  height: 1.3rem;
  border: solid #0B1A31;
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #fff;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-container {
  display: inline;
  position: relative;
  padding-left: 3.8rem;
  line-height: 2.5rem;
  cursor: pointer;
  font-size: 1.7rem;
  font-family: "poppins_medium", sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #707070;
}
.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.4rem;
  top: 0.4rem;
  width: 1.3rem;
  height: 1.3rem;
  border: 1px solid #707070;
  background: #0B1A31;
  border-radius: 100%;
}
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.radio-container input:checked ~ .checkmark {
  background-color: #fff;
}
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.custom-select {
  position: relative;
  width: 100%;
  height: 5.85rem;
  margin: 0 1rem;
  border-bottom: 1px solid #0B1A31;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: #fff;
  background-image: url(../../images/arrow_down.svg);
  background-size: 1.5rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5rem);
}

.select-items div,
.select-selected {
  padding: 0 6rem 0 0;
  cursor: pointer;
  height: 100%;
  font-size: 1.7rem;
  font-family: "poppins_medium", sans-serif;
  display: flex;
  align-items: center;
  line-height: 1;
}

.select-selected {
  color: #7B7B7B;
}

.select-items div {
  padding: 1.25rem 1rem !important;
  color: #7B7B7B;
}
.select-items div.same-as-selected {
  color: #fff;
}

.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 99;
  margin-top: 1px;
  max-height: 25rem;
  overflow: auto;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #0B1A31;
  color: #fff;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1.6rem;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 0.5rem;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #52B198;
  background: linear-gradient(90deg, rgb(82, 177, 152) 0%, rgb(67, 145, 125) 100%);
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 3px 0 6px 0 rgba(0, 0, 0, 0.2);
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.expand-block {
  border-top: 1px solid rgba(112, 112, 112, 0.3607843137);
}
.expand-block:last-child {
  border-bottom: 1px solid rgba(112, 112, 112, 0.3607843137);
}
.expand-block.expanded > .heading span.title {
  color: #0B1A31;
}
.expand-block.expanded > .heading span.cross {
  transform: rotate(45deg);
}
.expand-block.expanded > .content {
  padding: 2.85rem 0;
  border-top: 1px solid rgba(112, 112, 112, 0.3607843137);
  max-height: 50rem;
  overflow: auto;
}
.expand-block .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.85rem 0;
  cursor: pointer;
}
.expand-block .heading:hover span.title {
  color: #0B1A31;
}
.expand-block .heading span.title {
  font-size: 2.3rem;
  line-height: 4.1rem;
  font-family: "poppins_light", sans-serif;
  color: rgba(12, 83, 135, 0.5019607843);
  transition: all 200ms linear;
}
.expand-block .heading span.cross {
  width: 3rem;
  height: 3rem;
  display: block;
  background-image: url("../../images/plus_blue.svg");
  background-position: center;
  background-size: 3rem;
  background-repeat: no-repeat;
  transition: all 200ms linear;
  flex-shrink: 0;
}
.expand-block .content {
  border-top: 1px solid transparent;
  padding: 0;
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-family: "poppins_light", sans-serif;
  color: #000000;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms linear;
}

@media only screen and (max-width: 1440px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 8px;
  }
}
.slider-container {
  position: relative;
  background: lightgrey;
}
.slider-container .slider-arrow {
  position: absolute;
  font-size: 5rem;
  top: 50%;
  transform: translateY(-50%);
  color: lightgrey;
  z-index: 20;
  cursor: pointer;
}
.slider-container .slider-arrow.slider-arrow-left {
  left: 3rem;
}
.slider-container .slider-arrow.slider-arrow-right {
  right: 3rem;
}
.slider-container .slider-arrow:hover i {
  text-shadow: 1px 0px 5px white;
}
.slider-container .slider-arrow i {
  transition: text-shadow 0.2s ease-in-out;
}
.slider-container .slide-single {
  height: auto;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.slider-container .slick-slide {
  height: auto;
}
.slider-container .slide-single-content button {
  margin: 2rem 0.5rem;
}
.slider-container .slide-single {
  min-height: 600px !important;
}
.slider-container ul.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
}
.slider-container ul.slick-dots li {
  display: inline-block;
}
.slider-container ul.slick-dots li button {
  color: transparent;
  border-radius: 150px;
  padding: 0;
  width: 0.65rem;
  height: 0.65rem;
  margin: 0.25rem;
  border: 1px solid white;
  background: none;
}
.slider-container ul.slick-dots li.slick-active button {
  border: 1px solid lightgrey;
  background: lightgrey;
}

button {
  background-color: #fff;
  outline: none;
}
button:focus, button:active {
  outline: none;
}

.button-rectangle {
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 700;
  font-family: "poppins_medium", sans-serif;
  transition: all 0.5s ease;
  border-width: 2px;
  cursor: pointer;
}
.button-rectangle a {
  color: inherit;
}
.button-rectangle a:hover {
  text-decoration: none;
  color: inherit;
}
.button-rectangle.button-rounded {
  font-size: 1.7rem;
  border-radius: 10rem;
  padding: 1.75rem 6rem;
}

button.button-rounded {
  padding: 1rem 2.3rem;
  border-radius: 3px;
  width: auto;
  min-height: 6.3rem;
  font-size: 1.7rem;
  font-weight: normal;
  white-space: nowrap;
  transition: all 200ms linear;
  font-family: "poppins_medium", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
button.button-rounded.blue-button, button.button-rounded.vanilla-button {
  background: #0B1A31;
  color: #fff;
  border: 1px solid #1A87BC;
}
button.button-rounded.blue-button:hover, button.button-rounded.vanilla-button:hover {
  color: #0B1A31;
  background: #fff;
}
button.button-rounded.blue-button-transparent, button.button-rounded.vanilla-button-transparent {
  background: none;
  color: #1A87BC;
  border: 1px solid rgba(26, 135, 188, 0.3098039216);
}
button.button-rounded.blue-button-transparent:hover, button.button-rounded.vanilla-button-transparent:hover {
  background: #0B1A31;
  color: #fff;
  border: 1px solid #1A87BC;
}
button.button-rounded.grey-transparent-button, button.button-rounded.grey-button-transparent {
  background: transparent;
  color: #000000;
  border: 1px solid #D1D1D1;
}
button.button-rounded.grey-transparent-button:hover, button.button-rounded.grey-button-transparent:hover {
  border-color: #1A87BC;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  margin: 0;
  padding: 0 2rem;
}
.tabs-left {
  border-bottom: none !important;
  padding-top: 2px !important;
}
.tabs-left > li {
  float: none !important;
  margin-bottom: 0 !important;
  margin-right: 0 !important;
}
.tabs-left > li > a {
  border-radius: 0 !important;
  margin-right: 0 !important;
  display: block !important;
  border: 1px solid #fff !important;
  border-bottom: 1px solid #D1D1D1 !important;
}
.tabs-left > li > a:hover {
  background-color: inherit !important;
}
.tabs-left > li.active > a {
  border-bottom: 1px solid #2BA7DE !important;
}

html body .homepage-content .half-line {
  width: 50%;
  border-bottom: 2px solid #0B1A31;
}
html body .homepage-content .half-line.right {
  margin-left: 50%;
}
html body .homepage-content section#top_banner {
  background-color: #0B1A31;
  min-height: 87.7rem;
  display: flex;
  justify-content: center;
  position: relative;
  border-bottom: 6px solid #0C5387;
  padding-top: 24rem;
  align-items: flex-start;
}
html body .homepage-content section#top_banner .banner-content {
  width: 100%;
  text-align: center;
}
html body .homepage-content section#top_banner .banner-content p {
  color: #fff;
  font-size: 2.4rem;
  display: block;
  width: 100%;
  text-align: center;
  max-width: 100%;
}
html body .homepage-content section#top_banner img.site-logo {
  width: 75%;
  max-width: 84rem;
  margin-bottom: 5rem;
}
html body .homepage-content section#top_banner img.arrow-down {
  position: absolute;
  bottom: 5.5rem;
  width: 2.4rem;
  left: calc(50% - 1.2rem);
  z-index: 1;
  cursor: pointer;
}
html body .homepage-content section#our_partners .section-content-wrapper {
  padding: 10.6rem 0 0 0;
}
html body .homepage-content section#our_partners .section-content-wrapper .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body .homepage-content section#our_partners .section-content-wrapper .section-title h2 {
  margin-bottom: 0;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider {
  padding: 7.5rem 0 3.2rem 0;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider .partner-block .slide-content .img-container {
  margin: 0 5% 2rem 5%;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider .partner-block .slide-content .img-container a {
  display: flex;
  align-items: center;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider .partner-block .slide-content .img-container a img {
  margin: 0 auto;
  width: auto;
  max-height: 7rem;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider .partner-block .slide-content p.section-header {
  text-align: center;
  font-family: "poppins_regular", sans-serif;
  font-size: 2rem;
  color: #0B1A31;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider ul.slick-dots {
  list-style: none;
  display: flex;
  margin-top: 10.5rem;
  position: relative;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider ul.slick-dots:after {
  display: block;
  content: "";
  width: 100%;
  border-bottom: 1px solid #0B1A31;
  margin-left: 2.6rem;
  margin-bottom: 0.75rem;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider ul.slick-dots li {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100%;
  border: 1px solid #707070;
  cursor: pointer;
  margin-right: 1.4rem;
  flex-shrink: 0;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider ul.slick-dots li.slick-active {
  background-color: #0B1A31;
  border-color: #0B1A31;
}
html body .homepage-content section#our_partners .section-content-wrapper #partners_slider ul.slick-dots li button {
  display: none;
}
html body .homepage-content section .section-content-wrapper {
  width: 95%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 11.2rem 0 13.8rem 0;
}
html body .homepage-content section .section-content-wrapper.align-right {
  width: 97.5%;
  margin: 0 0 0 auto;
  max-width: calc(1640px + (100% - 1640px) / 2);
}
html body .homepage-content section .section-content-wrapper.align-left {
  width: 97.5%;
  max-width: calc(1640px + (100% - 1640px) / 2);
  margin: 0 auto 0 0;
  flex-direction: row-reverse;
}
html body .homepage-content section .section-content-wrapper.align-left .content-block.text {
  padding-left: 7.5%;
}
html body .homepage-content section .section-content-wrapper.align-left .content-block.text h1, html body .homepage-content section .section-content-wrapper.align-left .content-block.text h2, html body .homepage-content section .section-content-wrapper.align-left .content-block.text h3, html body .homepage-content section .section-content-wrapper.align-left .content-block.text h4, html body .homepage-content section .section-content-wrapper.align-left .content-block.text p {
  text-align: left;
}
html body .homepage-content section .section-content-wrapper.align-left .content-block .buttons-container {
  text-align: left;
}
html body .homepage-content section h2 {
  text-transform: uppercase;
  font-size: 4.1rem;
  line-height: 6.1rem;
  margin-bottom: 2.1rem;
  margin-top: 0;
  color: #0B1A31;
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  max-width: 85%;
  text-align: left;
}
html body .homepage-content section h4 {
  font-size: 2.3rem;
  line-height: 3.4rem;
  margin-bottom: 2.4rem;
  margin-top: 0;
  color: #000000;
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
  max-width: 85%;
  text-align: left;
}
html body .homepage-content section p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-top: 0;
  color: #1A1A1A;
  font-weight: normal;
  font-family: "poppins_light", sans-serif;
  max-width: 80%;
  margin-bottom: 4.5rem;
}
html body .homepage-content section p.semibold {
  font-size: 2rem;
  line-height: 3rem;
  margin-top: 0;
  margin-bottom: 2.7rem;
  color: #000000;
  font-weight: normal;
  font-family: "poppins_medium", sans-serif;
}
html body .homepage-content section.two-columns .section-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
html body .homepage-content section.two-columns .section-content-wrapper .content-block {
  width: 100%;
  min-width: 50%;
}
html body .homepage-content section.two-columns .section-content-wrapper .content-block.text .buttons-container button {
  min-width: 12.2rem;
}
html body .homepage-content section.two-columns .section-content-wrapper .content-block.text .buttons-container button:nth-child(1) {
  margin-right: 1.6rem;
}
html body .homepage-content section.two-columns .section-content-wrapper .content-block.image img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  html body .homepage-content section h4,
  html body .homepage-content section p {
    max-width: 100%;
  }
  html body .homepage-content section.two-columns.overflow-img .section-content-wrapper .content-block.image {
    min-height: auto;
  }
  html body .homepage-content section.two-columns.overflow-img .section-content-wrapper .content-block.image img {
    width: 100%;
    position: relative;
    max-width: 100%;
  }
  html body .homepage-content section.two-columns .section-content-wrapper {
    flex-wrap: wrap;
  }
  html body .homepage-content section.two-columns .section-content-wrapper.align-left {
    margin: 0 0 0 auto;
  }
  html body .homepage-content section.two-columns .section-content-wrapper .content-block.text {
    margin-bottom: 5rem;
    padding-left: 0;
  }
  html body .homepage-content section#our_partners .section-content-wrapper .section-title h2 {
    margin-right: 2rem;
  }
}
@media (max-width: 640px) {
  html body .partner-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  html body .partner-block .img-container a img {
    margin: 0 auto;
  }
  html body .partner-block p.section-header {
    text-align: center;
  }
}

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