/*Import basic scss*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  min-width: 320px;
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-color: #ffffff;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1024px) {
  .no-scroll {
    overflow: hidden;
    height: 100%;
  }
}

button {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

input, textarea {
  font-family: "Montserrat", sans-serif;
}

button, a {
  cursor: pointer;
}

a {
  text-decoration: none;
  outline: none;
}

::selection {
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.content-wrapper {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.flex-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.d-none {
  display: none !important;
}

h1 {
  font-weight: 800;
  color: #000000;
  font-size: 85px;
  text-align: center;
}
@media screen and (max-width: 1660px) {
  h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 1440px) {
  h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 375px) {
  h1 {
    font-size: 24px;
  }
}

h2, .section-title {
  font-weight: 800;
  color: #000000;
  font-size: 56px;
}
@media screen and (max-width: 1660px) {
  h2, .section-title {
    font-size: 46px;
  }
}
@media screen and (max-width: 1440px) {
  h2, .section-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 1024px) {
  h2, .section-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  h2, .section-title {
    font-size: 28px;
  }
}

.text-mid {
  font-weight: 800;
  font-size: 25px;
  color: #000000;
}
@media screen and (max-width: 1440px) {
  .text-mid {
    font-size: 22px;
  }
}

.text-small {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.7em;
}

.btn {
  padding: 11.5px 10px 11.5px 10px;
  width: 100%;
  border-radius: 50px;
  border: 4px solid #009CD3;
  background-color: rgba(0, 0, 0, 0);
  font-weight: 400;
  font-size: 20px;
}
.btn:hover {
  background-color: #009CD3;
  color: #ffffff;
}
@media screen and (max-width: 1660px) {
  .btn {
    font-size: 18px;
  }
}

.modal-open {
  overflow: hidden;
}

.backdrop-layer {
  position: fixed;
  z-index: 1000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
}
.backdrop-layer.active {
  opacity: 1;
  pointer-events: all;
}

.modal-body {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1000001;
  height: 85%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity, 0.3s transform;
}
.modal-body.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
.modal-body .main-img {
  width: auto;
  height: 100%;
  display: block;
}
.modal-body .close-modal {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  outline: none;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background-color: #ffffff;
  border-radius: 50rem;
}

@media screen and (max-width: 1024px) {
  .modal-body {
    height: auto;
  }
  .modal-body .main-img {
    width: 600px;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .modal-body {
    width: 90%;
  }
  .modal-body .main-img {
    width: 100%;
  }
  .modal-body .close-modal {
    position: absolute;
    right: 0;
    top: -12px;
    transform: translate(0%, -100%);
  }
}
header {
  position: absolute;
  z-index: 546466;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 57px;
  padding-left: 63px;
  padding-right: 130px;
}
header .nav-menu {
  display: inline-block;
}
header .nav-menu ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
header .nav-menu ul li {
  display: inline-block;
}
header .nav-menu ul li a {
  display: inline-block;
  color: #000000;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
}
header .nav-menu ul li a:hover {
  color: #ffffff;
  background-color: #008DFA;
}
header .nav-menu ul li a.outline-btn {
  box-shadow: inset 0px 0px 0px 3px #970000;
  color: #970000;
}
header .nav-menu ul li a.outline-btn:hover {
  color: #ffffff;
  background-color: #970000;
}
header .right-logo {
  float: right;
}
header .nav-icon {
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  height: 14px;
  width: 30px;
  display: none;
  -moz-transition: 0.5s transform;
  -o-transition: 0.5s transform;
  -webkit-transition: 0.5s transform;
  transition: 0.5s transform;
}
header .nav-icon div {
  width: 100%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  border-radius: 4px;
  -moz-transition: 0.2s top 0.2s, 0.2s transform 0s, 0.2s background-color;
  -o-transition: 0.2s top 0.2s, 0.2s transform 0s, 0.2s background-color;
  -webkit-transition: 0.2s top 0.2s, 0.2s transform 0s, 0.2s background-color;
  transition: 0.2s top 0.2s, 0.2s transform 0s, 0.2s background-color;
}
header .nav-icon div:nth-child(1) {
  top: 0%;
  transform: translateY(0%) rotate(0deg);
}
header .nav-icon div:nth-child(2) {
  top: calc(100% - 2px);
  transform: translateY(0%) rotate(0deg);
}
header .nav-icon.active {
  transform: translateX(144px);
}
header .nav-icon.active div {
  background-color: #008DFA;
  -moz-transition: 0.2s top 0s, 0.2s transform 0.2s;
  -o-transition: 0.2s top 0s, 0.2s transform 0.2s;
  -webkit-transition: 0.2s top 0s, 0.2s transform 0.2s;
  transition: 0.2s top 0s, 0.2s transform 0.2s;
}
header .nav-icon.active div:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
header .nav-icon.active div:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 1440px) {
  header {
    padding-top: 40px;
    padding-left: 44px;
    padding-right: 90px;
  }
  header .nav-menu ul li a {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 1024px) {
  header {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 30px;
  }
  header .nav-icon {
    display: inline-block;
    margin-top: 18px;
  }
  header .nav-menu {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffffff;
    height: 100vh;
    -moz-transition: 0.5s transform, 0.5s box-shadow;
    -o-transition: 0.5s transform, 0.5s box-shadow;
    -webkit-transition: 0.5s transform, 0.5s box-shadow;
    transition: 0.5s transform, 0.5s box-shadow;
    transform: translateX(-100%);
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0);
    padding-top: 58px;
  }
  header .nav-menu ul {
    display: block;
    width: 210px;
  }
  header .nav-menu ul li {
    display: block;
  }
  header .nav-menu ul li a {
    color: #008DFA;
  }
  header.header-nav-open .nav-menu {
    transform: translateX(0%);
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.5);
  }
}

.container {
  max-width: 90%;
  width: 1584px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1660px) {
  .container {
    width: 1200px;
  }
}
@media screen and (max-width: 1366px) {
  .container {
    width: 1000px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero .hero-bg {
  position: relative;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
}
.hero .hero-foreground {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 241px;
  width: 100%;
  text-align: left;
}
.hero .hero-foreground .main-title {
  margin: 0;
  text-transform: uppercase;
  text-align: left;
}
.hero .hero-foreground .main-title span {
  color: #2CADDB;
}
@media screen and (max-width: 1440px) {
  .hero .hero-foreground {
    padding-top: 168px;
  }
}
@media screen and (max-width: 1024px) {
  .hero .hero-foreground {
    padding-top: 118px;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-bg {
    transform: translateX(-10%);
    width: 120%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .hero .hero-bg {
    transform: translateX(0%);
    width: 150%;
  }
}
@media screen and (max-width: 450px) {
  .hero .hero-bg {
    transform: translateX(-10%);
    width: 200%;
  }
}

.services {
  padding-top: 40px;
  padding-bottom: 182px;
  position: relative;
  z-index: 2;
}
.services .container .title-text .flex-box {
  width: 100%;
}
.services .container .title-text .flex-box .col-left {
  flex: 0 0 40.6%;
}
.services .container .title-text .flex-box .col-right {
  flex: 1;
  padding-left: 56px;
}
.services .container .title-text h2 {
  margin: 0;
}
.services .container .title-text h2 span {
  color: #2CADDB;
}
.services .container .title-text p {
  margin-top: 16px;
  margin-bottom: 0;
}
.services .container .why-count-on-us {
  padding-top: 146px;
}
.services .container .why-count-on-us h2 {
  margin: 0;
}
.services .container .why-count-on-us .list-grid {
  width: 100%;
  margin-top: 67px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}
.services .container .why-count-on-us .list-grid .item {
  margin-bottom: 10px;
}
.services .container .why-count-on-us .list-grid .item h3 {
  margin-top: 10px;
  margin-bottom: 15px;
}
.services .container .why-count-on-us .list-grid .item p {
  margin: 0;
}
.services .container .why-count-on-us .list-grid .item .icon-box {
  width: 120px;
  height: 100px;
}
.services .container .why-count-on-us .list-grid .item .icon-box img {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 1440px) {
  .services {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .services {
    padding-bottom: 100px;
  }
  .services .container .title-text .flex-box .col-left {
    flex: 0 0 100%;
  }
  .services .container .title-text .flex-box .col-right {
    margin-top: 20px;
    padding-left: 0;
  }
  .services .container .why-count-on-us {
    padding-top: 106px;
  }
  .services .container .why-count-on-us .list-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .services .container .why-count-on-us {
    padding-top: 106px;
  }
  .services .container .why-count-on-us .list-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .services .container .why-count-on-us .list-grid .item h3 br {
    display: none;
  }
}

.gallery {
  text-align: center;
  padding-bottom: 280px;
}
.gallery h2 {
  margin: 0;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 48px;
}
.gallery .gallery-grid .item {
  overflow: hidden;
  position: relative;
}
.gallery .gallery-grid .item:not(:last-child) {
  cursor: pointer;
}
.gallery .gallery-grid .item:not(:last-child):hover img {
  transform: scale(1.05);
}
.gallery .gallery-grid .item:not(:last-child):hover .foreground {
  opacity: 1;
}
.gallery .gallery-grid .item:not(:last-child):hover .foreground img {
  transform: translateY(0%);
}
.gallery .gallery-grid .item .foreground {
  background-color: rgba(44, 173, 219, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  transition: 0.5s opacity;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .gallery-grid .item .foreground img {
  max-width: 20%;
  position: relative;
  transition: 0.5s transform;
  transform: translateY(30%);
}
.gallery .gallery-grid .item img {
  display: block;
  width: 100%;
  transition: 0.5s transform;
  transform: scale(1);
}
.gallery .gallery-grid .item-last {
  background: linear-gradient(124.46deg, #ECF8FE 1.48%, #CEEAFE 107.9%);
  box-shadow: inset 0px 4px 150px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gallery .gallery-grid .item-last img {
  width: 87px;
  height: auto;
  margin-bottom: 30px;
}
.gallery .gallery-grid .item-last .title {
  font-size: 40px;
  margin: 0;
  line-height: 1.4em;
}
.gallery .gallery-grid .item-last .title span {
  color: #2CADDB;
}
@media screen and (max-width: 1660px) {
  .gallery .gallery-grid .item-last img {
    width: 64px;
    margin-bottom: 16px;
  }
  .gallery .gallery-grid .item-last .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .gallery {
    padding-bottom: 200px;
  }
  .gallery .gallery-grid .item-last .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .gallery {
    padding-bottom: 100px;
  }
  .gallery .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery .gallery-grid .item-last img {
    width: 50px;
    margin-bottom: 12px;
  }
  .gallery .gallery-grid .item-last .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery .gallery-grid .item-last {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.contact {
  padding-bottom: 110px;
  position: relative;
}
.contact .section-title {
  font-size: 50px;
  margin-top: 0;
}
.contact .contact-bg {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  transform-origin: 0 0;
}
.contact .contact-container {
  max-width: 1570px;
  width: 95%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.contact .flex-box {
  width: 100%;
}
.contact .flex-box .cont-col {
  flex: 0 0 48%;
  max-width: 48%;
}
.contact .flex-box .cont-col:nth-child(1) {
  margin-right: 12%;
  flex: 0 0 40%;
  max-width: 40%;
}
.contact .flex-box .cont-col:nth-child(1) .section-title {
  margin-bottom: 23px;
}
.contact .flex-box .cont-col:nth-child(2) {
  padding-left: 8%;
  padding-top: 130px;
}
.contact .section-title {
  display: block;
  margin-bottom: 52px;
}
.contact .section-title.st-white {
  color: #000000;
}
.contact .label {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  display: block;
}
.contact .label .compulsory {
  color: #009CD3;
}
.contact .label .l-small {
  font-size: 15px;
  font-weight: 300;
}
.contact .label.l-mt {
  margin-top: 30px;
}
.contact .main-form .form-group {
  display: block;
}
.contact .main-form .form-group .label {
  margin-bottom: 16px;
}
.contact .main-form .form-group:not(:last-child) {
  margin-bottom: 17px;
}
.contact .main-form .form-group input, .contact .main-form .form-group textarea {
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 20px;
  display: block;
  width: 100%;
  max-width: 551px;
  outline: none;
  padding: 11px;
}
.contact .main-form .form-group input.empty, .contact .main-form .form-group textarea.empty {
  border: 1px solid red;
}
.contact .main-form .form-group textarea {
  height: 209px;
  resize: none;
}
.contact .main-form .form-note {
  font-weight: 300;
  font-size: 12px;
  color: #000000;
  display: block;
}
.contact .main-form .send-announce {
  font-weight: 500;
  font-size: 14px;
  color: #008DFA;
  display: block;
  margin-top: 24px;
}
.contact .main-form .send-announce.hidden {
  display: none;
}
.contact .main-form .send-btn {
  width: 145px;
  margin-top: 24px;
}
.contact .main-form .send-btn.hidden {
  display: none;
}
.contact .info-row {
  display: block;
}
.contact .info-row:not(:last-child) {
  margin-bottom: 33px;
}
.contact .info-row .label {
  margin-bottom: 16px;
}
.contact .tel-num-link {
  color: #009BDE;
  font-weight: 800;
  font-size: 50px;
}
.contact .mail-link {
  color: #009BDE;
  font-weight: 700;
  font-size: 24px;
  text-decoration: underline;
}
.contact .company-info {
  color: #000000;
  font-size: 16px;
  line-height: 1.7em;
  font-weight: 500;
  margin-top: 26px;
  display: block;
}
.contact .company-info span {
  font-weight: 700;
  font-size: 19px;
  color: #009BDE;
}
.contact .footer-logo {
  margin-top: 10px;
  width: 176px;
}
@media (min-width: 2000px) {
  .contact .contact-bg {
    width: 66%;
    transform: translate(2%, 12%);
  }
}
@media (min-width: 2500px) {
  .contact .contact-bg {
    width: 63%;
    transform: translate(0%, 23%);
  }
}
@media (min-width: 2900px) {
  .contact .contact-bg {
    width: 64%;
    transform: translate(0%, 33%);
  }
}
@media screen and (max-width: 1800px) {
  .contact .contact-bg {
    right: -12%;
    width: 74%;
  }
}
@media screen and (max-width: 1660px) {
  .contact .section-title, .contact .tel-num-link {
    font-size: 42px;
  }
  .contact .contact-container {
    max-width: 1300px;
    width: 90%;
  }
  .contact .contact-bg {
    right: -26%;
    width: 90%;
    transform: rotate(0deg);
    top: -5%;
  }
}
@media screen and (max-width: 1560px) {
  .contact .contact-bg {
    right: -33%;
    width: 98%;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact-bg {
    right: -35%;
    width: 98%;
  }
}
@media screen and (max-width: 1370px) {
  .contact .contact-bg {
    right: -40%;
    width: 108%;
  }
}
@media screen and (max-width: 1260px) {
  .contact {
    overflow: hidden;
  }
  .contact .contact-bg {
    top: auto;
    right: -15%;
    width: 1642px;
    bottom: -32%;
  }
  .contact .contact-container {
    max-width: 700px;
  }
  .contact .flex-box .cont-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact .flex-box .cont-col:nth-child(1) {
    margin-right: 0%;
    margin-bottom: 100px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact .flex-box .cont-col:nth-child(2) {
    padding-top: 80px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .contact .contact-bg {
    bottom: -31%;
    width: 1590px;
  }
}
@media screen and (max-width: 600px) {
  .contact .contact-bg {
    bottom: -29%;
  }
  .contact .section-title, .contact .tel-num-link {
    font-size: 30px;
  }
}
@media screen and (max-width: 456px) {
  .contact .contact-bg {
    bottom: -28%;
  }
}
@media screen and (max-width: 400px) {
  .contact .contact-bg {
    bottom: -29%;
  }
}

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