/* some mixins for responsiveness */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  width: 100%;
  margin: 0 0;
  padding: 0 0 !important;
  background-color: #fff;
  background: #ffff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

#desktop-header {
  width: 100%;
  height: 70px;
  background-color: #0660A2;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 50px;
  padding-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media (max-width: 475px) {
  #desktop-header {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#desktop-header-left {
  margin-top: 0;
  height: 70px;
}

#desktop-header-left img {
  width: auto;
  height: 70px;
}

#desktop-header-right {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1100px) {
  #desktop-header-right {
    width: 60%;
  }
}

@media (max-width: 773px) {
  #desktop-header-right {
    display: none;
  }
}

#desktop-header-right a {
  text-decoration: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#desktop-header-right a:hover {
  color: #f2f2f2d5;
  border-bottom: 2px solid #fff;
}

#mobile-menu-trigger {
  display: none;
}

@media (max-width: 773px) {
  #mobile-menu-trigger {
    display: block;
  }
}

#mobile-menu-trigger a {
  text-decoration: none;
  color: #fff;
}

/* mobile menu */
#mobile-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100vw;
  background: #0660A2;
  padding-left: 15px;
}

#mobile-menu a {
  text-decoration: none;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

#hero-section {
  width: 100%;
  margin-top: 0px;
  height: 89.5vh;
  background: url("../../assets/img/hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blue-overlay {
  width: 100%;
  height: 89.5vh;
  padding: 50px 50px;
  background: rgba(0, 0, 0, 0.877);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 773px) {
  .blue-overlay {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.hero-box {
  width: 500px;
  height: 350px;
  background: rgba(255, 255, 255, 0.719);
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.877);
          box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.877);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 773px) {
  .hero-box {
    width: 100vw;
  }
}

.hero-box h1 {
  text-align: center;
  color: #0660A2;
}

@media (max-width: 773px) {
  .hero-box h1 {
    font-size: 28px;
  }
}

.hero-box .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 475px) {
  .hero-box .hero-buttons {
    width: 95%;
  }
}

.hero-box .hero-buttons a {
  width: 150px;
  height: 45px;
  background: rgba(255, 255, 255, 0.89);
  color: #0660A2;
  text-decoration: none;
  text-align: center;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.233);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.233);
}

.hero-box .hero-buttons a:hover {
  background: #fff;
}

@media (max-width: 475px) {
  .hero-box .hero-buttons a {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
}

.hero-box .hero-buttons .hero-register {
  background: #0660A2;
  color: #fff;
}

.hero-box .hero-buttons .hero-register:hover {
  background: #044f85;
}

footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #001829;
}

footer .footer-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px;
}

@media (max-width: 475px) {
  footer .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 15px;
  }
}

footer .footer-top .footer-top-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-top .footer-top-one p {
  color: #fff;
  font-size: 18px;
}

footer .footer-top .footer-top-one .footer-subscribing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-top .footer-top-one .footer-subscribing label {
  font-size: 13px;
  color: #fff;
  padding-bottom: 10px;
}

footer .footer-top .footer-top-one .footer-subscribing .sub-input {
  padding: 5px 5px;
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footer-top .footer-top-one .footer-subscribing .sub-input input {
  background: none;
  border: none;
  padding-left: 10px;
}

@media (max-width: 475px) {
  footer .footer-top .footer-top-one .footer-subscribing .sub-input input {
    width: 100%;
  }
}

footer .footer-top .footer-top-one .footer-subscribing .sub-input button {
  padding: 7px 10px;
  background: #0660A2;
  color: #fff;
  border: none;
  border-radius: 3px;
}

footer .footer-bottom {
  width: 100%;
  height: 45px;
  background: #00101b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 475px) {
  footer .footer-bottom {
    padding-left: 10px;
    padding-right: 10px;
  }
}

footer .footer-bottom .rights p {
  color: #fff;
  font-size: 12px;
}

@media (max-width: 475px) {
  footer .footer-bottom .rights p {
    font-size: 10px;
  }
}

footer .footer-bottom .terms-privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

footer .footer-bottom .terms-privacy a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}

@media (max-width: 475px) {
  footer .footer-bottom .terms-privacy a {
    font-size: 10px;
  }
}

.footer-top-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 10px;
}

.footer-top-two p {
  color: #fff;
}

.footer-top-two .social-icons {
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-top-two .social-icons a {
  text-decoration: none;
  color: #f2f2f28e;
}

.footer-top-two .social-icons a:hover {
  color: #fff;
}

.footer-top-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-top-three p {
  color: #fff;
  font-size: 18px;
}

.footer-top-three .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-top-three .contact-form input {
  background: #fff;
  height: 30px;
  border: none;
  outline: none;
  margin-bottom: 10px;
  padding-left: 10px;
  border-radius: 2.5px;
}

.footer-top-three .contact-form button {
  height: 40px;
  background: #0660A2;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.233);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.233);
  color: #fff;
  outline: none;
  border: none;
  border-radius: 3px;
}

.footer-top-three .contact-form button:hover {
  -webkit-box-shadow: inset 0px -4px 8px rgba(0, 0, 0, 0.233);
          box-shadow: inset 0px -4px 8px rgba(0, 0, 0, 0.233);
}

/* login and signup page styles */
.account-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 50px;
}

.tab {
  overflow: hidden;
  width: 45vw;
  border-bottom: 1px solid rgba(6, 97, 162, 0.253);
}

@media (max-width: 773px) {
  .tab {
    width: 75vw;
  }
}

@media (max-width: 475px) {
  .tab {
    width: 85vw;
  }
}

/* Style the buttons inside the tab */
.tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 17px;
  color: rgba(6, 97, 162, 0.356);
  font-weight: 400;
  background: none;
  font-family: 'DM Sans', sans-serif;
}

/* Change background color of buttons on hover */
.tab button:hover {
  color: #0660A2;
  font-weight: 500;
}

/* Create an active/current tablink class */
.tab button.active {
  color: #0660A2;
  font-weight: 500;
  border-bottom: 2px solid #0660A2;
}

/* Style the tab content */
.tabcontent {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  background: #0660A2;
  -webkit-box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  width: 45vw;
  height: auto;
  padding-bottom: 55px;
  border-radius: 5px;
}

@media (max-width: 773px) {
  .tabcontent {
    width: 75vw;
  }
}

@media (max-width: 475px) {
  .tabcontent {
    width: 85vw;
  }
}

.tabcontent .tabcontent-inner {
  height: 45px;
  padding-left: 25px;
  padding-right: 25px;
  background: #0660A2;
  -webkit-box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}

@media (max-width: 475px) {
  .tabcontent .tabcontent-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.tabcontent .tabcontent-inner p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 50px;
}

@media (max-width: 475px) {
  .login-form {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.login-form a {
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  margin-top: -10px;
  padding-top: 0;
  margin-bottom: 30px;
}

.login-form .submit-login {
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 475px) {
  .login-form .submit-login {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.login-form .submit-login button {
  width: 160px;
  background: #fff;
  color: #0660A2;
  font-size: 15px;
  border: none;
  outline: none;
  border-radius: 3px;
  padding: 10px 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  -webkit-box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.login-form .submit-login button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.login-form .submit-login a {
  margin-top: 0;
  margin-bottom: 15px;
  text-decoration: none;
}

@media (max-width: 475px) {
  .login-form .submit-login a {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 12px;
  }
}

.login-form label {
  color: #fff;
  font-size: 14px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.login-form .input-group {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.login-form .input-group input {
  width: 95%;
  background: none;
  border: none;
  outline: none;
  color: #000;
  padding-left: 15px;
}

.login-form .input-group i {
  color: rgba(0, 0, 0, 0.521);
  padding-right: 15px;
}

.login-form .input-group:hover i {
  color: #000;
}

.login-form .input-group:active {
  border: 1px solid #000;
}

.register-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 20px;
  width: 100%;
}

@media (max-width: 773px) {
  .register-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.register-form .register-form-left {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 773px) {
  .register-form .register-form-left {
    width: 100%;
  }
}

.register-form .register-form-left label {
  font-size: 14px;
  color: #fff;
  padding-bottom: 5px;
}

.register-form .register-form-left .input-group {
  margin-top: 5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.register-form .register-form-left .input-group input {
  width: 95%;
  background: none;
  border: none;
  outline: none;
  color: #000;
  padding-left: 15px;
}

.register-form .register-form-left .input-group i {
  color: rgba(0, 0, 0, 0.521);
  padding-right: 15px;
}

.register-form .register-form-left .input-group:hover i {
  color: #000;
}

.register-form .register-form-left .input-group:active {
  border: 1px solid #000;
}

div.long-mail {
  width: 100% !important;
}

.submit-signup {
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 25px;
  margin-top: 30px;
  padding-right: 25px;
}

@media (max-width: 475px) {
  .submit-signup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.submit-signup button {
  width: 160px;
  background: #fff;
  color: #0660A2;
  font-size: 15px;
  border: none;
  outline: none;
  border-radius: 3px;
  padding: 10px 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  -webkit-box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.submit-signup button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.submit-signup a {
  margin-top: 0;
  margin-bottom: 15px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 475px) {
  .submit-signup a {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 12px;
  }
}
/*# sourceMappingURL=styles.css.map */