@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
::-webkit-scrollbar-track {
  background-color: #102B32;
  border-left: 1px solid #102B32;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: #102B32;
}

::-webkit-scrollbar-thumb {
  background: #DFF39E;
}

::selection {
  color: #102B32;
  background-color: #DFF39E;
  filter: invert(1);
}

.head {
  font-family: "Sora", sans-serif;
  font-size: 46px;
  font-weight: 500;
  color: #102B32;
  letter-spacing: -0.02em;
  line-height: 1.2em;
}
@media (max-width: 575.98px) {
  .head {
    font-size: 32px;
  }
}

.subhead span {
  position: relative;
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #102B32;
  text-transform: uppercase;
  line-height: normal;
  border: 1px solid rgba(16, 43, 50, 0.1019607843);
  border-radius: 40px;
  padding: 7px 15px 7px 30px;
}
.subhead span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #DFF39E;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.text-big {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #102B32;
  line-height: 1.5em;
}

.text {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #586B70;
  line-height: 1.6em;
}

.text-small {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(88, 107, 112, 0.8);
}

.btn.btn-main {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  color: #102B32;
  background: #DFF39E;
  border-radius: 6px;
  padding: 12px 58px 12px 20px;
  border: none;
  outline: none;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #102B32;
}
.btn.btn-main::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  transform: translate(0%, -50%);
  background-color: #102B32;
  background-image: url(../img/icons/arrow-accent.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px auto;
  border-radius: 6px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}
.btn.btn-main:hover {
  padding: 12px 20px 12px 58px;
}
.btn.btn-main:hover::before {
  right: 100%;
  transform: translate(calc(100% + 6px), -50%);
}

.avatars {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.avatars .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #F7F7F7;
  overflow: hidden;
  margin-left: -10px;
  flex-shrink: 0;
}
.avatars .avatar:first-child {
  margin-left: 0;
}
.avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatars .avatar.more {
  background: #DFF39E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #102B32;
}

.navbar {
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .navbar-brand {
  width: 150px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.hero .hero-card {
  background: #102B32;
  background-image: url(../img/our-contact-us-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  align-content: center;
  border-radius: 20px;
}
@media (max-width: 575.98px) {
  .hero .hero-card {
    border-radius: 0;
  }
}
.hero .hero-card .subhead span {
  border: 1px solid rgba(255, 255, 255, 0.3058823529);
}
.hero .hero-card h1 {
  font-family: "Sora", sans-serif;
  font-size: 52px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media (max-width: 575.98px) {
  .hero .hero-card h1 {
    line-height: 1.5em;
    font-size: 36px;
  }
}
.hero .hero-card h1 img {
  width: 150px;
  height: 50px;
}
.hero .img-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero .img-container .img-hero {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .hero .img-container .img-hero {
    border-radius: 0;
    height: 50vh;
  }
}
.hero .img-container .img-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgba(16, 43, 50, 0.1019607843);
  border-radius: 20px;
  max-width: 300px;
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  z-index: 2;
}
@media (max-width: 575.98px) {
  .hero .img-container .img-card {
    bottom: 10px;
    left: 10px;
  }
}
.hero .img-container .img-card .avtar {
  width: 50%;
}
.hero .img-container .img-card .card-body {
  padding: 30px;
}

.form .form-img-card {
  position: relative;
  border-radius: 20px;
}
.form .form-img-card img {
  border-radius: 20px;
}
.form .form-img-card::before {
  content: "";
  position: absolute;
  border-radius: 20px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(16, 43, 50, 0) 43.03%, #102B32 87.63%);
  height: 100%;
  width: 100%;
}
.form .form-img-card .card-img-overlay {
  top: auto;
  bottom: -10px;
}
.form .info-card {
  background: #DFF39E;
  border-radius: 20px;
}
.form .form-card {
  border-radius: 20px;
  background: #102B32;
  background-image: url(../img/our-contact-us-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.form .form-card label {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}
.form .form-card .form-control {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3058823529);
  border-radius: 10px;
  padding: 13px 20px;
  box-shadow: none;
  outline: none;
}
.form .form-card .form-control::placeholder {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #586B70;
}

.about .info-card {
  background: #F7F7F7;
  border-radius: 20px;
}
.about .cuc {
  max-width: 130px;
  width: 100%;
  animation: infiniterotate 20s infinite linear;
}
@keyframes infiniterotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.workspace {
  background: #102B32;
}
.workspace .subhead span {
  border: 1px solid rgba(255, 255, 255, 0.3058823529);
}
.workspace .head-title {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #FFFFFF;
}
@media (max-width: 575.98px) {
  .workspace .head-title {
    font-size: 28px;
  }
}
.workspace .owl-nav {
  margin-top: 0 !important;
}
@media (max-width: 575.98px) {
  .workspace .owl-nav {
    margin-top: 30px !important;
  }
}
.workspace .owl-nav .owl-prev,
.workspace .owl-nav .owl-next {
  position: absolute;
  top: -18%;
}
@media (max-width: 575.98px) {
  .workspace .owl-nav .owl-prev,
  .workspace .owl-nav .owl-next {
    top: auto;
  }
}
.workspace .owl-nav .owl-prev:hover,
.workspace .owl-nav .owl-next:hover {
  background: none;
}
.workspace .owl-nav .owl-prev {
  right: 80px;
}
@media (max-width: 575.98px) {
  .workspace .owl-nav .owl-prev {
    right: 55%;
    transform: translateX(50%);
  }
}
.workspace .owl-nav .owl-next {
  right: 20px;
}
@media (max-width: 575.98px) {
  .workspace .owl-nav .owl-next {
    right: 40%;
    transform: translateX(50%);
  }
}

.whyus .why-choose-title-img {
  width: 50px;
  height: 50px;
  background: #DFF39E;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.whyus .card,
.whyus img {
  border-radius: 20px;
  border: none;
}
.whyus .text {
  color: #102B32;
}
.whyus .why-1 {
  background: #102B32;
}
.whyus .why-1 ul li::marker {
  color: #DFF39E;
}
.whyus .why-2 {
  background: #DFF39E;
  background-image: url(../img/why-choose-item-bg-1.webp);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top right;
}
.whyus .why-2 .icon-box {
  width: 50px;
  height: 50px;
  background: #102B32;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.whyus .why-3 {
  background: #F7F7F7;
  background-image: url(../img/why-choose-item-bg-2.webp);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top right;
}
.whyus a:hover img {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.testimonials .main {
  background: #F7F7F7;
  border-radius: 20px;
}
.testimonials .test-card {
  background: #102B32;
  background-image: url(../img/our-contact-us-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}
.testimonials .test-card .border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3058823529) !important;
}
.testimonials .owl-nav {
  margin-top: 0 !important;
}
.testimonials .owl-nav .owl-prev,
.testimonials .owl-nav .owl-next {
  position: absolute;
  bottom: 5%;
}
.testimonials .owl-nav .owl-prev:hover,
.testimonials .owl-nav .owl-next:hover {
  background: none;
}
.testimonials .owl-nav .owl-prev {
  right: 80px;
}
@media (max-width: 575.98px) {
  .testimonials .owl-nav .owl-prev {
    right: 55%;
    transform: translateX(50%);
  }
}
.testimonials .owl-nav .owl-next {
  right: 20px;
}
@media (max-width: 575.98px) {
  .testimonials .owl-nav .owl-next {
    right: 40%;
    transform: translateX(50%);
  }
}

.cta-card {
  background: url("../img/cta.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}
.cta-card .subhead span {
  border: 1px solid rgba(255, 255, 255, 0.3058823529);
}

.footer .card {
  background: #DFF39E;
  border-radius: 20px;
  border: 0;
}
.footer .card .logo {
  max-width: 150px;
  width: 100%;
}
.footer .card .text {
  color: #102B32;
}

.cta-btn .sticky-button-container {
  z-index: 9999;
}
.cta-btn .sticky-button-container .btn-bottom {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px;
  border-radius: 0px;
}
.cta-btn .sticky-button-container .btn-1 {
  background: #102B32;
}
.cta-btn .sticky-button-container .btn-2 {
  background: #DFF39E;
  color: #102B32;
}

#thankYouModal .modal-content {
  border-radius: 20px;
}
#thankYouModal .modal-body {
  padding: 50px 40px;
}
@media (max-width: 575.98px) {
  #thankYouModal .modal-body {
    padding: 40px 30px;
  }
}
#thankYouModal .modal-body .head {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2c3131;
}
@media (max-width: 575.98px) {
  #thankYouModal .modal-body .head {
    font-size: 24px;
  }
}
#thankYouModal .modal-body .headtext {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #626262;
  line-height: 1.6;
}/*# sourceMappingURL=style.css.map */