*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 991px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 479px) {
  html {
    font-size: 62.5%;
  }
}

body {
  position: relative;
  box-sizing: border-box;
  font-family: "Nunito", "sans-serif";
  font-size: 1.6rem;
  line-height: 1.7;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.heading-main {
  font-size: 7.2rem;
  line-height: 1;
  margin-bottom: 4rem;
  font-family: "Inter", "open-sans";
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  .heading-main {
    text-align: center;
  }
}

.heading-tertiary {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Inter", "open-sans";
  color: rgba(51, 51, 51, 0.4);
  color: #333;
  position: relative;
  margin-bottom: 1.5rem;
}

.paragragh-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .paragragh-text {
    font-size: 1.8rem;
  }
}
.paragragh-text--center {
  font-size: 1.8rem;
  text-align: center;
  width: 70%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 991px) {
  .paragragh-text--center {
    width: 100%;
  }
}

.rm-2 {
  margin-right: 2rem;
}

.tm-4 {
  margin-top: 4rem;
}

.grey-bg {
  background-color: #f5f5f5;
}

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 2rem 3rem;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #0f4c81;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Inter", "open-sans";
  text-decoration: none;
  overflow: hidden;
  border: 0;
  position: relative;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 100%;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s;
}
.btn:hover::before {
  width: 90%;
  opacity: 1;
  visibility: visible;
}
.btn--2 {
  background-color: #333;
}
.btn--2:hover::before {
  background-color: #0f4c81;
}

.condition {
  width: 100%;
  padding: 2rem;
}
.condition--border {
  border: 1px solid #0f4c81;
}
.condition_list {
  padding: 0 2rem;
  margin-left: 1rem;
}
.condition_list--alpha {
  list-style: lower-alpha;
}
.condition_item {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(51, 51, 51, 0.7);
  color: #fff;
}

.form {
  width: 100%;
}
.form_input {
  display: block;
  padding: 1rem 3rem;
  width: 100%;
  height: 5rem;
  color: rgba(51, 51, 51, 0.7);
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Nunito", "sans-serif";
  outline: none;
  margin-bottom: 2rem;
  border: 2px solid #0f4c81;
}
.form_input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.7);
}
.form_input::placeholder {
  color: rgba(51, 51, 51, 0.7);
}

.mobile-menu {
  width: 100%;
  font-family: "Inter", "open-sans";
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu_item {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.mobile-menu_item .dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: #0f4c81;
}
.mobile-menu_item .dropdown-btn i {
  color: #fff;
}
.mobile-menu_link {
  position: relative;
  display: block;
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
  padding: 2rem;
  text-decoration: none;
  text-transform: capitalize;
}
.mobile-menu_sub {
  display: none;
  transition: all 0.3s;
}
.mobile-menu_sub li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu_sub li a {
  display: block;
  color: #333;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 2rem;
  margin-left: 2rem;
}
.mobile-menu_sub-active {
  display: block;
}

.pages-list {
  display: flex;
  align-items: self-start;
  justify-content: flex-start;
  list-style: none;
  margin-bottom: 3rem;
  margin-left: 2rem;
}
.pages-list li {
  display: inline-block;
  margin-right: 1rem;
  padding-right: 2rem;
  position: relative;
}
.pages-list li:not(:last-of-type)::after {
  position: absolute;
  right: 0;
  top: 5px;
  content: "";
  display: block;
  width: 2px;
  height: 1.5rem;
  background-color: #0f4c81;
}
.pages-list li a:link,
.pages-list li a:visited {
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  color: #0f4c81;
  font-size: 1.6rem;
}
.pages-list li a:link:first-of-type,
.pages-list li a:visited:first-of-type {
  border-bottom: 1px solid #0f4c81;
}
.pages-list li a:hover {
  color: #0f4c81;
  border-color: #0f4c81;
}

.footer {
  width: 100%;
  height: 100%;
  margin-top: 4rem;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.8) 20%, rgba(15, 76, 129, 0.7) 70%), url(../imgs/footer/venti-views-FPKnAO-CF6M-unsplash.jpg);
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5rem 3rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 991px) {
  .footer_top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_top_left {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -7rem;
}
@media screen and (max-width: 1200px) {
  .footer_top_left {
    margin-left: -5rem;
  }
}
@media screen and (max-width: 991px) {
  .footer_top_left {
    width: 50%;
    margin-left: -9rem;
  }
}
@media screen and (max-width: 479px) {
  .footer_top_left {
    margin-left: -3rem;
  }
}
.footer_top_right {
  width: 60%;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .footer_top_right {
    width: 90%;
    padding: 0;
  }
}
@media screen and (max-width: 479px) {
  .footer_top_right {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
}
.footer_logo {
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(1.2);
}
.footer_heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer_header {
  width: 70%;
  font-size: 3.6rem;
  font-family: "Inter", "open-sans";
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  color: #fff;
}
.footer_subscriber {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
}
@media screen and (max-width: 991px) {
  .footer_subscriber {
    width: 75%;
  }
}
@media screen and (max-width: 479px) {
  .footer_subscriber {
    width: 100%;
    margin-top: 2rem;
  }
}
.footer_subscriber .form_input {
  margin-bottom: 0;
  border: none;
}
.footer_subscribe:link, .footer_subscribe:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  width: 6rem;
  height: 5rem;
  text-align: center;
  text-decoration: none;
}
.footer_subscribe:link i, .footer_subscribe:visited i {
  font-size: 1.6rem;
  color: #fff;
}
.footer_bottom {
  width: 100%;
  padding: 5rem 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
}
.footer_bottom .icon-container {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_bottom .icon-link {
  border: 1px solid #fff;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_bottom .icon-link i {
  font-size: 1.6rem;
  color: #fff;
}
.footer_bottom .icon-link:hover {
  background-color: #0f4c81;
}
.footer_about {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .footer_about {
    width: 35%;
  }
}
@media screen and (max-width: 479px) {
  .footer_about {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.footer_title {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Inter", "open-sans";
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 479px) {
  .footer_title {
    font-size: 2.8rem;
  }
}
.footer_details {
  font-size: 1.6rem;
  font-family: "Nunito", "sans-serif";
  margin-bottom: 2rem;
}
@media screen and (max-width: 479px) {
  .footer_details {
    font-size: 1.8rem;
  }
}
.footer_item {
  width: 20%;
}
@media screen and (max-width: 991px) {
  .footer_item {
    width: 33%;
  }
}
@media screen and (max-width: 479px) {
  .footer_item {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.footer_nav {
  list-style: none;
}
.footer_nav li {
  margin-bottom: 1rem;
}
.footer_nav li a:link,
.footer_nav li a:visited {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 479px) {
  .footer_nav li a:link,
  .footer_nav li a:visited {
    font-size: 1.8rem;
  }
}
.footer_nav li a:hover {
  border-bottom: 1px solid #fff;
}
.footer_contact {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .footer_contact {
    width: 33%;
  }
}
@media screen and (max-width: 479px) {
  .footer_contact {
    width: 100%;
  }
}
.footer_call {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
.footer_call i {
  color: #fff;
  font-size: 2rem;
  border: 1px solid #fff;
  padding: 1rem;
}
.footer_call .header_controls_nav-sec {
  font-size: 1.6rem;
  margin-top: 0.6rem;
  color: #fff;
}
.footer_call .header_controls_nav-sec:hover {
  cursor: pointer;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.header {
  position: relative;
  background-color: #ffffff;
}
.header_container {
  width: 100%;
}
@media screen and (max-width: 770px) {
  .header_container {
    padding: 0;
  }
}
.header_mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header_mobile {
    display: block;
  }
}
.header_navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header_logo_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
  transform: translateY(1rem);
}
.header_img {
  max-width: 18rem;
}
.header_img img {
  display: inline-block;
  transform: scale(2);
  z-index: 11111;
  width: 100%;
  overflow: hidden;
}
.header_top, .header_bottom {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .header_top, .header_bottom {
    display: none;
  }
}
.header_top {
  background-color: #f5f5f5;
  padding: 2rem 4rem;
}
.header_bottom {
  background-color: #333;
  padding: 1rem 12rem;
}
.header_controls_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0 1rem;
  font-family: "Inter", "open-sans";
}
.header_controls_nav-item {
  color: #333;
}
.header_controls_nav-item:nth-child(n+2) {
  border-left: 1.5px solid rgba(17, 17, 17, 0.3);
}
.header_controls_nav-link {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
  font-size: 1.4rem;
}
.header_controls_nav-link i {
  font-size: 3rem;
  color: #0f4c81;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_controls_nav-link--1 i {
  font-size: 1.6rem;
  color: #fff;
}
.header_controls_nav-link:hover {
  color: #0f4c81;
}
.header_controls_nav-text {
  margin-left: 1.5rem;
  line-height: 1.3;
}
.header_controls_nav-main {
  font-size: 1.4rem;
}
.header_controls_nav-main--white {
  color: #fff;
}
.header_controls_nav-sec {
  color: #0f4c81;
  font-weight: 700;
  border-bottom: 1px solid transparent;
}
.header_controls_nav-sec--1 {
  color: #fff;
}
.header_nav {
  z-index: 100;
  padding-left: 1rem;
}
.header_nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-right: 2rem;
}
.header_nav-item {
  position: relative;
}
.header_nav-item_sub-menu {
  list-style: none;
  min-width: 25rem;
  position: absolute;
  top: 100%;
  background-color: #fff;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.header_nav-item_sub-menu li a {
  display: flex;
  align-items: center;
  justify-self: center;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Nunito", "sans-serif";
  text-transform: capitalize;
  text-decoration: none;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.header_nav-item_sub-menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.header_nav-item_sub-menu li a:hover {
  color: #333;
}
.header_nav-item_sub-menu li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
  z-index: -1;
}
.header_nav-item:hover .header_nav-item_sub-menu {
  opacity: 1;
  visibility: visible;
}
.header_nav-link {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "Nunito", "sans-serif";
  display: flex;
  align-items: center;
}
.header_nav-link span {
  text-align: center;
  font-size: 1.8rem;
  margin-left: 0.4rem;
  transition: all 0.2s;
}
.header_nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.2s;
}
.header_nav-link:hover span {
  transform: rotate(130deg);
}
.header_nav-link:hover::before {
  width: 75%;
  opacity: 1;
  visibility: visible;
}
.header_cta {
  margin-right: 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header_cta {
    margin-top: 1rem;
  }
}
.header_cta i {
  font-size: 2rem;
  color: #0f4c81;
}
.header_cta .btn.btn--2 {
  background-color: #0f4c81;
  color: #fff;
  padding: 1rem 2rem;
}
.header_cta .btn.btn--2:hover {
  background-color: #0f4c81;
}

.section-aside {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  backface-visibility: hidden;
  background-color: #fff;
  z-index: 9999;
  transition: all 0.3s;
}
.section-aside_img {
  width: 20rem;
  transform: scale(1.6);
}
.section-aside_close {
  position: absolute;
  top: 4rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 2.4rem;
}
.section-aside .navigation {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.section-aside_contact {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .section-aside_contact {
    flex-direction: column;
  }
}
.section-aside_contact-wrapper {
  width: 32%;
  margin: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .section-aside_contact-wrapper {
    width: 80%;
  }
}
.section-aside_contact_icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #0f4c81;
}
.section-aside_contact_icon-container i {
  font-size: 2rem;
  color: #fff;
}
.section-aside_contact-info {
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
}
.section-aside_socials {
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-aside_socials-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.section-aside_socials-wrapper li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border: 1px solid #0f4c81;
}
.section-aside_socials-wrapper li a i {
  font-size: 2.4rem;
  color: #0f4c81;
}

.section-aside-open {
  right: 0;
}

.section-heading {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 4rem;
  padding-top: 16rem;
  background-color: #f5f5f5;
}
.section-heading .icon-container {
  width: 80%;
}
.section-heading .icon-container .icon-link {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
}
.section-heading .icon-container .icon-link i {
  font-size: 2.2rem;
  color: #0f4c81;
}

.section-main {
  width: 100%;
  padding: 4rem 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .section-main {
    padding: 4rem 0;
  }
}
.section-main .conditions {
  width: 90%;
}/*# sourceMappingURL=main.css.map */