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;
}

/* HTML5 display-role reset for older browsers */
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;
}

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

* {
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid black;
  padding: 25px 10px;
  background-color: #fff;
  z-index: 1000;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 26px;
}

.logo_text {
  font-size: 26px;
  font-weight: 500;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav_link {
  text-decoration: none;
  color: #333333;
  transition: 0.3s color;
}
.nav_link:hover {
  color: #9B177E;
}

@media screen and (max-width: 750px) {
  .header .wrapper {
    flex-direction: column;
  }
  .nav_list {
    margin-top: 20px;
    gap: 10px;
  }
  .nav_item {
    text-align: center;
  }
}
.hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  position: relative;
  height: calc(100vh - 77px);
  text-align: center;
  display: flex;
  align-items: center;
}
.hero .wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero_content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero_text {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #fff;
}

.hero_cta {
  font-size: 18px;
  line-height: 1.4;
  display: inline-block;
  background-color: #9B177E;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s;
}
.hero_cta:hover {
  opacity: 0.7;
}

@media screen and (max-width: 750px) {
  .hero {
    padding: 30px 15px;
    height: calc(100vh - 129px);
  }
  .hero_title {
    font-size: 36px;
  }
}
.about {
  text-align: center;
}

.about_signature {
  width: 150px;
  margin-top: 40px;
}

.guide {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.guide_box {
  width: 33.33%;
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.guide_img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.guide_title {
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.guide_title--mod {
  color: #9B177E;
}

.guide_text {
  line-height: 1.3;
}

@media screen and (max-width: 750px) {
  .guide_box {
    width: 100%;
    max-width: 340px;
  }
  .guide {
    flex-direction: column;
    align-items: center;
  }
}
.testimonial_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.testimonial_text {
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  font-style: italic !important;
  margin-bottom: 25px;
}

.testimonial_title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.warm {
  background-color: rgba(155, 23, 126, 0.7);
  text-align: center;
}

.warm_title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  color: #ffffff;
  margin-bottom: 20px;
}

.warm_text {
  font-size: 18px;
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto;
  color: #ffffff;
  margin-bottom: 35px;
}

.warm_cta {
  font-size: 18px;
  line-height: 1.4;
  display: inline-block;
  background-color: #ffffff;
  color: #9B177E;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s;
}
.warm_cta:hover {
  opacity: 0.7;
}

.footer {
  background-color: #333333;
  padding: 25px 10px;
}

.footer_list {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer_link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer_link:hover {
  opacity: 0.7;
}

.footer_copy {
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 750px) {
  .footer_list {
    flex-direction: column;
    gap: 10px;
  }
}
.privacy_policy {
  padding: 80px 0;
}

.privacy_big {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #9B177E;
  margin-bottom: 30px;
}

.privacy_text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.privacy_title {
  font-size: 27px;
  line-height: 1.4;
  font-weight: 600;
  margin: 30px 0 15px;
  color: rgba(155, 23, 126, 0.7);
}

.privacy_list {
  padding-left: 20px;
  list-style: disc;
}
.privacy_list li {
  line-height: 1.4;
  margin-bottom: 15px;
}

* {
  font-family: "Roboto", sans-serif !important;
  font-optical-sizing: auto !important;
  font-style: normal !important;
}

strong {
  font-weight: 700;
}

.wrapper {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.body {
  padding-top: 77px;
}

.s_global {
  padding: 50px 0;
}

.h_global {
  font-weight: 700;
  text-align: center;
  font-size: 36px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 13px;
}

.p_global {
  line-height: 1.4;
  text-align: center;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .body {
    padding-top: 129px;
  }
}/*# sourceMappingURL=index.css.map */