* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "InstrumentSans-Regular";
}

body {
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  font-size: 16px;
}

h1, .as-h1 {
  font-size: 45px;
}
@media (max-width: 575px) {
  h1, .as-h1 {
    font-size: 29px;
  }
}

h2 {
  font-size: 35px;
}
@media (max-width: 575px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 17px;
}

ul {
  padding: 0;
  margin: 0;
}

iframe {
  aspect-ratio: 16/9;
  width: 100%; /* change this to a fixed width, or create a container with a width. */
  height: 100%;
}

@font-face {
  font-family: "InstrumentSans-Regular";
  src: url("../fonts/InstrumentSans-Regular.ttf");
}
@font-face {
  font-family: "InstrumentSans-Medium";
  src: url("../fonts/InstrumentSans-Medium.ttf");
}
@font-face {
  font-family: "InstrumentSans-SemiBold";
  src: url("../fonts/InstrumentSans-SemiBold.ttf");
}
@font-face {
  font-family: "InstrumentSans-Bold";
  src: url("../fonts/InstrumentSans-Bold.ttf");
}
@media (min-width: 1601px) {
  .container {
    max-width: 1400px !important;
    padding: 0;
  }
}
@media (min-width: 1601px) {
  .container-lg {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-xl {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-xxl {
    max-width: 1400px !important;
  }
}
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1400px;
  }
}
.header {
  position: relative;
  z-index: 999;
  background-color: #fff;
}
@media (max-width: 1600px) {
  .header {
    min-height: unset;
  }
}
.header .header-nav {
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .header .header-nav {
    margin: 0 18px;
  }
}
@media (max-width: 575px) {
  .header .header-nav {
    margin: 0 18px;
  }
}
@media (max-width: 400px) {
  .header .header-nav {
    margin: 0;
  }
}
.header .header-nav .top-nav {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 21px 0;
}
@media (max-width: 1100px) {
  .header .header-nav .top-nav {
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .header .header-nav .top-nav {
    margin-top: 10px;
  }
}
.header .header-nav .top-nav .header-logo {
  display: inline-block;
  width: 50%;
}
@media (max-width: 1100px) {
  .header .header-nav .top-nav .header-logo {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .header .header-nav .top-nav .header-logo {
    width: auto;
  }
}
.header .header-nav .top-nav .header-logo img {
  height: 54px;
  width: auto;
}
@media (max-width: 767px) {
  .header .header-nav .top-nav .header-logo img {
    max-width: 100%;
    height: auto;
    margin-right: 20px;
  }
}
.header .header-nav .middle-nav {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 767px) {
  .header .header-nav .middle-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.header .header-nav .middle-nav li {
  display: block;
  width: 100%;
  height: 61px;
  list-style: none;
}
@media (max-width: 1199px) {
  .header .header-nav .middle-nav li {
    height: 50px;
  }
}
.header .header-nav .middle-nav li .middle-nav-btn {
  background-color: #238bc8;
  border-radius: 8px;
  border: 1px solid #238bc8;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "InstrumentSans-SemiBold";
  font-size: 15px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media (max-width: 400px) {
  .header .header-nav .middle-nav li .middle-nav-btn {
    padding: 5px 10px;
  }
}
.header .header-nav .middle-nav li .middle-nav-btn svg {
  fill: #fff;
  margin-right: 16px;
}
@media (max-width: 400px) {
  .header .header-nav .middle-nav li .middle-nav-btn svg {
    margin-right: 12px;
  }
}
.header .header-nav .middle-nav li .middle-nav-btn:hover {
  background-color: #fff;
  border-color: #238bc8;
  color: #238bc8;
  box-shadow: inset 15rem 0 0 0 #fff;
}
.header .header-nav .middle-nav li .middle-nav-btn:hover svg {
  fill: #238bc8;
}
@media (max-width: 1199px) {
  .header .header-nav .middle-nav li .middle-nav-btn {
    font-size: 13px;
  }
  .header .header-nav .middle-nav li .middle-nav-btn svg {
    width: 17px;
    height: 17px;
  }
}
.header .header-nav .middle-nav li .highlighted-nav-btn {
  background-color: #f84646;
  border-color: #f84646;
}
.header .header-nav .middle-nav li .highlighted-nav-btn svg:hover {
  fill: #f84646;
}
.header .header-nav .middle-nav li .highlighted-nav-btn:hover {
  color: #f84646;
  border-color: #f84646;
}
.header .header-nav .middle-nav li .highlighted-nav-btn:hover svg {
  fill: #f84646;
}
@media (max-width: 991px) {
  .header .header-nav .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    position: absolute;
    right: -12px;
    top: 30px;
  }
}
.header .header-nav .navbar-toggler .animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header .header-nav .navbar-toggler .animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: #238bc8;
}
.header .header-nav .navbar-toggler .animated-icon span:nth-child(1) {
  top: 0px;
}
.header .header-nav .navbar-toggler .animated-icon span:nth-child(2) {
  top: 10px;
}
.header .header-nav .navbar-toggler .animated-icon span:nth-child(3) {
  top: 20px;
}
.header .header-nav .navbar-toggler .animated-icon.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header .header-nav .navbar-toggler .animated-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .header-nav .navbar-toggler .animated-icon.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.header .header-nav .bottom-nav {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .header .header-nav .bottom-nav {
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
}
.header .header-nav .bottom-nav .bottom-nav-wrap {
  width: 100%;
}
@media (max-width: 991px) {
  .header .header-nav .bottom-nav .bottom-nav-wrap {
    padding: 20px;
  }
}
.header .header-nav .bottom-nav .navbar-nav {
  width: 100%;
  justify-content: center;
  column-gap: 60px;
  row-gap: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .header .header-nav .bottom-nav .navbar-nav {
    column-gap: 40px;
  }
}
@media (max-width: 991px) {
  .header .header-nav .bottom-nav .navbar-nav {
    row-gap: 0;
  }
}
.header .header-nav .bottom-nav .navbar-nav .nav-item {
  position: relative;
}
.header .header-nav .bottom-nav .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #000;
  font-family: "InstrumentSans-Bold";
  font-size: 17px;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .header .header-nav .bottom-nav .navbar-nav .nav-item .nav-link {
    padding: 5px 0;
  }
}
.header .header-nav .bottom-nav .navbar-nav .nav-item.active .nav-link, .header .header-nav .bottom-nav .navbar-nav .nav-item .nav-link:hover {
  color: #238bc8;
}
@media (max-width: 991px) {
  .header .header-nav .bottom-nav .navbar-nav .nav-item {
    width: 100%;
    margin: 0 auto;
  }
}
.header .header-nav .bottom-nav .navbar-nav .nav-item .active {
  color: #238bc8;
}
.header .header-nav .bottom-nav .navbar-nav .nav-item.dropdown.show > .nav-link,
.header .header-nav .bottom-nav .navbar-nav .nav-item.dropdown:hover > .nav-link {
  color: #238bc8;
}
.header .header-nav .bottom-nav .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}
.header .header-nav .bottom-nav .navbar-nav .dropdown .dropdown-menu {
  padding: 35px 40px;
  border: none;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .header .header-nav .bottom-nav .navbar-nav .dropdown .dropdown-menu {
    box-shadow: none;
    padding: 0 25px;
  }
}
.header .header-nav .bottom-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  position: relative;
  color: #555555;
  font-family: "InstrumentSans-Regular";
  font-size: 17px;
  text-decoration: none;
  display: block;
  font-weight: 400;
  transition: 0.2s;
}
.header .header-nav .bottom-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  color: #238bc8;
  background-color: #fff;
  text-shadow: 0 0 1px currentColor;
}
.header .header-nav .bottom-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translate(-10px, -50%);
  opacity: 0;
  width: 12px;
  height: 12px;
  background-image: url(../img/dropdown-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}
.header .header-nav .bottom-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}
.header .header-nav .header-contact {
  display: flex;
  width: 50%;
  gap: 6px;
}
@media (max-width: 991px) {
  .header .header-nav .header-contact {
    width: auto;
    margin-right: 50px;
    column-gap: 20px;
  }
}
@media (max-width: 575px) {
  .header .header-nav .header-contact {
    margin-right: 0;
  }
}
.header .header-nav .header-contact .header-contact-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 13px;
}
@media (max-width: 991px) {
  .header .header-nav .header-contact .header-contact-item {
    width: auto;
    gap: 10px;
  }
}
.header .header-nav .header-contact .header-contact-item .header-contact-item-svg {
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #238bc8;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .header .header-nav .header-contact .header-contact-item .header-contact-item-svg {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 767px) {
  .header .header-nav .header-contact .header-contact-item .header-contact-item-svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .header .header-nav .header-contact .header-contact-item .header-contact-item-svg svg {
    width: 25px;
    height: 25px;
  }
}
.header .header-nav .header-contact .header-contact-item .header-contact-item-title {
  font-family: "InstrumentSans-Bold";
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .header .header-nav .header-contact .header-contact-item .header-contact-item-title {
    font-size: 10px;
  }
}
.header .header-nav .header-contact .header-contact-item .header-contact-item-link {
  color: #000;
  font-family: "InstrumentSans-Bold";
  font-size: 21px;
  text-decoration: none;
  white-space: nowrap;
}
.header .header-nav .header-contact .header-contact-item .header-contact-item-link:hover {
  text-decoration: underline;
}
@media (max-width: 1199px) {
  .header .header-nav .header-contact .header-contact-item .header-contact-item-link {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .header .header-nav .header-contact .header-contact-item .header-contact-item-link {
    font-size: 14px;
  }
}
.header .header-nav .header-contact .header-contact-item-green {
  color: #3dc968;
}
.header .header-nav .header-contact .header-contact-item-green .header-contact-item-svg {
  background-color: #3dc968;
}
.header .header-nav .header-contact .header-contact-item-red {
  color: #f84646;
}
.header .header-nav .header-contact .header-contact-item-red .header-contact-item-svg {
  background-color: #f84646;
}
@media (max-width: 575px) {
  .header .header-nav .header-contact-desktop {
    display: none;
  }
}
.header .header-nav .header-contact-mobile {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .header .header-nav .header-contact-mobile {
    display: none;
  }
}
.header .header-nav .header-search {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(25% - 3px);
  height: 51px;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .header .header-nav .header-search {
    height: 44px;
  }
}
.header .header-nav .header-search .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 51px;
  height: 51px;
  background-color: #014b8d;
  border: 1px solid #014b8d;
  cursor: pointer;
  border-radius: 8px;
  z-index: 2;
  pointer-events: all;
  transition: all 0.3s ease;
}
.header .header-nav .header-search .search-btn:hover {
  background-color: #fff;
  border-color: #014b8d;
  color: #014b8d;
  box-shadow: inset 15rem 0 0 0 #fff;
}
.header .header-nav .header-search .search-btn svg {
  fill: #fff;
  transition: all 0.3s ease;
}
.header .header-nav .header-search .search-btn:hover svg {
  fill: #014b8d;
  right: 15px;
}
@media (max-width: 1199px) {
  .header .header-nav .header-search .search-btn {
    height: 44px;
    width: 44px;
  }
}
.header .header-nav .header-search .search-input {
  position: absolute;
  right: 0;
  top: 0;
  width: 51px;
  height: 51px;
  border: none;
  outline: none;
  padding: 0;
  border-radius: 8px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
@media (max-width: 1199px) {
  .header .header-nav .header-search .search-input {
    height: 44px;
  }
}
.header .header-nav .header-search.active .search-input {
  width: 100%;
  padding: 0 60px 0 10px;
  opacity: 1;
  border: 1px solid #969696;
  background: white;
  pointer-events: all;
}
@media (max-width: 991px) {
  .header .header-nav .header-search-desktop {
    display: none;
  }
}
.header .header-nav .header-search-mobile {
  margin-top: 20px;
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0);
  width: 50%;
}
@media (min-width: 992px) {
  .header .header-nav .header-search-mobile {
    display: none;
  }
}
@media (max-width: 575px) {
  .header .header-nav .header-search-mobile {
    width: 100%;
  }
}
.header .header-nav .header-search-mobile .search-input {
  width: 100%;
  padding: 0 60px 0 10px;
  opacity: 1;
  border: 1px solid #969696;
  background: white;
  pointer-events: all;
}

.footer {
  background-color: #1a1a1a;
}
.footer .footer-wrap {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .footer .footer-wrap {
    padding: 50px 18px;
  }
}
.footer .footer-wrap .col-wrap {
  padding: 0 30px;
}
@media (max-width: 767px) {
  .footer .footer-wrap .col-wrap {
    margin-top: 30px;
  }
}
.footer .footer-title {
  position: relative;
  font-family: "InstrumentSans-Bold";
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer .footer-title svg {
  position: absolute;
  top: 0;
  left: -30px;
}
@media (max-width: 767px) {
  .footer .footer-contact {
    padding: 0 18px;
  }
}
.footer .footer-contact .footer-contact-tel {
  display: block;
  font-family: "InstrumentSans-Regular";
  font-size: 28px;
  line-height: 28px;
  color: #4fc3f7;
  text-decoration: underline;
}
.footer .footer-contact .footer-contact-email {
  display: block;
  font-family: "InstrumentSans-Regular";
  font-size: 28px;
  color: #fff;
  text-decoration: underline;
}
.footer .footer-address .footer-address-box {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .footer .footer-address .footer-address-box {
    margin-bottom: 30px;
  }
}
.footer .footer-address .footer-address-box:last-child {
  margin-bottom: 0;
}
.footer .footer-address .footer-address-box p {
  display: block;
  color: #c2c2c2;
  font-family: "InstrumentSans-Regular";
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 0;
}
.footer .footer-address .footer-address-box a {
  color: #4fc3f7;
  font-family: "InstrumentSans-Regular";
  font-size: 16px;
  line-height: 27px;
  text-decoration: none;
}
.footer .footer-address .footer-address-box a:hover {
  text-decoration: underline;
}
.footer .footer-address .footer-address-box span {
  color: #fff;
}
.footer .footer-menu a {
  display: block;
  color: #c2c2c2;
  font-family: "InstrumentSans-Regular";
  font-size: 16px;
  line-height: 27px;
  text-decoration: none;
}
.footer .footer-menu a:hover {
  text-decoration: underline;
}
.footer .footer-copyright {
  padding: 45px 0;
  text-align: center;
  border-top: 1px solid #303030;
}
@media (max-width: 991px) {
  .footer .footer-copyright {
    padding: 30px 0;
  }
}
.footer .footer-copyright p {
  color: #626262;
  font-family: "InstrumentSans-Regular";
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.footer .footer-copyright a {
  color: #626262;
  font-family: "InstrumentSans-Regular";
  font-size: 13px;
  text-transform: uppercase;
}
.footer .footer-copyright span {
  margin: 0 10px;
}

.hp-custom-pad {
  background-color: #fff;
  padding: 0 30px 30px 30px;
}
@media (max-width: 400px) {
  .hp-custom-pad {
    padding: 0 10px 10px 10px;
  }
}

.section-hp-banner .hp-banner {
  position: relative;
}
.section-hp-banner .hp-banner .hp-banner-item {
  position: relative;
  height: 600px;
  width: 100%;
}
@media (max-width: 1199px) {
  .section-hp-banner .hp-banner .hp-banner-item {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .section-hp-banner .hp-banner .hp-banner-item {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .section-hp-banner .hp-banner .hp-banner-item {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .section-hp-banner .hp-banner .hp-banner-item {
    height: 350px;
  }
}
.section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1400px;
  height: 100%;
}
@media (max-width: 1600px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
    width: 1320px;
  }
}
@media (max-width: 1399px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
    width: 1140px;
  }
}
@media (max-width: 1199px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
    width: 940px;
  }
}
@media (max-width: 991px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
    width: 530px;
  }
}
@media (max-width: 575px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
    max-width: 450px;
    width: 100%;
  }
}
.section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
  position: absolute;
  top: 47%;
  left: 0;
  padding: 0 12px;
}
@media (max-width: 1399px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
    top: 40%;
  }
}
@media (max-width: 991px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
    top: 37%;
  }
}
@media (max-width: 767px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
    top: 33%;
  }
}
@media (max-width: 575px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
    top: 32%;
  }
}
.section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title {
  color: #fff;
  font-family: "InstrumentSans-SemiBold";
  margin-bottom: 0;
  line-height: 65px;
}
@media (max-width: 991px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title {
    font-size: 35px;
    line-height: 40px;
  }
}
.section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-text {
  width: 100%;
  max-width: 800px;
  color: #fff;
  font-size: 22px;
  line-height: 35px;
  font-family: "InstrumentSans-Regular";
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-text {
    line-height: 28px;
  }
}

.section-dashboard {
  background-image: url("../img/hp-bg-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.section-dashboard .dashboard-box {
  position: relative;
  top: -80px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .section-dashboard .dashboard-box {
    top: -20px;
  }
}
.section-dashboard .dashboard-box .dashboard-col {
  padding: 40px 25px 55px 25px;
  height: 100%;
}
@media (max-width: 991px) {
  .section-dashboard .dashboard-box .dashboard-col {
    padding: 40px 25px;
  }
}
.section-dashboard .dashboard-box .dashboard-col .dashboard-col-title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.section-dashboard .dashboard-box .dashboard-col .dashboard-col-title .dashboard-col-title-svg {
  background-color: #ebf8ff;
  border-radius: 7px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.section-dashboard .dashboard-box .dashboard-col .dashboard-col-title .dashboard-col-title-text {
  font-family: "InstrumentSans-SemiBold";
  font-size: 24px;
  color: #000;
  display: flex;
  flex-direction: column;
  position: relative;
}
.section-dashboard .dashboard-box .dashboard-col .dashboard-col-title .dashboard-col-title-text .dashboard-col-title-date {
  font-family: "InstrumentSans-Regular";
  font-size: 17px;
  position: absolute;
  left: 0;
  bottom: -30px;
}
.section-dashboard .dashboard-box .dashboard-middle-col {
  border-radius: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 80px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-dashboard .dashboard-box .dashboard-col-content .dashboard-cards {
    margin-top: 50px;
  }
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-cards .dashboard-card-item {
  min-width: 180px;
  background-color: #4fc3f7;
  padding: 10px 30px;
  border-radius: 8px;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-cards .dashboard-card-item .dashboard-card-title {
  color: #fff;
  font-family: "InstrumentSans-Regular";
  font-size: 17px;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-cards .dashboard-card-item .dashboard-card-value {
  color: #fff;
  font-family: "InstrumentSans-SemiBold";
  font-size: 21px;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-cards .dashboard-card-item-dark-blue {
  background-color: #014b8d;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-text {
  font-family: "InstrumentSans-Regular";
  font-size: 17px;
  color: #555555;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-link {
  position: relative;
  display: block;
  font-family: "InstrumentSans-Regular";
  font-size: 17px;
  line-height: 27px;
  color: #555555;
  text-decoration: underline;
  padding-left: 25px;
  margin-bottom: 5px;
  transition: all 0.2s ease;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-link::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 0;
  top: 7px;
  background-image: url(../img/dropdown-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-link:hover {
  color: #238bc8;
  text-shadow: 0 0 1px currentColor;
}
.section-dashboard .dashboard-box .dashboard-col-content .dashboard-link:hover::before {
  left: 5px;
}
.section-dashboard .dashboard-counter {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .section-dashboard .dashboard-counter {
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .section-dashboard .dashboard-counter {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-dashboard .dashboard-counter .dashboard-counter-item {
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
}
@media (max-width: 1199px) {
  .section-dashboard .dashboard-counter .dashboard-counter-item {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .section-dashboard .dashboard-counter .dashboard-counter-item {
    padding: 15px;
  }
}
.section-dashboard .dashboard-counter .dashboard-counter-item .dashboard-counter-item-value {
  font-family: "InstrumentSans-SemiBold";
  font-size: 50px;
  color: #93dcfc;
}
@media (max-width: 575px) {
  .section-dashboard .dashboard-counter .dashboard-counter-item .dashboard-counter-item-value {
    font-size: 27px;
  }
}
.section-dashboard .dashboard-counter .dashboard-counter-item .dashboard-counter-item-subtitle {
  font-family: "InstrumentSans-Medium";
  font-size: 17px;
  line-height: 23px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .section-dashboard .dashboard-counter .dashboard-counter-item .dashboard-counter-item-subtitle {
    font-size: 13px;
    line-height: 18px;
  }
}

.section-reference {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: left;
  background-image: url("../img/hp-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 575px) {
  .section-reference {
    min-height: 250px;
  }
}
.section-reference .reference-title {
  color: #fff;
  font-family: "InstrumentSans-SemiBold";
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .section-reference .reference-title {
    margin-bottom: 20px;
  }
}
.section-reference .reference-btn {
  position: relative;
  display: inline-block;
  background-color: #238bc8;
  color: #fff;
  font-family: "InstrumentSans-SemiBold";
  font-size: 15px;
  text-transform: uppercase;
  border: 1px solid #238bc8;
  padding: 14px 50px 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .section-reference .reference-btn {
    font-size: 12px;
    padding: 10px 40px 10px 20px;
  }
}
.section-reference .reference-btn:hover {
  background-color: #fff;
  border-color: #238bc8;
  color: #238bc8;
  box-shadow: inset 15rem 0 0 0 #fff;
}
.section-reference .reference-btn svg {
  fill: #fff;
  position: absolute;
  width: 13px;
  height: 13px;
  right: 20px;
  top: calc(50% - 7px);
  transition: all 0.3s ease;
}
.section-reference .reference-btn:hover svg {
  fill: #238bc8;
  right: 15px;
}

.section-contact {
  background-color: #fbfbfb;
  padding: 125px 0;
}
@media (max-width: 991px) {
  .section-contact {
    padding: 60px 0;
  }
}
.section-contact .contact-wrap {
  margin-bottom: 65px;
  row-gap: 30px;
  flex-wrap: wrap-reverse;
}
.section-contact .contact-wrap:last-child {
  margin-bottom: 0;
}
.section-contact .contact-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.section-contact .contact-box {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .section-contact .contact-box {
    padding-left: 0;
  }
}
.section-contact .contact-box .contact-title {
  font-family: "InstrumentSans-SemiBold";
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .section-contact .contact-box .contact-title {
    margin-bottom: 30px;
  }
}
.section-contact .contact-box .contact-subtitle {
  font-family: "InstrumentSans-Bold";
  line-height: 30px;
  color: #000;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .section-contact .contact-box .contact-subtitle {
    margin-bottom: 10px;
  }
}
.section-contact .contact-box .contact-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .section-contact .contact-box .contact-item {
    margin-bottom: 30px;
  }
}
.section-contact .contact-box .contact-item .contact-svg-box {
  position: absolute;
  top: -8px;
  left: 0;
  width: 46px;
  height: 46px;
  background-color: #ebf8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.section-contact .contact-box .contact-item .contact-item-phone {
  font-family: "InstrumentSans-SemiBold";
  font-size: 17px;
  line-height: 30px;
  text-decoration: none;
  color: #000;
}
.section-contact .contact-box .contact-item .contact-item-phone:hover {
  text-decoration: underline;
}
.section-contact .contact-box .contact-item .contact-item-email {
  font-family: "InstrumentSans-SemiBold";
  font-size: 17px;
  line-height: 30px;
  text-decoration: none;
  color: #238bc8;
}
.section-contact .contact-box .contact-item .contact-item-email:hover {
  text-decoration: underline;
}
.section-contact .contact-box .contact-item .contact-item-position {
  position: relative;
  font-family: "InstrumentSans-Medium";
  font-size: 17px;
  line-height: 30px;
  text-decoration: none;
  color: #238bc8;
  padding-left: 25px;
}
.section-contact .contact-box .contact-item .contact-item-position:hover {
  text-decoration: underline;
}
.section-contact .contact-box .contact-item .contact-item-position:before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  top: 0;
  background-image: url(../img/contact-position-ico.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}
.section-contact .contact-box .contact-item p {
  font-family: "InstrumentSans-SemiBold";
  font-size: 17px;
  line-height: 30px;
  color: #000;
  margin-bottom: 0;
}
.section-contact .contact-box .contact-item-open-time {
  font-family: "InstrumentSans-Medium";
  font-size: 15px;
  line-height: 24px;
  color: #000;
  margin-bottom: 0;
  text-transform: uppercase;
}

.main--subpage {
  background-color: #fbfbfb;
}

/*# sourceMappingURL=main.css.map */
