@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Heavy.woff2") format("woff2"), url("../fonts/Nexa-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa Extra";
  src: url("../fonts/Nexa-ExtraLight.woff2") format("woff2"), url("../fonts/Nexa-ExtraLight.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ThinItalic.woff2") format("woff2"), url("../fonts/Raleway-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Thin.woff2") format("woff2"), url("../fonts/Raleway-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

b {
  font-weight: bold;
}

img {
  max-width: 100%;
}

input {
  outline: 0;
  padding: 20px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  border: 1px solid #8c8c8c;
  width: 100%;
  border-radius: 8px;
  transition: 0.3s all ease-in-out;
}
input::-moz-placeholder {
  color: #8c8c8c;
}
input::placeholder {
  color: #8c8c8c;
}
input:focus {
  border-color: #ffe396;
}

textarea {
  outline: 0;
  padding: 20px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  border: 1px solid #8c8c8c;
  width: 100%;
  border-radius: 8px;
  transition: 0.3s all ease-in-out;
}
textarea::-moz-placeholder {
  color: #8c8c8c;
}
textarea::placeholder {
  color: #8c8c8c;
}
textarea:focus {
  border-color: #ffe396;
}

a {
  text-decoration: none;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

p {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  line-height: 22px;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 18px;
  }
}

section {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #f7fbfb;
}
@media (max-width: 768px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.btn {
  outline: 0;
  border: 0;
  cursor: pointer;
  transition: 0.3s all;
  padding: 14px 24px;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  border-radius: 8px;
  background: #ffe396;
  text-decoration: none;
  text-transform: uppercase;
  color: #492125;
  gap: 16px;
  align-items: center;
  display: flex;
}
.btn:hover {
  background: #f6cf6c !important;
}
.btn-secondary {
  background: #492125;
  color: #fff;
}
.btn-secondary:hover {
  background: #b62549 !important;
}

.title {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 60px;
  background: #ffe396;
  bottom: -20px;
}
@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }
}

.subtitle {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
}

.header {
  background: url("../img/bg.png") no-repeat;
  padding-bottom: 90px;
}
@media (max-width: 768px) {
  .header {
    background-size: cover;
  }
}
.header__main {
  display: flex;
}
.header__left {
  margin-left: -30px;
}
@media (min-width: 768px) {
  .header__left {
    margin-left: -115px;
  }
}
@media (max-width: 768px) {
  .header__left img {
    height: 180px;
  }
}
.header__right {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .header__right {
    margin-top: 100px;
  }
}
.header h1 {
  color: #ffe396;
  font-size: 69px;
  font-family: "Nexa", sans-serif;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .header h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.header .red-dark-banner {
  background: #492125;
  padding: 20px 30px;
  color: white;
  font-family: "Nexa", sans-serif;
  font-size: 50px;
  height: -moz-max-content;
  height: max-content;
  display: inline-flex;
  transform: rotate(-5deg);
}
@media (max-width: 768px) {
  .header .red-dark-banner {
    font-size: 22px;
    padding: 10px;
  }
}
.header .red-banner {
  background: #d60f0d;
  padding: 20px 30px;
  color: white;
  font-family: "Nexa Extra", sans-serif;
  font-size: 50px;
  height: -moz-max-content;
  height: max-content;
  text-align: center;
}
@media (max-width: 768px) {
  .header .red-banner {
    font-size: 22px;
    padding: 10px;
  }
}
.header__email {
  text-decoration: none;
  color: #f6cf6c;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .header__email {
    display: none;
  }
}
.header__email-mob {
  display: flex;
}
@media (max-width: 768px) {
  .header__email-mob {
    background-size: cover;
    font-weight: bold;
  }
}
.header__bottom {
  color: white;
  max-width: 822px;
}
.header__bottom h2 {
  font-size: 48px;
  font-family: "Raleway", sans-serif;
}
@media (max-width: 768px) {
  .header__bottom h2 {
    font-size: 32px;
  }
}
.header__bottom p {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .header__bottom {
    text-align: center;
    margin-top: 32px;
  }
}
.header__call_to_action {
  margin-top: 4rem;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .header__call_to_action {
    flex-direction: column;
    align-items: center;
  }
  .header__call_to_action a {
    width: -moz-max-content;
    width: max-content;
  }
}
.header__form form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.header__form .btn {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__form {
    display: none;
  }
}

.about p {
  text-align: center;
}
.about__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: none;
    gap: 32px;
  }
}
.about__right p {
  text-align: left;
}
.about__right p b {
  font-family: "Nexa", sans-serif;
  font-size: 22px;
}
.about__right .title {
  text-align: left;
  font-size: 30px;
}
.about__right .title::after {
  left: 0;
  transform: none;
}
.about__details {
  margin-top: 40px;
}
.about__details p:nth-child(2n) {
  margin: 10px 0 30px 0;
}

.reviews {
  background: url("../img/reviews_bg.png") no-repeat;
  background-size: cover;
}
.reviews-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.reviews-pagination .swiper-pagination-bullet {
  border: 2px solid #f4bd87;
  height: 16px;
  width: 16px;
}
.reviews-pagination .swiper-pagination-bullet-active {
  background: #f4bd87;
}
.reviews .review {
  text-align: center;
  color: #fff;
}
.reviews .review__title {
  margin-top: 8px;
  font-family: "Raleway", sans-serif;
}
.reviews .review__title h4 {
  font-size: 24px;
  color: #f6cf6c;
  font-weight: bold;
}
.reviews .review__title span {
  font-size: 18px;
  margin-top: 4px;
  display: block;
}
.reviews .review__text {
  margin-top: 60px;
}
.reviews .review__text p {
  font-family: "Raleway", sans-serif;
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  position: relative;
  margin-bottom: 10px;
}
.reviews .review__text p::before {
  content: "";
  position: absolute;
  top: -8;
  left: 0;
  background: url("../img/left_.png");
  width: 30px;
  height: 20px;
}
@media (max-width: 768px) {
  .reviews .review__text p::before {
    top: -24;
  }
}
.reviews .review__text p::after {
  content: "";
  position: absolute;
  bottom: -8;
  right: 0;
  background: url("../img/right_.png");
  width: 30px;
  height: 20px;
}
@media (max-width: 768px) {
  .reviews .review__text p::after {
    bottom: -24;
  }
}

.guarantee p {
  text-align: center;
}
.guarantee__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | image | right */
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .guarantee__grid {
    grid-template-columns: none;
    gap: 40px;
  }
}
.guarantee__grid-col {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 768px) {
  .guarantee__grid-col {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .guarantee__grid-center {
    display: none;
  }
}
.guarantee__mob-cover {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .guarantee__mob-cover {
    display: none;
  }
}
.guarantee__item {
  position: relative;
}
@media (max-width: 768px) {
  .guarantee__item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.guarantee__item span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: bold;
  background: url("../img/defense.png") no-repeat;
  display: inline-flex;
  height: 50px;
  width: 50px;
  background-size: contain;
  background-position: center;
  padding-right: 8px;
  padding-bottom: 6px;
  justify-content: center;
  align-items: center;
  color: #492125;
}
@media (max-width: 768px) {
  .guarantee__item span {
    position: relative;
    flex-shrink: 0;
  }
}
.guarantee__item p {
  padding-left: 71px;
  padding-top: 30px;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .guarantee__item p {
    padding: 0;
  }
}

.call {
  background: #492125;
  padding: 72px 0;
}
.call .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .call .container {
    flex-direction: column;
    gap: 20px;
  }
}
.call .breaker {
  width: 80px;
  height: 2px;
  background: #f6cf6c;
}
@media (max-width: 768px) {
  .call .breaker {
    display: none;
  }
}
.call p {
  font-size: 24px;
  color: #fff;
}
.call__main {
  text-align: center;
}
@media (min-width: 768px) {
  .call__main {
    max-width: 63%;
    text-align: left;
  }
}
.call__main__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .call__main__bottom {
    justify-content: center;
  }
}
.call__main__bottom a {
  font-family: "Raleway", sans-serif;
  color: #fff;
}

.numbers {
  padding: 50px 0;
  background: #f6cf6c;
}
.numbers .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
}
@media (max-width: 768px) {
  .numbers .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.numbers__item {
  color: #492125;
  text-align: center;
}
.numbers__item span {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
.numbers__item p {
  font-weight: 500;
}

.our-product p {
  text-align: center;
}
.our-product__image {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.contact-us__content {
  display: flex;
  gap: 100px;
}
@media (max-width: 768px) {
  .contact-us__content {
    flex-direction: column;
    gap: 40px;
  }
}
.contact-us__left {
  max-width: 390px;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-us__left {
    max-width: 100%;
  }
}
.contact-us__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-us form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .contact-us form {
    max-width: 100%;
  }
}
.contact-us form input, .contact-us form textarea {
  width: 100%;
}
.contact-us form .btn {
  width: -moz-max-content;
  width: max-content;
  margin-top: 20px;
}
.contact-us__call {
  display: flex;
  align-items: center;
  margin-top: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  color: #000;
  gap: 10px;
}

.policy {
  background: url("../img/policy.png") no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.policy p {
  margin-top: 20px;
}

.footer {
  padding: 52px 0;
  background: #492125;
}
.footer > .container {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer > .container {
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer > .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__left {
    width: 100%;
  }
  .footer__left img {
    margin-left: -20px;
  }
}
.footer__right {
  width: 100%;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__bottom {
  margin-top: 32px;
  color: #ffe396;
  display: flex;
  gap: 40px;
  font-family: "Raleway", sans-serif;
}
.footer__bottom a {
  color: #ffe396;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer__bottom {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__bottom-mob {
    display: flex;
    flex-direction: column;
  }
}

.swiper-wrapper {
  height: auto;
}/*# sourceMappingURL=main.css.map */