@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Duru+Sans&display=swap");
html {
  font-family: "Work Sans", sans-serif;
  /* -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; */
}
.main-body {
  background-color: #f5f5f5;
  margin: 0;
  margin-top: -24px;
  padding: 4%;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
button,
select {
  text-transform: none;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

body {
  margin: 0;
  min-height: 100vh;
  /* background-color: #e9eef2; */
  background-color: white;
  font-size: 14px;
  /* line-height: 20px; */
  color: #002736;
}
.button-outline-blue {
  /* min-height: 40px; */
  /* min-width: 120px; */
  padding: 13px 22px 10px;
  color: white;
  border-radius: 25px;
  background-color: #002736;
  /* -webkit-transition: color 200ms ease, background-color 200ms ease; */
  /* transition: color 200ms ease, background-color 200ms ease; */
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.button-outline-blue:hover {
  background-color: #fff;
  color: #002736;
  border-color: #002736;
  border-width: 1px;
  border-style: solid;
}
.hero-card-header {
  display: flex;
  justify-content: space-around;
  background-color: orangered;
}
.hero-card-head {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
  background-color: white;
}
.active {
  background-color: white;
  color: orangered;
}
.hero-card-body {
  height: 100%;
  padding: 20px 30px;
  background-color: rgba(245, 245, 245, 0.377);
}
@media screen and (min-width: 767px) {
  .hero-card-outer {
    margin-left: 0vw;
    width: 350px;
    height: 460px;
    background-color: rgba(255, 255, 255, 0.705);
    box-shadow: 0 70px 63px -60px orangered;
    border-radius: 15px;
    margin-top: 20px;
    margin-right: -15px;
  }
}
@media screen and (max-width: 767px) {
  .hero-card-outer {
    /* margin-left: -5vw; */
    width: 80vw;
    height: max-content;
    background-color: rgba(255, 255, 255, 0.705);
    box-shadow: 0 70px 63px -60px orangered;
    border-radius: 15px;
  }
  .button-outline-blue {
    padding-right: 22px;
    padding-left: 22px;
    font-size: 13px;
  }
  h1 {
    font-size: 26px !important;
  }
  h2 {
    font-size: 18px !important;
    font-weight: 500;
  }
  p {
    font-size: 12px !important;
    font-weight: 500;
  }
  .pc {
    display: none;
  }
}
.hero {
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.item-1 {
  display: flex;
  margin-bottom: 100px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 26px;
  font-weight: 500;
}
p {
  font-size: 18px;
  font-weight: 500;
}

.item-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  /* background-color: transparent; */
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: orangered;
  border-radius: 20px;
  border: 0px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: white;
}
