:root {
  --primary: #64c679;
  --secondary: #eb5757;
  --link: #3084d6;
  --white: #ffffff;
  --dark: #212121;
  --text: #000000;
  --section-indent: 60px;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  background-color: var(--primary);
  min-width: 200px;
  width: 100%;
  max-width: 200px;
  height: 50px;
  text-align: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 50px;
  border: none;
  border-radius: 7px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  display:inline-block;
}

.btn:hover {
  background-color: #48bc62;
}

.cb-btn {
  background-color: var(--secondary);
}

.cb-btn:hover {
  background-color: #e73333;
}

.section-indent {
  margin-top: var(--section-indent);
}

.section-title {
  color: var(--dark);
  font-size: 2.35em;
  font-weight: 700;
  line-height: 1.2em;
}

.carousel-btn-prev,
.carousel-btn-next {
  position: absolute;
  top: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background-color: var(--white);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.carousel-btn-prev svg,
.carousel-btn-next svg {
  fill: #d0d0d0;
}

.carousel-btn-prev:hover,
.carousel-btn-next:hover {
  background-color: var(--primary);
}

.carousel-btn-prev:hover svg,
.carousel-btn-next:hover svg {
  fill: var(--white);
}

.carousel-btn-prev {
  left: -60px;
}

.carousel-btn-prev svg {
  fill: #eb5757;
  transform: rotate(180deg) translateX(1px);
}

.carousel-btn-next {
  right: -60px;
}

.carousel-btn-next svg {
  fill: #3084d6;
  transform: translatex(2px);
}

.carousel-pagination span {
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
}

.carousel-pagination > .swiper-pagination-bullet-active {
  background: var(--primary);
}

.mobile__menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 60px;
  width: 360px;
  height: auto;
  background-color: var(--white);
  padding: 35px 45px;
  border-radius: 10px;
  transform: translateX(-100%);
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease;
  overflow-y: auto;
  z-index: 14;
}

.mobile__menu.active {
  transform: translateX(15px);
}

.mobile__logo {
  width: 112px;
  margin-bottom: 25px;
}

.mobile__logo a {
  display: block;
  width: 100%;
}

.mobile__logo a img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile__nav {
  margin-bottom: 15px;
}

.mobile__nav-link {
  display: block;
  margin-bottom: 25px;
  color: var(--dark);
  font-size: 1.1em;
  text-align: center;
}

.mobile__cb {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile__cb button {
  max-width: 100%;
}

.mobile__mail {
  display: block;
  margin-bottom: 30px;
}

.fade {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 13;
}

.fade.active {
  opacity: 1;
  pointer-events: all;
}

.scroll-to-top {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  right: 15px;
  bottom: 30px;
  z-index: 7;
}

.scroll-to-top__img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 40px;
}

.scroll-to-top__img img {
  width: 40%;
  height: auto;
  object-fit: contain;
}

.scroll-to-top span {
  display: block;
  margin-top: 5px;
  color: var(--secondary);
  font-weight: 700;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__top {
  background-color: #f1f1f1;
  padding: 12px 0;
}

.header__nav-link {
  color: var(--dark);
  margin-right: 35px;
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: var(--link);
}

.header__mail {
  position: relative;
  padding-left: 21px;
  color: var(--dark);
  transition: color 0.2s ease;
}

.header__mail:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 16px;
  height: 12px;
  background: url(../img/icon/mail.svg) 50% 50%/100% no-repeat;
  transform: translateY(-50%);
}

.header__mail:hover {
  color: var(--secondary);
}

.header__cb-phone--mob {
  display: none;
}

.header__center {
  padding: 20px 0;
}

.header__logo {
  display: block;
}

.header__logo-img {
  width: 100%;
  height: auto;
}

.header__cb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__cb-phone {
  margin-right: 25px;
  color: var(--dark);
  font-size: 1.25em;
  font-weight: 700;
  transition: color 0.2s ease;
}

.header__cb-phone:hover {
  color: var(--secondary);
}

.header___burger {
  display: none;
}

.intro {
  position: relative;
  background: url(../img/intro-bg.jpg) 50% 50% no-repeat;
  background-size: cover;
  height: 560px;
}

.intro__carousel {
  height: 100%;
}

.intro__carousel-item > .container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.intro__carousel-btn-prev {
  top: 50%;
  left: 15%;
  z-index: 5;
}

.intro__carousel-btn-next {
  top: 50%;
  right: 15%;
  z-index: 5;
}

.intro__offer-title {
  max-width: 620px;
  color: var(--dark);
  font-size: 3.1em;
  font-weight: 700;
  line-height: 1.2em;
}

.intro__offer-list {
  margin: 28px 0;
}

.intro__offer-list ul > li {
  position: relative;
  padding-left: 25px;
  color: var(--dark);
  line-height: 1.8em;
}

.intro__offer-list ul > li:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../img/icon/check.svg) 50% 50%/100% no-repeat;
  transform: translateY(-50%);
}

.intro__offer-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about__imgs {
  flex: 0 0 450px;
  margin-right: 30px;
}

.about__imgs img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}

.about__imgs img:first-child {
  margin-bottom: 20px;
}

.about__content-text {
  margin: 20px 0;
}

.about__content-text p {
  margin: 8px 0;
  color: var(--text);
  line-height: 1.4em;
}

.about__content-btn {
  display: inline-block;
  max-width: 220px;
  margin-right: 10px;
  font-weight: 400;
}

.about__content-btn:last-child {
  margin-right: 0;
}

.services {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.services__inner {
  position: relative;
}

.services__carousel {
  margin-top: 35px;
  border-radius: 12px;
}

.services__carousel > .services__carousel-pagination {
  bottom: 0;
}

.services__carousel-item {
  background-color: var(--white);
  padding-bottom: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
}

.services__carousel-item p {
  margin: 18px 20px 10px 20px;
  height: 72px;
  line-height: 1.5em;
}

.services__carousel-item-img {
  display: block;
}

.services__carousel-item-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
}

.services__carousel-item-more {
  position: relative;
  margin-left: 20px;
  padding-right: 16px;
  color: var(--link);
  font-weight: 700;
  line-height: 1.5em;
}

.services__carousel-item-more:after {
  content: "";
  position: absolute;
  display: block;
  top: 55%;
  right: 0;
  width: 13px;
  height: 7px;
  background: url(../img/icon/arrow-link.svg) 50% 50%/100% no-repeat;
  transform: translateY(-50%);
}

.services__carousel-item-more:hover {
  text-decoration: underline;
}

.services__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.services__carousel-btn-prev, .services__carousel-btn-next {
  top: 50%;
}

.benefits > .container > .carousel__nav {
  display: none;
}

.benefits__content {
  display: grid;
  grid-template: repeat(4, 1fr)/repeat(3, 1fr);
  grid-gap: 35px;
  margin-top: 35px;
}

.benefits__carousel {
  display: none;
}

.benefits__content-item {
  display: flex;
  align-items: center;
}

.benefits__content-item p {
  margin-left: 15px;
  line-height: 1.5em;
}

.benefits__content-icon {
  flex: 0 0 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
  background-color: var(--white);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video__inner {
  position: relative;
}

.video__carousel {
  margin-top: 35px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.video__carousel-item:hover a {
  color: var(--link);
}

.video__videowrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  /*style for example*/
  /*style for example*/
}

.video__videowrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video__carousel-item-title {
  display: block;
  margin-top: 15px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.5em;
  transition: color 0.2s ease;
}

.video__carousel-btn-prev {
  top: 50%;
}

.video__carousel-btn-next {
  top: 50%;
}

.news {
  background-color: #f8f8f8;
  padding: 45px 0;
}

.news__content {
  display: flex;
  align-items: center;
  margin: 35px 0;
}

.news__content-item {
  background-color: var(--white);
  margin-right: 30px;
  padding-bottom: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
}

.news__content-item:last-child {
  margin-right: 0;
}

.news__img {
  width: 100%;
  max-height: 257px;
}

.news__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.news__content-date {
  display: block;
  margin: 20px 20px 10px 20px;
  color: #7d7d7d;
  font-size: 0.87em;
}

.news__content-title {
  display: block;
  margin: 0 20px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.5em;
}

.news__content-more {
  display: inline-block;
  margin: 10px 20px 0 20px;
  padding-bottom: 3px;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--primary);
  transition: all 0.2s ease;
}

.news__content-more:hover {
  color: var(--link);
  border-color: var(--link);
}

.news__show-more {
  display: block;
  max-width: 245px;
  margin: 0 auto;
}

.reviews__inner {
  position: relative;
}

.reviews__carousel {
  margin-top: 35px;
}

.reviews__carousel-item {
  background-color: var(--white);
  padding: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.reviews__carousel-item p {
  min-height: 120px;
  line-height: 1.5em;
}

.reviews__carousel-item-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.reviews__carousel-item-top span {
  display: block;
  margin-right: 15px;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.1em;
  font-weight: 600;
}

.reviews__rait {
  margin-bottom: 8px;
}

.reviews__carousel-item-date {
  display: block;
  margin-top: 8px;
  color: #7d7d7d;
  font-size: 0.87em;
}

.reviews__carousel-btn-prev {
  top: 65%;
}

.reviews__carousel-btn-next {
  top: 65%;
}

.links {
  background-color: #f8f8f8;
  padding: 45px 0;
}

.links__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.links__col {
  width: 100%;
  max-width: 320px;
  margin-right: 30px;
}

.links__col:last-child {
  margin-right: 0;
}

.links__col li {
  margin-bottom: 15px;
}

.links__col li:last-child {
  margin-bottom: 0;
}

.links__col li a {
  color: var(--link);
  line-height: 1.6em;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.links__col li a:hover {
  color: var(--secondary);
}

.footer {
  padding: 55px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  display: block;
  max-width: 110px;
}

.footer__logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__nav {
  display: flex;
}

.footer__nav li {
  margin-right: 30px;
}

.footer__nav li:last-child {
  margin-right: 0;
}

.footer__nav li a {
  color: var(--dark);
  transition: color 0.2s ease;
}

.footer__nav li a:hover {
  color: var(--link);
}

@media (max-width: 1920px) {
  .intro__carousel-btn-prev {
    left: 10%;
  }
  .intro__carousel-btn-next {
    right: 10%;
  }
}

@media (max-width: 1600px) {
  .intro__carousel-btn-prev {
    left: 15px;
  }
  .intro__carousel-btn-next {
    right: 15px;
  }
}

@media (max-width: 1400px) {
  .intro__offer-img {
    right: 0;
  }
  .swiper {
    padding-bottom: 45px;
  }
  .carousel__nav:not(.intro__carousel-nav) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    width: auto;
    bottom: 0;
    margin: 0 30px;
  }
  .carousel-btn-prev:not(.intro__carousel-btn-prev), .carousel-btn-next:not(.intro__carousel-btn-next) {
    position: relative;
    top: initial;
    transform: none;
  }
  .carousel-btn-prev:not(.intro__carousel-btn-prev) {
    left: initial;
  }
  .carousel-btn-next:not(.intro__carousel-btn-next) {
    right: initial;
  }
  .intro__carousel {
    padding-bottom: 0;
  }
  .intro__carousel-item > .container {
    padding: 0 90px;
  }
}

@media (max-width: 1230px) {
  .intro__offer-img {
    width: 50%;
  }
  .intro__offer-title {
    font-size: 2.8em;
  }
  .about__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .about__imgs {
    flex: initial;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-right: 0;
  }
  .about__imgs img:first-child {
    margin: 0 20px 0 0;
  }
}

@media (max-width: 1050px) {
  .header {
    position: fixed;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 12;
  }
  .header__center {
    padding: 10px 0;
  }
  .header__nav, .header__mail, .header__cb {
    display: none;
  }
  .header__cb-phone--mob {
    display: block;
  }
  .header__burger {
    position: fixed;
    display: block;
    top: 10px;
    left: 15px;
    background-color: var(--secondary);
    width: 36px;
    height: 36px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 15;
  }
  .header__burger span {
    top: calc(50% - 1px);
    left: 50%;
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: var(--white);
    border-radius: 50px;
    transform: translateX(-50%);
    transition: all 0.2s ease;
  }
  .header__burger span:first-child {
    top: 10px;
  }
  .header__burger span:nth-child(2) {
    width: 18px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 10px;
  }
  .header__burger.active span:first-child {
    transform: rotate(45deg);
    top: 17px;
    left: 9px;
  }
  .header__burger.active span:nth-child(2) {
    transform: scale(0);
  }
  .header__burger.active span:last-child {
    transform: rotate(-45deg);
    bottom: 17px;
    left: 9px;
  }
  .header__top {
    padding: 20px 0;
  }
  .header__top > .header__inner {
    justify-content: flex-end;
  }
  .header__cb-phone--mob {
    margin-right: 0;
  }
  .mobile__mail {
    display: block;
  }
  .main {
    padding-top: 75px;
  }
  .about__imgs img {
    max-width: 49%;
  }
  .benefits__content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .footer__nav {
    display: none;
  }
}

@media (max-width: 992px) {
  .news__content-item {
    margin-right: 15px;
  }
}

@media (max-width: 769px) {
  .intro {
    height: auto;
    padding-top: 100px;
  }
  .intro__carousel-item > .container {
    flex-direction: column;
  }
  .intro__offer-title {
    max-width: none;
    font-size: 2.4em;
    text-align: center;
  }
  .intro__offer-img {
    position: relative;
    width: 70%;
    right: auto;
  }
  .intro__offer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .intro__offer-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    color: var(--dark);
    transform: translateX(-50%);
    z-index: 1;
  }
  .section-title {
    font-size: 2.1em;
  }
}

@media (max-width: 760px) {
  .btn {
    height: 45px;
    line-height: 45px;
  }
  .header__top {
    padding: 15px 0;
  }
  .header__burger {
    top: 6px;
  }
  .mobile__menu {
    top: 50px;
    padding: 30px 15px;
  }
  .section-title {
    font-size: 1.9em;
  }
  .header__center {
    padding: 15px 0;
  }
  .header__logo-img {
    width: 100%;
    max-width: 245px;
  }
  .main {
    padding-top: 62px;
  }
  .intro {
    padding-top: 80px;
  }
  .intro__carousel-item > .container {
    padding: 0 15px;
  }
  .intro__offer-title {
    font-size: 2.1em;
  }
  .about__imgs {
    width: 100%;
  }
  .about__imgs img {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .about__imgs img:first-child {
    display: none;
  }
  .about__content-btn {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .about__content-btn:last-child {
    margin-bottom: 0;
  }
  .benefits__content {
    display: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .benefits__carousel {
    display: block;
    margin-top: 45px;
  }
  .benefits > .container > .carousel__nav {
    display: flex;
  }
  .benefits__content-item {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .benefits__content-item:last-child {
    margin-bottom: 0;
  }
  .benefits__content-icon {
    flex: 0 0 85px;
    height: 85px;
    background-color: none;
    box-shadow: none;
  }
  .benefits__content-icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .benefits__content-item p {
    width: 100%;
    max-width: 300px;
    margin-left: 0;
    text-align: center;
  }
  .news__content {
    flex-direction: column;
  }
  .news__content-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .news__content-item:last-child {
    margin: 0;
  }
  .links__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .links__col {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .links__col:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .mobile__menu {
    width: 90%;
  }
  .swiper {
    padding-bottom: 30px;
  }
  .carousel-btn-prev, .carousel-btn-next {
    width: 45px;
    height: 45px;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin: 0 15px;
  }
  .carousel-pagination span {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }
  .section-title {
    text-align: center;
  }
  .reviews__carousel-item p {
    font-size: 0.9em;
    line-height: 1.4em;
  }
  .links__col li a {
    font-size: 0.9em;
    line-height: 1.4em;
  }
  .mobile__menu {
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    border-radius: 0;
  }
  .mobile__menu.active {
    transform: translateX(0);
  }
  .intro__carousel {
    padding-bottom: 0;
  }
  .intro__offer-title {
    font-size: 1.5em;
  }
  .intro__offer-list {
    margin: 15px 0;
  }
  .intro__offer-img {
    width: 90%;
  }
  .about__content-btn:nth-child(2) {
    background-color: #eb5757;
  }
  .about__content-btn:last-child {
    background-color: #3084d6;
    margin-right: 0;
  }
  .services__inner {
    padding: 0 0 0 15px;
  }
  .services__inner > h2 {
    padding-right: 15px;
  }
  .services__carousel-item {
    width: 80%;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__cb-btn {
    margin-top: 30px;
  }
}

@media (max-width: 376px) {
  .intro__offer-title {
    max-width: 100%;
  }
  .intro__offer-img {
    width: 90%;
  }
  .intro__carousel-btn-next, .intro__carousel-btn-prev {
    top: 60%;
  }
  .video__carousel-item-title {
    text-align: center;
  }
  .reviews__carousel-item {
    padding: 25px;
  }
}
/*# sourceMappingURL=style.css.map */

/* user form inputs */
.readform input, .readform textarea {
    border-radius: 5px;
    border: 1px solid #cac9c9;
    padding: 5px;
    background: #f7f7f7;
    font-size:5px;
}
/* check block */
.check_block{display:table;margin-top:17px}
.check_inp,.subscribe_phone{left:-99999px;position:absolute}
.check_bt{display:table;padding:6px 15px 6px 12px;border:1px solid #dadada;border-radius:5px;cursor:pointer;background-color:#f4f4f4}
.check_bt svg{display:inline-block;vertical-align:middle;height:24px;width:24px}
.check_bt .not_bt{display:inline-block;vertical-align:middle;font-weight:700;margin-left:10px;font-size:14px;}
.check_bt .uncheckedconf{fill:#f94343}
.check_bt .checkedconf{fill:#49954c}
.look_here{border:2px dashed #ed6363;animation:glowing 2500ms infinite;-webkit-animation:glowing 2500ms infinite;-moz-animation:glowing 2500ms infinite}
@keyframes glowing {
0%{border:2px dashed #dadada;background-color:#ffffff}
100%{border:2px dashed #ff0000;background-color:#f4f4f4}
}
/* button style */
.left{float:left;}
.right{float:right;}
.left_10{margin-left:10px;}
.right_10{margin-right:10px;}
.left_15{margin-left:15px;}
.right_15{margin-right:15px;}
.left_20{margin-left:20px;}
.right_20{margin-right:20px;}
.top_5{margin-top:5px;}
.top_10{margin-top:10px;}
.top_20{margin-top:20px;}
.top_30{margin-top:30px;}
.top_40{margin-top:40px;}
.bottom_5{margin-bottom:5px;}
.bottom_10{margin-bottom:10px;}
.bottom_20{margin-bottom:20px;}
.bottom_30{margin-bottom:30px;}
.bottom_40{margin-bottom:40px;}
.inline-b{display:inline-block;}
.pointer{cursor:pointer}
.button{cursor:pointer;font-weight:700;text-decoration:none;text-align:center;}
.button.xl{font-size:20px;padding:12px 50px;border-radius:25px}
.button.l{font-size:17px;padding:8px 20px;border-radius:19px}
.button.m{font-size:15px;padding:7px 19px;border-radius:17px;}
.button.s{font-size:15px;padding:4px 12px;border-radius:14px;}
.button.xs{font-size:13px;padding:2px 10px;border-radius:10px;}
.button.red{color:#FFFFFF;background-color:#dd4f4f;border:0;}
.button.red:hover{background-color:#ff6a3f;}
.button.green{color:#ffffff;background-color:#7ca64b;border:0;}
.button.green:hover{background-color:#6b874c;}
.button.orange{color:#ffffff;background-color:#ff734b;border:0;}
.button.orange:hover{background-color:#ff6336;}
.button.grey{color:#707070;background:#e9e9e9;border:0;}
.button.grey:hover{background:#e5e5e5;}
.button.blue{color:#ffffff;background:#1a457d;border:0}
.button.blue:hover{background:#4e6f9b;}
.button.gblue{color:#ffffff;background:#466d85;border:0;}
.button.gblue:hover{background:#4987a9;}
.nohover{cursor:default;pointer-events:none;}
.t-left{text-align:left;}
.checkout_button{background:#1a457d;color:#ffffff;border:0;cursor:pointer;font-weight:700;outline:none;padding:15px 80px;text-transform:uppercase;font-size:20px;border-radius:27px;margin:20px 0 0;display:table;text-decoration:none;animation-name:blink;animation-timing-function:linear;animation-duration:3s;animation-iteration-count:infinite}
.checkout_button:hover{background:#234f8b;color:#ffffff;border:0}
/* btf */
#btf_form{background-color:#ffffff;position:relative;margin:0 auto;width:404px}
#btf_result div,#oneclick_result div{padding:10px 7px;font-weight:700;}
.btf_success{margin:0}
.btf_error{background:#ffadad;margin:10px 0 0;border-radius:5px}
#closeform{cursor:pointer}
#btf_form .backcall-title{clear:both;font-size:17px;font-weight:700;margin-bottom:13px;text-transform:uppercase}
.btf_submit{margin-top:17px;float:right}
/* confcheck */
.confcheck{display:table;width:100%;margin:9px 0 0}
.confcheck svg{float:left;margin-top:0;height:40px;width:40px;fill:#1a457d}
.confcheck .policywrapper{display:table;margin-left:47px;margin-top:4px}
.cartview .confcheck .policywrapper,.blogview .confcheck .policywrapper{max-width:430px}
.confcheck .labeltxt{font-size:12px;line-height:14px;}
.confcheck .showpolicy,.confcheck .hidepolicy{display:table;clear:both;margin-top:3px;color:#1b6f9f;cursor:pointer;border-bottom:1px dashed #1b6f9f;border-collapse:initial}
.confcheck .confpolicy{font-size:12px;width:100%;margin-top:10px;background-color:#f5f2f2;padding:8px;text-align:justify;border-radius:5px}
.confcheck .personaldata{color:#1b6f9f;cursor:pointer;border-bottom:1px solid #1b6f9f}
/* baloon */
#baloon{width:187px;top:0px;left:0px;padding:0;margin:7px 5px 0 5px;display:none;position:absolute;z-index:64999;opacity:0.85;}
#baloonHeader{width:187px;height:0px;margin-top:19px;padding:0;margin:0;font-size:0;line-height:0;display:block;}
.baloonHeaderDirect:before{left:10px;}
#baloonHeader:before{content: " ";position: absolute;width:0;height:0;border:6px solid transparent;border-bottom-color:#ee6362;top:-12px;}
.baloonHeaderFlip:before{right:10px;}
#baloonBody{padding:10px;background-color:#ffffff;width:187px;margin:0;font-size:14px;font-weight:700;line-height:140%;border:2px solid #ee6362;display:block;border-radius:5px;}
/* form handler */
.user_form{width:404px;}
.form-title{text-transform:uppercase;font-weight:700;font-size:16px;margin:0 0 3px 0;}
.readform label{margin:0px 0 5px 0;display:block;}
.readform .required{border:2px dashed #ed6363;}
.user_form .button {margin-top:17px;}
.form_result{display:table;width:100%;}
.form_result .form_success, .form_result .form_error{display:table;padding:10px 10px;width:100%;border-radius:5px;font-weight:700;}
.form_result .form_success{margin-bottom:0px;color:#333333;}
.form_result .form_error{margin-top:10px;background-color:#e61212;color:#ffffff;} 
.readform input, .readform textarea {font-size:15px;margin:10px 0 5px 0;width:100%;}
.readform select {font-size:15px;height:auto;}
.user_form .check_block {display: inline-block;vertical-align: top;}
.showform{display:inline-block;}
.tooltipBody{box-sizing: content-box;}

.service_modal{margin:10px;}
