@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  touch-action: pan-y;
}

body {
  padding: 0 !important;
  margin: 0 !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

header.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  background-color: #0a142f;
}
header.header .header__box {
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 5%;
}
header.header .header__box .box__left {
  transition: 0.3s all ease;
  width: 167px;
}
header.header .header__box .box__left--logo {
  position: relative;
  width: 100%;
  padding-top: 59.88%;
  overflow: hidden;
  aspect-ratio: 167/100;
}
header.header .header__box .box__left--logo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
header.header .header__box .box__right--btn a {
  transition: 0.3s all ease;
  background-color: #fcfcfc;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 18px;
  color: #0a142f;
  outline: none;
  border: none;
  border-radius: 20px;
  box-shadow: unset;
}

@media only screen and (max-width: 768px) {
  header.header .header__box {
    height: 80px;
    padding-inline: 20px;
  }
  header.header .header__box .box__left {
    width: 147px;
  }
  header.header .header__box .box__left--logo {
    width: 100%;
    padding-top: 54.42%;
    aspect-ratio: 147/80;
  }
  header.header .header__box .box__right--btn a {
    padding: 8px 18px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  header.header .header__box {
    height: 60px;
    padding-inline: 20px;
  }
  header.header .header__box .box__left {
    width: 107px;
  }
  header.header .header__box .box__left--logo {
    width: 100%;
    padding-top: 56.07%;
    aspect-ratio: 107/60;
  }
  header.header .header__box .box__right--btn a {
    padding: 4px 6px;
    font-size: 14px;
  }
}
footer.footer {
  width: 100%;
  background-color: #0a142f;
}
footer.footer .footer__box {
  max-width: 1440px;
  margin-inline: auto;
  transition: 0.3s all ease;
}
footer.footer .footer__box--title {
  transition: 0.3s all ease;
  padding-top: 50px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
footer.footer .footer__box--body {
  transition: 0.3s all ease;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  padding-inline: 20px;
}
footer.footer .footer__box--body .box__body {
  transition: 0.3s all ease;
}
footer.footer .footer__box--body .box__body--item {
  display: flex;
  margin-top: 25px;
}
footer.footer .footer__box--body .box__body--item .item__text {
  min-width: 300px;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}
footer.footer .footer__box--body .box__body--item .item__value {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
}
footer.footer .footer__box--bottom {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 30px 75px;
  transition: 0.3s all ease;
}
footer.footer .footer__box--bottom a, footer.footer .footer__box--bottom-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  footer.footer .footer__box--title {
    padding-top: 20px;
    font-size: 28px;
    padding-inline: 20px;
  }
  footer.footer .footer__box--body {
    margin-top: 22px;
    padding-inline: 20px;
  }
  footer.footer .footer__box--body .box__body--item {
    margin-top: 10px;
  }
  footer.footer .footer__box--body .box__body--item .item__text {
    min-width: 200px;
    font-size: 16px;
  }
  footer.footer .footer__box--body .box__body--item .item__value {
    font-size: 16px;
  }
  footer.footer .footer__box--bottom {
    gap: 50px;
    padding: 20px;
  }
  footer.footer .footer__box--bottom a, footer.footer .footer__box--bottom-item {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  footer.footer .footer__box--title {
    font-size: 26px;
  }
  footer.footer .footer__box--body {
    margin-top: 12px;
    padding-inline: 20px;
  }
  footer.footer .footer__box--body .box__body--item {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  footer.footer .footer__box--body .box__body--item .item__text {
    margin-top: 10px;
    min-width: 100px;
    font-size: 14px;
  }
  footer.footer .footer__box--body .box__body--item .item__value {
    margin-top: 10px;
    font-size: 14px;
  }
  footer.footer .footer__box--bottom {
    flex-wrap: wrap;
    gap: 10px;
  }
  footer.footer .footer__box--bottom a, footer.footer .footer__box--bottom-item {
    font-size: 14px;
  }
}
.home-title {
  margin-inline: 20px;
}
.home-title__text {
  transition: 0.3s all ease;
  color: #000000;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
.home-title__desc {
  transition: 0.3s all ease;
  margin-top: 10px;
  font-weight: 18px;
  font-weight: normal;
  text-align: center;
}

.home-about-us {
  margin-top: 40px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
.home-about-us .box {
  display: flex;
  width: 100%;
  background-color: rgba(196, 196, 196, 0.225);
  padding: 40px 0;
}
.home-about-us .box__left {
  transition: 0.3s all ease;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 40px;
  padding: 5px;
}
.home-about-us .box__right {
  transition: 0.3s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(60% - 2px);
  font-weight: 400;
  letter-spacing: 2px;
  padding: 40px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
}
.home-about-us .box__line {
  transition: 0.3s all ease;
  width: 2px;
  height: auto;
  background-color: #e2e2e2;
}

.home-story {
  width: 100%;
  margin-top: 80px;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 50px;
  margin-bottom: 85px;
}
.home-story .box {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(196, 196, 196, 0.225);
  border-radius: 0 30px 30px 0px;
}
.home-story .box__content, .home-story .box__left {
  width: 40%;
  padding: 20px 30px 30px;
  transition: 0.3s all ease;
  overflow: hidden;
}
.home-story .box__content--title, .home-story .box__left--title {
  font-weight: 600;
  font-size: 40px;
  line-height: 140%;
  padding-left: 40px;
}
.home-story .box__content--desc, .home-story .box__left--desc {
  margin-top: 40px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.home-story .box__content--btn, .home-story .box__left--btn {
  margin-top: 30px;
}
.home-story .box__content--btn button, .home-story .box__left--btn button {
  color: #ffffff;
  font-weight: 700;
  border-radius: 30px;
  background-color: #0d3292;
  padding: 5px 20px;
  text-decoration: none;
  font-size: 18px;
  outline: none;
  border: none;
  box-shadow: unset;
}
.home-story .box__left span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.home-story .box__content {
  width: 100%;
  height: 0px;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.home-story .box__content--title {
  padding-left: 0;
}
.home-story .box__right {
  width: 60%;
  transition: 0.3s all ease;
}
.home-story .box__right--image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
.home-story .box__right--image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-story .box.active {
  border-radius: 30px 30px 0px 0px;
}
.home-story .box.active .box__left {
  width: 0px;
  height: 0px;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
}
.home-story .box.active .box__right {
  width: 100%;
}
.home-story .box.active .box__content {
  width: 100%;
  padding: 48px;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease;
}

.home-our-team {
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
  margin-top: 95px;
  margin-bottom: 85px;
}
.home-our-team .box__title {
  line-height: 140%;
  font-weight: 600;
  color: black;
  font-size: 40px;
  text-align: center;
}
.home-our-team .box__list {
  margin-top: 80px;
  display: flex;
  gap: 10%;
  justify-content: center;
}
.home-our-team .box__list--item {
  transition: 0.3s all ease;
}
.home-our-team .box__list--item .item {
  transition: 0.3s all ease;
}
.home-our-team .box__list--item .item__img {
  border-radius: 50%;
  position: relative;
  width: 180px;
  padding-top: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.home-our-team .box__list--item .item__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-our-team .box__list--item .item__name {
  margin-top: 20px;
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  text-align: center;
}
.home-our-team .box__list--item .item__position {
  text-align: center;
  margin-top: 5px;
  line-height: 150%;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 768px) {
  .home-title__text {
    font-size: 38px;
    margin-top: 30px;
  }
  .home-title__desc {
    margin-top: 10px;
    font-weight: 16px;
  }
  .home-about-us .box {
    padding: 20px 0;
  }
  .home-about-us .box__left {
    font-size: 30px;
    padding: 5px 5px 5px 20px;
  }
  .home-about-us .box__right {
    padding: 20px;
    font-size: 16px;
  }
  .home-story {
    margin-top: 50px;
    padding: 0 20px;
    margin-bottom: 60px;
  }
  .home-story .box__left {
    padding: 20px;
  }
  .home-story .box__left--title {
    font-size: 30px;
    padding-left: 30px;
  }
  .home-story .box__left--desc {
    width: 100%;
    margin-top: 30px;
    font-size: 16px;
  }
  .home-story .box__left--desc span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .home-story .box__left--btn {
    margin-top: 20px;
  }
  .home-story .box__left--btn a {
    font-size: 16px;
    padding: 5px 10px;
  }
  .home-story .box__right {
    width: 60%;
  }
  .home-story .box__right--image {
    height: 300px;
  }
  .home-story .box__right--image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .home-our-team {
    margin-top: 55px;
    margin-bottom: 60px;
  }
  .home-our-team .box__title {
    font-size: 30px;
    line-height: 140%;
    padding-inline: 20px;
  }
  .home-our-team .box__list {
    padding-inline: 20px;
    margin-top: 30px;
  }
  .home-our-team .box__list--item {
    flex: 1;
  }
  .home-our-team .box__list--item .item {
    width: 100%;
  }
  .home-our-team .box__list--item .item__img {
    width: 100%;
  }
  .home-our-team .box__list--item .item__name {
    font-size: 20px;
  }
  .home-our-team .box__list--item .item__position {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .home-title {
    margin-inline: 20px;
  }
  .home-title__text {
    font-size: 28px;
    margin-top: 20px;
  }
  .home-title__desc {
    margin-top: 10px;
    font-weight: 14px;
  }
  .home-about-us {
    margin-top: 20px;
  }
  .home-about-us .box {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .home-about-us .box__left {
    width: 100%;
    font-size: 20px;
    padding: 5px 10px 5px 20px;
  }
  .home-about-us .box__line {
    display: none;
  }
  .home-about-us .box__right {
    width: 100%;
    flex: 1;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    line-height: 140%;
  }
  .home-story {
    margin-top: 20px;
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;
  }
  .home-story .box {
    flex-wrap: wrap;
    border-radius: 0;
    padding: 0px;
  }
  .home-story .box__content, .home-story .box__left {
    width: 100%;
    padding: 0 20px;
  }
  .home-story .box__content--title, .home-story .box__left--title {
    padding-top: 10px;
    font-size: 20px;
    padding-left: 0px;
    text-align: center;
  }
  .home-story .box__content--desc, .home-story .box__left--desc {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    line-height: 140%;
  }
  .home-story .box__content--btn, .home-story .box__left--btn {
    margin-top: 10px;
  }
  .home-story .box__content--btn button, .home-story .box__left--btn button {
    font-size: 14px;
    padding: 4px 8px;
  }
  .home-story .box__left {
    visibility: hidden;
    width: 0;
    height: 0;
    padding: 0;
  }
  .home-story .box__left span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .home-story .box__content {
    width: 100%;
    height: auto;
    padding: 0 20px 20px 20px;
    overflow: hidden;
  }
  .home-story .box__content--title {
    padding-left: 0;
  }
  .home-story .box__content--desc span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .home-story .box__right {
    width: 100%;
    padding: 20px;
  }
  .home-story .box__right--image {
    height: 200px;
  }
  .home-story .box__right--image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .home-story .box.active {
    border-radius: 0px;
  }
  .home-story .box.active .box__left {
    width: 0px;
    height: 0px;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
  }
  .home-story .box.active .box__right {
    width: 100%;
  }
  .home-story .box.active .box__content {
    width: 100%;
    padding: 0 20px 20px;
  }
  .home-story .box.active .box__content--title {
    padding-top: 10px;
  }
  .home-story .box.active .box__content--desc span {
    display: block;
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
  }
  .home-our-team {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .home-our-team .box__title {
    font-size: 20px;
    text-align: center;
  }
  .home-our-team .box__list {
    margin-top: 20px;
    display: flex;
    gap: 10%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-our-team .box__list--item {
    width: 100%;
  }
  .home-our-team .box__list--item .item__img {
    width: 100%;
  }
  .home-our-team .box__list--item .item__name {
    margin-top: 10px;
    font-size: 14px;
    color: #000000;
  }
  .home-our-team .box__list--item .item__position {
    font-size: 10px;
  }
}
.term-and-conditions,
.privacy-policy {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 86px;
  max-width: 1440px;
  margin-inline: auto;
}
.term-and-conditions .box__title,
.privacy-policy .box__title {
  text-align: center;
  padding-inline: 20px;
  line-height: 120%;
  font-weight: bold;
  font-size: 48px;
}
.term-and-conditions .box__content,
.privacy-policy .box__content {
  margin-top: 40px;
  padding: 44px 10%;
  background-color: rgba(196, 196, 196, 0.225);
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 160%;
}

@media only screen and (max-width: 768px) {
  .privacy-policy {
    margin-top: 30px;
    margin-bottom: 66px;
  }
  .privacy-policy .box__title {
    text-align: center;
    padding-inline: 20px;
    line-height: 120%;
    font-weight: bold;
    font-size: 38px;
  }
  .privacy-policy .box__content {
    margin-top: 30px;
    padding: 34px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .privacy-policy {
    margin-top: 20px;
    margin-bottom: 46px;
    transition: 0.3s all ease;
  }
  .privacy-policy .box__title {
    transition: 0.3s all ease;
    text-align: center;
    padding-inline: 20px;
    line-height: 120%;
    font-weight: bold;
    font-size: 28px;
  }
  .privacy-policy .box__content {
    transition: 0.3s all ease;
    margin-top: 20px;
    padding: 24px 20px;
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */