@charset "utf-8";

/* common
------------------------------------------------------------*/
/* p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
table:not(:last-child) {
  margin-bottom: 20px;
} */

a {
  text-decoration: none;
}

.kvDesktop {
  display: none;
}
.bold {
  font-weight: bold;
}

@media (min-width: 601px) {
  .kvDesktop {
    display: block;
  }

  .kvMobile {
    display: none;
  }
}

h2 {
  font-family: "Geologica", sans-serif;
  word-break: break-word;
}

h3 {
  word-break: break-word;
}

h4 {
  word-break: break-word;
}

p {
  word-break: break-word;
}

ul li {
  word-break: break-word;
}

.mb16 {
  margin-bottom: 16px;
}

ul.disc {
  padding-left: 24px;
}

ul.disc li {
  list-style-type: disc;
}

a:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
}

a {
  cursor: pointer;
}

a.whiteLink {
  color: #fff;
  text-decoration: underline;
}

/* Header & Kv START
------------------------------------------------------------------------------------------------------------------------*/
header {
  position: relative;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60%;
  background-color: #e8eafc;
  z-index: -100;
  /* clip-path: polygon(45% 0, 100% 0%, 100% 99%, 0% 100%); */
}

/* Navigation */
.header {
  background-color: white;
  width: 100%;
  height: 56px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.headerInner {
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.headerTitle {
  width: 100px;
}

.headerNav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease 0.4s;
}

.navUl {
  margin-top: 60px;
}

.navItems a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  padding: 16px 0;
}

.navItems:last-child a {
  margin-bottom: 0;
}

.nav-cta {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.nav-cta li {
  margin-right: 16px;
}

.nav-cta li:last-child {
  margin-right: 0;
}

.nav-cta .subBtn {
  background-color: #fff;
  border: solid 1px #1a2dd8;
  padding: 10px 32px;
  color: #1a2dd8;
  border-radius: 6px;
}

.nav-cta .mainBtn {
  background-color: #1a2dd8;
  padding: 10px 32px;
  color: #fff;
  border-radius: 6px;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  width: 40px;
  height: 100%;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.headerNav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -14px;
  transform: rotate(-45deg);
}

/* --------- KV --------- */

.kv {
  padding: 0 16px 40px 16px;
  margin: auto;
  margin-top: 100px;
}

.kvTitle {
  font-size: 3rem;
  font-family: "Geologica", sans-serif;
  font-weight: 800;
  color: #000;
  text-align: center;
}

.kvBtn {
  display: flex;
  justify-content: center;
  margin: 28px 0;
}

.kvBtn a {
  background-color: #1a2dd8;
  width: 90%;
  padding: 10px 32px;
  color: #fff;
  border-radius: 6px;
  display: block;
  text-align: center;
}

.kv .linkBtn {
  margin-bottom: 60px;
}

@media (min-width: 821px) {
  .kvDesktop {
    display: block;
  }

  .kvMobile {
    display: none;
  }

  .header {
    background-color: transparent;
    position: inherit;
  }

  .headerInner {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: auto;
    padding-top: 24px;
  }

  .headerTitle {
    width: 140px;
  }

  .headerNav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }

  .navUl {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-start;
  }

  .navItems a {
    margin-bottom: 0;
  }

  .hamburger {
    display: none;
  }

  header::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 66%;
    height: 100%;
    background-color: #e8eafc;
    z-index: -100;
    clip-path: polygon(40% 0, 100% 0%, 100% 99%, 0% 100%);
  }

  .kv {
    display: flex;
    align-items: center;
    margin-top: 32px;
    max-width: 1240px;
  }

  .kvTitle {
    text-align: left;
  }

  .headerTitle {
    margin-right: 16px;
  }

  .headerNav {
    width: auto;
  }

  .navUl {
    width: auto;
    margin-top: 0;
  }

  .navItems {
    margin-right: 32px;
  }

  .nav-cta {
    padding: 0;
  }

  .nav-cta li {
    margin-right: 10px;
  }

  .nav-cta .subBtn {
    padding: 6px 12px;
  }

  .nav-cta .mainBtn {
    padding: 6px 12px;
  }

  .navItems {
    display: block;
  }

  .kvLeft {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .kvRight {
    width: 60%;
  }

  .kvBtn {
    margin: 0;
    justify-content: left;
    margin-top: 32px;
  }

  .kvBtn a {
    width: 320px;
    padding: 16px 32px;
    font-size: 2rem;
  }

  .kvTitle {
    font-size: 3.2rem;
  }
}

@media (min-width: 1240px) {
  .kv {
    padding: 32px 0 32px 0;
  }

  .kvTitle {
    font-size: 4.8rem;
  }

  .headerInner {
    padding: 24px 0 0 0;
  }
}

/* Header & Kv END
------------------------------------------------------------------------------------------------------------------------*/

/* KeyMessage START
------------------------------------------------------------------------------------------------------------------------*/

#keyMessage {
  margin: 48px 0;
}

#keyMessage h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.keyInner {
  margin: auto;
  padding: 0 16px;
  align-items: center;
}

.keyUl li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}

.keyNum {
  width: 23%;
  margin-right: 2%;
}

.keyP {
  width: 75%;
  text-align: left;
}

.keyNum p {
  font-weight: 800;
  font-size: 4rem;
  color: #1a2dd8;
  text-align: center;
}

@media (min-width: 768px) {
  #keyMessage {
    margin: 80px 0;
  }

  .keyInner {
    margin: auto;
    max-width: 1240px;
    display: flex;
  }

  #keyMessage h2 {
    width: 30%;
    font-size: 2.6rem;
    margin-right: 5%;
    margin-bottom: 0;
  }

  .keyUl {
    width: 65%;
  }

  .keyUl {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .keyUl li {
    display: flex;
    flex-direction: column;
    width: 31%;
    margin-right: 3%;
  }

  .keyUl li:last-child {
    margin-right: 0;
  }

  .keyNum {
    width: 100%;
  }

  .keyP {
    width: 100%;
  }

  .keyNum p {
    font-size: 5rem;
  }
}

@media (min-width: 1240px) {
  .keyInner {
    padding: 0;
  }

  #keyMessage h2 {
    width: 34%;
    font-size: 2.7rem;
  }

  .keyP {
    text-align: center;
  }
}

/* KeyMessage END
------------------------------------------------------------------------------------------------------------------------*/

/* Features START
------------------------------------------------------------------------------------------------------------------------*/
#feature {
  padding: 56px 16px;
  background-image: url(../img/feature_bg.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}

.featureInner {
  margin: auto;
}

#feature h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}

#feature h2 span {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
}

.featureLeft p {
  color: #fff;
}

.featureLeft {
  margin-bottom: 16px;
}

.featureList li {
  background-color: #1a2dd8;
  display: flex;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  min-height: 140px;
}

.featureListImg {
  max-width: 48px;
  margin-right: 12px;
}

.featureListTxt {
  width: 100%;
}

.featureList h3 {
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 4px;
}

.featureList p {
  color: #fff;
}

.linkBtn {
  margin-top: 12px;

  text-align: center;
}

.linkBtnWhite a {
  color: #fff;
  position: relative;
  font-size: 1.8rem;
}

.linkBtnDark a {
  color: #1a2dd8;
  position: relative;
  font-size: 1.8rem;
}

.linkBtnWhite a:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  margin: auto;
}

.linkBtnDark a:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #1a2dd8;
  border-right: solid 2px #1a2dd8;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  margin: auto;
}

#feature .linkBtn {
  text-align: left;
}

@media (min-width: 768px) {
  #feature {
    padding: 80px 16px;
  }

  .featureInner {
    display: flex;
    margin: auto;
    max-width: 1240px;
  }

  .featureLeft {
    width: 30%;
    margin-right: 5%;
  }

  .featureRight {
    width: 65%;
  }

  .featureList {
    display: flex;
    flex-wrap: wrap;
  }

  .featureList li {
    width: 49%;
    margin-right: 2%;
    min-height: 300px;
    display: block;
    padding: 24px;
    margin-bottom: 16px;
  }

  .featureListImg {
    max-width: 72px;
    margin-bottom: 10px;
  }

  .featureListTxt h3 {
    font-size: 2.4rem;
    font-weight: 800;
  }

  .featureList li:nth-child(2n) {
    margin-right: 0;
  }

  #feature h2 {
    font-size: 2.6rem;
    text-align: left;
  }
}

@media (min-width: 1240px) {
  #feature {
    padding: 110px 0;
  }

  #feature h2 {
    font-size: 3.6rem;
  }

  .linkBtn {
    width: 320px;
  }
}

/* Features END
------------------------------------------------------------------------------------------------------------------------*/

/*  CBRA START
------------------------------------------------------------------------------------------------------------------------*/
/* #cbra {
  margin: 56px 0;
}

.cbraInner {
  margin: auto;
  padding: 0 16px;
  max-width: 1240px;
}

#cbra h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 32px;
}

#cbra h2 span {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 20px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  border-radius: 40px;
}

.cbraList {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cbraList li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 16px;
  background-color: #f3f4fd;
  border-radius: 50px;
  padding: 4px 16px;
  color: #1a2dd8;
  text-align: center;
  font-weight: 600;
}

.cbraList li:nth-child(2n) {
  margin-right: 0;
}

.linkBtn a {
  position: relative;
  font-size: 1.8rem;
  color: inherit;
}

.linkBtn a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  margin: auto;
}

.linkBtnWhite {
  color: #fff;
}

.linkBtnDark {
  color: #1a2dd8;
}
.crbaRight img {
  margin-right: -16px;
}

@media (min-width: 768px) {
  #cbra {
    margin: 80px 0;
  }

  .cbraInner {
    display: flex;
  }

  .crbaLeft {
    max-width: 600px;
    margin-right: 16px;
  }

  #cbra h2 {
    font-size: 2.6rem;
  }
}

@media (min-width: 1240px) {
  #cbra {
    margin: 110px 0;
  }

  .crbaLeft {
    margin-right: 56px;
  }

  .cbraInner {
    padding: 0;
  }

  #cbra h2 {
    font-size: 3.6rem;
  }

  .cbraList li {
    width: 22%;
    margin-right: 4%;
  }

  .cbraList li:nth-child(2n) {
    margin-right: 4%;
  }

  .cbraList li:nth-child(4) {
    margin-right: 0;
  }

  .crbaRight img {
    margin-right: 0;
  }

  #cbra h2 span {
    font-size: 2rem;
  }
} */

/*  CBRA END
------------------------------------------------------------------------------------------------------------------------*/

/*  What we offer START
------------------------------------------------------------------------------------------------------------------------*/
#offer {
  padding: 56px 16px;
  background-image: url(../img/offer_bg.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}

.offerInner {
  margin: auto;
  max-width: 1240px;
}

.offerTitle {
  margin-bottom: 16px;
  color: #fff;
}

.offerTitle h2 span {
  display: block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
}

.offerTitle h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 800;
}
.offerTitle:nth-of-type(2) {
  padding-top: 46px;
}
.offerList p {
  color: #fff;
}
.offerListTxt {
  width: 100%;
  text-align: center;
}
.offerListTxt h3 {
  font-weight: 600;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.offerList li {
  background-color: #1a2dd8;
  display: flex;
  flex-direction: column;
  padding: 24px;
  align-items: center;
  margin-bottom: 16px;
  min-height: 140px;
}

.whiteCard li {
  background-color: #ffffff;
}

.whiteCard p,
.whiteCard h3 {
  color: black;
}

.offerListImg {
  max-width: 60px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  #offer {
    padding: 80px 16px;
  }

  .offerTitle {
    margin-bottom: 40px;
  }

  .offerTitle h2 {
    font-size: 3rem;
  }

  .offerList {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  .offerList li {
    width: 32%;
    min-height: 300px;
    padding: 24px;
    margin-bottom: 16px;
  }
  .offerListImg {
    max-width: 72px;
  }

  .offerListTxt h3 {
    font-size: 2.4rem;
    font-weight: 800;
  }
}

@media (min-width: 1240px) {
  .offerInner {
    padding: 0;
  }

  #offer {
    padding: 110px 0;
  }

  .offerTitle h2 {
    font-size: 3.6rem;
  }

  .offerList li {
    min-height: 260px;
    align-items: flex-start;
  }

  .offerListTxt {
    text-align: left;
  }
}

/*  END
------------------------------------------------------------------------------------------------------------------------*/

/* Strengths START
------------------------------------------------------------------------------------------------------------------------*/
#strengths {
  padding: 56px 16px;
}

.strengthsInner {
  margin: auto;
  max-width: 1240px;
}

#strengths h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 40px;
}

#strengths h2 span {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #1a2dd8;
}

.strengthsImg {
  margin-bottom: 28px;
}

.strengthsList {
  margin-top: 28px;
}

.strengthsList li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 16px;
}

.strengthsList li::before {
  content: url("../img/checkmark.svg");
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  left: -4px;
}

.strengthsList li h3 {
  font-weight: 800;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .strengthsCont {
    display: flex;
    align-items: center;
  }

  #strengths h2 {
    font-size: 3rem;
  }

  .strengthsImg {
    width: 55%;
    margin-right: 5%;
  }

  .strengthsTxt {
    width: 40%;
  }

  #strengths {
    padding: 80px 16px;
  }
}

@media (min-width: 1240px) {
  #strengths h2 {
    font-size: 3.6rem;
  }

  #strengths {
    padding: 110px 16px;
  }
}

/*  Strengths END
------------------------------------------------------------------------------------------------------------------------*/

/*  FAQs START
------------------------------------------------------------------------------------------------------------------------*/
#faqs {
  padding: 56px 16px;
  background-color: #1a2dd8;
}

.faqsInner {
  margin: auto;
  max-width: 1240px;
}

#faqs h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

#faqs h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.faqsList {
  color: #fff;
}

.faqsList > li {
  margin-bottom: 40px;
  padding-top: 16px;
  border-top: solid 1px #fff;
}

.faqsList > li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #faqs {
    padding: 80px 16px;
  }

  .faqsInner {
    display: flex;
  }

  #faqs h2 {
    width: 30%;
    text-align: left;
    font-size: 3rem;
  }

  .faqsList {
    width: 70%;
  }

  #faqs h3 {
    font-size: 2.4rem;
  }
}

@media (min-width: 1240px) {
  #faqs h2 {
    font-size: 3.6rem;
  }

  #faqs {
    padding: 110px 16px;
  }
}

/*  FAQs END
------------------------------------------------------------------------------------------------------------------------*/

/*  Team START
------------------------------------------------------------------------------------------------------------------------*/
#team {
  padding: 56px 16px;
  background-color: #f3f3f6;
  text-align: center;
}

.teamInner {
  margin: auto;
  max-width: 1240px;
  padding: 2px;
  margin-top: 8px;
}
.teamListName {
  margin-top: 24px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.teamListInner img {
  width: 36px;
}
#team h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 40px;
}

#team h2 span {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #1a2dd8;
}

.teamList {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.teamList > li {
  background-color: white;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.teamList > li:nth-child(2) .linkedIn,
.teamList > li:nth-child(3) .linkedIn {
  display: none;
}

.teamPhoto img {
  width: 100%;
}

#team h3 {
  font-weight: 800;
  font-size: 2rem;
}

#team .kvBtn a {
  width: 100%;
}
#team .linkBtn {
  width: 100%;
}

@media (min-width: 768px) {
  #team {
    padding: 80px 16px;
  }
  .teamList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2%;
  }

  .teamList > li {
    width: 49%;

    margin-bottom: 64px;
  }

  #team h2 {
    font-size: 3rem;
  }
  #team h3 {
    font-weight: 800;
    font-size: 3.6rem;
  }

  #team .kvBtn {
    justify-content: center;
  }
  #team .kvBtn a {
    width: 50%;
  }
}

@media (min-width: 1240px) {
  #team h2 {
    font-size: 3.6rem;
  }
  .teamList > li {
    width: 32%;

    margin-bottom: 64px;
  }

  #team .kvBtn a {
    width: 320px;
  }
}

/*  END
------------------------------------------------------------------------------------------------------------------------*/

/*  Footer START
------------------------------------------------------------------------------------------------------------------------*/

footer {
  background-color: #000;
  color: #fff;
}

footer {
  padding: 56px 16px 8px 16px;
}

.footerInner {
  margin: auto;
  max-width: 1240px;
}

.footerTop {
  text-align: center;
  padding-bottom: 32px;
}

.footerMenu {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footerMenu > li {
  margin-right: 24px;
  line-height: 2;
}

.footerBottom {
  padding-top: 32px;
  border-top: solid #fff 1px;
}

.footerBottom > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.footerBottom > ul > li {
  margin-right: 24px;
  line-height: 2;
  text-decoration: underline;
}

.footerBottom {
  text-align: center;
}

footer a {
  color: #fff;
}

/*  END
------------------------------------------------------------------------------------------------------------------------*/
