html {
  scroll-behavior: smooth;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: rgb(55, 65, 81);
}
body.is-open {
  overflow: hidden;
}

section {
  scroll-margin-top: 80px;
}

.inner {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width:640px) {
  .inner {
    max-width: 640px;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 768px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .inner {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1280px;
  }
}
@media screen and (min-width: 1536px) {
  .inner {
    max-width: 1536px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
  -webkit-transition: background-color 0.3s ease, height 0.3s ease;
  transition: background-color 0.3s ease, height 0.3s ease;
}
.header.is-open {
  background-color: rgb(255, 255, 255);
}
.header.is-open .header__logo img {
  -webkit-filter: none;
          filter: none;
}
.header.is-open .header-list {
  display: none;
}
.header.is-open .hamburger span {
  background: rgb(31, 41, 55);
}
.header.is-scrolled {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.header.is-scrolled .header__inner {
  height: 64px;
}
.header.is-scrolled .header__logo img {
  -webkit-filter: none;
          filter: none;
}
.header.is-scrolled .header__nav a {
  color: rgb(31, 41, 55);
}
@media screen and (min-width: 768px) {
  .header.is-scrolled .header__nav a:hover {
    color: rgb(253, 186, 116);
  }
}
.header.is-scrolled .hamburger span {
  background-color: rgb(31, 41, 55);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1280px) {
  .header__inner {
    max-width: 1280px;
  }
}
@media screen and (min-width: 1536px) {
  .header__inner {
    max-width: 1536px;
  }
}

.header__logo {
  display: inline-block;
  max-width: 100%;
  width: 195px;
  height: auto;
}
.header__logo img {
  display: block;
  width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__nav a {
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header__nav a:hover {
    color: rgb(253, 186, 116);
  }
}

.header-instagram {
  line-height: 0;
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.hamburger {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgb(255, 255, 255);
  left: 0;
}
.hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 11px;
}

.drawer__nav {
  position: fixed;
  top: 64px;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  z-index: 150;
  padding: 80px 20px;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.drawer__nav.is-open {
  right: 0;
}
.drawer__nav a {
  text-decoration: none;
  font-weight: 500;
  color: rgb(31, 41, 55);
}

.drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  color: rgb(31, 41, 55);
}

.drawer-instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv {
  position: relative;
  background: url(../img/pexels-photo-3408354.jpeg) no-repeat center center/cover;
  height: 100vh;
  width: 100%;
}
.fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(30, 58, 138, 0.8)), to(rgba(234, 88, 12, 0.7)));
  background: linear-gradient(to right, rgba(30, 58, 138, 0.8), rgba(234, 88, 12, 0.7));
  z-index: 10;
}
.fv::before {
  content: "";
  position: absolute;
  height: 6rem;
  width: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
  background: linear-gradient(to top, #fff, transparent);
  z-index: 20;
}

.fv__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.fv__content {
  position: relative;
  z-index: 20;
  max-width: 56rem;
  width: 100%;
}

.fv__title {
  font-size: 3rem;
  color: rgb(255, 255, 255);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 3.75rem;
  }
}
.fv__title div {
  font-weight: 700;
}
.fv__title div:nth-child(2), .fv__title div:nth-child(3) {
  margin-top: 1rem;
}

.color-orange {
  color: rgb(249, 115, 22);
  font-weight: 700;
}

.fv__text {
  line-height: 1.75rem;
  font-size: 1.25rem;
  color: rgb(255, 255, 255);
  margin-top: 1.5rem;
}
.fv__text p:nth-child(2) {
  margin-top: 0.5rem;
}

.fv__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
@media screen and (min-width:640px) {
  .fv__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.fv__button {
  color: rgb(30, 58, 138);
  background: rgb(255, 255, 255);
  font-weight: 500;
  border-radius: 0.375rem;
  padding: 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .fv__button:hover {
    background-color: rgb(243, 244, 246);
  }
}
@media screen and (min-width:640px) {
  .fv__button {
    padding: 16px 32px;
  }
}

.button-orange {
  color: rgb(255, 255, 255);
  background-color: rgb(249, 115, 22);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .button-orange:hover {
    background-color: rgb(234, 88, 12);
  }
}

.service {
  padding-block: 5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title__read {
  position: relative;
  text-align: center;
  color: rgb(30, 58, 138);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}
.section-title__read::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 0.25rem;
  width: 6rem;
  background-color: rgb(249, 115, 22);
}
@media screen and (min-width: 768px) {
  .section-title__read {
    font-size: 2.25rem;
  }
}

.section-title__desc {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.service__recommend {
  margin-bottom: 6rem;
}

.service__recommend-title {
  color: rgb(30, 58, 138);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service__recommend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .service__recommend-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.service__recommend-item {
  padding-left: 1.5rem;
  position: relative;
}
.service__recommend-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgb(249, 115, 22);
  width: 1rem;
  height: 1rem;
  border-radius: 0.125rem;
}

.service__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.service-card {
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .service-card {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .service-card {
    width: calc((100% - 4rem) / 3);
  }
}

.service-card__head {
  position: relative;
  overflow: hidden;
  height: 12rem;
}

.service-card__img {
  width: 100%;
  height: 100%;
  display: block;
}
.service-card__img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-card__tag {
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(255, 255, 255);
  background: rgb(249, 115, 22);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  color: rgb(30, 58, 138);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.service-card__text {
  line-height: 1.625;
}

.service__button {
  display: block;
  background-color: rgb(249, 115, 22);
  font-weight: 700;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: rgb(255, 255, 255);
  border-radius: 0.5rem;
  margin-top: 3rem;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .service__button:hover {
    background-color: rgb(234, 88, 12);
  }
}

.advantage {
  background: -webkit-gradient(linear, left top, right bottom, from(#1e3a8a), to(#1e40af));
  background: linear-gradient(to bottom right, #1e3a8a, #1e40af);
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: rgb(255, 255, 255);
}
.advantage .section-title__read {
  color: rgb(255, 255, 255);
}
.advantage .section-title__desc {
  font-size: 1.25rem;
}

.advantage__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.advantage-card {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  width: 100%;
  border-radius: 0.5rem;
  padding: 1.5rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.advantage-card svg {
  color: rgb(249, 115, 22);
}
@media screen and (min-width: 768px) {
  .advantage-card {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .advantage-card {
    width: calc((100% - 6rem) / 4);
  }
}
@media screen and (min-width: 768px) {
  .advantage-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.advantage-card__icon {
  margin-bottom: 1rem;
}

.advantage-card__title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.advantage-card__text {
  color: rgba(255, 255, 255, 0.8);
}

.company {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: rgb(243, 244, 246);
}
.company .section-title__desc {
  font-size: 1.25rem;
}

.company__inner {
  margin-bottom: 4rem;
}

.company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .company__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.company__content {
  background: rgb(249, 250, 251);
  padding: 2rem;
  border-radius: 0.5rem;
  padding: 2rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .company__content {
    padding: 4rem;
  }
}

.company-overview__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  color: rgb(30, 58, 138);
  margin-bottom: 1.5rem;
}

.company-overview__table {
  width: 100%;
}
.company-overview__table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.company-overview__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgb(229, 231, 235);
}
.company-overview__table tr th {
  width: 33.333333%;
  text-align: left;
  color: rgb(55, 65, 81);
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company-business__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.company-business__item {
  position: relative;
  padding-left: 1.25rem;
}
.company-business__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgb(249, 115, 22);
}

.company-business__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  color: rgb(30, 58, 138);
  margin-bottom: 1.5rem;
}

.company__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.company__boxes--bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .company__boxes--bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.company-box {
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .company-box {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .company-box {
    padding: 10rem;
    max-height: 400px;
  }
}
.company-box--orange, .company-box--blue {
  position: relative;
}
.company-box--orange .company-box__title, .company-box--blue .company-box__title {
  color: rgb(255, 255, 255);
}
@media screen and (min-width: 1024px) {
  .company-box--orange .company-box__title, .company-box--blue .company-box__title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.company-box--orange .company-box__desc, .company-box--blue .company-box__desc {
  color: rgb(255, 255, 255);
  margin-bottom: 1.5rem;
}
.company-box--orange {
  background-color: rgb(249, 115, 22);
}
.company-box--blue {
  background: rgb(30, 58, 138);
}

.company-box__img--blue,
.company-box__img--orange {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 100;
  mix-blend-mode: overlay;
}

.company-box__overlay--orange {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(234, 88, 12, 0.8)), to(rgba(251, 146, 60, 0.8)));
  background: linear-gradient(to bottom right, rgba(234, 88, 12, 0.8), rgba(251, 146, 60, 0.8));
}

.company-box__overlay--blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(30, 58, 138, 0.8)), to(rgba(29, 78, 216, 0.8)));
  background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.8), rgba(29, 78, 216, 0.8));
}

.company-box__title {
  z-index: 550;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  color: rgb(30, 58, 138);
}

.company-box__desc {
  z-index: 550;
}

.company-box__link {
  color: rgb(249, 115, 22);
  font-weight: 600;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.company-box__link svg {
  color: rgb(249, 115, 22);
}

.company-box__items {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.company-box__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.company-box__item h4 {
  font-weight: 600;
  color: rgb(17, 24, 39);
}
.company-box__item p {
  color: rgb(75, 85, 99);
}

.company-box__item-left {
  background: rgb(255, 237, 213);
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company-box__item-left svg {
  color: rgb(249, 115, 22);
  width: 1.5rem;
  height: 1.5rem;
}

.faq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: rgb(249, 250, 251);
}
.faq .section-title__desc {
  font-size: 1.25rem;
}

.faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 56rem;
  margin-right: auto;
  margin-left: auto;
}

.faq-box {
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .faq-box:hover {
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  }
}

.faq-box__head {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: left;
  position: relative;
}
.faq-box__head svg {
  color: rgb(107, 114, 128);
  width: 1.25em;
  height: 1.25em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-box__head.is-open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-box__head-text {
  color: rgb(17, 24, 39);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.faq-box__body {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  display: none;
}
.faq-box__body.is-open {
  display: block;
}

.contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: rgb(243, 244, 246);
}

.contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  max-width: 72rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .contact__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact__left {
  background-color: rgb(255, 255, 255);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__left {
    padding: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .contact__left {
    width: calc((100% - 3rem) / 2);
  }
}

.contact-form__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  color: rgb(30, 58, 138);
  margin-bottom: 1.5rem;
}

.contact-form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.contact-form__label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(55, 65, 81);
}

.contact-form__text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-width: 1px;
  border: 1px solid rgb(209, 213, 219);
  border-radius: 0.375rem;
}

.contact-form__textarea {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-width: 1px;
  border-color: rgb(209, 213, 219);
  border-radius: 0.375rem;
  resize: vertical;
}

.contact-form__button {
  color: rgb(255, 255, 255);
  background-color: rgb(30, 58, 138);
  font-weight: 500;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
  border-radius: 0.375rem;
  margin-top: 1.5rem;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact-form__button:hover {
    background-color: rgb(30, 64, 175);
  }
}

.contact__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .contact__right {
    width: calc((100% - 3rem) / 2);
  }
}

.contact__right-top {
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__right-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact-tel {
  background-color: rgb(30, 58, 138);
  border-radius: 0.5rem;
  padding: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-tel {
    padding: 2rem;
    width: calc((100% - 1.5rem) / 2);
  }
}

.contact-tel__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.contact-tel__desc {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-tel__number {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}

.contact-tel__link {
  color: rgb(253, 186, 116);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact-tel__link:hover {
    color: rgb(254, 215, 170);
  }
}

.contact-email {
  background-color: rgb(249, 115, 22);
  border-radius: 0.5rem;
  padding: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-email {
    padding: 2rem;
    width: calc((100% - 1.5rem) / 2);
  }
}

.contact-email__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.contact-email__desc {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-email__address {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-email__link {
  color: rgb(30, 58, 138);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact-email__link:hover {
    color: rgb(30, 64, 175);
  }
}

.contact-address {
  background-color: rgb(255, 255, 255);
  border-radius: 0.5rem;
  padding: 1.5rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .contact-address {
    padding: 2rem;
  }
}

.contact-address__title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  color: rgb(30, 58, 138);
}

.contact-address__company {
  margin-bottom: 1rem;
}

.contact-address__text {
  margin-bottom: 1rem;
}

.contact-address__map {
  border-radius: 0.375rem;
  overflow: hidden;
}

.footer {
  background-color: rgb(31, 41, 55);
  color: rgb(255, 255, 255);
}

.footer__inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  display: grid;
  padding-right: 1rem;
  gap: 2rem;
  grid-template-columns: repeat(1, minmax(0px, 1fr));
}
@media screen and (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: repeat(4, minmax(0px, 1fr));
  }
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.footer-list li {
  color: rgb(156, 163, 175);
}
.footer-list a {
  color: rgb(156, 163, 175);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer-list a:hover {
    color: rgb(255, 255, 255);
  }
}

.footer-list__item {
  color: rgb(156, 163, 175);
}

.footer-list__link {
  color: rgb(156, 163, 175);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer-list__link:hover {
    color: rgb(255, 255, 255);
  }
}

.footer-company__logo {
  width: 10.125rem;
  margin-bottom: 1rem;
}
.footer-company__logo img {
  display: block;
  width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer-company__text {
  color: rgb(156, 163, 175);
  margin-bottom: 1rem;
}

.footer-company__instagram {
  color: rgb(156, 163, 175);
  margin-bottom: 1rem;
}

.footer-nav__title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.footer-services__title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.footer-contact__title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.footer-contact__address {
  margin-bottom: 0.5rem;
}

.footer__bottom {
  text-align: center;
  background-color: rgb(249, 115, 22);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}