@import url("https://fonts.googleapis.com/css2?family=Mynerve&display=swap");
:root {
  --color-primary: $color-primary;
}

.simple-grid-item-1 .img {
  height: 260px;
  margin-bottom: 16px;
}
.simple-grid-item-1 .title {
  font-size: 1.3em;
  font-weight: bold;
}
.simple-grid-item-1 .subtitle {
  font-size: 0.99em;
  opacity: 0.75;
}

.simple-list-item {
  margin-bottom: 16px;
}
.simple-list-item .title {
  font-size: 1.16em;
  margin-bottom: 8px;
}
.simple-list-item .subtitle {
  font-size: 0.88em;
}

.profile-grid-item {
  margin-bottom: 16px;
  text-align: center;
}
.profile-grid-item img {
  height: 210px;
  width: 210px;
  border-radius: 210px;
  border: 4px solid #006FB4;
  transition-duration: 300ms;
}
.profile-grid-item .title {
  font-size: 1.16em;
  margin-bottom: 8px;
}
.profile-grid-item .subtitle {
  font-size: 0.88em;
  background-color: #EAE9E3;
  border-radius: 30px;
  margin-top: 4px auto;
  display: inline-block;
  padding: 4px 16px;
}
.profile-grid-item:hover {
  cursor: pointer;
}
.profile-grid-item:hover img {
  outline-color: #E5BC21;
}
.profile-grid-item:hover .title {
  color: #E5BC21;
}

.navbar {
  padding: 0;
}
.navbar .top {
  background-color: #006FB4;
  display: block;
  width: 100%;
}
.navbar .top ul {
  margin: 0;
  padding: 0;
}
.navbar .top ul li {
  vertical-align: middle;
}
.navbar .top a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 0.88em;
  font-weight: 600;
}
.navbar .logo img {
  height: 66px;
}
.navbar .primary-menu {
  margin: 0;
  padding: 0;
}
.navbar .primary-menu li {
  list-style-type: none;
  display: inline-block;
}
.navbar .primary-menu li a {
  text-decoration: none;
  display: block;
  height: 122px;
  line-height: 122px;
  color: #414042;
  padding: 0 16px;
  font-size: 1.1em;
  font-weight: bold;
}
.navbar .primary-menu li.active a {
  color: #f1c77f !important;
  border-bottom: 3px solid #f1c77f;
}
@media (max-width: 700px) {
  .navbar .primary-menu {
    background-color: #006FB4;
    position: fixed;
    bottom: 0;
    top: 0;
    z-index: 33;
    width: 320px;
    padding: 36px;
    right: -1800px;
    z-index: 200;
    transition-duration: 300ms;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  }
  .navbar .primary-menu.show {
    right: 0;
  }
  .navbar .primary-menu li {
    display: block !important;
  }
  .navbar .primary-menu li a {
    margin: 8px 0;
    padding: 4px 8px;
    line-height: normal !important;
    height: auto !important;
    color: #fff;
    font-weight: 500;
    font-size: 1.66em;
  }
}
.navbar .call-box {
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: right;
  color: #fff;
  padding: 8px;
  border-radius: 16px;
}
.navbar .call-box small {
  font-size: 0.66em;
}
@media (max-width: 936px) {
  .navbar {
    /*tablet*/
  }
}
@media (max-width: 500px) {
  .navbar {
    /*phone*/
  }
  .navbar .logo {
    padding: 8px;
  }
  .navbar .logo img {
    height: 52px;
  }
}

.mobile-nav-toggle {
  display: none;
}
@media (max-width: 700px) {
  .mobile-nav-toggle {
    display: inline-block;
    background: none;
    border: 1px solid transparent;
    padding: 8px;
  }
  .mobile-nav-toggle svg path {
    fill: #006FB4;
  }
  .mobile-nav-toggle:hover {
    background: #006FB4;
  }
  .mobile-nav-toggle:hover svg path {
    fill: #fff;
  }
}

.drawer .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 52px;
  width: 52px;
  border-radius: 80px;
}
.drawer .btn-close:hover {
  background-color: #F3F3F3;
}

body {
  font-family: "Sen", Arial, Helvetica, sans-serif !important;
}

.img {
  transition-duration: 300ms;
}

.before-title {
  font-size: 1.25em;
  color: #515C62;
  font-weight: bold;
}

h2 {
  font-size: 2.05em;
  font-weight: 600;
}

.panel .title {
  font-size: 1.18em;
  font-weight: bold;
}

.article-img {
  height: 550px;
  background-color: #f7f7f7;
}

.home-slider {
  position: relative;
}
.home-slider .swiper-slide {
  height: 650px;
  background-position: center;
  background-size: cover;
  background-color: #f7f7f7;
}
@media (max-width: 500px) {
  .home-slider .swiper-slide {
    height: 360px;
  }
}
.home-slider .caption {
  position: absolute;
  color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgb(0, 0, 0));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
.home-slider .caption h2 {
  font-size: 2.8em;
  font-weight: 900;
}
.home-slider .caption .text-l {
  font-size: 1.56em;
}
@media (max-width: 500px) {
  .home-slider .caption h2 {
    font-size: 1.8em;
    font-weight: 900;
  }
  .home-slider .caption .text-l {
    font-size: 0.96em;
  }
}

.text-primary {
  color: #006FB4 !important;
}

.text-accent {
  color: #E5BC21 !important;
}

.bg-primary {
  background-color: #006FB4 !important;
}

.bg-accent {
  background-color: #E5BC21 !important;
}

.bg-light-1 {
  background-color: #F1F4E8 !important;
}

.bg-light-2 {
  background-color: #FAF6E6 !important;
}

.bg-light-3 {
  background-color: #D3DFE7 !important;
}

.bg-light-4 {
  background-color: #F5E8E8 !important;
}

.input-group {
  background-color: #fff;
  border-radius: 56px;
  overflow: hidden;
  display: inline-block;
  padding: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
.input-group input[type=text] {
  border: none;
  padding-left: 24px;
  outline: none;
  font: 1.45em;
}
.input-group button {
  border-radius: 52px !important;
}

.page-header {
  background-color: #d7edf2;
  padding: 120px 0;
}

.swipe-home-left,
.swipe-home-right {
  position: absolute;
  z-index: 4;
  top: 50%;
  color: #fff !important;
  border-color: #fff !important;
  background: none !important;
  opacity: 0.7;
  height: 65px !important;
  line-height: 65px !important;
  width: 65px !important;
}
.swipe-home-left.icon-button svg path,
.swipe-home-right.icon-button svg path {
  fill: #ffffff !important;
}
.swipe-home-left:hover,
.swipe-home-right:hover {
  opacity: 1;
}

.swipe-home-left {
  left: 36px;
}

.swipe-home-right {
  right: 36px;
}

img {
  position: relative;
}

img::before {
  content: "";
  width: 100%;
  height: calc(100% + 10px);
  background-color: #ccc;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}

.hand {
  font-family: "Mynerve", cursive;
}

.text-xl {
  font-size: 1.25em;
}

.container {
  width: 1280px;
}

.color-primary {
  color: #006FB4;
}

.primary-bg {
  background-color: #006FB4 !important;
}

.accent-bg {
  background-color: #E5BC21 !important;
}

.light-bg {
  background-color: #F3F3F3 !important;
}

.btn-link {
  text-decoration: none !important;
}

h5 {
  font-size: 0.88em;
  color: #909192;
}

*.swiper-button-disabled {
  opacity: 0.3;
}

.icon-button {
  background: #fff;
  height: 52px;
  line-height: 48px !important;
  width: 52px;
  border-radius: 52px;
  border: 1px solid #006FB4;
  padding: 0;
}
.icon-button svg {
  margin: 0 !important;
  display: inline-block;
  vertical-align: middle;
}
.icon-button svg path {
  fill: #006FB4 !important;
}
.icon-button:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  padding: 0;
}

.img-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #F3F3F3;
}

.menu {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.menu.menu-v li {
  display: block;
}
.menu.menu-v a {
  display: block;
}
.menu.menu-h li {
  vertical-align: middle;
  display: inline-block;
}
.menu.menu-h li a {
  display: block;
}

.contact-box .phone {
  font-size: 1.24em;
  font-weight: bold;
  color: #006FB4;
}

.circular-pic.lg {
  height: 180px;
  width: 180px;
  border-radius: 180px;
}
.circular-pic.md {
  height: 120px;
  width: 120px;
  border-radius: 180px;
}

.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.fw-bolder {
  font-weight: 900 !important;
}

.btn {
  font-weight: bold;
}
.btn svg {
  transition-duration: 300ms;
}
.btn:hover svg {
  margin-left: 4px;
}
.btn.btn-primary {
  background-color: #006FB4;
  color: #fff;
}
.btn.btn-primary:hover {
  background-color: #206978;
}
.btn.white {
  background-color: #fff;
  color: #006FB4;
}
.btn.btn-accent {
  background-color: #E5BC21 !important;
  color: #fff;
}
.btn.btn-accent:hover {
  background-color: #c4871f;
}
.btn.btn-rounded {
  border-radius: 56px;
}
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
.service-item .num {
  color: #006FB4;
  background-color: #E5BC21;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 10;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 0px 0px 0px 19px;
  padding: 0px 16px;
  font-weight: bold;
  font-size: 1.88em;
}
.service-item .img {
  height: 320px;
  border: none;
  background-color: #f0f0f0;
  overflow: hidden;
}
.service-item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #F3F3F3;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
.service-item .caption {
  padding: 24px;
  color: #006FB4;
  font-weight: bold;
  font-size: 1.03em;
}
.service-item:hover .img img {
  width: 105%;
  height: 105%;
  transform: translate(-2%, -2%);
  transform: -webkit-translate(-2%, -2%);
}
.service-item:hover .caption {
  color: #E5BC21;
}

.h-menu {
  margin: 0;
  padding: 0;
}
.h-menu li {
  list-style-type: none;
  display: inline-block;
}

@media (max-width: 480px) {
  .hero-simple .overlay {
    height: 330px !important;
  }
}
.hero-simple .overlay {
  background-image: -webkit-linear-gradient(80.54deg, rgba(14, 4, 1, 0.7) 2.71%, rgba(0, 0, 0, 0) 85.3%);
  height: 530px;
  color: #fff;
}
.hero-simple .overlay h1 {
  font-weight: 900;
}

.hero--section {
  position: relative;
}
@media (max-width: 480px) {
  .hero--section {
    text-align: center;
  }
  .hero--section .filter {
    width: 100% !important;
  }
}
.hero--section .overlay {
  background-image: -webkit-linear-gradient(80.54deg, rgba(14, 4, 1, 0.7) 2.71%, rgba(0, 0, 0, 0) 85.3%);
  color: #fff;
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.hero--section .filter {
  width: 78%;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
  border-radius: 60px;
  padding: 8px;
  border: 1px solid transparent;
  transition-duration: 400ms;
  position: relative;
  z-index: 20;
}
.hero--section .filter .suggestions {
  display: none;
  position: absolute;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 120%;
  border-radius: 16px;
  padding: 16px;
  max-height: 250px;
  overflow: scroll;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
.hero--section .filter .suggestions li {
  color: #909192;
  cursor: pointer;
  list-style-type: none;
  padding: 6px 8px;
  border-radius: 8px;
}
.hero--section .filter .suggestions li:hover {
  color: #006FB4;
  background-color: #F3F3F3;
}
.hero--section .filter input {
  display: inline-block;
  vertical-align: middle;
  outline: none;
  width: 100%;
  height: 40px;
  padding-left: 24px;
}
.hero--section .filter:focus-within {
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
  border: 1px solid #006FB4;
}
.hero--section h1 {
  font-weight: 900;
  font-size: 2.88em;
}
.hero--section .subtitle {
  font-size: 1.33em;
}

.img-fit {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.img-contain {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

.grid-item {
  border-radius: 16px !important;
  overflow: hidden;
}
.grid-item .img {
  height: 320px;
  position: relative;
  background-color: #e1e1e1;
}
.grid-item .img .caption-float {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.4);
  transition-duration: 300ms;
  color: #fff;
}
.grid-item .img:hover .caption-float {
  top: 0;
  font-size: 120%;
}

.tab-link {
  text-decoration: none;
  color: #909192;
  border-bottom: 3px solid transparent;
  display: inline-block;
  padding: 8px 0;
  margin: 0 8px;
}
.tab-link.active {
  border-bottom-color: #E5BC21;
  color: #006FB4;
  font-weight: bold;
}

.video-preview {
  height: 456px;
  background-color: #000000;
  position: relative;
}
.video-preview .play-icon {
  margin: auto;
  line-height: 68px;
  text-align: center;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transform: translateY(-50%);
  height: 72px;
  width: 72px;
  border-radius: 56px;
}
.video-preview .play-icon svg {
  height: 34px;
}

.section-header {
  padding: 16px 0;
}
.section-header .title {
  color: #006FB4;
  font-weight: bold;
  margin-bottom: 4px;
}
.section-header .subtitle {
  font-size: 1.09em;
  color: #909192;
}

.package-grid-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.package-grid-item:hover img {
  width: 110%;
  height: 110%;
}
.package-grid-item .img-bg {
  overflow: hidden;
  background-color: #F3F3F3;
  height: 290px;
  text-align: right;
}
.package-grid-item .img-bg img {
  transition-duration: 300ms;
}
.package-grid-item .img-bg .hot-deal {
  background-color: #E5BC21;
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 50px;
  color: #006FB4;
  padding: 8px;
  display: inline-block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.package-grid-item .caption {
  padding: 16px;
}
.package-grid-item .caption .title {
  font-size: 17px;
  font-weight: 700;
}
.package-grid-item .caption .type {
  font-size: 13px;
  color: #909192;
}
.package-grid-item .caption .price {
  font-weight: 300;
  font-size: 18px;
}
.package-grid-item .caption .price .label {
  font-size: 0.8em;
  color: #006FB4;
}

.tiny-gallery {
  padding: 0;
}
.tiny-gallery li {
  list-style-type: none;
  vertical-align: middle;
  display: inline-grid;
}
.tiny-gallery li.img {
  height: 67px;
  width: 67px;
  border-radius: 67px;
  background-color: #F3F3F3;
}
.tiny-gallery.overlap li {
  border: 3px solid #fff;
}

.card {
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 32px rgba(0, 0, 0, 0.2);
  padding: 32px;
  border-color: #fff;
  border-radius: 16px;
}

.swiper-container-ts .controls {
  position: absolute;
  right: 0;
  bottom: 0;
}

.section-8 {
  height: 650px;
  background-position: center;
}
@media (max-width: 768px) {
  .section-8 {
    height: 450px;
  }
  .section-8 .overlay {
    background-image: -moz-linear-gradient(top, #FFFFFF 0%, rgba(255, 253, 253, 0) 100%);
  }
}
.section-8 .overlay {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 253, 253, 0) 100%);
  background: -moz-linear-gradient(180deg, #FFFFFF 0%, rgba(255, 253, 253, 0) 100%);
  height: 100%;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
  }
}

footer h5 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 16px;
  color: #206978;
}
footer ul {
  padding: 0;
}
footer ul li {
  list-style-type: none;
}
footer ul li a {
  display: block;
  color: #909192 !important;
  font-size: 0.89em;
  padding: 4px 0;
  text-decoration: none !important;
}
footer ul li a:hover {
  color: #006FB4 !important;
  text-decoration: underline !important;
  cursor: pointer;
}
footer .phone {
  font-size: 1.63em;
  color: #E5BC21;
  font-weight: 900;
}
footer .fineprint {
  font-size: 17px;
}
footer .copy {
  font-size: 13px;
  opacity: 0.5;
}
footer .h-menu li {
  padding: 0 8px;
}
footer .social svg path {
  fill: #737B7D;
}

a.a-link {
  text-decoration: none;
}

.form .field {
  position: relative;
}
.form .field label {
  position: absolute;
  top: 26px;
  font-size: 0.88em;
  color: #8E8E8E;
}
.form .field .input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #737B7D;
  outline: none;
  padding: 8px 8px;
  margin-bottom: 16px;
}
.form .field .input:focus {
  border-bottom-color: #E5BC21;
}

@media (max-width: 768px) {
  .h-mobile {
    display: none !important;
  }
}

.s-mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .s-mobile {
    display: block !important;
  }
}

.num-circle {
  height: 44px;
  line-height: 44px;
  width: 44px;
  border: 1px solid #737B7D;
  color: #737B7D;
  text-align: center;
  border-radius: 44px;
}

.side-menu {
  padding: 0;
}
.side-menu li {
  list-style-type: none;
}
.side-menu li a {
  display: block;
  color: #737B7D;
  text-decoration: none;
  padding: 8px 0;
}
.side-menu li.active a {
  color: #006FB4;
  font-weight: bold;
}/*# sourceMappingURL=betaleaf.css.map */