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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-Liver: #672422;
  --color-raisin-black: #232020;
  --color-satin-sheen-gold: #C3A63C;
  --color-root-beer: #200000;
  --color-silver-foil: #B0B0B0;
}

html {
  font-size: 10px;
}

body {
  background-color: #f8f8f8;
  font-family: "Yu Mincho", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.2;
}

a {
  transition: all 0.4s ease;
}
a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.container {
  display: block;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 1012px;
  }
  .container-md {
    max-width: calc(50% + 505px);
    margin-inline: auto 0;
    padding: 0 15px;
  }
}

.section__heading {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  padding-inline: 30px;
  margin-bottom: 70px;
  padding-bottom: 21px;
}
@media only screen and (max-width: 767px) {
  .section__heading {
    padding-inline: 0;
    margin-bottom: 29px;
    padding-bottom: 5px;
  }
}
.section__heading:after {
  position: absolute;
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, rgb(171, 155, 122) 50%, rgb(255, 255, 255) 100%);
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .section__heading:after {
    height: 3px;
  }
}
.section__heading-main {
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 30px;
  line-height: 33px;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .section__heading-main {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 7px;
  }
}
.section__heading-main span {
  color: #2376ab;
}
.section__heading-sub {
  color: #8e764a;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .section__heading-sub {
    font-size: 18px;
    line-height: 1;
  }
}
.section__heading-sub span {
  font-size: 80px;
}
@media only screen and (max-width: 767px) {
  .section__heading-sub span {
    font-size: 40px;
  }
}
.section__heading.no-border:after {
  display: none;
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 992px) {
  .d-lg-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 992px) {
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}
@media only screen and (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}

.header {
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 7px 0;
  }
  .header img {
    max-width: 136px;
  }
}

.contactform {
  margin-bottom: 130px;
}
@media only screen and (max-width: 767px) {
  .contactform {
    margin-bottom: 0;
  }
}
.contactform__formbox {
  background: #FFF;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.contactform__form {
  width: 640px;
  max-width: 100%;
  padding: 75px 0 65px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .contactform__form {
    padding: 20px 25px 35px 19px;
  }
}
.contactform__title {
  text-align: center;
  font-size: 20px;
  color: #fff;
  background-color: #2475ab;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .contactform__title {
    font-size: 12px;
    padding: 10px;
  }
}
.contactform__group {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contactform__group {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 14px;
  }
}
.contactform__group:last-child {
  margin-bottom: 0;
}
.contactform__labelbox {
  max-width: 175px;
  flex: 0 0 175px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .contactform__labelbox {
    max-width: 100%;
    flex: 0 0 100%;
    font-size: 11px;
    margin-bottom: 1px;
  }
}
.contactform__label {
  display: block;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .contactform__label {
    margin-bottom: 3px;
  }
}
.contactform__inputbox {
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .contactform__inputbox {
    width: 100%;
  }
}
.contactform__inputbox input {
  font-family: "Yu Mincho", sans-serif;
  border: 1px #323232 solid;
  border-radius: 7px;
  font-size: 14px;
  width: 100%;
  padding: 6px;
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .contactform__inputbox input {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 5px;
  }
}
.contactform__inputbox input::-moz-placeholder {
  color: #989898;
}
.contactform__inputbox input::placeholder {
  color: #989898;
}
.contactform .-required {
  color: #fff;
  background-color: #e51c1d;
  display: inline-block;
  font-size: 14px;
  padding: 2px 10px;
}
@media only screen and (max-width: 767px) {
  .contactform .-required {
    font-size: 8px;
    padding: 3px 7px;
  }
}
.contactform .-error {
  color: #e51c1d;
  font-size: 14px;
  margin-bottom: 6px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
}
@media only screen and (max-width: 767px) {
  .contactform .-error {
    font-size: 8.5px;
  }
}
.contactform__submit {
  text-align: center;
  margin-top: 75px;
}
@media only screen and (max-width: 767px) {
  .contactform__submit {
    margin-top: 26px;
  }
}
.contactform__note {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px !important;
}
@media only screen and (max-width: 767px) {
  .contactform__note {
    font-size: 9px !important;
    margin-top: 10px;
  }
}
.contactform__note:last-child {
  margin-bottom: 0;
}

.btn-submit {
  font-size: 20px;
  font-family: "Yu Mincho", sans-serif;
  display: inline-block;
  background-color: #2476ac;
  color: #fff;
  padding: 24px 75px;
  border-radius: 10px;
  border: none;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 767px) {
  .btn-submit {
    font-size: 10px;
    padding: 11.5px 37.5px;
    border-radius: 5px;
  }
}
.btn-submit:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .btn-submit:hover {
    opacity: 1;
  }
}

.mv {
  background: url(../img/mv/mv-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 38px 20px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .mv {
    background-position: 9% 50%;
    position: relative;
    padding-block: 20px 17px;
  }
}
.mv__content {
  display: flex;
  gap: 125px;
}
@media only screen and (max-width: 1199px) {
  .mv__content {
    gap: 20px;
  }
}
.mv__block {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .mv__block {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.mv__title {
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  line-height: 2.4;
  padding-inline: 26px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .mv__title {
    font-size: 24px;
    padding-inline: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__title {
    font-size: 15px;
    line-height: 36px;
    padding-inline: 13px;
  }
}
.mv__subtitle {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.1764705882;
  margin-block: 30px 40px;
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .mv__subtitle {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .mv__subtitle {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__subtitle {
    font-size: 17px;
    line-height: 26px;
    padding-left: 12px;
    margin-block: 34px 24px;
  }
}
.mv__catch {
  color: #333;
  width: -moz-fit-content;
  width: fit-content;
  background: url(../img/mv/catch-bg.png) no-repeat center;
  background-size: cover;
  font-size: 28px;
  line-height: 2.1071428571;
  padding-inline: 30px 43px;
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .mv__catch {
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .mv__catch {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__catch {
    font-size: 14px;
    line-height: 28px;
    padding-inline: 18px;
    position: relative;
    z-index: 2;
  }
}
.mv__catch span {
  font-size: 24px;
}
@media only screen and (max-width: 1199px) {
  .mv__catch span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .mv__catch span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__catch span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__logo {
    position: absolute;
    top: 66%;
    right: -38px;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 991px) {
  .mv__logo img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__logo img {
    max-width: 91px;
  }
}
.mv__image {
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .mv__image-wrapper {
    position: absolute;
    right: 12px;
    top: 25px;
  }
}
.mv__main-image {
  position: absolute;
  top: 25%;
}
@media only screen and (max-width: 767px) {
  .mv__main-image {
    top: 100%;
    margin-top: 28px;
    right: -6px;
    max-width: 146px;
  }
}
.mv__tel {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .mv__tel {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .mv__tel {
    align-items: baseline;
    font-size: 14px;
    gap: 7.5px;
  }
  .mv__tel img {
    width: 18.5px;
    height: 15px;
  }
}

.cta {
  position: relative;
  background: #1b2b53;
  color: #fff;
  text-align: center;
  padding-block: 16px 17px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .cta {
    padding-block: 12px 10px;
  }
}
.cta__title {
  font-size: 28px;
  line-height: 1.3571428571;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .cta__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .cta__title {
    font-size: 10px;
    line-height: 18px;
    margin-bottom: 7px;
  }
}
.cta__btn {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-inline: auto;
  max-width: 613px;
  border-radius: 10px;
  padding: 20px 20px 41px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.64);
  background: linear-gradient(360deg, #db6414 50%, #e7762a 0%);
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cta__btn {
    font-size: 22px;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media only screen and (max-width: 767px) {
  .cta__btn {
    font-size: 16px;
    line-height: 20px;
    padding: 9px 25px 20px;
  }
}
.cta__btn::after {
  content: "";
  position: absolute;
  border-top: 16px solid #fff;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  width: 0;
  height: 0;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .cta__btn::after {
    border-top: 8px solid #fff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    bottom: 7px;
  }
}

.purchase {
  padding-top: 91px;
}
@media only screen and (max-width: 767px) {
  .purchase {
    padding-top: 35px;
  }
  .purchase .section__heading {
    margin-bottom: 40px;
  }
}
.purchase .section__heading-main {
  margin-bottom: 5px;
}
.purchase__col {
  position: relative;
}
.purchase__col::after {
  content: "";
  position: absolute;
  width: calc(100% - 90px);
  height: 214px;
  background-color: #eaeaea;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 5px 5px 0;
}
@media only screen and (max-width: 991px) {
  .purchase__col::after {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 767px) {
  .purchase__col::after {
    height: 145px;
    width: calc(100% - 10px);
  }
}
.purchase__col.--rev::after {
  left: auto;
  right: 0;
  border-radius: 5px 0 0 5px;
}
.purchase__col.--rev .purchase__card {
  margin-inline: 0 auto;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 991px) {
  .purchase__col.--rev .purchase__card-desc {
    padding-inline: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .purchase__col.--rev .purchase__card-desc {
    padding-inline: 15px 0;
  }
  .purchase__col.--rev .purchase__card-title {
    text-align: start;
  }
}
.purchase__col:last-child .purchase__card {
  margin-bottom: 0;
}
.purchase__card {
  display: flex;
  gap: 59px;
  width: calc(50% + 390px);
  margin-inline: auto 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
  .purchase__card {
    max-width: 1000px;
    padding-inline: 15px;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .purchase__card {
    gap: 20px;
    padding-inline: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .purchase__card {
    margin-bottom: 30px;
  }
}
.purchase__card-icon {
  margin-top: -10px;
}
@media only screen and (max-width: 767px) {
  .purchase__card-icon {
    max-width: 132px;
    margin-top: -5px;
  }
}
.purchase__card-title {
  color: #8e764a;
  font-weight: 500;
  font-size: 26px;
  line-height: 33px;
  letter-spacing: -0.02em;
  margin-bottom: 13px;
}
@media only screen and (max-width: 767px) {
  .purchase__card-title {
    text-align: end;
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 6px;
  }
}
.purchase__card-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.04em;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .purchase__card-desc {
    padding-inline: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .purchase__card-desc {
    font-size: 12px;
    line-height: 18px;
    min-height: 145px;
    padding-inline: 0 5px;
  }
  .purchase__card-desc p {
    display: flex;
    gap: 5px;
  }
}
.purchase__card-desc span {
  color: #2376ab;
  font-style: italic;
}

.concerns {
  padding-top: 123px;
}
@media only screen and (max-width: 767px) {
  .concerns {
    padding-top: 52px;
  }
}
.concerns .section__heading {
  margin-bottom: 37px;
}
@media only screen and (max-width: 767px) {
  .concerns .section__heading {
    margin-bottom: 18px;
  }
}
.concerns__block-text {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1818181818;
  text-align: center;
  margin-bottom: 133px;
}
@media only screen and (max-width: 767px) {
  .concerns__block-text {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 45px;
  }
}
.concerns__row {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 34px;
       column-gap: 34px;
}
@media only screen and (max-width: 767px) {
  .concerns__row {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.concerns__col {
  background: #FFF;
  width: calc(33.3333333333% - 22.6666666667px);
}
@media only screen and (max-width: 767px) {
  .concerns__col {
    width: calc(33.3333333333% - 8px);
  }
}
.concerns__card {
  border: 1px solid #91bbd4;
  padding: 0px 35px 16px;
  box-shadow: 0 0 6px #91bbd4;
  height: 100%;
  background-color: var(--color-white);
}
@media only screen and (max-width: 991px) {
  .concerns__card {
    padding: 0 20px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .concerns__card {
    padding: 0 9px 5px;
    box-shadow: 0 0 2px #91bbd4;
  }
}
.concerns__card-title {
  font-weight: 500;
  color: #2376ab;
  text-align: center;
  letter-spacing: -0.04em;
  font-size: 24px;
  line-height: 50px;
  border-bottom: 2px solid rgb(51, 51, 51);
  margin-block: 118px 18px;
  padding-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .concerns__card-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .concerns__card-title {
    font-size: 12px;
    line-height: 17px;
    margin-block: 48px 8px;
    padding-bottom: 3px;
  }
}
.concerns__card-content {
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
}
@media only screen and (max-width: 991px) {
  .concerns__card-content {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .concerns__card-content {
    font-size: 9px;
    line-height: 15px;
  }
}
.concerns__card-icon {
  width: 160px;
  height: auto;
  margin-top: -60px;
  margin-inline: auto;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .concerns__card-icon {
    width: 52px;
    margin-top: -33px;
  }
}
.concerns__card-icon::before {
  content: "";
  position: absolute;
  background-color: var(--color-white);
  inset: 0;
  box-shadow: 0 0 6px #91bbd4;
  width: 160px;
  height: 145px;
  border-radius: 50%;
  display: block;
  border: 1px solid #91bbd4;
  clip-path: inset(0 0 58% 0);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .concerns__card-icon::before {
    width: 52px;
    height: 55px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.concerns__card-icon img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 31px;
}
@media only screen and (max-width: 767px) {
  .concerns__card-icon img {
    width: 22px;
    aspect-ratio: 22/15;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: 20px;
  }
}

.voices {
  padding-block: 104px 90px;
}
@media only screen and (max-width: 767px) {
  .voices {
    padding-block: 51px 72px;
  }
}
.voices__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 70px;
}
@media only screen and (max-width: 991px) {
  .voices__wrapper {
    gap: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .voices__wrapper {
    gap: 25px;
  }
}
.voices__card {
  background: #FFF;
  border-radius: 17px;
  width: calc(50% - 35px);
  box-shadow: 0px 5px 19.53px 1.47px rgba(164, 164, 164, 0.8);
}
@media only screen and (max-width: 991px) {
  .voices__card {
    width: calc(50% - 25px);
  }
}
@media only screen and (max-width: 767px) {
  .voices__card {
    width: calc(50% - 12.5px);
    border-radius: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .voices__card {
    width: 100%;
  }
}
.voices__card-image {
  border-radius: 17px 17px 0 0;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .voices__card-image {
    border-radius: 10px 10px 0 0;
  }
}
.voices__info {
  padding: 30px 47px 40px;
}
@media only screen and (max-width: 991px) {
  .voices__info {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .voices__info {
    padding: 22px 34px 47px;
  }
}
.voices__heading {
  text-align: center;
  position: relative;
  margin-bottom: 7px;
}
@media only screen and (max-width: 767px) {
  .voices__heading {
    margin-bottom: 12px;
  }
}
.voices__heading-main {
  border: 1px solid #2476ac;
  background: #f8f8f8;
  color: #2476ac;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0.04em;
  padding-inline: 17px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 991px) {
  .voices__heading-main {
    padding-inline: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .voices__heading-main {
    font-size: 12px;
    line-height: 23px;
    padding-inline: 13px;
    margin-bottom: 13px;
  }
}
.voices__heading-sub {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .voices__heading-sub {
    font-size: 17px;
    line-height: 23px;
  }
}
.voices__heading-sub span {
  display: block;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .voices__heading-sub span {
    font-size: 13px;
  }
}
.voices__heading-number {
  color: #8e764a;
  position: absolute;
  top: 6px;
  left: -25px;
  font-family: "adventures-unlimited", sans-serif;
  font-size: 45px;
  line-height: 27.88px;
  letter-spacing: 0.02em;
  transform: rotate(-10deg);
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .voices__heading-number {
    left: -16px;
  }
}
@media only screen and (max-width: 767px) {
  .voices__heading-number {
    font-size: 24px;
    line-height: 20px;
    left: -28px;
  }
}
@media only screen and (max-width: 575px) {
  .voices__heading-number {
    font-size: 35px;
    line-height: 20px;
    left: -15px;
  }
}
.voices__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 22.14px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .voices__desc {
    font-size: 10px;
    line-height: 15px;
  }
}

.partners {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .partners {
    margin-bottom: 61px;
  }
}
.partners .section__heading {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .partners .section__heading {
    margin-bottom: 36px;
  }
}
.partners__box {
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  padding: 60px;
  box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.2);
  border-radius: 19px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .partners__box {
    padding: 24px 33px 20px;
    gap: 14px 10px;
    border-radius: 10px;
  }
}
.partners_item {
  flex: 1 1 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .partners_item {
    flex: 1 1 40%;
  }
  .partners_item:last-child img {
    aspect-ratio: 98/43;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.partners_item img {
  max-width: 100%;
  height: auto;
}
.partners__captiontext {
  font-size: 16px;
  text-align: center;
  margin-top: 23px;
}
@media only screen and (max-width: 767px) {
  .partners__captiontext {
    font-size: 10px;
    margin-top: 12px;
  }
}

.tool {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .tool {
    margin-block: 43px 60px;
  }
}
.tool .section__heading {
  margin-bottom: 30px;
}
.tool__desc {
  font-size: 24px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .tool__desc {
    font-size: 12px;
    margin-bottom: 24px;
    line-height: 25px;
  }
}
.tool__box {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px 40px;
  box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.2);
  border-radius: 19px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .tool__box {
    padding: 26px 24px 26px;
  }
}
.tool__text {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .tool__text {
    font-size: 12px;
    line-height: 21px;
    text-align: center;
  }
}
.tool__text.-lg {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .tool__text.-lg {
    font-size: 15px;
  }
}
.tool__text.-blue {
  color: #2475ab;
}
.tool__btn {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .tool__btn {
    margin-top: 10px;
    width: 100%;
  }
}
.tool__btn .btn-submit {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .tool__btn .btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 13.4px 25px;
    width: 100%;
    margin-inline: auto;
    max-width: 279px;
  }
}

.section__heading-main sub {
  font-size: 22px;
}/*# sourceMappingURL=app.css.map */