@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.2);
}

.header {
  background-color: var(--white);
  z-index: 1;
}
.header__wrapper {
  display: inline-flex;
  width: 100%;
  align-items: center;
  padding: 10px 0;
}
.header__logo-link {
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  gap: 0 11px;
  color: inherit;
}
.header__logo-wrapper {
  width: 31px;
  height: 60px;
}
@media (max-width: 991px) {
  .header__logo-wrapper {
    height: 50px;
  }
}
.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__logo-text-wrapper {
  display: inline-flex;
  flex-direction: column;
}
.header__logo-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
}
.header__logo-city {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}
.header__nav-wrapper {
  display: inline-flex;
  margin-left: auto;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .header__nav-wrapper {
    position: absolute;
    opacity: 0;
    left: 100vw;
    background: var(--white);
    height: 100vh;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
    text-align: center;
    z-index: 100;
    overflow-y: scroll;
  }
}
.header__nav-list {
  display: inline-flex;
  align-items: center;
  gap: 1rem 32px;
  margin-right: 59px;
}
@media (max-width: 991px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px 0;
    margin-right: 0;
  }
}
.header__nav-list-link {
  color: inherit;
  text-transform: uppercase;
  font-weight: 400;
}
.header__nav-list-link:hover {
  color: var(--orange);
}
.header__nav-btn {
  display: none !important;
}
@media (max-width: 767px) {
  .header__nav-btn {
    display: block !important;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) {
  .header__btn {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .header__btn {
    display: none !important;
  }
}
.header-burger {
  display: none;
}
@media (max-width: 991px) {
  .header-burger {
    display: inline-flex;
    margin-left: 20px;
    position: relative;
    width: 35px;
    height: 14px;
    align-items: center;
    justify-content: flex-end;
  }
  .header-burger:before, .header-burger:after {
    content: "";
    background-color: var(--orange);
    position: absolute;
    height: 2px;
    transition: var(--transition);
  }
  .header-burger:before {
    width: 35px;
    top: 0;
    transition: var(--transition);
  }
  .header-burger:after {
    width: 25px;
    bottom: 0;
    transition: var(--transition);
  }
  .header-burger.pressed:before, .header-burger.pressed:after {
    width: 30px;
  }
  .header-burger.pressed:before {
    transform: rotate(45deg);
    top: 6px;
  }
  .header-burger.pressed:after {
    transform: rotate(-45deg);
    bottom: 6px;
  }
  .header-burger.pressed .header-burger__line {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .header-burger {
    margin-left: auto;
  }
}
.header-burger__line {
  background-color: var(--orange);
  width: 30px;
  height: 2px;
  transition: var(--transition);
}

.footer {
  padding: 30px 0 38px;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 33% 25% 42%);
  gap: 2rem 0;
}
@media (max-width: 991px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 60% 40%);
  }
}
@media (max-width: 480px) {
  .footer__wrapper {
    grid-template-columns: repeat(1, 100%);
  }
}
.footer__main-info-item {
  display: inline-flex;
  flex-direction: column;
}
.footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0 11px;
  color: inherit;
  margin-bottom: 25px;
}
.footer__logo-wrapper {
  width: 31px;
  height: 60px;
}
.footer__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo-text-wrapper {
  display: inline-flex;
  flex-direction: column;
}
.footer__logo-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
}
.footer__logo-city {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}
.footer__info-link {
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.footer__info-link:not(:last-of-type) {
  margin-bottom: 10px;
}
.footer__info-link-img {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}
.footer__title {
  margin-bottom: 15px;
}
.footer__link-list-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.footer__link-list-link {
  color: inherit;
}
@media (max-width: 991px) {
  .footer__about-item {
    grid-column-start: -1;
    grid-column-end: 1;
  }
}
.footer-underline {
  background-color: var(--black);
  color: var(--white);
  padding: 3px 0;
}

:root {
  --orange: #ff3300;
  --dark-blue: #0a0f2b;
  --white: #ffffff;
  --grey: #595959;
  --white-dark: #f7f7f7;
  --black: #171717;
  --transition: ease-in-out 0.25s;
}

* {
  transition: var(--transition);
}

h1,
.h1 {
  font-weight: 400;
  font-size: 58px;
  line-height: 68px;
}
@media (max-width: 991px) {
  h1,
.h1 {
    font-size: 52px;
    line-height: 54px;
  }
}
@media (max-width: 767px) {
  h1,
.h1 {
    font-size: 48px;
    line-height: 50px;
  }
}

h2,
.h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  h2,
.h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  h2,
.h2 {
    font-size: 28px;
    line-height: 32px;
  }
}

h3,
.h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  color: var(--black);
}

p {
  margin-bottom: 10px;
  display: block;
}

.grey {
  color: var(--grey);
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: var(--grey);
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 20px;
  }
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
}

.wrapper {
  width: 1164px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .wrapper {
    width: 94%;
  }
}

body.no-scroll {
  overflow: hidden;
}

.btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--orange);
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  min-width: 200px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
}
.btn:hover {
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.4);
}
@media (max-width: 991px) {
  .btn {
    font-size: 16px;
    line-height: 18px;
    min-width: 150px;
    padding: 7px;
  }
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.accept-item {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}
.accept-item:before {
  content: "";
  background-image: url("../../img/accept-icon.svg");
  width: 20px;
  min-width: 20px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .accept-item:before {
    width: 18px;
    min-width: 18px;
  }
}

.uppercase {
  text-transform: uppercase;
}

.semititle {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--grey);
  margin-bottom: 10px;
}

.center {
  display: block;
  width: 100%;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  z-index: 0;
  overflow: hidden;
  padding: 160px 0;
  color: var(--white);
}
@media (max-width: 991px) {
  .hero {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 80px 0;
  }
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.46);
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hero__img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.hero__info-wrapper {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .hero__info-wrapper {
    width: 100%;
  }
}
.hero__title {
  color: var(--white);
  margin-bottom: 15px;
}
.hero__text {
  margin-bottom: 25px;
}
.hero__list {
  display: inline-flex;
  flex-direction: column;
}
.hero__list-item {
  margin-bottom: 14px;
}
.hero__btn {
  margin-top: 25px;
}

.sticky-phone {
  position: fixed;
  bottom: 2vh;
  right: 2vw;
  z-index: 5;
  display: inline-flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  background-color: rgba(55, 169, 2, 0.61);
  box-shadow: -7px 9px 14px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .sticky-phone {
    width: 70px;
    height: 70px;
  }
}
.sticky-phone:hover {
  background-color: rgba(55, 169, 2, 0.8);
}
.sticky-phone__img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .sticky-phone__img {
    width: 30px;
    height: 30px;
  }
}

.services__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 51% 49%);
  width: 100%;
  gap: 2rem 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .services__wrapper {
    grid-template-columns: repeat(2, 60% 40%);
  }
}
@media (max-width: 767px) {
  .services__wrapper {
    grid-template-columns: repeat(1, 100%);
    padding: 60px 0;
  }
}
.services__info-wrapper {
  padding-right: 100px;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 991px) {
  .services__info-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .services__info-wrapper {
    padding-right: 0;
  }
}
.services__list {
  display: grid;
  width: 100%;
  gap: 40px;
}
.services__list-item {
  display: inline-grid;
  grid-template-columns: repeat(2, 100px calc(100% - 120px));
  width: 100%;
  gap: 1rem 2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .services__list-item {
    grid-template-columns: repeat(2, 80px calc(100% - 100px));
    gap: 1rem;
  }
}
@media (max-width: 410px) {
  .services__list-item {
    grid-template-columns: repeat(2, 60px calc(100% - 80px));
  }
}
.services__list-item-img {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 410px) {
  .services__list-item-img {
    width: 50px;
  }
}
.services__list-item-info-wrapper {
  display: grid;
  width: 100%;
  gap: 15px;
}
.services__list-item-info-text {
  display: inline-block;
  width: 100%;
}
.services__img-wrapper {
  width: 100%;
}
.services__img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .services__img {
    max-height: 400px;
  }
}

.work-process {
  background-color: var(--white-dark);
  padding: 50px 0;
}
.work-process__title {
  margin-bottom: 50px;
}
.work-process__items-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 0;
}
@media (max-width: 991px) {
  .work-process__items-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 510px) {
  .work-process__items-wrapper {
    grid-template-columns: repeat(1, 100%);
    gap: 2rem 0;
  }
}
.work-process__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.6rem;
}
.work-process__item:not(:last-of-type) .work-process__img-wrapper:after {
  content: "";
  height: 1px;
  width: 150%;
  background-color: var(--orange);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(100%);
  z-index: -1;
}
@media (max-width: 991px) {
  .work-process__item:not(:last-of-type) .work-process__img-wrapper:after {
    width: 245%;
  }
}
@media (max-width: 767px) {
  .work-process__item:not(:last-of-type) .work-process__img-wrapper:after {
    width: 160%;
  }
}
@media (max-width: 510px) {
  .work-process__item:not(:last-of-type) .work-process__img-wrapper:after {
    content: none;
  }
}
@media (max-width: 991px) {
  .work-process__item:nth-of-type(2) .work-process__img-wrapper:after {
    content: none;
  }
}
@media (max-width: 510px) {
  .work-process__item {
    position: relative;
    z-index: 0;
  }
  .work-process__item:not(:last-of-type):after {
    content: "";
    width: 1px;
    height: 3rem;
    background-color: var(--orange);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateY(75%);
  }
}
.work-process__img-wrapper {
  background-color: var(--white);
  border-radius: 50%;
  border: 1px solid var(--orange);
  width: 140px;
  height: 140px;
  display: grid;
  place-content: center;
  margin-bottom: 30px;
  z-index: 0;
  position: relative;
  isolation: isolate;
}
@media (max-width: 510px) {
  .work-process__img-wrapper {
    margin-bottom: 1rem;
  }
}
.work-process__img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner {
  background-color: var(--white);
}
.banner_orange {
  background-color: var(--orange);
}
.banner_orange .banner__title,
.banner_orange .banner__text {
  color: var(--white);
}
.banner_blue {
  background-color: var(--dark-blue);
}
.banner_blue .banner__title,
.banner_blue .banner__text {
  color: var(--white);
}
.banner__wrapper {
  padding: 40px 0;
  display: inline-flex;
  width: 100%;
  align-items: center;
}
@media (max-width: 480px) {
  .banner__wrapper {
    flex-direction: column;
    padding: 1.5rem 0;
  }
}
.banner__info-wrapper {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 1.5rem;
  width: auto;
}
.banner__info-wrapper * {
  margin-bottom: 0;
}
.banner__btn {
  margin-left: auto;
}
@media (max-width: 480px) {
  .banner__btn {
    margin: 1rem auto 0;
  }
}

.text-right-img {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .text-right-img {
    padding: 60px 0;
  }
}
.text-right-img__wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 60% 40%);
  gap: 1rem 0;
}
@media (max-width: 610px) {
  .text-right-img__wrapper {
    grid-template-columns: repeat(1, 100%);
  }
}
.text-right-img__info-wrapper {
  padding-right: 1rem;
}
.text-right-img__img-wrapper {
  text-align: right;
}
@media (max-width: 610px) {
  .text-right-img__img-wrapper {
    text-align: center;
    max-height: 300px;
  }
}
.text-right-img__img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.price__text {
  padding: 0 2rem;
}
@media (max-width: 610px) {
  .price__text {
    padding: 0;
  }
}
.price__table {
  margin-top: 25px;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.price__table-item {
  display: inline-flex;
  justify-content: space-between;
  width: calc(100% - 30px);
  padding: 18px 0;
  margin-inline: auto;
}
@media (max-width: 610px) {
  .price__table-item {
    width: 96%;
  }
}
.price__table-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(22, 39, 47, 0.23);
}
.price__table-item:hover {
  width: 100%;
  padding: 18px 15px;
  background-color: var(--orange);
  color: white;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
}
@media (max-width: 610px) {
  .price__table-item:hover {
    padding: 18px 5px;
    font-size: inherit;
    line-height: inherit;
  }
}
.price__table-item:hover .price__table-price {
  color: white;
}
.price__table-price {
  color: var(--orange);
}

.testimonials {
  padding: 50px 0;
}
.testimonials__slider {
  margin-top: 15px;
}
.testimonials__slider-slide {
  padding: 50px 22px 32px;
  background: var(--white);
  box-shadow: 9px 4px 35px rgba(0, 0, 0, 0.13);
  border-radius: 4px;
  position: relative;
}
@media (max-width: 680px) {
  .testimonials__slider-slide {
    padding: 2rem 1rem 1.5rem;
  }
}
.testimonials__slider-slide-text {
  margin-bottom: 26px;
}
.testimonials__slider-person-name {
  margin-bottom: 9px;
  font-weight: 400;
  color: var(--orange);
}
.testimonials__slider-person-place {
  margin-bottom: 17px;
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
}
.testimonials__slider-stars-wrapper {
  display: inline-flex;
  width: 100%;
  gap: 8px;
}
.testimonials__slider-person-img {
  position: absolute;
  width: 73px;
  height: 73px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  bottom: -36.5px;
  right: 49px;
}
.testimonials__slider-pagination {
  margin-top: 86px;
  position: relative;
}
.testimonials__slider-pagination * {
  background-color: var(--grey);
}
.testimonials__slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--orange);
}

.fade-bg {
  position: relative;
  isolation: isolate;
  z-index: 0;
  overflow: hidden;
  width: 100%;
}
.fade-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 243, 243, 0.96);
  z-index: -1;
}
.fade-bg__img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
}
.faq__wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 55% 45%);
  gap: 2rem 0;
}
@media (max-width: 767px) {
  .faq__wrapper {
    grid-template-columns: repeat(1, 100%);
  }
}
.faq__info-wrapper {
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .faq__info-wrapper {
    padding-right: 0;
  }
}
.faq__img {
  margin-top: 20px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq__item {
  background: var(--white-dark);
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  border-left: 1px solid var(--white-dark);
}
.faq__item[open] {
  padding: 0;
  border-left: 1px solid var(--orange);
  background: var(--white);
  box-shadow: 8px 4px 33px rgba(0, 0, 0, 0.05);
}
.faq__item[open] .faq__question {
  color: var(--orange);
}
.faq__item[open] .faq__question:after {
  transform: rotate(90deg);
  transition: var(--transition);
}
.faq__question {
  padding: 26px 16px 26px 16px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 991px) {
  .faq__question {
    font-size: 1.3rem;
    line-height: inherit;
  }
}
.faq__question::marker {
  content: none;
}
.faq__question:after {
  content: "❯";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  flex: 0 0 auto;
  margin-left: auto;
  transform: rotate(-90deg);
  color: var(--orange);
  font-size: 1.2rem;
  transition: var(--transition);
}
.faq__answer {
  padding: 0 30px 30px 16px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .faq__answer {
    font-size: 1.2rem;
    line-height: inherit;
  }
}

.areas {
  padding: 50px 0 56px;
}
.areas__items-wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 20%);
  margin-top: 20px;
  gap: 15px 0;
}
@media (max-width: 991px) {
  .areas__items-wrapper {
    grid-template-columns: repeat(3, 33%);
  }
}
@media (max-width: 767px) {
  .areas__items-wrapper {
    grid-template-columns: repeat(2, 50%);
    gap: 10px 0;
  }
}
@media (max-width: 480px) {
  .areas__items-wrapper {
    grid-template-columns: repeat(1, 100%);
  }
}
.areas__column {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .areas__column {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .areas__column {
    padding: 0;
  }
}
.areas__item-link {
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.areas__item-link:hover {
  color: var(--orange);
}
.areas__item-link:after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../../img/Arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 8px;
}

.content {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .content {
    padding: 60px 0;
  }
}