html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

.unclickable {
  cursor: default !important;
}

.flow-burger {
  display: none;
}

.gradient-page {
  background: transparent linear-gradient(180deg, #E2F6ED 0%, #C6DDFA 100%) 0% 0% no-repeat padding-box;
  padding-bottom: 6vh;
}
.gradient-page h2 {
  text-align: center;
  font-size: 35px;
}

h1 {
  font-size: 50px;
}
h1 .highlight {
  color: #5AAA8E;
}
@media only screen and (max-width: 700px) {
  h1 {
    font-size: 32px;
    text-align: left;
  }
}

.container {
  max-width: 1100px;
  margin: auto;
}
@media only screen and (max-width: 700px) {
  .container {
    width: 100%;
    max-width: 350px;
  }
}

.block.light-blue {
  background-color: #F3FAFE;
}
.block.darklight-blue {
  background-color: #C9E4FD;
}
.block.dark-blue {
  background-color: #001A45;
}
.block.gradient-green {
  background: transparent linear-gradient(180deg, #E2F7EE 0%, #F8FAF9 100%) 0% 0% no-repeat padding-box;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F3FAFE;
  padding: 10px 0;
  z-index: 6;
}
header.scrolled-down {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3490196078);
}
header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navbar-phone {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  header .navbar-phone {
    display: none;
  }
}
header .navbar-phone img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
header .navbar-phone p {
  margin: 0;
  display: flex;
  flex-direction: column;
}
header .navbar-phone p b {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar b {
  margin: 0;
}
header .navbar-left {
  display: flex;
  align-items: center;
}
header .navbar-left a {
  display: flex;
  align-items: center;
}
header .navbar-left img {
  max-width: 200px;
}
@media only screen and (max-width: 700px) {
  header .navbar-mobile-bm {
    width: 30px;
    margin-left: 10px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header .navbar-mobile-bm span {
    width: 100%;
    background-color: #001A45;
    height: 3px;
    display: block;
    transition: 0.2s ease-in;
  }
  header .navbar-mobile-bm span:nth-child(2) {
    margin: 5px 0;
  }
  header .navbar-mobile-bm.mb-show span {
    transition: 0.2s linear;
  }
  header .navbar-mobile-bm.mb-show span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    transition: 0.3s ease-in;
  }
  header .navbar-mobile-bm.mb-show span:nth-child(2) {
    opacity: 0;
  }
  header .navbar-mobile-bm.mb-show span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -7px);
    transition: 0.3s ease-in;
  }
}
header .navbar-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  header .navbar-right {
    position: fixed;
    top: 55px;
    right: -80%;
    height: 100vh;
    width: 80%;
    flex-direction: column;
    padding: 25px 0;
    border-left: 2px solid #C9E4FD;
    border-top: 1px solid #C9E4FD;
    background-color: #F3FAFE;
    transition: 0.2s linear;
  }
  header .navbar-right.mb-show {
    right: 0;
    transition: 0.2s linear;
  }
}
header .navbar-right a {
  color: #001A45;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
@media only screen and (max-width: 700px) {
  header .navbar-right a {
    font-size: 18px;
    padding: 10px;
    border-bottom: 2px solid #C9E4FD;
    width: 80%;
    text-align: center;
  }
}

.contactmodal-container {
  position: fixed;
  bottom: 15px;
  right: 1%;
  z-index: 12;
}
.contactmodal-btn {
  background-color: #E8F3FC;
  padding: 15px 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 0.5px solid #A6D1FD;
  border-radius: 28px;
  cursor: pointer;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .contactmodal-btn {
    border-radius: 70%;
    height: 50px;
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.contactmodal-btn b {
  color: #5AAA8E;
}
@media only screen and (max-width: 700px) {
  .contactmodal-btn b {
    display: none;
  }
}
.contactmodal-btn img {
  margin-left: 15px;
}
@media only screen and (max-width: 700px) {
  .contactmodal-btn img {
    margin: 0;
  }
}
.contactmodal-content {
  display: none;
}
.contactmodal-show {
  display: block !important;
}
.contactmodal-hide {
  display: none !important;
}