@charset "UTF-8";
:root {
  --theme-color: #ffffff;
  --theme-color2: #015C82;
  --title-color: #1A1A1A;
  --body-color: #878D97;
  --smoke-color: #EEF2FB;
  --white-color: #ffffff;
  --black-color: #000000;
  --border-color: rgba(0,0,0,0.10);
  --title-font: "Sora", sans-serif;
  --body-font: "Sora", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
}

.header-logo {
  max-width: 200px;
}

html::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

html::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}


button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}



/* Large devices */
@media (max-width: 1199px) {
  .h1,
h1 {
    font-size: 42px;
  }

  .h2,
h2 {
    font-size: 30px;
  }

  .h3,
h3 {
    font-size: 26px;
  }

  .h4,
h4 {
    font-size: 22px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .h1,
h1 {
    font-size: 36px;
  }

  .h2,
h2 {
    font-size: 26px;
  }

  .h3,
h3 {
    font-size: 24px;
  }

  .h4,
h4 {
    font-size: 20px;
  }

  .h5 {
    font-size: 18px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .h1,
h1 {
    font-size: 30px;
  }

  .h2,
h2 {
    font-size: 26px;
  }
}
.text-theme {
  color: var(--theme-color);
}

.bg-theme {
  background-color: var(--theme-color);
}

.bg-smoke {
  background-color: var(--smoke-color);
}





@-webkit-keyframes loaderfill {
  0% {
    box-shadow: 0 0 0 2px inset;
  }
  100% {
    box-shadow: 0 0 0 10px inset;
  }
}

@keyframes loaderfill {
  0% {
    box-shadow: 0 0 0 2px inset;
  }
  100% {
    box-shadow: 0 0 0 10px inset;
  }
}
/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  border: none;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  font-family: var(--title-font);
  background-color: var(--theme-color2);
  color: var(--white-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 21.5px 40px;
  border-radius: 9999px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.vs-btn:before,
.vs-btn:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: var(--theme-color);
  transform: scale(0);
  z-index: -1;
  border-radius: inherit;
  transform-origin: right bottom;
  transition: opacity ease 0.4s, visibility ease 0.4s, transform ease 0.4s;
}

.vs-btn:before {
  transform-origin: left top;
}

.vs-btn.active,
.vs-btn:hover {
  color: #059AB3;
}

.vs-btn.active:before,
.vs-btn:hover:before,
.vs-btn.active:after,
.vs-btn:hover:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.vs-btn.style4,
.vs-btn.style3,
.vs-btn.style2 {
  outline: 2px solid var(--theme-color2);
  outline-offset: -2px;
  background-color: transparent;
  color: var(--theme-color2);
}

.vs-btn.style4:hover,
.vs-btn.style3:hover,
.vs-btn.style2:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
  outline-color: var(--theme-color2);
}

.vs-btn.style3 {
  outline-color: var(--white-color);
  color: var(--white-color);
}

.vs-btn.style4 {
  outline-color: var(--theme-color2);
  color: var(--title-color);
}

/* Extra small devices */
@media (max-width: 416px) {
  .vs-btn {
    font-size: 14px;
    padding: 16px 28px;
    min-width: 140px;
  }

  .vs-btn i {
    font-size: 14px;
  }

  .vs-btn.btn-60 {
    height: 60px;
  }

  .vs-btn.style-1 {
    padding: 7px 25px;
  }

  .vs-btn.style-2 {
    width: 150px;
  }
}



.vs-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 100px;
  padding-right: 100px;
  z-index: 2;
}
.vs-header.show {
  background-color: var(--black-color);
  position: fixed;
  z-index: 999;
}


.hero-title {
  font-size: 72px;
  line-height: 1.2;
}

.hero-logo {
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}

.vs-hero {
  background-size: cover;
  position: relative;
  padding-top: 210px;
  padding-bottom: 170px;
}

/* Extra large devices */
@media (max-width: 1600px) {
  .hero-right-img {
    max-width: 400px;
  }

  .hero-left-img {
    max-width: 350px;
    top: 16%;
    bottom: auto;
  }
}

