:root {
  --yellow-color: #f5bb1c;
  --blue-color: #005288;
  --grey-color: #949a9c;
  --green-color: #6aa840;
}

body {
}
._container {
  max-width: 1230px;
  margin: 0px auto;
  padding: 0 15px;
}

.header {
  margin-top: 15px;
  margin-bottom: 15px;
}
.header__container {
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .header__top {
    gap: 10px;
  }
}
.header__logo {
  color: var(--yellow-color);
  font-size: 24px;
  font-weight: 700;
  max-width: 200px;
}
.header__menu {
  /* width: 100%; */
}
.menu-header {
  height: 100%;
}
@media (max-width: 768px) {
  .menu-header {
    height: 100%;
    width: 100%;
  }
}
.menu-header__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: var(--grey-color);
}
@media (max-width: 768px) {
  .menu-header__list {
    flex-direction: column;
  }
}
.menu-header__item {
  list-style: none;
}
.menu-header__item li {
  height: 100%;
}
.menu-header__item li:hover {
  color: #fff;
  background-color: var(--yellow-color);
  text-transform: uppercase;
}
.menu-header__item a {
  padding: 15px 25px;
  color: #fff;
  text-transform: uppercase;
  height: 100%;
  display: block;
}
.menu-header__item a:hover {
  display: block;
  height: 100%;
  color: #fff;
  background-color: var(--yellow-color);
  text-transform: uppercase;
}
.menu-header__item {
}

.menu-header__bottom {
}
.menu-header__bottom span {
  font-weight: 700;
}
.menu-header__bottom a {
  color: var(--blue-color);
}

/* MAIN */
.main {
  /* background-color: #006f6f; */
}
.swiper {
  /* display: none; */
  height: 500px;
}
.baner {
  background-color: var(--grey-color);
}
.baner__container {
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
  height: 500px;
}
@media (max-width: 768px) {
  .baner__container {
    flex-direction: column;
  }
}
.baner__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .baner__logo {
    display: none;
  }
}
.baner__descr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
  width: 500px;
}
@media (max-width: 768px) {
  .baner__descr {
    width: 100%;
  }
}
.baner__text {
  text-align: center;
  font-size: 36px;
  line-height: 120%;
  /* max-width: 40%; */
  font-weight: 700;
}
@media (max-width: 768px) {
  .baner__text {
    font-size: 24px;
  }
}
.baner__btn {
}
.baner__btn a {
  background-color: var(--yellow-color);
  border-radius: 26px;
  color: var(--green-color);
  font-size: 26px;
  padding: 15px 20px;
  display: block;
  font-weight: 900;
  transition: all 0.3s ease 0s;
}
.baner__btn a:hover {
  color: var(--yellow-color);
  background-color: var(--green-color);
}

/* ***************************** */
/* ***** SPOLLER-CSS START ***** */
/* ***************************** */

.spollers-block__item {
  margin: 0px 0px 10px 0px;
}

.spollers-block__item:last-child {
  margin: 0px 0px 0px 0px;
}

.spollers-block__title {
  background-color: #888;
  color: #fff;
  cursor: pointer;
  padding: 10px 70px 10px 10px;
  position: relative;
}

.spollers-block__title:before {
  content: '';
  width: 20px;
  background-color: #fff;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
  position: absolute;
  right: 15px;
  top: 50%;
}

.spollers-block__title:after {
  content: '';
  width: 20px;
  background-color: #fff;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  right: 29px;
  top: 50%;
}

.spollers-block__title._active:before {
  content: '';
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

.spollers-block__title._active:after {
  content: '';
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
}

.spollers-block__body {
  padding: 10px;
  /* background-color: teal; */
}
/* *************************** */
/* ***** SPOLLER-CSS END ***** */
/* *************************** */
.docs {
}
.docs__container {
}
._container {
}
.docs__header {
  text-align: center;
  padding: 30px 0;
  font-size: 36px;
}
.home-faq__spollers {
}
.spollers-block {
}
._spollers {
}
._one {
}
.spollers-block__item {
}
.spollers-block__title {
}
._spoller {
}
.spollers-block__body {
}
.spollers-block__body a {
  display: block;
  color: inherit;
  padding: 10px 0;
}
.footer {
  margin-top: 20px;
  padding: 20px 0 0;
  background-color: #333;
  color: #fff;
}
.footer__contacts {
  text-align: center;
}
.footer__contacts h3 {
  padding: 10px 0;
  font-size: 24px;
}
.footer__contacts p {
  margin-bottom: 10px;
}

.footer__contacts a {
  margin-bottom: 10px;
  display: block;
  color: #fff;
  text-decoration: underline;
}

.email-link {
}
.social {
}
.fab {
}
.fa-linkedin {
}
.footer__copy {
  background-color: #555;
  padding: 5px 0;
  font-size: 12px;
  text-align: center;
}
/* MAIN */
