@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --CheckIcon: url(/Icons/checkIcon.svg);
  --main-dark: #0c2935;
  --color-red: rgb(222, 32, 32);
}

html,
body {
  padding: 0;
  margin: 0;
}

html {
  height: 100%;
}

body {
  --header-height: 60px;
  --type-screen: desktop;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: start;
  min-height: 100vh;
}

main {
  /* padding-top: var(--header-height); */
}

* {
  /* font-family: Open Sans; */
  box-sizing: border-box;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  border: 0 none;
  text-decoration: none;
  outline: 0;
  padding: 0;
  margin: 0;
}

.headline-font {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 140%;

  text-transform: capitalize;
}

.headline-font-two {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 140%;

  text-transform: capitalize;
}

.headline-font-three {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
}

.headline-font-four {
  font-family: "Lexend";
  font-style: normal;
  font-size: 20px;
  line-height: 140%;
}

.button-font {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 130%;
}

.small-text {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
}

.body-text-font {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.label-font {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.button-font.bg-grey-yellow {
  background: #eacf68;
}

.image-frame {
  box-shadow: -30px -30px 0px -1px #ffffff, -30px -30px 0px 0px #d7def9;
  margin: 30px 0px 0px 30px;
}

.align-center {
  text-align: center;
}

.blue {
  color: #0876e0;
}

.white {
  color: #ffffff;
}

.black {
  color: #000000;
}

.body-text-font.regular.grey,
.grey {
  color: #6a7478;
}

.dark-blue {
  color: #0c2935;
}

.yellow-grey {
  color: #f2c94c;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.section-content {
  max-width: 1300px;
  margin: 0px auto;
}

.headline-line {
  padding-bottom: 6px;
  background: linear-gradient(90deg, #f1bf3c, #f1bf3c) no-repeat center bottom /
    100px 2px;
}

.headline-line.left {
  background-position: left bottom;
}

@media screen and (max-width: 1024px) {
  body {
    --header-height: 80px;
    --type-screen: mobile;
  }

  .headline-font {
    font-size: 32px;
    line-height: 130%;
  }

  .headline-font-two {
    font-size: 24px;
    line-height: 130%;
  }

  .headline-font-three {
    font-size: 20px;
    line-height: 130%;
  }

  .headline-font-four {
    font-size: 18px;
    line-height: 140%;
  }

  .body-text-font {
    font-size: 16px;
    line-height: 150%;
  }

  .image-frame {
    box-shadow: unset;
    margin: unset;
  }
}
