/*!
Theme Name: pisheblock
Theme URI: http://underscores.me/
Author: Ilya Beskaravainyi
Author URI: http://underscores.me/
Description: Theme 2024
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pisheblock
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

pisheblock is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: #222222;
  --burger-color-active: #222222;
  --container-width: 1464px;
  --container-padding: 30px;
  --font-default: "Inter", sans-serif;
  --transition: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --transition2: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --transition3: cubic-bezier(0.715, -0.235, 0.12, 1.3);
  --bg-body: 4;
  --color-body: #222222;
  --color-text: #222222;
  --primary: #e3001d;
  --primary-dark: #b4071e;
  --secondary: #f5cb4c;
  --bg: #f9f6ed;
}

@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }
}

/* responsive */
@font-face {
  font-family: "Molot";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Molot.woff2") format("woff2");
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

ul,
li {
  list-style: none;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

input,
a {
  outline: none !important;
  color: var(--color-text);
  text-decoration: none;
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
}

@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}

body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}

@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger-content {
  background: white;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  height: calc(100vh - 65px);
  overflow-y: scroll;
  display: none;
  z-index: 999;
  padding: 15px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .burger-content {
    display: none !important;
  }
}

.burger-content__nav {
  display: flex;
  flex-direction: column;
  /* border-top: 1px solid #F1F1F1; */
  margin-bottom: 20px;
}

.burger-content__nav._inline {
  display: inline !important;
}

@media (max-width: 991px) {
  .burger-content__nav {
    /* max-height: calc(100% - 100px);
    overflow-y: scroll; */
  }
}

.burger-content__nav li a {
  display: block;
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0;
  position: relative;
}

.burger-content__nav-call::after,
.burger-content__nav-call-ohrana::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
  width: 22px;
  height: 8px;
  background-image: url("assets/img/questions-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}

.burger-content__back {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
  cursor: pointer;
  padding-bottom: 10px;
  margin-left: -5px;
}

.burger-content__back img {
  transform: rotate(90deg);
  width: 22px;
  height: 8px;
}

.burger-content__menu {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 30px;
}

.burger-content__menu li {
  grid-column: 6 span;
}

.burger-content__menu li a {
  opacity: 0.5;
}

.burger-content .burger-wrapper {
  display: none;
}

.burger-content .burger-wrapper.active {
  display: block;
}

.burger {
  cursor: pointer;
  display: none;
  width: 26px;
  position: relative;
  z-index: 1000;
  padding-bottom: 7.5px;
}

@media screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}

.burger i {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #e3001d;
  transition: all 0.2s ease-out;
}

.burger i::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #e3001d;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -6px;
}

.burger i::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #e3001d;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -6px;
}

.burger.active i {
  background: transparent;
}

.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}

.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

.top {
  background: var(--bg);
  padding: 25px 0;
}

.top__body {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

@media screen and (max-width: 768px) {
  .top__body {
    row-gap: 15px;
  }
}

.top__offer {
  font-family: "Molot", sans-serif;
  font-size: 40px;
  line-height: 47px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .top__offer {
    font-size: 30px;
    line-height: 37px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
}

.aioseo-breadcrumbs {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  column-gap: 8px;
  flex-wrap: wrap;
  row-gap: 5px;
}

.aioseo-breadcrumbs a {
  font-weight: 400;
}

.breadcrumbs__item a {
  font-weight: 400;
}

.breadcrumbs__separator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--secondary);
}

.aioseo-breadcrumb-separator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  content: "";
  font-size: 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  border: none;

  text-align: center;
  background: var(--primary);
  color: white;
  font-family: "Molot", sans-serif;
  font-size: 20px;
  line-height: 23px;
  padding: 16px 24px;
  display: inline-block;

  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: var(--primary-dark);
}

.btn--outline {
  font-family: "Molot", sans-serif;
  font-size: 20px;
  line-height: 23px;
  padding: 16px 18px;
  color: var(--primary);
  border: 2px solid var(--primary);
  display: inline-block;
}

.btn--outline:hover {
  opacity: 1;
  background: var(--primary);
  color: white;
}

h2,
.s-title {
  font-family: "Molot", sans-serif;
  font-size: 32px;
  line-height: 37px;
  position: relative;
  padding-left: 46px;
  margin-bottom: 45px;
}

@media screen and (max-width: 1199px) {
  h2,
  .s-title {
    font-size: 28px;
    line-height: 33px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  h2,
  .s-title {
    font-size: 21px;
    line-height: 26px;
    padding-left: 30px;
    margin-bottom: 20px;
  }
}

h2::before,
.s-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  background: var(--secondary);
}

@media screen and (max-width: 768px) {
  h2::before,
  .s-title::before {
    width: 20px;
    height: 20px;
  }
}

h3 {
  font-family: "Molot", sans-serif;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

p {
  line-height: 22px;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

[data-tab] {
  display: none;
  opacity: 0;

  transition: opacity 0.4s ease;
}
[data-tab]._active {
  display: block;
}
[data-tab]._show {
  opacity: 1;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.section-top h2 {
  margin-bottom: 0;
}

.slider-arrows {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.slider-arrow {
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.slider-arrow:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .slider-arrow img {
    width: 36px;
  }
}

.swiper-scrollbar {
  position: absolute;
  width: 100% !important;
  left: 0 !important;
  bottom: 0 !important;
  background: #f1f1f1 !important;
  border: 1px solid white;
  overflow: visible !important;
  border-radius: 0;
}

.swiper-scrollbar-drag {
  background: var(--primary);
  /* height: 4px !important; */
  border-radius: 0;
}

.header {
  position: relative;
  z-index: 1000;
}

.header__top {
  background: var(--bg);
  padding: 19px 0 17.5px;
}

.header__top-left--mob {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__top-left--mob {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}

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

.header__top-nav {
  display: flex;
  align-items: center;
  column-gap: 60px;
  font-weight: 300;
}

@media (max-width: 991px) {
  .header__top-nav {
    column-gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .header__top-nav {
    display: none;
  }
}

.header__top-nav a:hover {
  opacity: 1;
  color: var(--secondary);
}

.header__top-right {
  display: flex;
  align-items: center;
  column-gap: 40px;
}

@media (max-width: 991px) {
  .header__top-right {
    column-gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .header__top-right img {
    max-width: 20px;
  }
}

@media screen and (max-width: 480px) {
  .header__top-right img {
    max-width: 17px;
  }
}

.header__top-right-item {
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.header__top-right-item:hover {
  opacity: 0.6;
}

.header__top-right-item--mob {
  display: none;
}

@media screen and (max-width: 992px) {
  .header__top-right-item--mob {
    display: flex;
    align-items: center;
  }
}

.header__content {
  border-bottom: 2px solid var(--bg);
  background: white;
}

@media screen and (max-width: 768px) {
  .header__content {
    display: none;
  }
}

.header__content-body {
  display: flex;
  align-items: center;
}

.header__logo {
  padding-right: 31px;
  display: flex;
  align-items: center;
  /* border-bottom: 2px solid var(--bg); */
  height: 89px;
}

.header__logo--mob {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__logo--mob {
    display: flex;
    align-items: center;
  }
}

.header__logo--mob img {
  max-width: 120px;
}

@media screen and (max-width: 480px) {
  .header__logo--mob img {
    max-width: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .header__logo {
    margin-right: 20px;
  }

  .header__logo img {
    max-width: 150px;
  }
}

.header__content-ul {
  /* display: grid;
  grid-template-columns: repeat(12, 1fr); */
  display: flex;
  align-items: center;
  border-left: 2px solid var(--bg);
  width: 100%;
}

.header__content-ul li {
  flex: 1;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .header__content-ul {
    border-left: 0;
  }
}

.header__content-ul a {
  display: flex;
  padding: 15.5px 30px;
  border-right: 2px solid var(--bg);
  height: 89px;
  align-items: center;
  justify-content: center;
  /* border-bottom: 2px solid var(--bg); */
}

@media (max-width: 1450px) {
  .header__content-ul a {
    font-size: 14px;
    line-height: 18px;
  }

  .header__top-nav a {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 1400px) {
  .header__content-ul a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__content-ul a:hover {
  opacity: 1;
  color: var(--secondary);
}

/* @media (max-width: 1400px) {
  .header__content-ul a {
    padding: 30px;
  }
} */

@media screen and (max-width: 1200px) {
  .header__content-ul a {
    border-right: 0;
    padding: 30px 12px;
  }
}

.header__social {
  /* margin-left: auto; */
  padding-left: 20px;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  height: 89px;
  /* border-bottom: 2px solid var(--bg); */
}

@media screen and (max-width: 1200px) {
  .header__social {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}

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

.header__content-right {
  /* margin-left: 30px; */
  text-align: right;
  min-height: 89px;
  /* border-bottom: 2px solid var(--bg); */
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  max-width: 270px;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .header__content-right {
    margin-left: 20px;
  }
}

@media screen and (max-width: 992px) {
  .header__content-right {
    display: none;
  }
}

.header__content-right--mob {
  display: none;
}

@media screen and (max-width: 992px) {
  .header__content-right--mob {
    display: block;
    text-align: left;
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.header__phone {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  display: inline-block;
  margin-bottom: 4px;
}

.header__phone:hover {
  opacity: 1;
  color: var(--secondary);
}

@media screen and (max-width: 992px) {
  .header__phone {
    font-size: 20px;
    line-height: 25px;
  }
}

.header__adress {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.dropdown {
  position: absolute;
  z-index: 100;
  background: white;
  width: 100%;
  display: none;
  top: 237px;
  z-index: 1111;
}

.dropdown-profs {
  position: absolute;
  z-index: 100;
  background: white;
  width: 100%;
  display: none;
  top: 237px;
  z-index: 1111;
}

.dropdown-profs.active {
  display: block;
}

.dropdown.active {
  display: block;
}

.dropdown__body {
  border-left: 2px solid var(--bg);
  /* height: 359px; */
  display: flex;
}

.dropdown__tabs {
  min-width: 286px;
  border-right: 2px solid var(--bg);
}

.dropdown__tab {
  cursor: pointer;
  border-bottom: 2px solid var(--bg);
  font-weight: 500;
  padding: 30px;
  transition: 0.3s ease;
}

.dropdown__tab.active,
.dropdown__tab:hover {
  background: var(--bg);
  border-color: var(--primary);
}

.dropdown__content {
  background: var(--bg);
  padding: 20px;
  width: 100%;
}

.dropdown__items {
  /* flex-direction: column; */
  flex-wrap: wrap;
  /* max-height: 320px; */
  display: none;
  /* width: -moz-fit-content; */
  width: 100%;
  display: block;
  grid-template-columns: repeat(15, 1fr);
}

.dorpdownColWrap {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
}

.dropdownCol {
  grid-column: 3 span;
}

.dropdown__item img {
  width: 40px;
}

.dropdown__items.active {
  display: block;
}

.dropdown__item {
  display: flex;
  /* align-items: center; */
  column-gap: 20px;
  padding: 10px 30px;
  /* height: 80px; */
  /* min-width: 240px; */
  /* width: fit-content; */
  flex: 30% 1 0;
  grid-column: 3 span;
}

@media (max-width: 1199px) {
  .dropdown__item {
    grid-column: 6 span;
  }

  .dropdownCol {
    grid-column: 6 span;
  }
}

.dropdown__overlay {
  position: absolute;
  z-index: 99;
  height: 100vh;
  width: 100%;
  background: #222222;
  opacity: 0.2;
  top: 155px;
  left: 0;
  display: none;
}

.dropdown__overlay.active {
  display: block;
}

.main {
  position: relative;
  overflow: hidden;
  padding-top: 109px;
}

.main::before {
  content: "";
  position: absolute;
  width: 189px;
  height: 191px;
  background-image: url("assets/img/main-star-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  left: -54px;
  top: 42px;
  z-index: 0;
}

.main::after {
  content: "";
  position: absolute;
  width: 335px;
  height: 338px;
  background-image: url("assets/img/main-star-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  left: 48%;
  transform: translateX(-50%);
  bottom: -32px;
  z-index: 0;
}

@media screen and (max-width: 992px) {
  .main {
    padding-top: 0px;
  }
}

.main__body {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 20px;
  column-gap: 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .main__body {
    flex-direction: column;
    row-gap: 30px;
  }
}

.main__left {
  max-width: 600px;
  margin-top: 41px;
}

@media screen and (max-width: 1200px) {
  .main__left {
    max-width: 500px;
  }
}

@media screen and (max-width: 992px) {
  .main__left {
    max-width: 100%;
  }
}

.main__left-img {
  display: inline-block;
  margin-bottom: 20px;
  max-width: 285px;
}

@media screen and (max-width: 768px) {
  .main__left-img {
    max-width: 200px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .main__left-img {
    max-width: 150px;
  }
}

.main__left-img img {
  max-width: 100%;
}

.main__offer {
  font-family: "Molot", sans-serif;
  font-size: 52px;
  line-height: 61px;
  margin-bottom: 20px;
  margin-top: 0;
}

@media screen and (max-width: 1200px) {
  .main__offer {
    font-size: 42px;
    line-height: 51px;
  }
}

@media screen and (max-width: 768px) {
  .main__offer {
    font-size: 32px;
    line-height: 41px;
  }
}

@media screen and (max-width: 480px) {
  .main__offer {
    font-size: 27px;
    line-height: 36px;
  }
}

.main__desc {
  max-width: 521px;
}

@media screen and (max-width: 992px) {
  .main__desc {
    max-width: 100%;
  }
}

.main__video {
  width: 50%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 455px;
  display: block;
}

.main__video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
}

@media screen and (max-width: 1200px) {
  .main__video {
    height: 400px;
  }
}

@media screen and (max-width: 992px) {
  .main__video {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main__video {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .main__video {
    height: 250px;
  }
}

.main__video span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-backdrop-filter: grayscale(100%);
  backdrop-filter: grayscale(100%);
}

.main__video::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 34px;
  width: 140px;
  height: 52px;
  background-image: url("assets/img/main-video-img.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}

.mainadvs {
  background: var(--secondary);
  padding: 30px 0;
}

.mainadvs__body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 93px;
  column-gap: 93px;
  row-gap: 30px;
}

@media screen and (max-width: 1200px) {
  .mainadvs__body {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .mainadvs__body {
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.mainadvs__item {
  grid-column: 4 span;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 992px) {
  .mainadvs__item {
    grid-column: 6 span;
  }
}

@media screen and (max-width: 768px) {
  .mainadvs__item {
    grid-column: 12 span;
  }
}

.mainadvs__item-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}

.popular {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .popular {
    padding-bottom: 40px;
  }
}

.popular__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
}

@media screen and (max-width: 768px) {
  .popular__items {
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.popular__item {
  grid-column: 4 span;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .popular__item {
    grid-column: 6 span;
  }
}

@media screen and (max-width: 768px) {
  .popular__item {
    grid-column: 12 span;
  }
}

.popular__item-img {
  min-height: 320px;
  display: block;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.2s linear;
}

.popular__item-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
  display: none;
}

@media screen and (max-width: 992px) {
  .popular__item-img {
    min-height: 280px;
  }
}

@media screen and (max-width: 480px) {
  .popular__item-img {
    min-height: 250px;
  }
}

.popular__item-img span {
  position: absolute;
  top: 20px;
  left: 0;
  color: white;
  padding: 4px 4px 4px 10px;
  background: var(--primary);
  z-index: 2;
  font-weight: 500;
  display: inline-block;
}

.popular__item-img span::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 0;
  width: 12px;
  height: 100%;
  background-image: url("assets/img/popular-span-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: cover;
}

.popular__item-bottom {
  border-top: 5px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8f8f8;
  padding: 24px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .popular__item-bottom {
    padding: 20px;
  }
}

.popular__item-tags {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding-left: 12px;
  row-gap: 10px;
}

.popular__item-tag {
  background-color: #f7e09d;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  padding: 5px 17px;
  font-size: 14px;
  line-height: 16px;
}

.popular__item-tag::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 12px;
  height: 100%;
  background-image: url("assets/img/popular-tag-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.popular__item-tag::after {
  content: "";
  position: absolute;
  right: -12px;
  width: 12px;
  top: 0;
  height: 100%;
  background-image: url("assets/img/popular-tag-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.popular__item-offer {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
  display: inline-block;
}

.popular__item-price {
  margin-bottom: 16px;
  color: #888888;
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  line-height: 19px;
  -moz-column-gap: 7px;
  column-gap: 7px;
}

.popular__item-price span {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #222222;
}

.popular__item-btns {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

@media screen and (max-width: 480px) {
  .popular__item-btns {
    flex-direction: column;
    row-gap: 10px;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.popular__item-btns a {
  padding: 0 18px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .popular__item-btns a {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .popular__item-btns a {
    font-size: 16px;
    line-height: 19px;
  }
}

@media screen and (max-width: 768px) {
  .popular__item-btns a {
    height: 45px;
  }
}

.specialties {
  padding: 85px 0;
}

@media screen and (max-width: 768px) {
  .specialties {
    padding: 40px 0;
  }
}

.specialties__tab {
  cursor: pointer;
}

.specialties__items {
  display: none;
}

.specialties__items.active {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
}

@media screen and (max-width: 768px) {
  .specialties__items.active {
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
  }
}

.specialties__item {
  grid-column: 3 span;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  background: var(--bg);
  padding: 30px 40px;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .specialties__item {
    grid-column: 4 span;
  }
}

@media screen and (max-width: 768px) {
  .specialties__item {
    grid-column: 6 span;
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .specialties__item {
    padding: 20px 10px;
  }
}

.specialties__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .specialties__item-img img {
    width: 60px;
  }
}

.specialties__item-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .specialties__item-text {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .specialties__item-text {
    font-size: 14px;
    line-height: 18px;
  }
}

.advsvid {
  position: relative;
  margin-bottom: 50px;
}

@media screen and (max-width: 992px) {
  .advsvid {
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .advsvid {
    margin-bottom: 30px;
  }
}

.advsvid__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 46px;
  column-gap: 46px;
}

@media screen and (max-width: 1200px) {
  .advsvid__body {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  .advsvid__body {
    flex-direction: column;
    row-gap: 30px;
  }
}

.advsvid__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 30px;
}

@media screen and (max-width: 1200px) {
  .advsvid__items {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  .advsvid__items {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .advsvid__items {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}

.advsvid__items::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 65%;
  transform: translateY(-50%);
  width: 100%;
  background: var(--bg);
  z-index: 0;
}

@media screen and (max-width: 992px) {
  .advsvid__items::before {
    top: 0;
    height: 100%;
    transform: none;
  }
}

.advsvid__items::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  height: 100%;
  background: white;
  z-index: 0;
}

@media screen and (max-width: 992px) {
  .advsvid__items::after {
    display: none;
  }
}

.advsvid__items .advs__slide {
  grid-column: 3 span;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .advsvid__items .advs__slide {
    grid-column: 6 span;
  }
}

.advsvid__video {
  display: block;
  min-width: 420px;
  height: 277px;
  position: relative;
  box-shadow: 10px 10px 0 0 var(--primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .advsvid__video {
    box-shadow: 5px 5px 0 0 var(--primary);
  }
}

.advsvid__video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
  display: none;
}

@media screen and (max-width: 992px) {
  .advsvid__video {
    min-width: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .advsvid__video {
    height: 250px;
  }
}

.howed {
  position: relative;
  padding: 135px 0;
  color: white;
  z-index: 1;
  /* background: url('assets/img/types-bg.svg"') center / 100% auto no-repeat; */
  /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */

  &::before {
    position: absolute;
    content: "";
    inset: 0;
    clip-path: polygon(0 20%, 100% 0, 100% 80%, 0% 100%);
    background-color: var(--primary);
    z-index: -1;
  }
}

.howed--course {
  padding-top: 67px;
}

@media screen and (max-width: 767px) {
  .howed {
    padding: 100px 0;
    &::before {
      clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
    }
  }

  .howed--course {
    padding-top: 57px;
  }
}

.howed__body {
  position: relative;
  z-index: 1;
}

.howed__body::before {
  content: "";
  position: absolute;
  left: -161px;
  bottom: -83px;
  background-image: url("assets/img/types-star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  width: 263px;
  height: 265px;
}

@media screen and (max-width: 768px) {
  .howed__body {
    flex-direction: column;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 24px;
  }
}

.howed__slider {
  overflow: hidden;
}

.howed__slide {
  height: 340px;
  overflow: hidden;
  display: block;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.howed__slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
  display: none;
}

@media screen and (max-width: 480px) {
  .howed__slide {
    height: 250px;
  }
}

.articles {
  background-color: var(--bg);
  margin-bottom: 85px;
  padding: 70px 0 85px;
  background-image: url("assets/img/articles-bg.svg");
  background-position: center;
  background-repeat: repeat;
}

@media screen and (max-width: 768px) {
  .articles {
    margin-bottom: 40px;
    padding: 40px 0;
  }
}

.articles .blog__item-bottom {
  background: white;
}

.articles__btn {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  color: var(--primary);
  font-family: "Molot", sans-serif;
  font-size: 20px;
  line-height: 23px;
}

.partners {
  padding-bottom: 85px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .partners {
    padding-bottom: 40px;
  }
}

.partners__slider .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}

.partners__slider .swiper-slide {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .partners__slider .swiper-slide {
    width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .partners__slider .swiper-slide {
    width: 150px;
  }
}

.partners__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__slide img {
  max-width: 100%;
}

.blog {
  padding: 45px 0 85px;
}

@media screen and (max-width: 768px) {
  .blog {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .blog__tabs-wrapper {
    overflow-x: scroll;
  }
}

.blog__tabs {
  display: flex;
  margin-bottom: 30px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  border-bottom: 1px solid #f1f1f1;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .blog__tabs {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

.blog__tab,
.blog__tabs li a {
  color: rgba(34, 34, 34, 0.8);
  white-space: nowrap;
  padding-bottom: 20px;
  border-bottom: 3px solid transparent;
  transition: none;
}

@media (max-width: 767px) {
  .blog__tab,
  .blog__tabs li a {
    padding-bottom: 15px;
  }
}

.blog__tabs li a:hover {
  opacity: 1;
  border-color: var(--primary);
}

@media screen and (max-width: 768px) {
  .blog__tab {
    padding-bottom: 15px;
  }
}

.blog__tabs {
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .blog__tabs {
    padding-bottom: 15px;
  }
}

.blog__tabs li.current-menu-item a {
  opacity: 1;
  font-weight: 500;
  border-color: var(--primary);
}

.blog__tabs li {
  display: block;
}

.blog__tab.active,
.blog__tab:hover {
  opacity: 1;
  font-weight: 500;
  border-color: var(--primary);
}

.blog__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
}

@media screen and (max-width: 768px) {
  .blog__items {
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.blog__item-big {
  grid-column: 6 span;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 14px;
  padding: 30px;
  border-bottom: 4px solid var(--primary);
  position: relative;
  min-height: 300px;
}

@media screen and (max-width: 768px) {
  .blog__item-big {
    grid-column: 12 span;
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .blog__item-big {
    min-height: 250px;
  }
}

.blog__item-big::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: grayscale(100%);
  backdrop-filter: grayscale(100%);
  display: none;
}

.blog__item-big-offer {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}

@media screen and (max-width: 992px) {
  .blog__item-big-offer {
    font-size: 20px;
    line-height: 25px;
  }
}

.blog__item-big-date {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 16px;
}

.blog__item {
  grid-column: 3 span;
  border-bottom: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 992px) {
  .blog__item {
    grid-column: 6 span;
  }
}

@media screen and (max-width: 768px) {
  .blog__item {
    grid-column: 12 span;
  }
}

.blog__item-img {
  display: inline-block;
  height: 280px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .blog__item-img {
    height: 230px;
  }
}

@media screen and (max-width: 480px) {
  .blog__item-img {
    height: 180px;
  }
}

.blog__item-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(100%);
  backdrop-filter: grayscale(100%);
  z-index: 0;
  display: none;
}

.blog__item-bottom {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 10px;
  padding: 16px 16px 10px 16px;
  height: 120px;
}

.blog__item-offer {
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 600;
}

.blog__item-offer:hover {
  opacity: 1;
  color: var(--primary);
}

.blog__item-date {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.6;
}

.blog__item-img--video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  background-image: url("assets/img/play.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .blog__item-img--video::before {
    width: 50px;
    height: 50px;
  }
}

.blog__more {
  text-align: center;
  margin-top: 45px;
}

.single__body {
  padding: 45px 0 85px;
}

@media screen and (max-width: 768px) {
  .single__body {
    padding: 40px 0;
  }
}

.article_video {
  display: block;
}

.article_video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  background-image: url("assets/img/play.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 1;
}

.single__img,
.article_video {
  position: relative;
  box-shadow: 10px 10px 0 0 var(--primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  .single__img,
  .article_video {
    box-shadow: 5px 5px 0 0 var(--primary);
  }
}

.single__img::after,
.article_video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
  display: none;
}

@media screen and (max-width: 992px) {
  .single__img,
  .article_video {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .single__img,
  .article_video {
    height: 300px;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 480px) {
  .single__img,
  .article_video {
    height: 250px;
  }
}

.single__wrapper {
  display: flex;
  -moz-column-gap: 80px;
  column-gap: 80px;
}

@media screen and (max-width: 768px) {
  .single__wrapper {
    flex-direction: column;
  }
}

.single__content {
  width: 75%;
}

@media screen and (max-width: 992px) {
  .single__content {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .single__content {
    width: 100%;
  }
}

.single__content {
  line-height: 22px;
}

.single__content h2:not(:first-child) {
  margin-top: 85px;
}

@media screen and (max-width: 992px) {
  .single__content h2:not(:first-child) {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .single__content {
    font-size: 14px;
    line-height: 20px;
  }

  .single__content h2:not(:first-child) {
    margin-top: 35px;
  }
}

.single__content p:last-child {
  margin-bottom: 0;
}

.single__sidebar {
  width: 25%;
}

@media screen and (max-width: 992px) {
  .single__sidebar {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .single__sidebar {
    width: 100%;
    margin-top: 30px;
  }
}

.single__sidebar-items {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.single__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 60px;
  column-gap: 60px;
  margin-top: 85px;
}

@media screen and (max-width: 768px) {
  .single__buttons {
    margin-top: 50px;
  }
}

.single__button {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

@media screen and (max-width: 768px) {
  .single__button span {
    display: none;
  }
}

.teacher {
  padding: 25px 0 85px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .teacher {
    padding-bottom: 40px;
  }
}

.teacher::before {
  content: "";
  width: 100%;
  height: 445px;
  background: var(--bg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.teacher::after {
  content: "";
  position: absolute;
  top: 445px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("assets/img/teacher-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.teacher__body {
  position: relative;
  z-index: 1;
}

.teacher__wrapper {
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
  margin-top: 25px;
  align-items: flex-start;
}

@media screen and (max-width: 992px) {
  .teacher__wrapper {
    flex-direction: column;
  }
}

.teacher__img {
  width: 41.67%;
  height: 571px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .teacher__img {
    width: 100%;
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  .teacher__img {
    height: 300px;
  }
}

.teacher__img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(100%);
  backdrop-filter: grayscale(100%);
}

.teacher__content {
  width: 58.33%;
  background: white;
  border-bottom: 4px solid var(--primary);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .teacher__content {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .teacher__content {
    padding: 20px;
  }
}

.teacher__content::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  background-image: url("assets/img/teacher-right-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 165px;
  height: 166px;
  z-index: 0;
}

.teacher__offer {
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.teacher__suboffer {
  font-size: 14px;
  line-height: 16px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
  color: #c7c7c7;
  position: relative;
  z-index: 1;
}

.teacher__suboffer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  width: 80px;
}

.teacher__desc {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.teacher__bottom {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

@media screen and (max-width: 480px) {
  .teacher__bottom {
    flex-direction: column;
    row-gap: 20px;
    -moz-column-gap: 0;
    column-gap: 0;
    align-items: flex-start;
  }
}

.teacher__social {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

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

.teacher__social-item img {
  width: 45px;
  height: 45px;
}

.education {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .education {
    padding-bottom: 40px;
  }
}

.education__slider-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 24px;
}

.education__slide {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.education__slide span {
  font-size: 14px;
  line-height: 19px;
  opacity: 0.8;
}

.education__year {
  min-width: 94px;
  height: 41px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  background-image: url("assets/img/education-year.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  font-weight: 800;
  font-size: 18px;
  line-height: 18px;
}

.docs {
  padding-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .docs {
    padding-bottom: 30px;
  }
}

.docs__slider {
  overflow: hidden;
  padding-bottom: 10px;
}

.docs__slide {
  height: 453px;
  display: block;
  position: relative;
  box-shadow: 10px 10px 0 0 var(--primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .docs__slide {
    box-shadow: 5px 5px 0 0 var(--primary);
  }
}

.docs__slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
}

@media screen and (max-width: 768px) {
  .docs__slide {
    height: 400px;
  }
}

.whatdo {
  padding: 85px 0 45px;
  position: relative;
}

.whatdo::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: 127px;
  width: 335px;
  height: 338px;
  background-image: url("assets/img/what-star-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}

.whatdo::after {
  content: "";
  position: absolute;
  right: 62px;
  top: -62px;
  width: 253px;
  height: 255px;
  background-image: url("assets/img/what-star-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .whatdo {
    padding: 40px 0;
  }
}

.whatdo__body {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 24px;
  column-gap: 24px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .whatdo__body {
    flex-direction: column-reverse;
    row-gap: 35px;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.whatdo__left {
  width: 50%;
}

@media screen and (max-width: 992px) {
  .whatdo__left {
    width: 100%;
  }
}

.whatdo__video {
  position: relative;
  box-shadow: 10px 10px 0 0 var(--primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 449px;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .whatdo__video {
    box-shadow: 5px 5px 0 0 var(--primary);
  }
}

.whatdo__video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
  display: none;
}

@media screen and (max-width: 992px) {
  .whatdo__video {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .whatdo__video {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .whatdo__video {
    height: 250px;
  }
}

.advs {
  overflow: hidden;
  padding: 24px;
  background: var(--bg);
  margin-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .advs {
    margin-bottom: 40px;
  }
}

.advs__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.advs__slider .swiper-slide {
  width: 209px;
}

.advs__slide-offer {
  font-weight: 800;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .advs__slide-offer {
    font-size: 15px;
    line-height: 15px;
  }
}

.advs__slide-offer::before {
  content: "";
  background-image: url("assets/img/advs-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  width: 124px;
  height: 41px;
  position: absolute;
  left: -14px;
  bottom: -12px;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .advs__slide-offer::before {
    width: 104px;
    height: 31px;
    left: -14px;
    bottom: -10px;
  }
}

.advs__slide-offer span {
  position: relative;
  z-index: 1;
}

.advs__slide-offer strong {
  font-family: "Molot", sans-serif;
  font-size: 56px;
  line-height: 56px;
  display: inline-block;
  margin-right: 8px;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 768px) {
  .advs__slide-offer strong {
    font-size: 36px;
    line-height: 36px;
  }
}

.advs__slide-desc {
  font-size: 14px;
  line-height: 19px;
  opacity: 0.8;
}

.teachers {
  padding-bottom: 64px;
}

.teachers__slider {
  overflow: hidden;
}

.teachers__slide {
  text-align: center;
}

.teachers__slide-img {
  height: 333px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin-bottom: 16px;
}

.teachers__slide-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
  display: none;
}

.teachers__slide-offer {
  margin-bottom: 8px;
  display: block;
  position: relative;
}

.teachers__slide-offer::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  top: 12px;
  transform: translateY(-50%);
  left: 0;
  background: var(--primary);
  z-index: 0;
}

.teachers__slide-offer:hover {
  opacity: 1;
}

.teachers__slide-offer:hover span {
  color: #888888;
}

.teachers__slide-offer span {
  background: white;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  padding: 0 8px;
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 260px;
  transition: 0.3s ease;
}

.teachers__suboffer {
  color: #888888;
}

.types {
  padding: 140px 0 113px;
  margin-bottom: 40px;
  background-image: url("assets/img/types-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .types {
    padding: 100px 0;
  }
}

.types__body {
  display: flex;
  -moz-column-gap: 24px;
  column-gap: 24px;
  position: relative;
  z-index: 1;
}

.types__body::before {
  content: "";
  position: absolute;
  left: -161px;
  bottom: -83px;
  background-image: url("assets/img/types-star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  width: 263px;
  height: 265px;
}

@media screen and (max-width: 768px) {
  .types__body {
    flex-direction: column;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 24px;
  }
}

.types__item {
  color: white;
  height: 440px;
  border: 10px solid white;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  width: 50%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.types__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
}

.types__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(227, 0, 29, 0.4), rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .types__item {
    padding: 20px;
    height: 340px;
  }
}

@media screen and (max-width: 768px) {
  .types__item {
    width: 100%;
    height: 300px;
  }
}

.types__item-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  -moz-column-gap: 30px;
  column-gap: 30px;
  position: relative;
  z-index: 1;
}

.types__item-content-left {
  max-width: 560px;
}

.types__item-offer {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 8px;
}

.types__item-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.about {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .about {
    padding-bottom: 40px;
  }
}

.about__body {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 73px;
  column-gap: 73px;
}

@media screen and (max-width: 992px) {
  .about__body {
    flex-direction: column;
    row-gap: 30px;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.about__img {
  min-width: 556px;
}

@media screen and (max-width: 1200px) {
  .about__img {
    min-width: 400px;
  }
}

@media screen and (max-width: 992px) {
  .about__img {
    min-width: 0;
    max-width: 400px;
  }
}

.about__img img {
  max-width: 100%;
}

.course {
  padding: 25px 0 0px 0px;
  position: relative;
}

.course__wrapper {
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
  margin-top: 25px;
  align-items: flex-start;
}

@media screen and (max-width: 992px) {
  .course__wrapper {
    flex-direction: column;
    row-gap: 20px;
  }
}

.course__gallery {
  position: sticky;
  top: 20px;
  width: 510px;
  flex-shrink: 0;
  max-width: 100%;
}
.course__gallery-slider .swiper-slide {
  aspect-ratio: 1/0.8;
  display: block;
  opacity: 1 !important;
}
.course__gallery-slider .swiper-slide:hover img {
  transform: scale(1.08);
}
.course__gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);

  transition: transform .3s linear;
}
.course__gallery-wrapper {
  display: block;
  overflow: hidden;
  opacity: 1 !important;
}
.course__gallery-wrapper:hover .course__img {
  transform: scale(1.08);
}
.course__img {
  display: block;
  width: 100%;
  height: auto;

  transition: transform 0.3s ease;
}
.course__gallery-descr {
  font-size: 12px;
  line-height: 183%;
  color: #222;
  margin-top: 30px;

  transition: max-height 0.4s linear;
}
.course__gallery-descr-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 5px;
  font-size: 14px;
  color: #e3001d;
  margin-top: 15px;

  transition: max-height 0.3s linear;

  svg {
    width: 14px;
    height: 14px;

    transition: transform 0.3s ease;
  }
}
.course__gallery-descr-btn._active svg {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .course__gallery-descr-btn {
    display: none;
  }
}

.course__desc-wrapper {
  transition: opacity 0.3s ease;
}
.course__desc-wrapper._hide {
  * {
    &:nth-child(n + 3) {
      display: none;
      opacity: 0;
      transform: translateY(20px);

      transition: opacity 0.4s ease, transform 0.4s ease;

      &._block {
        display: block;
      }
      &._show {
        transform: translateY(0);
        opacity: 1;
      }
    }
  }
}
.course__desc-more {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  width: fit-content;

  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #e3001d;

  transition: color 0.3s ease;

  svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
  }
}
.course__desc-more._active svg {
  transform: rotate(180deg);
}
.course__desc-more:hover {
  color: #f5cb4c;
}

.course__content {
  width: 58.33%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .course__content {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .course__gallery {
    position: static;
    margin: 0 auto;
    width: 100%;
  }
}

.course__suboffer {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 19px;
  opacity: 0.4;
}

.course__offer {
  margin-bottom: 20px;
  margin-top: 0;
}

.course__bottom {
  background: #f8f8f8;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
}

@media screen and (max-width: 767px) {
  .course__head {
    margin-top: 20px;
  }
  .course__bottom {
    padding: 20px;
  }
  .course__desc-wrapper {
    margin-top: 20px;
  }
  .course__desc-more {
    font-size: 16px;
    gap: 10px;
  }
  .course__gallery-descr._hide {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

@media screen and (max-width: 480px) {
  .course__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.course__price {
  font-weight: 500;
  font-size: 28px;
  line-height: 39px;
  white-space: nowrap;
}

.course__btns {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

@media screen and (max-width: 480px) {
  .course__btns {
    flex-direction: column;
    row-gap: 10px;
    width: 100%;
    align-items: flex-start;
  }
}

.course__btns a {
  padding: 0px 18px;
  height: 56px;
  display: flex;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .course__btns a {
    width: 100%;
    justify-content: center;
    height: 45px;
  }
}

.course__ques {
  display: flex;
  align-items: center;
  display: inline-flex;
  -moz-column-gap: 30px;
  column-gap: 30px;
  border: 3px solid #f5f5f5;
  padding: 20px;
  font-weight: 600;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 20px;
}

.course__social {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

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

.course__social-item img {
  width: 45px;
  height: 45px;
}

.coursefor {
  background: var(--bg);
  padding: 70px 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .coursefor {
    padding: 40px 0;
    margin-bottom: 40px;
  }
}

.coursefor__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.coursefor__body .swiper-scrollbar {
  border-color: var(--bg);
  background: #e4e1d9 !important;
}

.coursefor__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
}

@media screen and (max-width: 768px) {
  .coursefor__items {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .coursefor__items {
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 20px;
  }
}

.coursefor__item {
  grid-column: 3 span;
  background: white;
  border-bottom: 3px solid var(--primary);
  padding: 30px 40px;
}

@media screen and (max-width: 1200px) {
  .coursefor__item {
    grid-column: 4 span;
  }
}

@media screen and (max-width: 992px) {
  .coursefor__item {
    grid-column: 6 span;
  }
}

@media screen and (max-width: 768px) {
  .coursefor__item {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .coursefor__item {
    grid-column: 12 span;
  }
}

.coursefor__item-sub {
  margin-bottom: 20px;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .coursefor__item-sub {
    margin-bottom: 15px;
  }
}

.coursefor__item-text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .coursefor__item-text {
    font-size: 17px;
    line-height: 21px;
  }
}

.coursefor__slider-wrapper {
  position: relative;
  padding-bottom: 24px;
}

.coursefor__slide {
  padding-right: 60px;
  position: relative;
}

.coursefor__slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 39px;
  height: 4px;
  width: 100%;
  background-image: url("assets/img/coursefor-line.svg");
  background-size: cover;
  background-repeat: repeat;
  background-position: left;
}

.coursefor__slider-num {
  margin-bottom: 24px;
  font-family: "Molot", sans-serif;
  font-size: 48px;
  line-height: 48px;
  position: relative;
}

.coursefor__slider-num span {
  position: relative;
  z-index: 1;
  margin-left: 9px;
}

.coursefor__slider-num::before {
  content: "";
  position: absolute;
  width: 62px;
  height: 34px;
  background-image: url("assets/img/coursefor-num.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  bottom: -9px;
  left: 0;
  z-index: 0;
}

.whatget__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
  padding-left: 22px;
}

@media screen and (max-width: 768px) {
  .whatget__items {
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 20px;
  }
}

.whatget__item {
  grid-column: 4 span;
  background: #f8f8f8;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  padding: 30px 40px;
  position: relative;
}

@media screen and (max-width: 992px) {
  .whatget__item {
    grid-column: 6 span;
  }
}

@media screen and (max-width: 768px) {
  .whatget__item {
    grid-column: 12 span;
  }
}

@media screen and (max-width: 480px) {
  .whatget__item {
    padding: 20px 20px 20px 40px;
    font-size: 15px;
    line-height: 22px;
  }
}

.whatget__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -22px;
  width: 44px;
  height: 61px;
  background-image: url("assets/img/whatget.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.overlook {
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .overlook {
    padding-bottom: 40px;
  }
}

.overlook__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 25px;
  column-gap: 25px;
}

@media screen and (max-width: 992px) {
  .overlook__body {
    flex-direction: column;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 30px;
  }
}

.overlook__body p {
  margin-bottom: 45px;
  line-height: 22px;
}

@media screen and (max-width: 992px) {
  .overlook__body p {
    margin-bottom: 30px;
  }
}

.overlook__left {
  max-width: 586px;
}

@media screen and (max-width: 992px) {
  .overlook__left {
    max-width: 100%;
  }
}

.overlook__video {
  width: 50%;
  position: relative;
  box-shadow: 10px 10px 0 0 var(--primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 449px;
  min-width: 500px;
}

@media screen and (max-width: 768px) {
  .overlook__video {
    box-shadow: 5px 5px 0 0 var(--primary);
  }
}

.overlook__video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(90%);
  backdrop-filter: grayscale(90%);
}

@media screen and (max-width: 992px) {
  .overlook__video {
    min-width: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .overlook__video {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .overlook__video {
    height: 250px;
  }
}

.how {
  position: relative;
}

.how__items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #222222;
}

.how__item {
  border-bottom: 1px solid #222222;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 20px;
}

@media screen and (max-width: 992px) {
  .how__item {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .how__item {
    flex-wrap: wrap;
  }
}

.how__item-step {
  padding: 5px 30px 6px 15px;
  white-space: nowrap;
  color: white;
  background-image: url("assets/img/how-step.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}

.how__item-offer {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  min-width: 333px;
  max-width: 333px;
}

@media screen and (max-width: 992px) {
  .how__item-offer {
    min-width: 230px;
    max-width: 230px;
    font-size: 18px;
    line-height: 26px;
  }
}

.passed {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .passed {
    padding-bottom: 40px;
  }
}

.passed__slider {
  overflow: hidden;
}

.passed__slide-top {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 17px;
}

.passed__slide-stars {
  display: flex;
  align-items: center;
  -moz-column-gap: 3px;
  column-gap: 3px;
}

.passed__slide-star {
  display: flex;
  align-items: center;
}

.passed__slide-star.filled path {
  opacity: 1;
}

.passed__slide-date {
  font-weight: 300;
  opacity: 0.5;
}

.passed__slide-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .passed__slide-name {
    font-size: 16px;
    line-height: 23px;
  }
}

.passed__slide-sub {
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 20px;
}

.passed__slide-desc {
  font-weight: 500;
}

.passed__slide-video {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  background: #f8f8f8;
  padding: 10px 20px;
}

@media screen and (max-width: 768px) {
  .passed__slide-video {
    font-size: 16px;
    line-height: 23px;
  }
}

.passed__slide-video img {
  width: 48px;
  height: 48px;
}

.reviews {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .reviews {
    padding-bottom: 40px;
  }
}

.sertificate {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .sertificate {
    padding-bottom: 40px;
  }
}

.sertificate__body {
  background: var(--bg);
  padding: 45px 120px 45px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
  column-gap: 80px;
  row-gap: 25px;
}

@media (max-width: 1199px) {
  .sertificate__body {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 992px) {
  .sertificate__body {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .sertificate__body {
    padding: 20px;
    flex-direction: column;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.sertificate__body h2 {
  margin-bottom: 0;
  max-width: 595px;
}

.sertificate__img img {
  max-width: 100%;
  min-width: 400px;
}

@media screen and (max-width: 768px) {
  .sertificate__img img {
    min-width: 250px;
  }
}

.questions {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .questions {
    padding-bottom: 40px;
  }
}

.questions__items {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.questions__item {
  background: #f8f8f8;
}

.questions__item-top {
  padding: 28px 35px 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .questions__item-top {
    padding: 20px;
    font-size: 17px;
    line-height: 25px;
  }
}

@media screen and (max-width: 480px) {
  .questions__item-top {
    font-size: 15px;
    line-height: 23px;
  }
}

.questions__item-top span {
  max-width: 800px;
}

.questions__item-top img {
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .questions__item-top img {
    width: 20px;
  }
}

.questions__item-top.active img {
  transform: rotate(180deg);
}

.questions__desc {
  padding: 24px 48px;
  max-width: 850px;
  opacity: 0.8;
  line-height: 22px;
  position: relative;
  display: none;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .questions__desc {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .questions__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

.questions__desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 48px;
  height: 4px;
  background: var(--primary);
  width: 80px;
}

@media screen and (max-width: 768px) {
  .questions__desc::before {
    left: 20px;
  }
}

.footer {
  color: white;
  padding-top: 92px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 82px;
  }
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 98px;
  background-image: url("assets/img/footer-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer a {
  color: white;
}

.footer__content {
  padding-top: 35px;
  padding-bottom: 45px;
  background: #222222;
}

.footer__body {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 100px;
  column-gap: 100px;
}

@media screen and (max-width: 1200px) {
  .footer__body {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

@media screen and (max-width: 991px) {
  .footer__body {
    flex-direction: column;
    row-gap: 30px;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.footer__left {
  width: 33.3%;
}

@media screen and (max-width: 992px) {
  .footer__left {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .footer__left {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .footer__left {
    text-align: center;
  }
}

.footer__logo {
  margin-bottom: 70px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    margin-bottom: 40px;
  }
}

.footer__label {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 32px;
  min-height: 17px;
}

@media screen and (max-width: 768px) {
  .footer__label {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .footer__label {
    min-height: 0;
  }
}

.footer__phone {
  font-size: 28px;
  line-height: 33.89px;
  display: block;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .footer__phone {
    font-size: 20px;
    line-height: 25px;
  }
}

.footer__mail {
  display: inline-block;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .footer__mail {
    font-size: 16px;
    line-height: 19px;
  }
}

.footer__adress {
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .footer__adress {
    font-size: 16px;
    line-height: 19px;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 480px) {
  .footer__social {
    justify-content: center;
  }
}

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

.footer__center {
  width: 66.6%;
}

@media screen and (max-width: 992px) {
  .footer__center {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .footer__center {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .footer__center {
    text-align: center;
  }
}

.footer__search {
  display: inline-flex;
  margin-bottom: 63px;
  border-bottom: 2px solid var(--primary);
  width: 600px;
}

@media screen and (max-width: 1200px) {
  .footer__search {
    width: 500px;
  }
}

@media screen and (max-width: 992px) {
  .footer__search {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer__search {
    margin-bottom: 33px;
  }
}

.footer__search input {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  padding: 13.5px;
  background: transparent;
  border: none;
  color: white;
  width: 100%;
}

.footer__search button {
  padding: 0 0 0 5px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  cursor: pointer;
  background: transparent;
  border: none;
}

.footer__search button:hover {
  opacity: 0.6;
}

.footer__item {
  max-width: 275px;
}

.footer__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  -moz-column-gap: 35px;
  column-gap: 35px;

  row-gap: 35px;
}

@media screen and (max-width: 480px) {
  .footer__items {
    flex-direction: column;
    align-items: center;
  }
}

.footer__ul {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

@media screen and (max-width: 768px) {
  .footer__ul {
    row-gap: 10px;
  }
}

.footer__ul a {
  font-size: 18px;
  line-height: 21px;
}

.footer__ul a:hover {
  opacity: 1;
  color: var(--secondary);
}

@media screen and (max-width: 768px) {
  .footer__ul a {
    font-size: 16px;
    line-height: 19px;
  }
}

.footer__bottom {
  background: #000;
  padding: 18px 0;
}

@media screen and (max-width: 480px) {
  .footer__bottom {
    text-align: center;
  }
}

.footer__bottom-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 480px) {
  .footer__bottom-body {
    flex-direction: column;
  }
}

.footer__bottom-text {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
}

.footer__bottom-ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
  column-gap: 50px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .footer__bottom-ul {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media screen and (max-width: 480px) {
  .footer__bottom-ul {
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 10px;
    flex-direction: column;
  }
}

.content p {
  margin: 0;
}

.content p:not(:last-child) {
  margin-bottom: 15px;
}

.blogLoadmoreItems .blogLoadmoreItem {
  display: none;
}

.blog__item.border-b-none {
  border-bottom: none;
}

.modal {
  display: none;
  width: 700px;
  padding: 50px;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  left: 0;
  height: fit-content;
}

@media (max-width: 420px) {
  .modal {
    padding: 30px;
  }
}

.blogLoadmoreItem {
  transition: none;
}

.modalContent .btn {
  border: none;
  cursor: pointer;
  transition: opacity 0.2s linear;
}

.modalContent .btn:hover {
  opacity: 0.85;
}

@media (max-width: 410px) {
  .modalContent .btn {
    width: 100%;
  }
}

.formInput {
  font-weight: 300;
  padding: 13.5px;
  background: transparent;
  border: none;
  width: 100%;
  border: none;
  border-bottom: 1px solid #222;

  transition: border-color 0.3s ease;
}
.formInput:focus {
  border-color: var(--primary);
}

.inputW {
  margin-bottom: 10px;
}

.agreement {
  margin-top: 15px;
  margin-bottom: 20px;
}

.agreement p,
.wpcf7-not-valid-tip {
  font-size: 13px;
  line-height: 18px;
}

.agreement p a {
  border-bottom: 1px solid #000;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 13px;
  line-height: 18px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 17px;
}

#courseModalInputTitle {
  display: none;
}

.navigation.posts-navigation {
  grid-column: 12 span;
}

.nav-links {
  text-align: center;
  margin-top: 20px;
}

.nav-previous {
  margin-bottom: 10px;
}

.content .wp-block-heading {
  margin-bottom: 35px;
}

.content .wp-block-heading:not(:first-child) {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .content .wp-block-heading {
    margin-bottom: 20px;
  }

  .content .wp-block-heading:not(:first-child) {
    margin-top: 30px;
  }
}

.content p > a {
  border-bottom: 1px solid #000;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.content ul li {
  list-style-type: disc;
}

.search-no-results .blog__more {
  display: none;
}

.search-form .search-submit {
  padding: 0 18px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary);
  color: white;
  font-family: "Molot", sans-serif;
  font-size: 20px;
  line-height: 23px;
  padding: 16px 24px;
  display: inline-block;
  width: 300px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.blog__items .no-results {
  grid-column: 12 span;
}

.page-content .search-form {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.page-content .search-field {
  border: none;
  border-bottom: 1px solid #e3001d;
  padding-bottom: 5px;
  width: 300px;
}

.dropdown-masters,
.dropdown-ohrana {
  position: absolute;
  z-index: 100;
  background: white;
  width: 100%;
  display: none;
  top: 237px;
  z-index: 1111;
}

.dropdown-masters.active,
.dropdown-ohrana.active {
  display: block;
}

@media (max-width: 1295px) {
  #profs {
    /* max-width: 165px; */
  }
}

.whatsapp-button {
  position: fixed;
  right: 13px;
  bottom: 60px;
  transform: translate(-50%, -50%);
  background: #43d854;
  /*цвет кнопки*/
  border-radius: 50%;
  width: 55px;
  /*ширина кнопки*/
  height: 55px;
  /*высота кнопки*/
  color: #fff;
  text-align: center;
  line-height: 53px;
  /*центровка иконки в кнопке*/
  font-size: 35px;
  /*размер иконки*/
  z-index: 10;
}

.whatsapp-button a {
  color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #43d854;
  /*цвет анимированных волн от кнопки*/
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.whatsapp-button:after {
  animation-delay: 0.5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width: 800px) {
  .whatsapp-button {
    bottom: 5px;
    /*отступ кнопки снизу от экрана*/
  }
}

figure.zoom {
  background-position: 50% 50%;
  position: relative;
  width: 500px;
  overflow: hidden;
  cursor: zoom-in;
}

figure.zoom img:hover {
  opacity: 0;
}

figure.zoom img {
  transition: opacity 0.5s;
  display: block;
  width: 100%;
}

.header__select-city {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.header__select-city:hover {
  text-decoration: underline;
  opacity: 1;
}

.header__select-city::before {
  content: "";
  background: url("assets/img/location.svg") no-repeat center/contain;
  width: 25px;
  height: 25px;
}

.modalSelectCity {
  width: 100%;
  max-width: 890px;
  overflow: hidden;
}

.selectCity__filter-wrap {
  padding: 15px 0;
  width: 100%;
  position: relative;
  margin-bottom: 35px;
}

.selectCity__filter-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  left: -9999px;
  right: -9999px;
  background: #f9f6ed;
}

.selectCity__filter-wrap::after {
  content: "";
  background: url("assets/img/header-top-1.svg") no-repeat center/contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.selectCity__filter {
  padding: 12px 30px 12px 0;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000;
  position: relative;
}

.selectCity__list {
  columns: 4;
  font-size: 18px;
  margin-bottom: -15px;
}

.selectCity__list li {
  margin-bottom: 10px;
}

.selectCity__list a {
  cursor: pointer;
}

.header__select-city._mob {
  justify-content: center;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .selectCity__filter-wrap {
    padding: 10px 0;
  }

  .selectCity__filter {
    padding: 5px 30px 5px 0;
    font-size: 15px;
  }

  .selectCity__list {
    columns: 3;
    font-size: 15px;
  }

  .selectCity__list li {
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .header__select-city:not(._mob) {
    display: none;
  }

  .selectCity__list {
    columns: 2;
  }
}

.searchInputW {
  grid-column: 15 span;
  margin-bottom: 35px;
  padding-left: 30px;
  padding-right: 30px;
}

.searchInputW input {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(34, 34, 34, 0.7);
  background-color: transparent;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 30px;
  background: url("assets/img/search.svg") no-repeat right center / 24px;
}

.dropdown__item.hide {
  display: none;
}

.loadMoreW {
  grid-column: 12 span;
}

.loadMoreBtn {
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.specialties__items-loadmore .specialties__item {
  display: none;
}

.loadMoreBtn.noContent {
  display: none !important;
}

.specialties__item.active {
  display: flex !important;
}

.priceSect {
  margin-bottom: 85px;
}

@media (max-width: 768px) {
  .priceSect {
    margin-bottom: 55px;
  }
}

.priceSectW {
  display: grid;
  align-items: center;
  grid-template-columns: 400px auto 400px;
  background-color: #f9f6ed;
  padding: 35px 50px;
}

@media (max-width: 1199px) {
  .priceSectW {
    grid-template-columns: 265px auto auto;
  }
}

@media (max-width: 991px) {
  .priceSectW {
    grid-template-columns: 265px auto auto;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .priceSectW {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.priceCourseTitle {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .priceCourseTitle {
    text-align: center;
  }
}

.priceSectAction {
  display: flex;
  column-gap: 30px;
  align-items: center;
}

@media (max-width: 575px) {
  .priceSectAction {
    flex-direction: column;
    row-gap: 15px;
  }
}

.priceCourseList {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .priceCourseList {
    text-align: center;
  }
}

.priceSectContent {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  font-family: "Molot";
  font-size: 32px;
  padding-left: 15px;
  padding-right: 15px;
  white-space: nowrap;
  column-gap: 15px;
}

.content-stars-text p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 140%;
}

@media (max-width: 991px) {
  .content-stars-text p {
    font-size: 14px;
  }
}

.content-stars-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.content-stars-left {
  grid-column: 7 span;
}

.content-stars-right {
  grid-column: 5 span;
  padding-left: 40px;
}

@media (max-width: 991px) {
  .content-stars-left {
    grid-column: 12 span;
  }

  .content-stars-right {
    grid-column: 12 span;
    margin-top: 35px;
  }
}

.content-stars {
  padding-bottom: 85px;
}

@media (max-width: 768px) {
  .content-stars {
    padding-bottom: 55px;
  }
}

.content-stars-item {
  display: flex;
  background: #f9f6ed;
  padding: 30px 40px;
  position: relative;
  max-width: 435px;
  margin-left: auto;
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .content-stars-item {
    max-width: 100%;
  }
}

.content-stars-item-icon {
  position: absolute;
  width: 63px;
  left: -31px;
  top: 50%;
  transform: translateY(-50%);
}

.sertificate__text {
  margin-top: 30px;
}

.distance {
  padding-bottom: 85px;
}

@media (max-width: 768px) {
  .distance {
    padding-bottom: 55px;
  }
}

.distance-content p:not(:last-child) {
  margin-bottom: 25px;
}

.relatedSect {
  padding-bottom: 85px;
}

@media (max-width: 768px) {
  .relatedSect {
    padding-bottom: 55px;
  }
}

.relatedSlide {
  height: auto;
}

.relatedSlide .popular__item {
  height: 100%;
}

.header__logo img {
}

@media (max-width: 768px) {
  .header__top-right-item.searchBtnSm {
    display: none;
  }
}

@media (max-width: 767px) {
  .header__top-right-item--mob {
    background-color: #e3001d;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .header__top-right-item--mob img {
    width: 10px;
  }
}

.headerWhatsappSm {
  flex-shrink: 0;
  width: 26px;
  display: none;
}

@media (max-width: 768px) {
  .headerWhatsappSm {
    display: flex;
  }
}

.whatsapp-icon {
  width: 26px;
  min-width: 26px;
}

@media (max-width: 575px) {
  .header__logo--mob img {
    max-width: 150px;
  }
}

.headerSearchBtn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3001d;
  border: none;
  border-radius: 50%;
}

.headerSearchBtn img {
  width: 10px;
}

.searchMobileW {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
}

.searchMobileW input {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  border: none;
  border-bottom: 1px solid #f9f6ed;
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #fff;
  border-radius: 0;
}

.searchMobileW button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
}

.searchMobileW.active {
  display: block;
}

.searchMobileW button img {
  width: 20px;
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    width: 100%;
  }

  .main {
    padding-top: 66px;
  }

  .top {
    padding-top: 85px;
  }

  .course {
    padding-top: 93px;
  }
}

/* .section-top-mb-0 {
  margin-bottom: 20px;
} */
.popular__items-d-block {
  display: block;
}

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

.header__center {
  border-bottom: 2px solid var(--bg);
}

.header__contacts {
  display: flex;
}

.headerSearchW {
  position: relative;
  height: fit-content;
}

.headerSearchW button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
}

.headerSearchW input {
  border: none;
  border-bottom: 2px solid rgba(34, 34, 34, 0.7);
  padding-bottom: 12px;
  padding-right: 60px;
  min-width: 550px;
}

@media (max-width: 1199px) {
  .headerSearchW input {
    min-width: 367px;
  }

  .headerSearchW input {
    padding-right: 37px;
  }
}

@media (max-width: 767px) {
  .header__center {
    display: none;
  }
}

@media (max-width: 575px) {
  .burger-content {
    top: 70px;
  }
}

.header__select-city--mob {
  display: flex;
}

.dropdown__tabs + .dropdown__content .dropdown__items {
  display: none;
}

.dropdown__tabs + .dropdown__content .dropdown__items.active {
  display: block;
}

.dropdown-ohrana .dorpdownColWrap {
  grid-template-columns: repeat(12, 1fr);
}

.slider-arrows._left-auto {
  margin-left: auto;
}

.dropdownColName {
  grid-column: 12 span;
  padding-left: 30px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  padding-top: 8px;
}

.sect-widget {
  padding-bottom: 60px;
}

.security {
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  background-color: #f9f6ed;
  border-top: 2px solid #f9f6ed;
  overflow-y: auto;
  z-index: 1111;
}

.security.active {
  display: block;
}

.security__table {
  width: 100%;
}

.security__head {
  background-color: white;
}

@media (max-width: 1199px) {
  .security__head {
    display: none;
  }
}

.security__row {
  display: flex;
}

@media (max-width: 1199px) {
  .security__row {
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  }
}

.security__head .security__row {
  border-left: 1px solid #f9f6ed;
  border-right: 1px solid #f9f6ed;
}

.security__head-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  padding: 30px;
  box-sizing: border-box;
  flex: 1;
}

.security__head-item:not(:last-child) {
  border-right: 1px solid #f9f6ed;
}

.security__head-item:last-child {
  flex: 0 1 515px;
}

@media (max-width: 1199px) {
  .security__head-item:last-child {
    flex: none;
  }
}

.security__body {
  border-top: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

@media (max-width: 1199px) {
  .security__body {
    border: none;
  }
}

.security__body .security__row {
  border-left: 2px solid rgba(0, 0, 0, 0.4);
  border-right: 2px solid rgba(0, 0, 0, 0.4);
}

.security__body .security__row:last-child {
  border-top: 2px solid rgba(0, 0, 0, 0.4);
}

@media (max-width: 1199px) {
  .security__body .security__row {
    border-left: none;
    border-right: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.security__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  flex: 1;
}

.security__item:not(:last-child) {
  border-right: 2px solid rgba(0, 0, 0, 0.4);
}

@media (max-width: 1199px) {
  .security__item:not(:last-child) {
    border-right: none;
  }
}

.security__item:nth-child(2) {
  display: block;
}

.security__item:last-child {
  flex: 0 1 515px;
}

@media (max-width: 1199px) {
  .security__item:last-child {
    flex: none;
  }
}

.security__item a {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.security__item a:hover {
  color: #e3001d;
}

.security__btn {
  display: block;
  font-family: "Molot", sans-serif;
  color: #f9f6ed;
  font-size: 20px;
  letter-spacing: 0.2px;
  text-align: center;
  background-color: #e3001d;
  width: 100%;
  padding: 16px;
  transition: background-color 0.2s ease;
}

.security__btn:hover {
  opacity: 1 !important;
  background-color: #97081b;
}

.burger-content__security {
  display: flex;
  flex-direction: column;
  opacity: 0.8;
  margin-top: 25px;
  gap: 15px;
}

.burger-content__security-title {
  margin-bottom: 10px;
}

.video-quest-title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
}

.video-quest-descr {
  margin-top: 8px;
  color: #888888;
}

.questions__slider .howed__slide {
  border-bottom: 4px solid #e3001d;
}

.question-video-sect {
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  .question-video-sect {
    padding-bottom: 40px;
  }
}

.specialties__items .swiper-slide {
  grid-column: 4 span;
}

@media (max-width: 991px) {
  .specialties__items .swiper-slide {
    grid-column: 6 span;
  }
}

@media (max-width: 767px) {
  .specialties__items .swiper-slide {
    grid-column: 12 span;
  }
}

@media (max-width: 767px) {
  .specialties__items.quest-video-grid {
    row-gap: 25px;
  }

  .video-quest-title {
    margin-top: 12px;
  }
}

.quest-video-grid .loadMoreBtn {
  background-color: transparent;
  border: 2px solid var(--primary);
  margin-top: 20px;
  transition: background-color 0.2s linear, color 0.2s linear;
}

.quest-video-grid .loadMoreBtn:hover {
  background-color: var(--primary);
  color: #fff;
}

.question-video-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  display: block;
  width: fit-content;
}

.coursePriceW {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.course_academ_time {
  font-weight: 500;
  color: #222222;
  position: relative;
  bottom: -3px;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .course_academ_time {
    bottom: 6px;
    font-size: 14px;
  }

  .coursePriceW {
    align-items: flex-end;
  }
}

.priceSectContent .course_academ_time {
  font-size: 16px;
  line-height: normal;
  opacity: 0.5;
  position: relative;
  bottom: -5px;
}

@media (max-width: 1199px) {
  .priceSectContent {
    flex-direction: column;
  }
}

.ohrana-security-page {
  padding-bottom: 70px;
}

.ohrana-security-page .security {
  display: block;
  position: unset;
}

.security-work {
  display: none;
}

@media (max-width: 1199px) {
  .security-work {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .security__item--flex-column-sm {
    flex-direction: column;
  }
}

.specialties__items .security__table {
  grid-column: 12 span;
}

.ohranaHeadDescr {
  padding-top: 30px;
}

.c-banner {
  position: fixed;
  bottom: -100px;
  left: 50px;
  width: 400px;
  padding: 15px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  opacity: 0;
  z-index: 9999;
}

.c-banner._show {
  animation: slideUp 0.5s ease forwards;
}

.c-banner button {
  padding: 2px 5px;
  background: transparent;
  color: #fff;
  margin-top: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
}

.c-banner button:hover {
  opacity: 0.7;
}

@keyframes slideUp {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 50px;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .c-banner {
    left: 50%;
    transform: translateX(-50%);
  }

  @keyframes slideUp {
    from {
      bottom: -100px;
      opacity: 0;
    }

    to {
      bottom: 0;
      opacity: 1;
    }
  }
}

@media (max-width: 991px) {
  .coursefor__items-lg {
    display: none;
  }
}

.coursefor__items-sm {
  display: none;
}

@media (max-width: 991px) {
  .coursefor__items-sm {
    display: grid;
    margin-top: 30px;
  }

  .course__content {
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .coursefor__items-sm {
    width: 100%;
  }
}

.security__item a {
  color: blue;
}

.course__price ins {
  text-decoration: none;
}

.course__price del {
  font-size: 24px;
}

.main-intro {
  padding-top: 0;
}

.main__offer--white {
  color: #fff;
}

.main__desc--white {
  color: #fff;
}

.mainSlide {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}

.mainSlide::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 34px;
  width: 140px;
  height: 52px;
  background-image: url("assets/img/main-video-img.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}

.mainSlide::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 77.88%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  left: 0;
  top: 0;
  position: absolute;
}

.mainSlideContent {
  padding-left: 45px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
}

.mainSlideSaleW {
  position: relative;
  z-index: 1;
}

.mainSlider .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  width: 10px;
  height: 10px;
}

.mainSlider .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
}

.mainSlider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 50px;
}

.mainSlider .main__desc {
  font-size: 20px;
  line-height: 140%;
  max-width: 900px;
}

.saleImg img {
  width: 285px;
}

.saleImg {
  margin-right: 23px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .saleImg img {
    width: 200px;
  }

  .mainSlider .swiper-pagination {
    bottom: 30px;
  }
}

@media (max-width: 767px) {
  .saleImg img {
    width: 150px;
  }

  .main-intro {
    padding-top: 64px;
  }
}

@media (max-width: 575px) {
  .mainSlide {
    flex-direction: column;
  }

  .mainSlideContent {
    padding-left: 25px;
  }

  .mainSlider .main__desc {
    font-size: 16px;
  }
}

.course__img .sale {
  position: absolute;
  bottom: -70px;
  left: -60px;
}

@media (max-width: 1530px) {
  .course__img .sale {
    left: 0;
  }
}

@media (max-width: 1199px) {
  .course__img .sale {
    width: 160px;
  }
}

@media (max-width: 991px) {
  .course__img .sale {
    bottom: 0;
  }
}

@media (max-width: 575px) {
  .course__img .sale {
    width: 105px;
  }
  .course__offer {
    font-size: 21px;
    line-height: 125%;
  }
}

.course__price ins {
  color: #e3001d;
  text-shadow: 2px 2px 0 #3c0001;
  font-size: 32px;
  font-weight: 900;
  line-height: 39px;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .course__price ins {
    font-size: 28px;
    line-height: 35px;
  }
}
.coursePriceSaleText {
  background-color: #e3001d;
  padding: 10px 4px 10px 10px;
  color: #fff;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 30px;
  white-space: nowrap;
}
.coursePriceSaleText::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 18px;
  background: url("assets/img/sale-rect.svg") no-repeat center center / contain;
}
@media (max-width: 575px) {
  .coursePriceW {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

.footer__doc-list {
  font-size: 14px;
  font-weight: 200;
  opacity: 0.7;
  margin-top: 30px;
}
.footer__doc-list li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .footer__doc-list {
    width: 100%;
    text-align: center;
    margin-top: 0;
  }
}
.sect-m {
  margin: 85px 0px;
}

@media (max-width: 991px) {
  .sect-m {
    margin: 60px 0px;
  }
}
.s-connect {
}
.s-connect__wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}
.s-connect__info {
  flex: 0 1 460px;
}
.s-connect__info-head {
  display: flex;
  align-items: start;
  gap: 40px;
  margin-bottom: 30px;
}
.s-connect__title {
  max-width: 290px;
  margin: 0;
}
.s-connect__info-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #e3001d;
  flex-shrink: 0;

  font-family: "Molot", sans-serif;
  color: white;
  font-size: 24px;
  line-height: 267%;
}
.s-connect__info-body {
  max-width: 410px;
  margin-left: auto;
}
.s-connect__prices {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 20px;
}
.s-connect__price {
  font-weight: 900;
  font-size: 55px;
  line-height: 122%;
  text-shadow: 3px 3px 0 #3c0001;
  color: #e3001d;
}
.s-connect__old-price {
  font-weight: 400;
  font-size: 41px;
  line-height: 162%;
  text-decoration: line-through;
}
.s-connect__info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  row-gap: 15px;
  width: 100%;

  li {
    position: relative;
    padding: 6px 40px 6px 15px;

    font-size: 16px;
    line-height: 140%;

    &::before {
      position: absolute;
      content: "";
      inset: 0;
      background-color: #f5cb4c;
      clip-path: polygon(
        0 0,
        100% 0,
        80% 50%,
        80% 50%,
        100% 100%,
        30% 100%,
        0 100%,
        0% 30%
      );
      z-index: -1;
    }
  }
}
.s-connect__descr {
  font-size: 16px;
  line-height: 137%;
  margin: 40px 0px 0px 0px;
}
.s-connect__form-wrapper {
  padding: 50px;
  background: #f8f8f8;
  flex: 0 1 795px;
}
.s-connect__form-title {
  margin-bottom: 35px;
}

.form-nav {
  display: flex;
  align-items: start;
  gap: 30px;
  margin-top: 30px;
}

.check-wrapper {
  position: relative;
  z-index: 1;

  input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
  }
  input[type="checkbox"] + span {
    cursor: pointer;
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 12px;
    line-height: 130%;

    &::before {
      content: "";
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      border: 1px solid var(--primary);
    }

    a {
      text-decoration: underline;
      text-underline-offset: 2px;
      opacity: 1 !important;

      transition: color 0.3s ease !important;

      &:hover {
        color: var(--primary);
      }
    }
  }
  input[type="checkbox"]:checked + span::before {
    background: url("assets/img/check-red.svg") center / 12px auto no-repeat;
  }
  .wpcf7-list-item {
    margin-left: 0;
  }
}
@media (max-width: 1365px) {
  .s-connect__form-wrapper {
    flex-basis: 650px;
  }
}

@media (max-width: 1199px) {
  .s-connect__price {
    font-size: 36px;
  }
  .s-connect__old-price {
    font-size: 28px;
  }
  .s-connect__form-wrapper {
    flex-basis: 550px;
    padding: 30px 20px;
  }
}

@media (max-width: 991px) {
  .s-connect__wrapper {
    flex-wrap: wrap;
  }
  .s-connect__info {
    flex: 1;
  }
  .s-connect__info-head {
    align-items: center;
  }
  .s-connect__title {
    max-width: none;
  }
  .s-connect__info-body {
    margin-left: 0;
  }
  .s-connect__descr {
    margin-top: 25px;
  }
  .s-connect__form-wrapper {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .s-connect__info-head {
    gap: 15px;
  }
  .s-connect__info-tag {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .s-connect__form-title {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .s-connect__info-list {
    grid-template-columns: 1fr;
    gap: 15px;

    li {
      width: fit-content;
    }
  }
  .form-nav {
    flex-wrap: wrap;
    gap: 20px;

    .btn,
    p {
      width: 100%;
    }
  }
}

.s-mode__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.s-mode__info {
  position: relative;
  padding: 50px 50px 50px 0px;

  flex: 0 1 695px;
  z-index: 1;
}
.s-mode__info::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  background-color: #f8f8f8;
  z-index: -1;
}
.s-mode__info-body {
  padding-left: 45px;
}
.s-mode__descr {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  margin: 0px 0px 40px 0px;
}
.s-mode__list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  li {
    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 16px;
    line-height: 137%;

    .rect {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 25px;
      height: 25px;
      background-color: var(--primary);
      color: white;
    }

    svg {
      width: 16px;
      height: 16px;
    }
  }
}
.s-mode__gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  aspect-ratio: 1/0.67;
  opacity: 1 !important;
  box-shadow: 14px 14px 0 0 #e3001d;
  margin: 0px 14px 14px 0px;

  .btn-play {
    position: absolute;
    z-index: 10;
  }

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 110px;
  height: 110px;
  background-color: rgba(245, 203, 76, 0.8);
  border-radius: 50%;
  opacity: 1 !important;

  color: #222;

  transition: background-color 0.3s ease;

  svg {
    width: 35px;
    height: 35px;
  }
}
.btn-play:hover {
  background-color: rgba(245, 203, 76);
}

@media (max-width: 1365px) {
  .s-mode__gallery {
    width: 500px;
  }
  .btn-play {
    width: 80px;
    height: 80px;

    svg {
      width: 25px;
      height: 25px;
    }
  }
}
@media (max-width: 991px) {
  .s-mode__info-body {
    padding-left: 0;
  }
  .s-mode__descr {
    font-size: 16px;
    max-width: 600px;
  }
  .s-mode__wrapper {
    flex-wrap: wrap;
  }
  .s-mode__info {
    flex: none;
    padding: 30px 0px;
    width: 100%;
  }
  .s-mode__gallery {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .s-mode__gallery {
    box-shadow: 7px 7px 0 0 #e3001d;
  }
}

.s-docs {
}
.s-docs__body {
  background: #f8f8f8;
  padding: 50px 45px;
}
.s-docs__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  margin: 0px 0px 40px 0px;
}
.s-docs__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.s-docs__nav-wrapper {
  display: flex;
  gap: 40px;
}
.s-docs__slider-nav {
  width: 515px;
  flex-shrink: 0;
  margin: 0;
  height: 610px;
}
.s-docs__slide-nav {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;

  transition: background-color 0.3s ease;

  .rect {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    flex-shrink: 0;

    color: var(--primary);

    transition: color 0.3s ease, background-color 0.3s ease;
  }
  span {
    flex: 1;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    padding: 20px;

    font-size: 18px;
    line-height: 140%;

    transition: border-color 0.3s ease;
  }
}
.s-docs__slide-nav.swiper-slide-thumb-active {
  background-color: white;
  .rect {
    background-color: var(--primary);
    color: white;
  }
  span {
    border-color: var(--primary);
  }
}
.s-docs__slide-nav:hover {
  background-color: white;
  .rect {
    background-color: var(--primary);
    color: white;
  }
  span {
    border-color: var(--primary);
  }
}
.s-docs__nav-scrollbar {
  height: 100%;
  width: 2px;
  background-color: #222;

  .swiper-scrollbar-drag {
    position: relative;

    &::before {
      position: absolute;
      content: "";
      inset: 0px -1px;
      background-color: var(--primary);
      z-index: 1;
    }
  }
}
.s-docs__main {
  flex: 1;
  overflow: hidden;
}
.s-docs__main-slider {
  overflow: visible !important;
}
.s-docs__main-slide {
  opacity: 0 !important;

  transition: opacity 0.9s ease;
}
.s-docs__main-slide.swiper-slide-active {
  opacity: 1 !important;
}
.s-docs__main-wrapper {
  max-width: 530px;
  width: 100%;
  margin: 0 auto;
}
.s-docs__gallery {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0px 14px 14px 0px;
  aspect-ratio: 1/0.73;
  z-index: 1;

  &::before {
    position: absolute;
    content: "";
    inset: 14px 0px 0px 14px;
    background-color: var(--primary);
    z-index: -1;
  }

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.s-docs__main-descr {
  font-size: 16px;
  line-height: 137%;
  margin: 30px 0px 0px 0px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

@media (max-width: 1365px) {
  .s-docs__body {
    padding: 30px;
  }
  .s-docs__nav-wrapper {
    gap: 20px;
  }
  .s-docs__slider-nav {
    width: 400px;
  }
}
@media (max-width: 991px) {
  .s-docs__body {
    overflow: hidden;
  }
  .s-docs__wrapper {
    flex-direction: column-reverse;
  }
  .s-docs__nav-wrapper {
    display: block;
  }
  .s-docs__gallery {
    width: 530px;
    margin: 0 auto;
    max-width: 100%;
  }
  .s-docs__main-wrapper {
    max-width: none;
  }
  .s-docs__slider-nav {
    width: 100%;
    height: auto;
    overflow: visible !important;
  }
  .s-docs__nav-scrollbar {
    width: 100%;
    margin-top: 25px;
    height: 2px;

    & .swiper-scrollbar-drag {
      &::before {
        inset: -1px 0px;
      }
    }
  }
  .s-docs__slide-nav {
    width: 320px;
    max-width: 100%;

    .rect {
      width: 90px;
      height: 90px;
      svg {
        width: 60px;
        height: 60px;
      }
    }
    span {
      font-size: 14px;
      padding: 8px;
      border-width: 1px;
    }
  }
}
@media (max-width: 767px) {
  .s-docs__subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .s-docs__body {
    padding: 25px 16px;
  }
  .s-docs__main-descr {
    font-size: 14px;
    border-width: 2px;
    padding-left: 13px;
  }
}
@media (max-width: 575px) {
  .s-docs__gallery {
    padding: 0px 7px 7px 0px;

    &::before {
      inset: 7px 0px 0px 7px;
    }
  }
}

.s-pay {
  padding: 50px 0px;
  background: #f9f6ed;
}
.s-pay__wrapper {
  display: flex;
  align-items: flex-end;
  gap: 90px;
}
.s-pay__info {
  flex: 0 1 755px;
}
.s-pay__descr {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  margin: 0px 0px 10px 0px;
}
.s-pay__list-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  margin: 0px 0px 25px 0px;
}
.s-pay__list {
  border-top: 1px solid #222;
}
.s-pay__list li {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #222;

  font-weight: 500;
  font-size: 18px;
  line-height: 140%;

  .tag {
    padding: 5px 30px 5px 15px;
    background-color: var(--primary);
    flex-shrink: 0;
    clip-path: polygon(
      0 0,
      100% 0,
      80% 50%,
      80% 50%,
      100% 100%,
      30% 100%,
      0 100%,
      0% 30%
    );

    font-size: 16px;
    line-height: 140%;
    color: white;
  }
}
.s-pay__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 415px;
  max-width: 100%;
  flex-shrink: 0;
}
.s-pay__btn {
}
.s-pay__video-content {
  max-width: 270px;
  margin: 22px 0px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
}
.s-pay__frame {
  width: 100%;
  padding: 20px;
  border: 4px solid #f7e09d;

  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;

  span {
    display: block;
    font-family: "Molot", sans-serif;
  }
}

@media (max-width: 1199px) {
  .s-pay__wrapper {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .s-pay__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .s-pay__info {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .s-pay__descr {
    font-size: 16px;
  }
  .s-pay__list-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .s-pay__list li {
    padding: 12px 0px;
    font-size: 16px;
    gap: 15px;

    .tag {
      font-size: 14px;
    }
  }
  .s-pay__video-content {
    font-size: 16px;
    margin: 15px 0px;
  }
  .s-pay__frame {
    padding: 15px;
    font-size: 28px;
  }
  .course__ques {
    margin-bottom: 0;
  }
}

.footer__dev {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1 !important;

  font-size: 14px;
  color: rgba(255, 255, 255, 0.5) !important;

  transition: color 0.4s ease;
}
.footer__dev:hover {
  color: white !important;
}


.slider-pagination {
  position: static !important;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.slider-pagination .swiper-pagination-bullet {
  display: block;
  opacity: 0.7 !important;
  background-color: var(--primary);
  height: 8px;
  flex: 0 0 8px;
  border-radius: 16px;
  margin: 0 !important;
  cursor: pointer;

  transition: opacity .3s ease, flex .3s ease, background-color .3s ease;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  flex-basis: 16px;
  opacity: 1 !important;
}