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

@font-face {
  font-family: "Sylfaen";
  src: url("../fonts/Sylfaen.woff2") format("woff2"), url("../fonts/Sylfaen.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Regular"), url("../fonts/MYRIADPRO-REGULAR.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Semibold";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Semibold"), url("../fonts/MYRIADPRO-SEMIBOLD.woff") format("woff");
}

@font-face {
  font-family: "Myriad Pro Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Bold"), url("../fonts/MYRIADPRO-BOLD.woff") format("woff");
}

:root {
  --my-orange: #e57666;
  --my-light-orange: #e4968a;
  --my-gray: #7d7d7d;
  --my-light-gray: rgb(242, 246, 247);
  --my-blue: rgb(210, 225, 234);
  --my-dark-gray: rgb(232, 236, 237);
  --my-green: rgb(103, 173, 91);
  --my-red: rgb(210, 94, 78);
}

video {
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  color: #000;
  background: var(--my-light-gray);
  font-family: "Myriad Pro Regular", sans-serif;
}

a {
  color: white;
  text-decoration: none;
}

b {
  font-weight: 700;
}

p {
  font-size: 18px;
}

input,
textarea {
  padding: 18px 13px;
  margin-top: 10px;
  background: white;
  width: 100%;
  position: relative;
  border: 0;
  outline: 0;
  color: #000;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  border-radius: 4px;
  cursor: initial;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: normal;
  color: var(--my-gray);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-weight: normal;
  color: var(--my-gray);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-weight: normal;
  color: var(--my-gray);
}

input::placeholder,
textarea::placeholder {
  font-weight: normal;
  color: var(--my-gray);
}

input:focus,
textarea:focus {
  border-color: var(--my-yellow);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 14px;
  }
}

.btn {
  cursor: pointer;
  padding: 16px 28px;
  font-size: 14px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: var(--my-orange);
  font-family: "Montserrat", sans-serif;
  width: 100%;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  font-weight: bold;
  outline: 0;
  border: 0;
  border-radius: 4px;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--my-light-orange);
}

.header {
  background: white;
  padding: 50px 0;
}

.header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 678px) {
  .header__logo {
    gap: 10px;
  }
}

.header__company-name div {
  font-size: 24px;
  font-family: "Sylfaen", sans-serif;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}

.header__company-name div span {
  color: var(--my-orange);
}

.header__company-name p {
  font-size: 12px;
  margin-top: 4px;
  color: var(--my-gray);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 678px) {
  .header__menu {
    display: none;
  }
}

.header__menu li a {
  font-size: 14px;
  font-weight: bold;
  color: var(--my-gray);
  text-transform: uppercase;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.header__menu li a:hover {
  color: var(--my-orange);
}

.header__channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 678px) {
  .header__channel {
    display: none;
  }
}

.header__channel > span {
  font-size: 14px;
  font-weight: bold;
  color: var(--my-orange);
  text-transform: uppercase;
}

.header__channel div {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}

.header__channel div > img {
  position: relative;
  z-index: 100;
  margin-right: 2px;
}

.header__channel div > span {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background: var(--my-orange);
  width: 40px;
  height: 40px;
  z-index: 0;
  border-radius: 50%;
}

.header__channel:hover > div span {
  width: 48px;
  height: 48px;
}

.header__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  cursor: pointer;
  z-index: 1100;
}

.header__burger span {
  display: block;
  width: 50px;
  height: 4px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__burger.active {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.header__burger.active span {
  background: #fff;
}

.header__burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(-4px, -3px);
          transform: rotate(45deg) translate(-4px, -3px);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: rotate(-45deg) translate(-4px, 3px);
          transform: rotate(-45deg) translate(-4px, 3px);
}

.header__overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1050;
}

.header__overlay .header__channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

.header__overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-top: 54px;
  padding-left: 16px;
  padding-bottom: 50px;
}

.header__overlay.active > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.header__overlay.active > ul a {
  color: white;
}

.hero {
  padding: 90px 0 78px;
  background: url("../images/bg-hero.png");
  background-repeat: no-repeat;
  color: white;
  background-size: cover;
  background-position: center;
}

@media (max-width: 678px) {
  .hero {
    background: url("../images/bg-mob-hero.png");
    padding-bottom: 520px;
    background-position: center;
    padding-top: 50px;
  }
}

.hero__left {
  position: relative;
  max-width: 640px;
}

.hero__left h1 {
  font-size: 54px;
  font-weight: bold;
  font-family: "Myriad Pro Bold", sans-serif;
}

.hero__left h1 b {
  color: var(--my-orange);
}

@media (max-width: 678px) {
  .hero__left h1 {
    font-size: 34px;
    text-align: center;
  }
}

.hero__description {
  font-size: 22px;
  font-family: "Sylfaen", sans-serif;
  margin-top: 75px;
}

@media (max-width: 678px) {
  .hero__description {
    max-width: 270px;
    font-size: 20px;
  }
}

.hero__grid {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  max-width: 570px;
  row-gap: 32px;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

@media (max-width: 678px) {
  .hero__grid {
    -ms-grid-columns: none;
        grid-template-columns: none;
    row-gap: 24px;
    margin-top: 30px;
  }
}

.hero__item {
  padding-left: 40px;
  position: relative;
  font-size: 20px;
  font-family: "Myriad Pro Regular", sans-serif;
}

.hero__item b {
  font-family: "Myriad Pro Bold", sans-serif;
}

.hero__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/tick.png);
  width: 20px;
  height: 20px;
}

.hero__circle {
  position: absolute;
  border: 1px solid var(--my-orange);
  border-radius: 50%;
  text-align: center;
  height: 150px;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: -110px;
  top: calc(50% + 30px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  font-family: "Sylfaen", sans-serif;
}

@media (max-width: 678px) {
  .hero__circle {
    right: -16px;
    top: calc(50% + 170px);
    font-size: 18px;
    height: 140px;
    width: 140px;
  }
}

.info {
  margin-top: 60px;
}

@media (max-width: 678px) {
  .info {
    margin-top: 30px;
  }
}

.info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 678px) {
  .info > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}

.info__right {
  max-width: 262px;
  width: 100%;
}

@media (max-width: 678px) {
  .info__right {
    max-width: 100%;
  }
}

.info__form {
  padding: 38px 18px 80px;
  background: #000;
  border-top-left-radius: 60px;
}

.info__form form {
  margin-top: 20px;
}

.info__form h3 {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1.5px;
}

.info__form button {
  width: auto;
  margin: 0 auto;
  margin-top: 20px;
}

.info__reviews {
  padding: 38px 24px 10px;
  border-top-left-radius: 60px;
  background: white;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.info__reviews h3 {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.info__review {
  padding-bottom: 16px;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  margin-top: 16px;
}

.info__review:not(.info__review:last-child) {
  border-bottom: 1px solid #cdcbcb;
}

.info__review > div {
  -webkit-transform: translateX(-16px);
          transform: translateX(-16px);
}

.info__review__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info__review__name {
  font-family: "Sylfaen", sans-serif;
  font-size: 18px;
}

.info__review__date {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--my-gray);
}

.info__review p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.info__features {
  padding: 30px;
  border-top-right-radius: 60px;
  -webkit-box-shadow: 0 1px 3px -2px var(--my-gray);
          box-shadow: 0 1px 3px -2px var(--my-gray);
  background: white;
}

.info__features ul {
  font-size: 18px;
}

.info__features ul b {
  font-family: "Myriad Pro Bold";
}

.info__features ul li {
  position: relative;
  line-height: 24px;
}

.info__features ul li:not(:first-child) {
  margin-top: 30px;
}

.info__features ul li img {
  margin-right: 10px;
}

.info__search {
  margin-top: 60px;
}

.info__search h2 {
  font-size: 36px;
  font-family: "Myriad Pro Bold", sans-serif;
  max-width: 92%;
}

.info__search h2 b {
  color: var(--my-orange);
}

@media (max-width: 678px) {
  .info__search h2 b {
    margin-top: 10px;
    display: block;
  }
}

.info__search__description {
  font-family: "Myriad Pro Regular", sans-serif;
  font-size: 18px;
  color: var(--my-gray);
  margin-top: 36px;
}

.info__search__description p {
  margin-top: 24px;
  line-height: 22px;
}

.info__search__cover {
  margin-top: 30px;
}

.info__qa {
  margin-top: 48px;
}

.info__qa__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.info__qa__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--my-orange);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Myriad Pro Bold", sans-serif;
  font-size: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 678px) {
  .info__qa__num {
    display: none;
  }
}

.info__qa h3 {
  font-size: 24px;
  font-family: "Myriad Pro Bold", sans-serif;
}

.info__qa h4 {
  font-size: 18px;
  margin-top: 10px;
  color: #4a4949;
  line-height: 22px;
}

.info__qa p {
  margin-top: 24px;
}

.info__qa p i {
  font-style: italic;
  line-height: 24px;
  color: #4a4949;
}

.info__qa__answer {
  font-family: "Myriad Pro Bold", sans-serif;
  font-size: 20px;
  margin: 24px 0;
  display: block;
}

.info__qa--one img {
  width: 100%;
}

.info__qa--two {
  padding: 42px 18px;
  background: white;
  -webkit-box-shadow: 0 1px 3px -2px var(--my-gray);
          box-shadow: 0 1px 3px -2px var(--my-gray);
}

.info__chat {
  margin-top: 36px;
}

.info__chat__mess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.info__chat__mess--us .info__chat__content p {
  background: var(--my-blue);
  max-width: 667px;
}

.info__chat__mess--them {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.info__chat__mess--them .info__chat__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.info__chat__mess--them .info__chat__content span {
  text-align: right;
}

.info__chat__mess--them .info__chat__content p {
  background: var(--my-dark-gray);
  border-top-right-radius: 0;
  border-top-left-radius: 20px;
  max-width: 667px;
}

.info__chat__media {
  margin-top: 18px;
  position: relative;
}

@media (max-width: 678px) {
  .info__chat__media {
    margin-top: 8px;
  }
}

.info__chat__media--play::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/play.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.info__chat__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.info__chat__icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--my-green);
  bottom: 14px;
  right: 14px;
}

.info__chat__content span {
  font-size: 16px;
  width: 100%;
  display: block;
}

.info__chat__content p {
  padding: 10px 24px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.info__post {
  background: var(--my-red);
  padding: 40px 32px 50px;
}

@media (max-width: 678px) {
  .info__post {
    padding: 32px 24px 40px;
  }
}

.info__post p {
  color: white;
  font-size: 18px;
  line-height: 22px;
}

.info__post p b {
  font-family: "Myriad Pro Bold", sans-serif;
}

.info__post__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.9fr 1.1fr;
      grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

@media (max-width: 678px) {
  .info__post__wrapper {
    -ms-grid-columns: none;
        grid-template-columns: none;
    gap: 24px;
  }
}

.info__post__wrapper p {
  margin-top: 10px;
}

.info__post__answer {
  font-size: 18px;
  font-family: "Myriad Pro Bold", sans-serif;
  color: white;
  margin-top: 20px;
  display: block;
  margin-bottom: 30px;
}

.info__post__disclaimer {
  margin-top: 32px;
  line-height: 24px;
}

.info__post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info__post__header div:last-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info__post__video {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.info__post__video::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/play.png);
  background-repeat: no-repeat;
}

.info__post__video.active::after {
  background: url(../images/pause.png);
}

.info__post h3 {
  font-size: 24px;
  font-family: "Myriad Pro Bold", sans-serif;
  color: white;
}

.footer {
  background: #000;
  color: white;
  padding: 50px 0;
  margin-top: 50px;
}

.footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 678px) {
  .footer > div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__company-name div {
  font-size: 24px;
  font-family: "Sylfaen", sans-serif;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}

.footer__company-name div span {
  color: var(--my-orange);
}

.footer__company-name p {
  font-size: 12px;
  margin-top: 4px;
  color: var(--my-gray);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 678px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__menu li a {
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.footer__menu li a:hover {
  color: var(--my-orange);
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 85px;
  margin-top: 18px;
}

@media (max-width: 678px) {
  .footer__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.footer__channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
}

.footer__channel > span {
  font-size: 14px;
  font-weight: bold;
  color: var(--my-orange);
  text-transform: uppercase;
}

.footer__channel div {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}

.footer__channel div > img {
  position: relative;
  z-index: 100;
  margin-right: 2px;
}

.footer__channel div > span {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background: var(--my-orange);
  width: 40px;
  height: 40px;
  z-index: 0;
  border-radius: 50%;
}

.footer__channel:hover > div span {
  width: 48px;
  height: 48px;
}

.navigation {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
}

.navigation a {
  color: #777677;
  text-transform: uppercase;
}

.navigation a.current {
  text-decoration: underline;
  font-weight: bold;
}

.navigation span {
  color: #dfdfdf;
}

.inner-page {
  margin-top: 48px;
}

.inner-page__title {
  font-size: 36px;
  font-family: "Myriad Pro Bold", sans-serif;
  margin-top: 20px;
}

.inner-page__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inner-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 44px;
  gap: 30px;
}

@media (max-width: 678px) {
  .inner-page__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}

.inner-page__left {
  width: 100%;
  border-top-right-radius: 60px;
  overflow: hidden;
}

.inner-page__right {
  max-width: 262px;
  width: 100%;
}

@media (max-width: 678px) {
  .inner-page__right {
    max-width: 100%;
  }
}

.inner-page__form {
  padding: 38px 18px 80px;
  background: #000;
  border-top-left-radius: 60px;
}

.inner-page__form form {
  margin-top: 20px;
}

.inner-page__form h3 {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1.5px;
}

.inner-page__form button {
  width: auto;
  margin: 0 auto;
  margin-top: 20px;
}

.inner-page__reviews {
  padding: 38px 24px 10px;
  border-top-left-radius: 60px;
  background: white;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.inner-page__reviews h3 {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.inner-page__review {
  padding-bottom: 16px;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  margin-top: 16px;
}

.inner-page__review:not(.inner-page__review:last-child) {
  border-bottom: 1px solid #cdcbcb;
}

.inner-page__review > div {
  -webkit-transform: translateX(-16px);
          transform: translateX(-16px);
}

.inner-page__review__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inner-page__review__name {
  font-family: "Sylfaen", sans-serif;
  font-size: 18px;
}

.inner-page__review__date {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--my-gray);
}

.inner-page__review p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.contacts__map {
  height: 292px;
  overflow: hidden;
}

.contacts__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  background: white;
  padding: 50px 30px;
  -webkit-box-shadow: 0 1px 3px -2px var(--my-gray);
          box-shadow: 0 1px 3px -2px var(--my-gray);
}

@media (max-width: 678px) {
  .contacts__wrapper {
    -ms-grid-columns: none;
        grid-template-columns: none;
    padding: 32px 18px;
    gap: 32px;
  }
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.contacts__item a {
  color: #000;
}

.contacts__item__icon {
  width: 48px;
  height: 48px;
  background: var(--my-orange);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contacts__item__label {
  font-size: 18px;
  color: var(--my-gray);
}

.contacts__item__value {
  font-family: "Myriad Pro Bold", sans-serif;
  font-size: 22px;
  margin-top: 10px;
}

.contacts__item__value span {
  font-family: "Myriad Pro Regular", sans-serif;
}

.contacts__form input,
.contacts__form textarea {
  border: 1px solid var(--my-gray);
}

.contacts__form button {
  margin-top: 20px;
  width: auto;
}

.privacy__cover {
  height: 300px;
}

.privacy__cover img {
  width: 100%;
  background-size: cover;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.privacy__content {
  -webkit-box-shadow: 0 1px 3px -2px var(--my-gray);
          box-shadow: 0 1px 3px -2px var(--my-gray);
  background: white;
  padding: 40px 30px 50px;
}

.privacy__content p {
  line-height: 24px;
  margin-top: 4px;
}

.privacy__content h3 {
  font-size: 18px;
  margin-top: 30px;
  line-height: 24px;
}

.privacy__content h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--my-orange);
  color: white;
  margin-right: 16px;
}

@media (max-width: 678px) {
  .privacy__num {
    margin-right: 4px;
  }
}
/*# sourceMappingURL=index.css.map */