@import url(colors.css);
@font-face {
  font-family: "Circe";
  src: url("/fonts/circe_bold.eot"); /* IE 9 Compatibility Mode */
  src: url("/fonts/circe_bold.eot?#iefix") format("embedded-opentype"), url("/fonts/circe_bold.woff2") format("woff2"), url("/fonts/circe_bold.woff") format("woff"), url("/fonts/circe_bold.ttf") format("truetype"), url("/fonts/circe_bold.svg#circe_bold") format("svg"); /* Chrome < 4, Legacy iOS */
  font-weight: 600;
}
@font-face {
  font-family: "Circe";
  src: url("/fonts/circe.eot"); /* IE 9 Compatibility Mode */
  src: url("/fonts/circe.eot?#iefix") format("embedded-opentype"), url("/fonts/circe.woff2") format("woff2"), url("/fonts/circe.woff") format("woff"), url("/fonts/circe.ttf") format("truetype"), url("/fonts/circe.svg#circe") format("svg"); /* Chrome < 4, Legacy iOS */
  font-weight: 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,
font,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
html {
  height: 100%;
}

body {
  font-family: "Circe", Arial, sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: var(--dark-color);
  -webkit-text-size-adjust: 100%;
  background: #fff;
  font-weight: 500;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.burger {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 111;
  width: 48px;
  height: 48px;
  transition: 0.5s;
}
.burger.open {
  position: fixed;
}
.burger.open:before {
  background: #fff;
  transform: rotate(-45deg);
  top: 50%;
  left: 15px;
  width: 28px;
  height: 3px;
  position: absolute;
  transition: 0.5s;
  transform-origin: center;
  transform: translateY(-50%) rotate(-225deg);
}
.burger.open:after {
  background: #fff;
  top: 50%;
  left: 15px;
  width: 28px;
  height: 3px;
  position: absolute;
  transition: 0.5s;
  transform-origin: center;
  transform: translateY(-50%) rotate(225deg);
}
.burger.open span:before {
  opacity: 0;
}
.burger:before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 15px;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  top: calc(50% + 7px);
  left: 24px;
  width: 19px;
  height: 3px;
  background: #fff;
  transition: 0.5s;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 28px;
  height: 3px;
  background: #fff;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .burger {
    display: block !important;
  }
}

.mobile-social {
  display: none;
}
@media (max-width: 767px) {
  .mobile-social {
    display: flex;
    justify-content: center;
    padding-top: 30px;
  }
}
.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--main-color);
  margin: 0 5px;
}
.mobile-social a img {
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 20px 0;
  transition: 0.5s;
  height: 70px;
}
@media (min-width: 768px) {
  .header.sticky-start {
    position: absolute;
    transform: translateY(-80px);
  }
  .header.sticky {
    position: fixed;
    background: rgb(248, 248, 248);
    transform: translateY(0px);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  }
  .header.sticky .main-menu li a {
    color: var(--dark-color);
  }
  .header.sticky .main-menu li a:hover {
    border-color: var(--dark-color);
  }
}

@media (max-width: 767px) {
  .main-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #ebebeb;
    padding: 30px 20px;
    transform: translateY(-50vh);
    transition: 0.5s;
  }
}
.main-menu.open {
  transform: translateY(0);
}
.main-menu ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .main-menu ul {
    flex-direction: column;
  }
}
.main-menu ul li {
  margin: 0 50px;
}
@media (max-width: 767px) {
  .main-menu ul li {
    margin: 10px 0;
    text-align: center;
  }
}
.main-menu ul li a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
}
@media (max-width: 767px) {
  .main-menu ul li a {
    color: var(--dark-color);
    text-align: center;
  }
}
.main-menu ul li a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.main-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 60px;
  background: url(/webp/bg-main.webp) 50% 50% no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.main-section h1 {
  font-size: 100px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .main-section h1 {
    font-size: 56px;
  }
}
.main-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
}
.main-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-section__content {
  position: relative;
  z-index: 8;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-section__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.main-section__btn-col {
  margin: 0 5px 15px 5px;
}
.main-section__btn-col-text {
  display: block;
  padding-top: 8px;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.logo {
  display: inline-block;
  margin-bottom: 10px;
}
.logo img {
  display: block;
  width: 225px;
  height: 225px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .logo img {
    width: 180px;
    height: 180px;
  }
}

.btn {
  display: inline-flex;
  justify-content: center;
  height: 66px;
  align-items: center;
  min-width: 200px;
  border-radius: 30px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 16px;
  transition: 0.5s;
}
.btn .icon {
  display: block;
  margin-right: 10px;
}
.btn .icon img {
  display: block;
  width: 40px;
  height: 40px;
}
.btn:hover {
  background: #fff;
  color: var(--main-color);
}
.btn--white {
  background: #fff;
  color: var(--main-color);
}
.btn--white:hover {
  background: var(--main-color);
  color: #ffffff;
}
.btn--white-border {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--white-border:hover {
  background: var(--main-color);
  color: #ffffff;
  border-color: var(--main-color);
}

h2 {
  font-size: 65px;
  color: var(--main-color);
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 34px;
    line-height: 40px;
  }
}

.about-section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .about-section {
    padding: 50px 0;
  }
}
.about-section p {
  text-align: center;
  font-size: 24px;
  color: var(--dark-color);
  max-width: 750px;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .about-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.about-title {
  display: block;
  text-align: center;
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .about-title {
    font-size: 22px;
  }
}

.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-item {
  width: calc(50% - 20px);
  margin-bottom: 40px;
  background: var(--grey-color);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .about-item {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .about-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about-item .icon {
  display: block;
  margin-right: 30px;
}
.about-item .icon img {
  display: block;
  width: 100px;
  height: 100px;
}
@media (max-width: 992px) {
  .about-item .icon img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 992px) {
  .about-item .icon {
    margin-right: 20px;
  }
}
.about-item__text {
  font-size: 22px;
  line-height: 1.1;
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .about-item__text {
    font-size: 18px;
  }
}
.about-social {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-social {
    flex-direction: column;
  }
}
.about-social__left {
  width: calc(50% - 20px);
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .about-social__left {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }
}
.about-social__right {
  width: calc(50% - 20px);
}
@media (max-width: 767px) {
  .about-social__right {
    width: 100%;
    justify-content: center;
    display: flex;
  }
}
@media (min-width: 993px) {
  .about-social__right .btn-social:hover {
    transform: rotate(10deg);
  }
  .about-social__right .btn-social:hover .icon {
    transform: rotate(-10deg);
  }
}

.btn-social {
  color: #ffffff;
  font-size: 18px;
  display: inline-flex;
  height: 55px;
  border-radius: 30px;
  background: var(--main-color);
  padding: 0 16px;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  transition: 0.5s;
}
.btn-social .icon {
  transition: 0.5s;
}
.btn-social .icon img {
  display: block;
  height: 20px;
}
@media (min-width: 993px) {
  .btn-social:hover {
    transform: rotate(-10deg);
  }
  .btn-social:hover .icon {
    transform: rotate(10deg);
  }
}

.steps-section {
  padding: 100px 0;
  background: var(--grey-color);
}
@media (max-width: 767px) {
  .steps-section {
    padding: 50px 0;
  }
}

.steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.step-item {
  width: 320px;
  padding-bottom: 50px;
  text-align: right;
  position: relative;
  z-index: 9;
}
@media (max-width: 800px) {
  .step-item {
    text-align: left;
    padding-left: 60px;
    width: 100%;
  }
}
.step-item:before {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background: var(--main-color);
  border: 2px solid #fff;
  z-index: 9;
}
@media (max-width: 800px) {
  .step-item:before {
    left: 0px;
  }
}
.step-item:after {
  content: "";
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  z-index: 1;
}
@media (max-width: 800px) {
  .step-item:after {
    left: 24px;
  }
}
.step-item:nth-child(1)::before {
  content: "1";
}
.step-item:nth-child(2):before {
  content: "2";
}
.step-item:nth-child(3):before {
  content: "3";
}
.step-item:nth-child(4):before {
  content: "4";
}
.step-item:nth-child(5):before {
  content: "5";
}
.step-item:nth-child(6):before {
  content: "6";
}
@media (min-width: 801px) {
  .step-item:nth-child(even) {
    text-align: left;
    margin-left: auto;
  }
  .step-item:nth-child(even):after {
    left: -60px;
  }
  .step-item:nth-child(even):before {
    left: -84px;
  }
  .step-item:nth-child(odd) {
    margin-right: auto;
  }
  .step-item:nth-child(odd):after {
    right: -62px;
  }
  .step-item:nth-child(odd):before {
    right: -86px;
  }
}
.step-item:last-child {
  margin-bottom: 0;
}
.step-item:last-child::after {
  display: none;
}
.step-item__title {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .step-item__title {
    font-size: 18px;
  }
}
.step-item p {
  font-size: 18px;
  line-height: 1.55;
}
@media (max-width: 767px) {
  .step-item p {
    font-size: 14px;
  }
}

.question {
  max-width: 950px;
  margin: 0 auto;
}
.question .accordion {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .question .accordion {
    margin-bottom: 18px;
  }
}
.question .accordion li {
  width: 100%;
  margin-bottom: 1px;
  background: var(--grey-color);
  padding: 25px 30px;
  transition: 0.5s;
}
.question .accordion li:hover .opener span {
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .question .accordion li {
    padding: 20px 0px 20px 20px;
  }
}
.question .accordion li p {
  font-size: 18px;
  line-height: 1.45;
  text-align: left;
  max-width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .question .accordion li p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.question .accordion li p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .question .accordion li {
    padding: 20px;
  }
}
.question .accordion .opener {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  padding-right: 50px;
  transition: 0.5s;
  position: relative;
}
@media (max-width: 767px) {
  .question .accordion .opener {
    font-size: 16px;
  }
}
.question .accordion .opener span {
  position: absolute;
  right: 0px;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .question .accordion .opener span {
    top: calc(50% - 20px);
    transform: scale(0.8);
  }
}
.question .accordion .opener span:before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--dark-color);
  position: absolute;
  left: 8px;
  top: 19px;
  transition: 0.5s;
}
.question .accordion .opener span:after {
  content: "";
  width: 2px;
  height: 24px;
  background: var(--dark-color);
  position: absolute;
  left: 19px;
  top: 8px;
  transition: 0.5s;
}
.question .accordion .active .opener span {
  transform: rotate(-225deg);
  background: transparent;
}
@media (max-width: 767px) {
  .question .accordion .active .opener span {
    top: -10px;
    right: -10px;
  }
}
.question .accordion .active .opener .submenu li {
  border: none;
}
.question .submenu {
  overflow: hidden;
  display: none;
}
.question .submenu li {
  margin-bottom: 0;
  background: transparent;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-color);
  border: 0;
  padding: 12px 0 0 0;
}
.question .submenu li a:hover {
  text-decoration: none;
}

.rules-section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .rules-section {
    padding: 50px 0;
  }
}
.rules-section p {
  font-size: 18px;
  margin: 0 auto 50px;
  max-width: 550px;
  text-align: center;
}
@media (max-width: 767px) {
  .rules-section p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.rules-title {
  display: block;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .rules-title {
    font-size: 18px;
  }
  .rules-title br {
    display: none;
  }
}

.info-section {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .info-section {
    margin-bottom: 50px;
  }
}

.info-content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .info-content {
    flex-wrap: wrap;
  }
}
.info-content__text {
  width: calc(50% - 10px);
  background: var(--main-color);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1100px) {
  .info-content__text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .info-content__text {
    padding: 40px 20px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.info-content__title {
  font-size: 42px;
  margin-bottom: 30px;
  color: #fff;
}
.info-content p {
  font-size: 22px;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .info-content p {
    font-size: 18px;
  }
}
.info-content p:last-child {
  margin-bottom: 0;
}
.info-content__img {
  width: calc(50% - 10px);
  max-height: 560px;
}
@media (max-width: 767px) {
  .info-content__img {
    width: 100%;
  }
}
.info-content__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.responsibility-section {
  position: relative;
  padding: 200px 0;
}
@media (max-width: 992px) {
  .responsibility-section {
    padding: 100px 0;
  }
}
.responsibility-section p {
  display: block;
  font-size: 52px;
  line-height: 1.23;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .responsibility-section p {
    font-size: 24px;
  }
}
.responsibility-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
}

.responsibility__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.responsibility-content {
  position: relative;
  z-index: 9;
}

.responsibility {
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
}
@media (max-width: 992px) {
  .responsibility {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }
}

.responsibility-item {
  text-align: center;
  max-width: 360px;
}
@media (max-width: 992px) {
  .responsibility-item {
    margin-bottom: 30px;
    width: 100%;
  }
  .responsibility-item:last-child {
    margin-bottom: 0;
  }
}
.responsibility-item .icon {
  display: block;
  margin-bottom: 20px;
}
.responsibility-item .icon img {
  width: 50px;
  height: 50px;
}
@media (max-width: 992px) {
  .responsibility-item .icon {
    margin-bottom: 10px;
  }
}
.responsibility-item__title {
  display: block;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}
.responsibility-item__text {
  font-size: 18px;
  color: #fff;
}

.help-section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .help-section {
    padding: 0;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}

.help {
  padding: 40px;
  background: var(--main-color);
}
.help p {
  font-size: 32px;
  text-align: center;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .help p {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .help p:last-child {
    margin-bottom: 0;
  }
}

.footer-content {
  padding: 40px 20px;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
  }
}
.footer-content__info {
  font-size: 18px;
  color: #fff;
  line-height: 24px;
  width: 320px;
}
@media (max-width: 992px) {
  .footer-content__info {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .footer-content__menu {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-content__menu ul li {
  margin: 5px 0;
  text-align: center;
}
.footer-content__menu ul li a {
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: 0.5s;
}
.footer-content__menu ul li a:hover {
  border-color: transparent;
}
.footer-content__social {
  display: flex;
  justify-content: flex-end;
  width: 320px;
}
@media (max-width: 992px) {
  .footer-content__social {
    width: 100%;
    justify-content: center;
  }
}
.footer-content__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--main-color);
  margin: 0 5px;
  transition: 0.5s;
}
.footer-content__social a:hover {
  transform: scale(1.1);
}
.footer-content__social a img {
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.copy {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.header {
  transform: translateY(-90px);
}
.header.animate {
  animation: mainmenu 1s forwards 0.25s;
}

@keyframes mainmenu {
  to {
    transform: translateY(0);
  }
}
.fadeInUp {
  transform: translateY(-30px);
  opacity: 0;
}
.fadeInUp.animate {
  animation: fadeInUp 1s forwards 0.25s;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fadeInDown {
  transform: translateY(20px);
  opacity: 0;
}
.fadeInDown.animate {
  animation: fadeInDown 1s forwards 0.25s;
}

@keyframes fadeInDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.text-page {
  padding-bottom: 40px;
}
.text-page__title {
  display: block;
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 30px;
}
.text-page__content {
  font-size: 18px;
  color: var(--dark-color);
  line-height: 1.55;
}
@media (max-width: 992px) {
  .text-page__content {
    font-size: 16px;
  }
}
.text-page__content a {
  color: #ff8562;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--dark-color);
  padding: 40px 0;
}
@media (max-width: 992px) {
  .breadcrumbs {
    padding: 30px 0;
  }
}

.back {
  font-size: 16px;
  color: #707070;
  margin-right: 10px;
}

.sep {
  display: block;
  margin-right: 10px;
}/*# sourceMappingURL=styles.css.map */