.btn-link {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  transition: all 300ms ease;
  text-decoration: underline;
  border-color: transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-link:hover {
  text-decoration: none;
}
.btn-link .icon {
  width: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  transition: all 300ms ease;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  border-color: transparent;
  text-align: center;
}
.btn--small {
  height: 40px;
  padding: 0 16px;
}
.btn--medium {
  height: 48px;
  padding: 0 24px;
}
.btn--large {
  height: 56px;
  padding: 0 24px;
}
.btn--primary {
  background-color: #fb4c45;
  color: #fff;
}
.btn--primary:hover {
  background-color: #ba483e;
}
.btn--conversion {
  background-color: #99bd04;
  color: #fff;
}
.btn--conversion:hover {
  background-color: #80962e;
}
.btn--conversion[disabled], .btn--conversion:disabled {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), #99BD04;
}
.btn--secondary {
  background-color: #fff;
  color: #333;
  border: 2px solid #333;
}
.btn--secondary:hover {
  background-color: #333;
  color: #fff;
}
.btn--white {
  background-color: #fff;
  color: #333;
}
.btn--white:hover {
  color: #fb4c45;
}
.btn .icon {
  width: 24px;
}

.form-value {
  position: relative;
}
.form-value .icon {
  position: absolute;
  right: 24px;
  top: 12px;
  width: 24px;
  color: #adadad;
}

.form-input {
  width: 100%;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  transition: all 300ms ease;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  font-size: 16px;
  font-family: inherit;
}
.form-input::placeholder {
  color: #858585;
}
.form-input:hover, .form-input:focus {
  border-color: #adadad;
  outline: none;
}
.form-input:hover::placeholder, .form-input:focus::placeholder {
  color: #333;
}
.form-input--icon-right {
  padding-right: 60px;
}

.form-checkbox input {
  display: none;
}
.form-checkbox input:checked + label:before {
  background-color: #fb4c45;
  border-color: #fb4c45;
}
.form-checkbox input:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.form-checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}
.form-checkbox label:before, .form-checkbox label:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  transition: all 300ms ease;
  content: "";
}
.form-checkbox label:before {
  background-color: #fff;
  border: 2px solid #D6D6D6;
  border-radius: 4px;
}
.form-checkbox label:after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  background: url("../img/ico-check.svg") no-repeat 50% 50%;
}

.form-radio input {
  display: none;
}
.form-radio input:checked + label:before {
  border-color: #fb4c45;
}
.form-radio input:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.form-radio label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}
.form-radio label:before, .form-radio label:after {
  position: absolute;
  transition: all 300ms ease;
  content: "";
}
.form-radio label:before {
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #D6D6D6;
  border-radius: 50%;
}
.form-radio label:after {
  left: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background-color: #fb4c45;
  border-radius: 50%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.h1 {
  line-height: 1.1;
  font-weight: 900;
}
@media screen and (max-width: 1199px) {
  .h1 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1200px) {
  .h1 {
    font-size: 72px;
  }
}

.h2 {
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 1199px) {
  .h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .h2 {
    font-size: 52px;
  }
}

.h3 {
  line-height: 1.2;
  font-size: 44px;
  font-weight: 900;
}

.h4 {
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 1199px) {
  .h4 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .h4 {
    font-size: 36px;
  }
}

.h5 {
  line-height: 1.2;
  font-size: 32px;
  font-weight: 700;
}

.h6 {
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .h6 {
    font-size: 24px;
  }
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.icon:before {
  padding-top: 100%;
  display: block;
  content: "";
}
.icon svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.color-red {
  --primary-color-bg: #fb4c45;
  --primary-color-text: #fff;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html.menu-active {
  overflow: hidden;
}
html.menu-active body {
  overflow: hidden;
}
html.locked {
  overflow: hidden;
}
html.locked body {
  overflow-y: scroll;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
body.color-red {
  --primary-color-bg: #fb4c45;
  --primary-color-text: #fff;
}
body.color-light-green {
  --primary-color-bg: #a0bc3a;
  --primary-color-text: #fff;
}
body.color-dark-green {
  --primary-color-bg: #356035;
  --primary-color-text: #fff;
}
body.color-brown {
  --primary-color-bg: #f1e9cf;
}

.container {
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1212px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1220px;
  }
}
@media screen and (max-width: 1199px) {
  .container--wide {
    max-width: 1432px;
  }
}
@media screen and (min-width: 1200px) {
  .container--wide {
    max-width: 1440px;
  }
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .wrap {
    padding: 0 25px;
  }
}

.main-header {
  padding: 0 30px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid transparent;
}
.main-header .logo {
  width: 20%;
  display: flex;
  align-items: center;
}
.main-header a {
  color: #fff;
  text-decoration: none;
}
.main-header .logo {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 2px;
}
.main-header .main-nav {
  display: flex;
  width: 60%;
  justify-content: center;
}
@media (max-width: 767px) {
  .main-header .main-nav {
    width: 100%;
  }
}
.main-header .main-nav ul {
  padding: 0;
  margin: 0;
}
.main-header .main-nav li {
  list-style: none;
  display: inline-block;
}
.main-header .main-nav a {
  display: inline-block;
  padding: 30px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  transition: all 0.2s ease-in-out;
}
.main-header .main-nav a:hover {
  color: #d43c67;
}
.main-header .main-nav .menu-items {
  text-align: center;
}
@media (min-width: 768px) {
  .main-header .main-nav .navbar-text,
  .main-header .main-nav .container input {
    display: none;
  }
}
.main-header-scrolled {
  background: #fff;
  border-color: #eee;
  transition: all 0.2s ease-in-out;
}
.main-header-scrolled a {
  color: #000;
}
.main-header-scrolled .nav-container .hamburger-lines .line {
  background-color: #000 !important;
}
@media (max-width: 767px) {
  .main-header .navbar {
    width: 100%;
  }
  .main-header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }
  .main-header .navbar .menu-items {
    display: flex;
  }
  .main-header .navbar .nav-container li {
    list-style: none;
  }
  .main-header .navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
  }
  .main-header .navbar .nav-container a:hover {
    font-weight: bolder;
  }
  .main-header .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }
  .main-header .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 10px;
    right: -10px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  .main-header .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .main-header .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }
  .main-header .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  .main-header .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .main-header .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  .main-header .navbar .menu-items {
    padding-top: 120px;
    background-color: #fff;
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -100px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    box-shadow: 0 0 3px #8b8b8b;
  }
  .main-header .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .main-header .nav-container input[type=checkbox]:checked ~ .menu-items {
    transform: translateX(0);
  }
  .main-header .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  .main-header .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  .main-header .nav-container input[type=checkbox]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  .main-header .nav-container input[type=checkbox]:checked ~ .logo {
    display: none;
  }
}

.top-banner {
  height: 100vh;
  background: url("../img/bg-1.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-banner h1 {
  font-size: 6rem;
  line-height: 7rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .top-banner h1 {
    font-size: 4rem;
    line-height: 4.5rem;
  }
}
@media (max-width: 475px) {
  .top-banner h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
.top-banner h1 em {
  font-style: normal;
  text-transform: lowercase;
}
.top-banner h1 span {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.block-white {
  background: #fff;
  text-align: center;
  color: #000;
}
.block-white h2 {
  font-size: 3rem;
  line-height: 3.625rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .block-white h2 {
    font-size: 2.25rem;
    line-height: 2.625rem;
  }
}

.block-image {
  text-align: center;
  color: #fff;
}
.block-image h2 {
  font-size: 3rem;
  line-height: 3.625rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .block-image h2 {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
.block-image p {
  font-size: 1.875rem;
  line-height: 3rem;
  font-style: italic;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .block-image p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.block-no1 {
  padding: 170px 0 180px 0;
}
@media (max-width: 767px) {
  .block-no1 {
    padding: 120px 0 130px 0;
  }
}
.block-no1 p {
  font-size: 1.875rem;
  line-height: 3rem;
  font-style: italic;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .block-no1 p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.block-no1 a {
  background-color: #d43c67;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  width: auto;
  transition: all 0.2s ease-in-out;
}
.block-no1 a:hover {
  background-color: #000;
  color: #fff;
}

.block-no2 {
  background: url("../img/bg-3.jpg") no-repeat center;
  background-size: cover;
  padding: 180px 0;
}
@media (max-width: 767px) {
  .block-no2 {
    padding: 120px 0;
  }
}

.block-no3 {
  padding: 170px 0 150px 0;
}
@media (max-width: 767px) {
  .block-no3 {
    padding: 120px 0 100px 0;
  }
}

.services-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  align-content: normal;
  margin-top: 50px;
}

.service-items {
  background-color: #f5f5f5;
  padding: 50px 40px 60px;
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  width: calc(25% - 20px);
  margin: 0 10px 20px 10px;
}
@media (max-width: 767px) {
  .service-items {
    width: calc(50% - 20px);
  }
}
@media (max-width: 375px) {
  .service-items {
    width: 100%;
  }
}
.service-items svg {
  height: 35px;
}
.service-items span {
  display: block;
  margin-top: 15px;
}

.block-no4 {
  background: url("../img/bg-5.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding: 180px 0;
}
@media (max-width: 767px) {
  .block-no4 {
    padding: 120px 0;
  }
}
.block-no4 h2 {
  margin-bottom: 55px;
}
.block-no4 ul {
  padding: 0;
  margin: 0;
}
.block-no4 li {
  list-style: none;
  display: inline-block;
  position: relative;
  font-size: 1.875rem;
  line-height: 3rem;
  font-style: italic;
  padding: 10px 25px;
}
@media (max-width: 767px) {
  .block-no4 li {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (max-width: 475px) {
  .block-no4 li {
    display: block;
  }
}
.block-no4 li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}
.block-no4 li::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: calc(50% - 2px);
}

.block-no5 {
  padding: 170px 0 150px 0;
}
@media (max-width: 767px) {
  .block-no5 {
    padding: 120px 0 100px 0;
  }
}
.block-no5 p {
  font-size: 1.875rem;
  line-height: 3rem;
  font-style: italic;
}
@media (max-width: 767px) {
  .block-no5 p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.block-no5 a {
  text-decoration: none;
}
.block-no5 a:hover {
  text-decoration: underline;
}