@import url("../scss/style.scss");
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
.navbar__burger {
  display: none;
  width: 44px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1002;
}

.navbar__burger span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar.navbar_scroll .navbar__menu a {
    color: #FFF !important;
  }
  .navbar.navbar_scroll .navbar__burger {
    color: #A71A1C !important;
  }
  .navbar__lang {
    margin-left: auto;
  }
  .navbar__burger {
    display: block;
    color: #fff;
  }
  .navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    padding: 100px 30px 40px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    transition: -webkit-transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1), -webkit-transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1001;
  }
  .navbar__menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
  }
  .navbar__menu a:hover {
    opacity: 0.6;
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  /* Overlay */
  .navbar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 1000;
  }
  /* OPEN STATE */
  .navbar.is-open .navbar__menu {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .navbar.is-open .navbar__overlay {
    opacity: 1;
    visibility: visible;
  }
  .navbar.is-open .navbar__burger span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .navbar.is-open .navbar__burger span:nth-child(2) {
    opacity: 0;
  }
  .navbar.is-open .navbar__burger span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
/* scroll lock */
html.is-locked,
html.is-locked body {
  overflow: hidden;
}

@media (max-width: 768px) {
  .header {
    height: 580px;
  }
  .header img {
    width: 175%;
    height: 105%;
  }
  .header .container {
    height: 100%;
  }
  .header__body {
    gap: 24px;
    padding-top: unset;
    height: 95%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header__body h1 br {
    display: none;
  }
  .header__body h1 {
    font-size: 28px;
  }
  .header__body p br {
    display: none;
  }
  .header__body p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about__body {
    padding-left: 15px;
  }
  .about__body h2 br {
    display: none;
  }
  .about__body h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #0F0F10;
  }
  .about__body p br {
    display: none;
  }
  .about__body p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 768px) {
  .services_wrapper {
    gap: 24px;
  }
  .services {
    padding: 20px 0 40px;
  }
  .services__title h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }
  .slider__buttons {
    gap: 16px;
  }
  .slider__buttons p {
    width: 32px;
    height: 32px;
  }
  .slider__buttons p i {
    font-size: 12px;
  }
  .services__item img {
    height: 400px;
  }
  .services__slide {
    min-width: 100%;
    max-width: 100%;
  }
  .services__item_text b {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
  }
  .services__item_text p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
  }
  .services__tip {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 20px;
  }
  .services__tip_left p {
    margin-bottom: 15px;
    margin-left: 0;
  }
  .services__tip_right {
    display: inline-block;
    width: 100%;
  }
  .services__tip_right a {
    text-align: center;
    width: 100%;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .why {
    padding: 20px 0;
  }
  .why__title {
    padding: 20px 0;
  }
  .why__title h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
  }
  .why__body {
    gap: 20px;
    width: 100%;
  }
  .why__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    height: 220px;
    padding: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .why__item b {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
  }
  .why__item p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #000000;
  }
  .why__item p br {
    display: none;
  }
}
@media (max-width: 768px) {
  .founder {
    padding: 40px 0;
  }
  .founder__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .founder__left {
    width: 100%;
  }
  .founder__left img {
    height: 320px;
  }
  .founder__right {
    width: 100%;
    padding: 20px;
  }
  .founder__right span {
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #A71A1C;
  }
  .founder__right h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    color: #0F0F10;
  }
  .founder__right ul {
    margin-top: 10px;
    list-style-type: none;
    padding-left: 0;
    gap: 16px;
  }
  .founder__right ul li {
    font-size: 14px;
    line-height: 120%;
  }
  .founder__right p {
    margin-top: 0;
    font-size: 14px;
    line-height: 120%;
  }
}
@media (max-width: 768px) {
  .fav {
    padding: 30px 0;
  }
  .fav_wrapper {
    gap: 20px;
  }
  .fav__title h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
  }
  .fav__slide {
    min-width: 100%;
    max-width: 100%;
  }
  .fav__item img {
    height: 160px;
  }
  .fav__item_text {
    max-height: 180px;
    gap: 10px;
  }
  .fav__item_text b {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #0F0F10;
  }
  .fav__item_text p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
  }
}
@media (max-width: 768px) {
  .faq__wrapper {
    gap: 25px;
  }
  .faq {
    padding: 30px 0;
  }
  .faq__title h5 {
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
  }
  .faq__title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #000000;
  }
  .faq__item button {
    padding: 20px;
  }
  .faq__item button b {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
  }
  .faq__answer {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .form__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form__title {
    width: 100%;
  }
  .form__title h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.04em;
  }
  .form__title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
  }
  .form__body {
    width: 100%;
  }
  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form__col input {
    padding: 12px 24px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0;
  }
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .footer__left {
    width: 100%;
  }
  .footer__left p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.01em;
  }
  .footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .footer__right p {
    width: 100%;
  }
  .footer__right_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 16px;
  }
}