/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
/* mixins.scss */
/*$tablet: 768px;
$desktop: 992px;
$desktopwide: 1200px;*/
/* variables.scss */
/* typography.scss */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

body {
  margin: 0;
  font-weight: normal;
  color: #9C9B9B;
  font-family: 400;
  font-size: 16px;
  line-height: 145%; }
  @media only screen and (min-width: 768px) {
    body {
      font-size: 17px; } }

p {
  font-family: "Muli", sans-serif;
  font-size: 16px;
  line-height: 145%; }
  @media only screen and (min-width: 768px) {
    p {
      font-size: 17px; } }

p.text-m {
  font-size: 16px; }
  @media only screen and (min-width: 768px) {
    p.text-m {
      font-size: 16px; } }

footer p {
  font-size: 14px; }

b,
strong,
.text-bold {
  font-weight: normal;
  font-family: 600; }

img {
  height: auto;
  max-width: 100%;
  border-style: none; }

a,
a:visited {
  text-decoration: none;
  background-color: transparent;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }

a:hover {
  text-decoration: none;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }

a:focus {
  outline: none;
  text-decoration: none;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }

.bold,
strong {
  font-weight: normal; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */ }

::-moz-placeholder {
  /* Firefox 19+ */ }

:-ms-input-placeholder {
  /* IE 10+ */ }

:-moz-placeholder {
  /* Firefox 18- */ }

h1, h2, h3, h4, h5 {
  font-family: "Poppins", sans-serif;
  clear: both;
  font-weight: normal;
  line-height: 115%; }

h1 {
  color: #4ab3d7;
  font-family: 600;
  font-size: 40px; }
  @media only screen and (min-width: 768px) {
    h1 {
      font-size: 60px; } }

h2 {
  color: #4081ba;
  font-family: 600;
  font-size: 40px; }
  @media only screen and (min-width: 768px) {
    h2 {
      font-size: 40px; } }

h3 {
  font-family: 600;
  font-size: 18px; }
  @media only screen and (min-width: 768px) {
    h3 {
      font-size: 16px; } }

h4 {
  font-family: 600;
  font-size: 18px; }
  @media only screen and (min-width: 768px) {
    h4 {
      font-size: 21px; } }

div.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4ab3d7;
  padding-left: 20px;
  letter-spacing: 2px; }

div.subtitle:before {
  content: '';
  width: 12px;
  height: 1px;
  position: absolute;
  display: block;
  top: calc(50% - 1px);
  left: 0;
  background-color: #4ab3d7; }

.container {
  width: 100%;
  max-width: 1220px;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  background-image: url("../img/banner-image.jpg");
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center top;
  background-attachment: unset;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s; }
  @media only screen and (min-width: 768px) {
    header {
      background-size: cover;
      background-position: center;
      background-attachment: fixed; } }

header.active {
  position: fixed;
  top: 0;
  background-color: #161e2a;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }
  @media only screen and (min-width: 768px) {
    header.active {
      background-color: #161e2a; } }

.mobile-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/banner-image.jpg");
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center top;
  background-attachment: unset;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  @media only screen and (min-width: 768px) {
    .mobile-menu {
      background-size: cover;
      background-position: center;
      background-attachment: fixed; } }

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.mobile-menu .main-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }

.mobile-menu nav.main-nav a,
.mobile-menu nav.main-nav a:visited {
  -webkit-font-smoothing: antialiased;
  -webkit-transform: perspective(1px) scale(1.1);
  transform: perspective(1px) scale(1.1);
  font-size: 20px; }

header.active .container {
  padding-top: 1.5em !important;
  padding-bottom: 1.5em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

footer {
  border-bottom: 8px solid #4ab3d7; }

section.banner {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #4ab3d7;
  height: 75vh;
  min-height: 100vh;
  background-image: url("../img/banner-image.jpg");
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center top;
  background-attachment: unset; }
  @media only screen and (min-width: 768px) {
    section.banner {
      min-height: 795px;
      background-size: cover;
      background-position: center;
      background-attachment: fixed; } }

img.site-logo {
  width: 100%;
  height: 100%;
  max-width: 206px;
  max-height: 44px; }

footer img.site-logo {
  width: 100%;
  height: 100%;
  max-width: 318px;
  max-height: 68px; }

nav.main-nav a,
nav.main-nav a:visited,
a.btn-learn,
a.btn-learn:visited {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding-right: 0.5em;
  padding-left: 0.5em;
  letter-spacing: 2px; }

nav.main-nav a:hover,
nav.main-nav a.active,
a.btn-learn:hover,
a.btn-learn.active {
  border-color: #ffffff;
  padding-right: 0.25em;
  padding-left: 0.75em; }

nav.main-nav a:before,
nav.main-nav a:visited:before,
a.btn-learn:before,
a.btn-learn:visited:before {
  position: absolute;
  top: calc(50% - 1px);
  display: block;
  content: '';
  width: 0;
  height: 1px;
  background-color: #ffffff;
  right: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

nav.main-nav a:hover:before,
nav.main-nav a.active:before,
a.btn-learn:hover:before,
a.btn-learn.active:before {
  width: 28px;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

a.btn-learn.blue,
a.btn-learn.blue:visited {
  font-weight: 400;
  opacity: 1;
  color: #4081ba; }

a.btn-learn.blue:before,
a.btn-learn.blue:visited:before {
  background-color: #4081ba; }

a.btn-learn {
  opacity: 0.5; }

a.btn-learn:hover {
  opacity: 1; }

.bg-blue1 {
  background-color: #4ab3d7; }

.bg-blue2 {
  background-color: #4081ba; }

.bg-blue3 {
  background-color: #eef8fd; }

.blue-block {
  height: 225px; }
  @media only screen and (min-width: 768px) {
    .blue-block {
      height: 350px; } }

.block-left:before {
  content: '';
  position: absolute;
  width: 200vw;
  height: 100%;
  background-color: #eef8fd;
  left: -199vw;
  top: 0; }

.block-right:before {
  content: '';
  position: absolute;
  width: 200vw;
  height: 100%;
  background-color: #eef8fd;
  right: -199vw;
  top: 0; }

img.patter-whole {
  position: absolute;
  bottom: 10%;
  right: 40px;
  width: 1200px;
  height: auto;
  max-width: none;
  opacity: 0.3; }
  @media only screen and (min-width: 768px) {
    img.patter-whole {
      width: 2000px;
      bottom: 20%;
      max-width: 2000px; } }

img.patter-whole2 {
  position: absolute;
  bottom: 10%;
  left: -30px;
  width: 1000px;
  height: auto;
  max-width: none;
  opacity: 0.7; }
  @media only screen and (min-width: 768px) {
    img.patter-whole2 {
      width: 1400px;
      bottom: 15%;
      max-width: 1400px; } }

img.logos {
  max-width: 176px;
  height: auto; }

.bordered:before,
.bordered:after {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #eef8fd;
  opacity: 0.5; }
  @media only screen and (min-width: 768px) {
    .bordered:before,
    .bordered:after {
      height: 100%;
      width: 1px; } }

.bordered:before {
  left: 0;
  display: none; }
  @media only screen and (min-width: 768px) {
    .bordered:before {
      left: -1px; } }

.bordered:after {
  top: 100%;
  right: 0; }
  @media only screen and (min-width: 768px) {
    .bordered:after {
      top: 0;
      right: -1px; } }

.icon-address {
  background-size: 85% auto;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("../img/point-icon.png"); }

.icon-tel {
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("../img/phone-icon.png"); }

.icon-email {
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("../img/mail-icon.png"); }

.icons {
  position: absolute;
  top: 0;
  left: 0; }

.regular {
  font-weight: 400 !important; }

section.contact a:hover,
section.contact a.active {
  color: #4081ba; }

/*--------------------------------------------------------------
## MENU HUMBURGER BUTTON
--------------------------------------------------------------*/
.menu-toggle.toggled-on,
.menu-toggle.toggled-on:hover,
.menu-toggle.toggled-on:focus {
  background-color: #ffffff;
  border-color: transparent;
  color: #ffffff; }

.menu-toggle:focus {
  outline: 0; }

.menu-toggle.toggled-on:focus {
  outline: thin dotted;
  outline: none; }

.menu-toggle:hover,
.menu-toggle:focus {
  border-color: transparent;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #ffffff; }

.menu-toggle {
  background-color: transparent;
  border: medium none;
  border-radius: 0;
  height: 50px;
  padding: 0;
  position: absolute;
  right: 20px;
  text-indent: -9999px;
  top: 16px;
  width: 30px;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 1002; }

.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 30px;
  background-color: #ffffff;
  position: absolute;
  display: block;
  content: ''; }

.menu-toggle.active span:before, .menu-toggle.active span:after {
  width: 30px;
  background-color: #ffffff; }

.menu-toggle span:before {
  top: -8px; }

.menu-toggle span:after {
  bottom: -8px; }

.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
  -webkit-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-transform: all 100ms ease-in-out;
  -moz-transform: all 100ms ease-in-out;
  -ms-transform: all 100ms ease-in-out; }

.menu-toggle.active span {
  background-color: transparent; }

.menu-toggle.active span:before, .menu-toggle.active span:after {
  top: 0; }

.menu-toggle.active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg); }

.menu-toggle.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg); }

@media only screen and (max-width: 768px) {
  .noellaxmobile {
    margin-top: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important; } }

@media only screen and (max-width: 768px) {
  section.banner .noellaxmobile {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important; } }

.wow {
  visibility: hidden; }
