:root {
  --color-white: #fff;
  --font-small: 12px;
  --font-normal: 14px;
  --font-middle: 18px;
  --font-header: 20px;
  --font-slider: 30px;
  --font-h1: 50px;
  --font-h2: 40px;
  --font-h3: 30px;
  --font-h4: 20px;
  --font-regular: 400;
  --font-bold: 700;
  --border-color: #eaecf2;
  --radius: 15px;
  --box-shadow: hsla(0, 0%, 91%, 0.6);
  --block-margin: 80px;
  --footer-color: #090e15;
  --footer-color-text: #fff;
}
@media screen and (max-width: 900px) {
  :root {
    --font-small: 10px;
    --font-normal: 12px;
    --font-middle: 15px;
    --font-header: 16px;
    --font-slider: 22px;
    --font-h1: 30px;
    --font-h2: 24px;
    --font-h3: 20px;
    --font-h4: 16px;
  }
}

.logo__img {
   width: 50%;
}

.st0 {
  fill: var(--color-primary) !important;
}
.fancybox__backdrop {
  background: rgba(2, 2, 2, 0.51);
  opacity: var(--fancybox-opacity, 1);
  backdrop-filter: blur(10px);
}
.fancybox__content > .f-button.is-close-btn {
  --f-button-bg: var(--color-primary);
  opacity: 1;
}
.mask {
  background-color: var(--body-color);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}
.mask img {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
}
.blog__post {
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 900px) {
  .blog__post {
    margin-bottom: calc(var(--grid-gutter) * 1);
  }
}
.blog__post-text {
  padding: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 900px) {
  .blog__post-text {
    padding: calc(var(--grid-gutter));
  }
}
.blog__post-text h3 {
  font-size: var(--font-h3);
  line-height: calc(var(--font-h3) + 6px);
}
.blog__post-text h3 a {
  color: var(--font-color);
}
.blog__post-text h3 a:hover {
  color: var(--color-primary);
}
.blog__post-link {
  margin: 20px 0;
}
.blog__post-date {
  margin-bottom: 5px;
  color: var(--color-grey);
  opacity: 0.5;
}
.blog__post-date i {
  margin-right: 7px;
}
.blog__post-image {
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.blog__post-image:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.blog__post-image img {
  transition: 0.5s;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.blog__one {
  margin-bottom: calc(var(--grid-gutter) * 2);
}
.blog__one-comment {
  padding: calc(var(--grid-gutter) * 2);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  .blog__one-comment {
    padding: calc(var(--grid-gutter) * 1);
  }
}
.blog__one-comment ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog__one-comment ul li {
  background: var(--bg-second);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.blog__one-comment .credentials {
  display: flex;
}
.blog__one-comment .credentials .username {
  margin: 0 5px;
}
.blog__one-comment .credentials .date {
  color: var(--color-grey);
  opacity: 0.5;
}
.blog__one-comment .actions i {
  font-style: normal;
}
.blog__one img {
  border-radius: 15px;
}
.blog__one-text h3 {
  font-size: var(--font-h3);
  line-height: calc(var(--font-h3) + 6px);
}
.blog__one-text h3 a {
  color: var(--font-color);
}
.blog__one-text h3 a:hover {
  color: var(--color-primary);
}
.blog__one-link {
  margin: 20px 0;
}
.blog__one-date {
  margin-bottom: 5px;
  color: var(--color-grey);
  opacity: 0.5;
}
.blog__one-date i {
  margin-right: 7px;
}
.blog__one-image {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}
.blog__one-image img {
  transition: 0.5s;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.blog__search form {
  display: flex;
}
.blog__search form input {
  border-radius: 15px !important;
  margin-right: 15px;
}
.search__title {
  margin-bottom: calc(var(--grid-gutter) * 2);
}
.search__title span {
  background: var(--bg-primary);
  padding: 10px 20px;
  margin-left: 10px;
  color: var(--color-primary);
  border-radius: 15px;
}
.breadcrumbs {
  padding-top: 53px;
  padding-bottom: 53px;
  background: var(--bg-primary);
  margin-bottom: 50px;
  background-size: cover;
  background-position: 50%;
}
@media screen and (max-width: 900px) {
  .breadcrumbs {
    font-size: 12px;
    padding: 20px 0;
    margin-bottom: 20px;
  }
}
.breadcrumbs__inner {
  display: flex;
  align-items: center;
}
.breadcrumbs__rightside {
  flex: 1;
  justify-content: end;
  display: flex;
}
.breadcrumbs__rightside h1 {
  color: var(--font-color);
  font-size: var(--font-h2);
  font-weight: 700;
}
.breadcrumbs__leftside,
.breadcrumbs__rightside a {
  background: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--radius);
}
.breadcrumbs__leftside {
  width: auto;
}
@media screen and (max-width: 900px) {
  .breadcrumbs__leftside {
    padding: 5px 10px;
    white-space: nowrap;
    display: inline-block;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.breadcrumbs__leftside i {
  color: var(--color-primary);
  margin: 0 15px 0 5px;
  font-size: 10px;
}
.breadcrumbs__leftside i:last-child {
  margin-right: 0;
}
.breadcrumbs__leftside a {
  margin-right: 5px;
  color: var(--color-grey);
}
.breadcrumbs__leftside a:hover {
  color: var(--color-primary);
}
.wa-captcha {
  display: flex;
  align-content: space-between;
  justify-content: center;
  gap: 10px;
  margin-left: 180px;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .wa-captcha {
    margin-left: 0;
  }
}
.wa-captcha p {
  display: flex;
  gap: 14px;
  align-items: center;
}
.wa-captcha p:last-child {
  gap: 0;
}
.wa-error-msg {
  color: rgba(252, 38, 38, 0.87);
  font-style: normal !important;
}
.footer {
  background: var(--footer-color);
  padding: calc(var(--grid-gutter) * 3) 0 calc(var(--grid-gutter) * 1);
  background-position: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: calc(var(--grid-gutter) * 1) 0;
  }
}
.footer h4 {
  font-weight: 700;
  color: var(--color-lightGrey);
  font-size: var(--font-header);
  position: relative;
  margin-bottom: 30px;
}
.footer h4:after {
  background: #333;
  height: 1px;
  bottom: -10px;
  content: " ";
  left: 0;
  position: absolute;
  width: 150px;
}
.footer__copyright {
  font-size: var(--font-small);
  color: var(--color-lightGrey);
  opacity: 0.5;
  margin-top: 20px;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .footer ul li {
    display: inline-block;
    margin-right: 20px;
  }
}
.footer ul a {
  color: var(--color-grey);
}
.footer ul a.un:hover:after {
  background: var(--color-grey);
}
.footer__address-icon {
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.1);
  box-shadow: 0 9px 18px rgba(24, 16, 16, 0.05);
  height: 35px;
  width: 35px;
  text-align: center;
  margin-right: 15px;
}
.footer__address-icon i {
  position: relative;
  top: 7px;
}
.footer__address-item {
  display: flex;
  margin-bottom: 20px;
}
.footer__address-item,
.footer__address-item a,
.footer__address-item small {
  color: var(--color-lightGrey);
}
.footer__address-item small {
  opacity: 0.5;
  display: block;
}
.footer__logo {
  margin-bottom: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .footer__logo {
    margin-top: 20px;
  }
}
.footer__logo img {
  max-width: 150px;
  margin-bottom: 20px;
}
.footer__logo p {
  color: var(--color-white);
  opacity: 0.7;
}
.footer__social {
  margin-top: 40px;
}
.footer__social a {
  height: 36px;
  width: 36px;
  display: inline-flex;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  background-color: hsla(0, 0%, 100%, 0.1);
  color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.1);
  margin-right: 5px;
}
.footer__social a:hover {
  background: var(--color-primary);
}
.wa-forgotpassword-form-wrapper .wa-field .wa-name,
.wa-login-form-wrapper .wa-field .wa-name,
.wa-signup-form-wrapper .wa-field .wa-name {
  font-size: var(--font-normal) !important;
  color: var(--body-color) !important;
}
.wa-form {
  margin: 10px 0;
  max-width: calc(var(--grid-maxWidth) / 2);
}
@media screen and (max-width: 900px) {
  .wa-form {
    display: block;
  }
}
.wa-form #wa-my-info-cancel {
  margin-left: 20px;
}
.wa-form .wa-uncaught-errors .wa-error-msg {
  margin-left: 180px;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-uncaught-errors .wa-error-msg {
    margin-left: 0 !important;
  }
}
.wa-form .wa-buttons-wrapper,
.wa-form .wa-forgotpassword-form-actions,
.wa-form .wa-signup-url {
  margin-left: 180px;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-buttons-wrapper,
  .wa-form .wa-forgotpassword-form-actions,
  .wa-form .wa-signup-url {
    margin-left: 0 !important;
  }
}
.wa-form .wa-field-remember-me {
  padding-left: 180px !important;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field-remember-me {
    padding-left: 0 !important;
  }
}
.wa-form .wa-signup-url {
  margin-top: 20px;
}
.wa-form .wa-forgotpassword-button,
.wa-form .wa-login-url {
  margin-top: 10px;
}
.wa-form .wa-field-birthday select {
  width: auto !important;
}
.wa-form .wa-field {
  margin: 0 0 20px;
  width: 100%;
  display: flex;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field {
    display: block;
    margin-bottom: 10px;
  }
}
.wa-form .wa-field .wa-name {
  width: 180px;
  font-weight: 700;
  display: flex;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field .wa-name {
    float: none;
    width: 100%;
    margin-left: 0;
    display: block;
    padding-bottom: 0;
  }
}
.wa-form .wa-field .wa-value {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field .wa-value {
    float: none;
    width: 100%;
    margin-left: 0;
    display: block;
  }
}
.wa-form .wa-field .wa-value .profile-review {
  display: flex;
  align-items: center;
}
.wa-form .wa-field .wa-value .profile-review a {
  margin-left: 10px;
}
.wa-form .wa-captcha p a {
  display: block;
}
.wa-form .wa-captcha-input {
  width: 100px !important;
}
.wa-forgotpassword-form-wrapper input,
.wa-forgotpassword-form-wrapper select,
.wa-forgotpassword-form-wrapper textarea,
.wa-login-form-wrapper input,
.wa-login-form-wrapper select,
.wa-login-form-wrapper textarea,
.wa-signup-form-wrapper input,
.wa-signup-form-wrapper select,
.wa-signup-form-wrapper textarea {
  border: 0;
}
.wa-forgotpassword-button {
  margin-top: 20px;
}
.home-welcome {
  margin: 40px 0;
}
.home-slider {
  height: calc(100vh - 550px);
  min-height: 550px;
  max-height: 650px;
  width: 100%;
  background: var(--bg-second);
  border-radius: var(--radius);
  padding-bottom: 2px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .home-slider {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }
}
.home-slider__inner {
  position: relative;
  height: 100%;
}
.home-slider__inner .slick-list,
.home-slider__inner .slick-track {
  height: 100%;
}
.home-slider__item {
  height: 100%;
  background-size: cover;
  position: relative;
  border-radius: var(--radius);
  margin-bottom: 20px;
  background-position: 50%;
}
.home-slider__arrow-prev {
  left: 0;
}
.home-slider__arrow-prev span {
  font-size: 30px;
  position: relative;
}
.home-slider__arrow-prev span:after {
  content: " ";
  background-color: hsla(0, 0%, 100%, 0.12);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  height: 50px;
  width: 50px;
  position: absolute;
  left: -8px;
  right: 0;
  top: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.08);
  transition: all 0.3s ease-in-out;
}
.home-slider__arrow-next {
  right: 0;
}
.home-slider__arrow-next span {
  font-size: 30px;
  position: relative;
}
.home-slider__arrow-next span:after {
  content: " ";
  background-color: hsla(0, 0%, 100%, 0.12);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  height: 50px;
  width: 50px;
  position: absolute;
  left: -8px;
  right: 0;
  top: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.08);
  transition: all 0.3s ease-in-out;
}
.home-slider__arrow-next,
.home-slider__arrow-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.home-slider__arrow-next i,
.home-slider__arrow-prev i {
  margin-left: 8px;
  margin-top: 13px;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .home-slider__arrow-next,
  .home-slider__arrow-prev {
    top: unset;
    bottom: 45px;
  }
}
.home-slider__arrow-next:hover,
.home-slider__arrow-prev:hover {
  opacity: 1;
}
.home-slider__arrow-next:hover span:after,
.home-slider__arrow-prev:hover span:after {
  background: var(--color-primary);
  border: 4px solid hsla(0, 0%, 100%, 0.2);
}
.home-slider__text {
  position: absolute;
  left: 130px;
  z-index: 10;
  color: var(--color-white);
  width: 40%;
  display: flex;
  top: 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-right: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 900px) {
  .home-slider__text {
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 0 50px 100px;
  }
}
.home-slider__text-button {
  margin-top: 30px;
}
.home-slider__text-header {
  font-size: var(--font-h2);
  line-height: calc(2px + var(--font-h2) + 2px);
  font-weight: 600;
  margin-bottom: var(--grid-gutter);
}
@media screen and (max-width: 900px) {
  .home-slider__text-header {
    text-align: center;
    font-size: var(--font-h3);
    line-height: calc(2px + var(--font-h3) + 2px);
  }
}
.home-slider__text-small {
  font-size: var(--font-middle);
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .home-slider__text-small {
    display: none;
  }
}
.home-slider__bg {
  position: relative;
  height: 100%;
}
.home-slider__bg:after {
  position: absolute;
  content: "";
  top: 0;
  width: 50%;
  height: 100%;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  z-index: 1;
  opacity: 0.5;
  background: var(--body-color);
}
@media screen and (max-width: 900px) {
  .home-slider__bg:after {
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
  }
}
.home-about {
  padding: 120px 0 80px;
  background: var(--color-white);
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .home-about {
    padding: 0 0 10px;
  }
}
.home-about .container {
  position: relative;
}
.home-about .fake-text {
  width: 100%;
  position: absolute;
  font-size: 150px;
  font-weight: 700;
  color: var(--color-white);
  z-index: 0;
  text-transform: uppercase;
  text-shadow: -1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.1),
    1px 0 rgba(0, 0, 0, 0.1), 0 -1px rgba(0, 0, 0, 0.1);
  top: -90px;
  left: -70px;
  height: 230px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .home-about .fake-text {
    font-size: 50px;
    left: 10px;
    top: -10px;
  }
}
.home-about h1 {
  font-size: var(--font-h2);
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  .home-about h1 {
    font-size: var(--font-h2);
    line-height: 1.2;
    font-weight: 600;
  }
}
.home-about h2 {
  font-size: var(--font-h2);
  line-height: 1.2;
  font-weight: 600;
}
.home-about__button {
  display: flex;
  margin: calc(var(--grid-gutter) * 2) 0;
}
@media screen and (max-width: 900px) {
  .home-about__button {
    justify-content: center;
  }
}
.home-about__inner {
  margin-right: calc(var(--grid-gutter) * 5);
  position: relative;
}
@media screen and (max-width: 900px) {
  .home-about__inner {
    margin-right: calc(var(--grid-gutter) * 0);
  }
}
.home-about-thumbnail {
  position: relative;
  z-index: 1;
}
.home-about-thumbnail img {
  border-radius: 50%;
}
.home-about-thumbnail svg.circle1 {
  display:none;        
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  top: -10%;
  right: -5%;
  animation: jump-1 5s linear infinite;
}
@media screen and (max-width: 900px) {
  .home-about-thumbnail svg.circle1 {
    top: 17px;
    right: 0;
  }
}
.home-about-thumbnail svg.circle1 circle {
  fill: var(--color-primary);
}
.home-about-thumbnail svg.circle2 {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  top: -5%;
  right: -1%;
  animation: jump-1 5s linear infinite;
}
@media screen and (max-width: 900px) {
  .home-about-thumbnail svg.circle2 {
    display: none;
  }
}
.home-about-thumbnail svg.circle2 circle {
  fill: transparent;
  stroke: var(--color-white);
  stroke-width: 0.3px;
}
.home-about-thumbnail svg.circle3 {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  top: -100%;
  right: -100%;
  animation: jump-1 5s linear infinite;
}
@media screen and (max-width: 900px) {
  .home-about-thumbnail svg.circle3 {
    display: none;
  }
}
.home-about-thumbnail svg.circle3 circle {
  fill: transparent;
  stroke: var(--color-white);
  stroke-width: 0.2px;
}
.home-about__item:last-child {
  margin-left: 30px;
}
.home-about__video {
  color: var(--color-primary);
  display: flex;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 5px 15px;
  transition: 0.3s;
}
.home-about__video:hover {
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: 0.3s;
  box-shadow: 0 9px 18px #1810100d;
  color: var(--body-color);
}
.home-about__video:hover .home-about__video-icon {
  background: var(--color-primary);
  transition: 0.3s;
}
.home-about__video:hover .home-about__video-icon i {
  color: var(--color-white);
  transition: 0.3s;
}
.home-about__video a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-about__video-icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--bg-second);
  padding: var(--grid-gutter);
  margin-right: 10px;
}
.home-about__video-icon i {
  color: var(--color-primary);
}
.home-about__clients {
  position: relative;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .home-about__clients {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.home-about__clients-logo {
  display: flex;
  column-gap: var(--grid-gutter);
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .home-about__clients-logo {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 900px) {
  .home-about__clients-logo a {
    max-width: 45%;
  }
}
.home-about__clients-logo img {
  box-shadow: 0 10px 30px rgba(33, 5, 5, 0.05);
  border-radius: 15px;
  transition: all 0.4s;
  width: 272px;
  height: 120px;
}
@media screen and (max-width: 900px) {
  .home-about__clients-logo img {
    margin-bottom: 10px;
  }
}
.home-about__clients-logo img:hover {
  transform: translateY(-15px);
  transition: all 0.4s;
}
.home-about__clients p {
  max-width: max-content;
  margin: auto;
  font-weight: 700;
  color: var(--font-color);
  text-transform: uppercase;
  font-size: var(--font-header);
}
.home-about__clients:before {
  content: "";
  position: absolute;
  left: 62%;
  height: 2px;
  width: 38%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 900px) {
  .home-about__clients:before {
    left: 75%;
    width: 20%;
  }
}
.home-about__clients:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 38%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: -14px;
}
@media screen and (max-width: 900px) {
  .home-about__clients:after {
    width: 20%;
  }
}
.home-icon {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .home-icon {
    margin-top: 20px;
  }
}
.home-icon__item {
  border-top: 5px solid transparent;
  background: #fff;
  box-shadow: 0 4px 58px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 30px 45px 45px;
  transition: all 0.4s;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .home-icon__item {
    transform: translateY(-15px);
    transition: all 0.4s;
    padding: 10px 15px 5px;
    display: flex;
  }
}
.home-icon__item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-icon__item:hover {
  transform: translateY(-15px);
  transition: all 0.4s;
  border-top: 5px solid var(--color-primary);
}
@media screen and (max-width: 900px) {
  .home-icon__item:hover {
    border-top: 5px solid transparent;
  }
}
.home-icon__icon {
  font-size: 44px;
  color: var(--color-primary);
}
@media screen and (max-width: 900px) {
  .home-icon__icon {
    margin-right: var(--grid-gutter);
    font-size: 30px;
    line-height: 18px;
  }
}
.home-icon__icon i,
.home-icon__icon img {
  margin-top: 10px;
}
.home-icon__content h5 {
  font-weight: 700;
  font-size: var(--font-middle);
  min-height: 60px;
}
@media screen and (max-width: 900px) {
  .home-icon__content h5 {
    min-height: unset;
    margin-bottom: 5px;
    line-height: 22px;
  }
}
.home-icon__content p {
  line-height: 18px;
}
.home-news {
  background: var(--bg-second);
  padding: calc(var(--grid-gutter) * 4) 0;
}
@media screen and (max-width: 900px) {
  .home-news {
    padding: calc(var(--grid-gutter) * 1) 0;
  }
}
.home-news .container {
  position: relative;
}
.home-news .fake-text {
  width: 100%;
  position: absolute;
  font-size: 150px;
  font-weight: 700;
  color: var(--color-white);
  z-index: 0;
  text-transform: uppercase;
  text-shadow: -1px 0 rgba(0, 0, 0, 0.05), 0 1px rgba(0, 0, 0, 0.05),
    1px 0 rgba(0, 0, 0, 0.05), 0 -1px rgba(0, 0, 0, 0.05);
  top: -85px;
  left: -70px;
  opacity: 0.8;
  height: 230px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .home-news .fake-text {
    font-size: 50px;
    left: 0;
    top: -10px;
  }
}
.home-news__header {
  position: relative;
  margin-bottom: calc(var(--grid-gutter) * 1);
}
.home-news__header a {
  font-weight: 700;
}
.home-news__header i {
  margin-left: 10px;
  display: inline-block;
}
.home-news h2 {
  font-size: var(--font-h2);
  line-height: 1.2;
  font-weight: 600;
}
.home-news__button a {
  padding: 17px 30px;
  min-width: max-content;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  color: var(--color-white);
  background: var(--color-primary);
  position: relative;
  z-index: 4;
  left: 50px;
  top: 13px;
  transition: 0.5s;
}
.home-news__button a:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transition: 0.5s;
}
.home-news__button a i {
  margin-right: 10px;
}
.home-news__item {
  padding: 50px 50px 30px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e9ecf1;
  position: relative;
  z-index: 5;
  height: 100%;
  border-top: 5px solid transparent;
  transition: all 0.4s;
}
@media screen and (max-width: 900px) {
  .home-news__item {
    padding: 15px;
  }
}
.home-news__item:hover {
  transform: translateY(-15px);
  transition: all 0.4s;
  border-top: 5px solid var(--color-primary);
}
.home-news__item:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.home-news__item a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 5;
}
.home-news__item-date {
  font-size: var(--font-small);
  color: var(--color-grey);
}
.home-news__item-img {
  height: 180px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: var(--grid-gutter);
}
@media screen and (max-width: 900px) {
  .home-news__item-img {
    width: 100%;
    height: 200px;
  }
}
.home-news__item-img img {
  border-radius: var(--radius);
  width: 100%;
  transition: 0.5s;
  overflow: hidden;
  object-fit: cover;
  height: 100%;
  object-position: center center;
}
.home-news__item-content h3 {
  font-size: var(--font-normal);
}
.home-contacts {
  padding: 80px 0 100px;
  background: var(--color-white);
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .home-contacts {
    padding: 20px 0 50px;
  }
}
.home-contacts__feedback {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .home-contacts__feedback {
    text-align: center;
  }
}
.home-contacts__text {
  margin: calc(var(--grid-gutter) * 3) 0;
  padding-right: var(--grid-gutter);
}
@media screen and (max-width: 900px) {
  .home-contacts__text {
    margin: calc(var(--grid-gutter) * 1) 0;
  }
}
.home-contacts__header {
  position: relative;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .home-contacts__header {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.home-contacts__header p {
  max-width: max-content;
  margin: auto;
  font-weight: 700;
  color: var(--font-color);
  text-transform: uppercase;
  font-size: var(--font-header);
}
.home-contacts__header:before {
  content: "";
  position: absolute;
  left: 62%;
  height: 2px;
  width: 38%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 900px) {
  .home-contacts__header:before {
    left: 75%;
    width: 20%;
  }
}
.home-contacts__header:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 38%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: -14px;
}
@media screen and (max-width: 900px) {
  .home-contacts__header:after {
    width: 20%;
  }
}
.home-contacts__address-icon {
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.1);
  box-shadow: 0 9px 18px rgba(24, 16, 16, 0.05);
  height: 35px;
  width: 35px;
  text-align: center;
  margin-right: 15px;
  font-size: var(--font-normal);
}
.home-contacts__address-icon i {
  position: relative;
  top: 7px;
  color: var(--color-primary);
}
.home-contacts__address-item {
  display: flex;
  color: var(--body-color);
  margin-bottom: 20px;
  font-size: var(--font-middle);
}
.home-contacts__address-item a {
  color: var(--body-color);
}
.home-contacts__address-item small {
  color: var(--body-color);
  opacity: 0.5;
  display: block;
  font-size: var(--font-small);
}
.home-contacts__map {
  background: var(--bg-second);
  width: 100%;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e9ecf1;
}
@media screen and (max-width: 900px) {
  .home-contacts__map {
    min-height: unset;
    margin-top: 20px;
  }
}
.home-contacts__map #map {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 900px) {
  .home-contacts__map #map {
    height: 350px;
  }
}
.home-contacts__map #map [class*="ymaps-2-1"][class*="-ground-pane"] {
  -webkit-filter: grayscale(100%) !important;
}
.dialog-news {
  width: 800px;
  height: 500px;
  border-radius: 15px !important;
}
.dialog-news h2 {
  font-weight: 800;
  font-size: var(--font-header);
}
.dialog-news__item {
  overflow-y: scroll;
  height: 460px;
  padding: 30px 20px;
  max-width: 760px;
}
.dialog-news__item-date {
  font-size: var(--font-small);
  color: var(--color-grey);
}
.dialog-news__button {
  text-align: center;
  margin: 40px auto 0;
  border-top: 1px solid var(--border-color);
  padding: 40px 40px 0;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  background: #fff;
  font-size: var(--font-normal);
  color: var(--font-color);
  letter-spacing: 0.2px;
  flex-direction: column;
  display: flex;
  font-weight: 400;
}
header {
  flex: 0 0 auto;
}
main {
  flex: 1 0 auto;
  min-height: 300px;
}
footer {
  flex: 0 0 auto;
}
.is-flex {
  display: flex;
}
.mb-0 {
  margin-bottom: 0;
}
.container-big {
  max-width: var(--grid-maxWidthBig);
  margin: 0 auto;
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
}
@media screen and (max-width: 900px) {
  .container-big {
    padding: 0;
  }
}
header {
  background: var(--color-white);
}
.header__top {
  position: relative;
  color: var(--body-color);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}
.header__top .col-4-lg {
  position: static;
}
.header__top .col-4-lg:after {
  position: absolute;
  left: -2%;
  content: "";
  top: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}
.header__top .col-4-lg:first-child {
  color: var(--color-grey);
}
.header__top .col-4-lg:first-child .header__top-item {
  padding: 0;
}
.header__top .col-4-lg:first-child a {
  color: var(--color-grey);
}
.header__top-item {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--border-color);
  margin: calc(var(--grid-gutter) / 2) 0;
  padding: 0 var(--grid-gutter);
}
.header__top-item a {
  color: var(--body-color);
}
.header__top-item i {
  margin-right: 8px;
  font-size: var(--font-small);
  color: var(--color-primary);
}
.header__top-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.header__top-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__top-item ul li {
  display: inline-block;
  margin-right: var(--grid-gutter);
}
.header__top-item ul li:last-child {
  margin-right: 0;
}
.header__top-item ul li a {
  display: inline-block;
}
.header__top-item ul li a:hover {
  color: var(--color-primary);
}
.header__top-item ul li a.un:after {
  background: var(--color-primary);
}
.header__top-item-time {
  margin-left: 10px;
}
.header__top-social i {
  font-size: var(--font-size);
  transition: 0.3s;
  margin-right: 15px;
  color: var(--body-color);
}
.header__top-social i:hover {
  transform: scale(1.1);
  color: var(--color-primary);
}
.header__top-social a:last-child i {
  margin-right: 0;
}
.header__main {
  padding-top: calc(var(--grid-gutter) * 2);
  padding-bottom: calc(var(--grid-gutter) * 2);
  display: flex;
}
@media screen and (max-width: 900px) {
  .header__main {
    padding-top: calc(var(--grid-gutter) * 1);
    padding-bottom: calc(var(--grid-gutter) * 1);
    justify-content: space-between;
    position: relative;
  }
}
.header__main-ver1 {
  padding-bottom: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 900px) {
  .header__main-ver1 {
    padding-top: calc(var(--grid-gutter) * 1);
    padding-bottom: calc(var(--grid-gutter) * 1);
    justify-content: space-between;
    position: relative;
  }
}
.header__main-ver2 {
  padding-bottom: calc(var(--grid-gutter) * 1);
}
@media screen and (max-width: 900px) {
  .header__main-ver2 {
    padding-top: calc(var(--grid-gutter) * 1);
    padding-bottom: calc(var(--grid-gutter) * 1);
    justify-content: space-between;
    position: relative;
  }
}
.header__main-logo {
  margin-right: calc(var(--grid-gutter) * 2);
  min-width: 185px;
  position: relative;
  font-weight: 700;
}
.header__main-logo a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: var(--font-color);
  opacity: 0.7;
  display: flex;
  align-items: center;
  font-size: 22px;
  line-height: 28px;
}
@media screen and (max-width: 900px) {
  .header__main-logo {
    min-width: 120px;
    max-width: 160px;
  }
}
@media screen and (max-width: 900px) {
  .header__main-logo img {
    max-height: 100px;
  }
}
.header__main-info {
  margin-left: auto;
  min-width: 300px;
}
@media screen and (max-width: 900px) {
  .header__main-info {
    min-width: unset;
  }
}
.header__main-phone {
  display: flex;
  min-width: 270px;
}
@media screen and (max-width: 900px) {
  .header__main-phone {
    min-width: unset;
    width: 60px;
    margin-right: 10px;
  }
}
.header__main-phone-time {
  font-size: var(--font-small);
}
.header__main-phone-time i {
  color: var(--color-primary);
  margin-right: 7px;
}
.header__main-phone-icon {
  background: var(--bg-second);
  padding: var(--grid-gutter);
  border-radius: var(--radius);
  margin-right: var(--grid-gutter);
  color: var(--color-primary);
  width: 64px;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__main-phone-number {
  line-height: 1.1em;
  cursor: pointer;
  font-size: var(--font-header);
  font-weight: 700;
}
.header__main-phone-number.open {
  display: block !important;
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  z-index: 5;
  margin-top: 70px;
  text-align: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-color);
}
.header__main-phone-number small {
  font-weight: 400;
  font-size: var(--font-small);
}
.header__main-mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .header__main-mobile {
    display: flex;
  }
}
.header__main-mobile-icon {
  background: var(--bg-second);
  padding: var(--grid-gutter);
  border-radius: var(--radius);
  width: 64px;
  text-align: center;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.header__main-mobile-icon-inner {
  position: relative;
  top: 2px;
}
.header__main-mobile-icon span {
  width: 100%;
  background: var(--font-color);
  height: 2px;
  margin-bottom: 5px;
  display: block;
}
.header__main-mobile-icon span:first-child,
.header__main-mobile-icon span:last-child {
  width: 60%;
}
.header__main-menu-close {
  background: var(--color-primary);
  padding: var(--grid-gutter);
  border-radius: var(--radius);
  color: var(--color-white);
  width: 64px;
  text-align: center;
  font-size: 18px;
  position: absolute;
  top: 25px;
  right: 25px;
  flex-direction: column;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 900px) {
  .header__main-menu-close {
    display: flex;
  }
}
@media screen and (max-width: 900px) {
  .header__main-menu {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 0;
    padding: 40px 30px;
    padding-top: 50px;
    height: 100%;
    background-color: #fff;
    backdrop-filter: blur(7px);
    z-index: 1900;
    transition: all 0.6s ease;
    box-shadow: 0 9px 100px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
}
.header__main-menu.open {
  width: calc(100vw - 20px);
  right: 0;
  display: flex;
  overflow: visible;
}
.un {
  display: inline-block;
}
.un:after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background: var(--color-white);
  transition: 0.3s;
}
.un:hover:after {
  width: 100%;
}
.nav_position_2 {
  margin-bottom: 3px;
  padding: 0 calc(var(--grid-gutter) * 1);
  border-radius: var(--radius);
}
.nav_position_2 nav li {
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .nav_position_2 nav li {
    margin-right: 0;
  }
}
nav {
  width: 100%;
}
@media screen and (max-width: 900px) {
  nav {
    margin-top: 50px;
  }
}
.mainmenu {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.mainmenu li {
  position: relative;
  margin-right: 25px;
}
@media screen and (max-width: 900px) {
  .mainmenu li {
    padding: 0 10px;
    border-radius: 5px;
    box-shadow: 0 11px 30px rgba(0, 0, 0, 0.07);
    width: 100%;
    margin-right: 0;
  }
}
.mainmenu li.has-droupdown {
  margin-right: 48px !important;
}
@media screen and (max-width: 900px) {
  .mainmenu li.has-droupdown {
    margin-right: 0 !important;
  }
}
.mainmenu li.has-droupdown > a:before {
  content: "\f078" !important;
  position: absolute !important;
  top: 51%;
  font-family: Font Awesome\6 Free;
  right: -20px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .mainmenu li.has-droupdown > a:before {
    right: 10px;
  }
}
.mainmenu li.has-droupdown:hover > a:before {
  content: "\f077" !important;
}
.mainmenu li:hover > a {
  color: var(--color-primary);
}
.mainmenu li a {
  padding: 20px 0;
  display: block;
  color: #1c2539;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  min-width: max-content;
}
.mainmenu li a span {
  display: none;
}
@media screen and (max-width: 900px) {
  .mainmenu li a span {
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    height: 100%;
    width: 55px;
    z-index: 5;
  }
}
.mainmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mainmenu .submenu {
  min-width: 270px;
  height: auto;
  position: absolute;
  top: 90%;
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.3s;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-left: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  border-top: 4px solid var(--color-primary);
  display: inline-block;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
}
.mainmenu .submenu li {
  margin-right: 0 !important;
  padding: 0 15px;
}
.mainmenu .submenu li.has-droupdown > a:before {
  content: "\f054" !important;
  right: 0;
}
.mainmenu .submenu li a {
  padding: 15px 0;
}
.mainmenu .submenu .submenu {
  min-width: 270px;
  height: auto;
  position: absolute;
  top: -4px !important;
  left: 100%;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.3s;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-left: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  border-top: 4px solid var(--color-primary);
  display: inline-block;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
}
.mainmenu li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.mainmenu .submenu li:not(:last-child) {
  border-bottom: 1px solid #c4c4c426;
}
.mobilemenu {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.mobilemenu li {
  position: relative;
  padding: 0 10px 0 20px;
  border-radius: 5px;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.07);
  width: 100%;
  margin-right: 0;
}
.mobilemenu li.has-droupdown {
  margin-right: 48px !important;
}
@media screen and (max-width: 900px) {
  .mobilemenu li.has-droupdown {
    margin-right: 0 !important;
  }
}
.mobilemenu li.has-droupdown > a:before {
  content: "\f078" !important;
  position: absolute !important;
  top: 51%;
  font-family: Font Awesome\6 Free;
  right: -20px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .mobilemenu li.has-droupdown > a:before {
    right: 10px;
  }
}
.mobilemenu li a {
  padding: 15px 0;
  display: block;
  color: #1c2539;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  min-width: max-content;
}
.mobilemenu li a span {
  display: none;
}
@media screen and (max-width: 900px) {
  .mobilemenu li a span {
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    height: 100%;
    width: 55px;
    z-index: 5;
  }
}
.mobilemenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobilemenu .submenu {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.3s;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-left: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  height: 0;
}
.mobilemenu .submenu li {
  padding: 0 0 0 20px;
  box-shadow: unset;
}
.mobilemenu .submenu li.has-droupdown > a:before {
  content: "\f078" !important;
  font-weight: 700;
}
.mobilemenu .submenu li a {
  padding: 5px 0;
  font-size: 14px;
  font-weight: 400;
}
.mobilemenu .submenu.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding-bottom: 15px;
}
.second-menu {
  background: var(--bg-second);
  padding: 40px;
  margin-bottom: 40px;
  border-radius: var(--radius);
}
.second-menu__header {
  font-size: var(--font-h4);
  font-weight: 700;
  line-height: 1.24;
}
.second-menu__body {
  margin-top: 30px;
}
.second-menu ul {
  margin-bottom: 15px;
  padding: 0;
}
.second-menu ul:last-child {
  margin-bottom: 0;
}
.second-menu ul a {
  font-weight: 700;
}
.second-menu ul .selected > a {
  color: var(--color-primary);
}
.second-menu ul li {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body);
  position: relative;
  background: var(--color-white);
  font-weight: 500;
  transition: 0.3s;
  border-radius: 5px;
}
.second-menu ul li.has-droupdown > a:before {
  content: "\f078";
  position: absolute;
  top: 25px;
  font-family: Font Awesome\6 Free;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.second-menu ul li span {
  position: absolute;
  right: 20px;
  top: 13px;
  width: 25px;
  height: 25px;
  z-index: 1;
}
.second-menu ul li a {
  transition: 0.3s;
  color: #5d666f;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.second-menu ul li a.hide1,
.second-menu ul li a.second1 {
  display: none !important;
}
.second-menu ul li a i {
  color: var(--color-primary);
  transition: 0.3s;
}
.second-menu ul li a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 5px;
  transform: translateY(-5px) scale(1.03);
  transition: 0.3s;
}
.second-menu ul li a:hover i,
.second-menu ul li i {
  color: var(--color-white);
}
.second-menu ul ul {
  margin-top: -10px;
  margin-left: 0;
  padding-bottom: 15px;
}
.second-menu ul ul li.has-droupdown > a:before {
  content: "" !important;
}
.second-menu ul ul ul {
  margin-top: 0;
  margin-left: 0;
}
.second-menu ul ul ul li.has-droupdown > a:before {
  content: "" !important;
}
.second-menu ul ul ul li:after {
  position: absolute;
  left: 30px;
  top: 9px;
  content: " ";
  width: 9px;
  height: 9px;
  background: #fff;
  border: 2px solid rgba(14, 20, 0, 0.2);
  border-radius: 50%;
}
.second-menu ul ul li {
  padding: 0 0 0 27px;
  margin-bottom: 0;
  position: relative;
}
.second-menu ul ul li:after {
  position: absolute;
  left: 30px;
  top: 8px;
  content: " ";
  width: 9px;
  height: 9px;
  background: rgba(14, 20, 0, 0.2);
  border-radius: 50%;
}
.second-menu ul ul li span {
  right: 20px;
  top: 2px;
}
.second-menu ul ul li a {
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 500;
}
.second-menu ul ul li a:hover {
  background: transparent;
  color: var(--color-primary);
}
.second-menu ul ul li a:hover i {
  color: var(--color-primary);
}
.addtional-block {
  background: var(--bg-second);
  padding: 40px;
  margin-bottom: 40px;
  border-radius: var(--radius);
}
@media screen and (max-width: 900px) {
  .addtional-block {
    padding: var(--grid-gutter);
  }
}
.addtional-block__header {
  font-size: var(--font-h4);
  font-weight: 700;
  line-height: 1.24;
}
.addtional-block__body {
  margin-top: 30px;
}
.addtional-block__body.tags a {
  padding: 5px 16px;
  background: var(--color-white);
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: var(--body-color);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}
.addtional-block__body.tags a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px) scale(1.09);
}
.addtional-block__post {
  display: flex;
  margin-bottom: 25px;
}
.addtional-block__img {
  background: var(--bg-second);
  margin-right: 20px;
  overflow: hidden;
  max-width: max-content;
  width: 85px;
  height: 85px;
}
.addtional-block__img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.addtional-block__text {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.addtional-block__text a {
  font-size: var(--font-normal);
  line-height: 20px;
  color: var(--font-color);
  cursor: pointer;
}
.addtional-block__text a:hover {
  color: var(--color-primary);
}
.addtional-block__text-user {
  margin-bottom: 5px;
  color: var(--color-grey);
  opacity: 0.5;
}
.addtional-block__text-user i {
  margin-right: 7px;
}
.addtional-block__text-title {
  font-size: var(--font-normal);
  color: var(--font-color);
}
.mobile-subcategory {
  margin-bottom: 30px;
}
.mobile-subcategory li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
.mobile-subcategory li a {
  background: var(--bg-second);
  padding: 5px 15px;
  border-radius: 15px;
  color: var(--font-color);
  display: inline-block;
}
.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 365px;
  padding: 40px 30px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: #fff;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 0.6s ease;
  box-shadow: -5px 0 20px -5px rgb(149 22 1.83333333%);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.side-bar.show {
  right: 0;
}
.page-content {
  margin-bottom: 50px;
}
.page-content h1 {
  font-size: var(--font-h3);
  font-weight: 700;
}
.page-content__inner {
  padding-right: 80px;
  font-weight: 400;
  min-height: 300px;
}
@media screen and (max-width: 900px) {
  .page-content__inner {
    padding-right: 0;
  }
}
.page-content figure {
  padding: 0;
  margin: calc(var(--grid-gutter) * 2) 0;
  border-radius: 15px;
}
@media screen and (max-width: 900px) {
  .page-content figure {
    margin: calc(var(--grid-gutter) * 1) 0;
  }
}
.page-content iframe {
  max-width: 100%;
  margin: calc(var(--grid-gutter) * 2) 0;
}
@media screen and (max-width: 900px) {
  .page-content iframe {
    margin: calc(var(--grid-gutter) * 1) 0;
  }
}
.page-content__button {
  margin: 20px 0;
}
.pagination {
  max-width: max-content;
  list-style: none;
  margin: 25px 0;
  padding: 0;
}
.pagination li {
  max-width: max-content;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  margin-right: 10px;
  color: #1c2539;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}
.pagination li a {
  display: block;
  padding: 15px 20px;
  vertical-align: middle;
}
.pagination li.selected {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.pagination li.selected a,
.pagination li:hover {
  color: var(--color-white);
}
.pagination li:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.pagination li:hover a {
  color: var(--color-white);
}
.photo__gallery {
  margin-top: 20px;
  margin-bottom: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 900px) {
  .photo__gallery {
    margin-bottom: calc(var(--grid-gutter) * 1);
  }
}
.photo__gallery-one {
  border-radius: 15px;
  margin-bottom: var(--grid-gutter);
}
.photo__gallery-link {
  margin: 20px 0;
}
.photo__gallery-date {
  margin-bottom: 5px;
  color: var(--color-grey);
  opacity: 0.5;
}
.photo__gallery-date i {
  margin-right: 7px;
}
.photo__gallery-image {
  overflow: hidden;
  border-radius: 15px;
  height: 250px;
  position: relative;
}
.photo__gallery-image:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.photo__gallery-image img {
  object-fit: cover;
  object-position: center;
  height: 250px;
  width: 100%;
  transition: 0.5s;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.photo__post {
  margin-bottom: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 900px) {
  .photo__post {
    margin-bottom: calc(var(--grid-gutter) * 1);
  }
}
.photo__post-subtitle {
  color: var(--color-grey);
  opacity: 0.5;
  font-size: var(--font-header);
  font-weight: 600;
}
.photo__post-description {
  font-size: var(--font-middle);
  margin: 20px 0 60px;
}
.photo__post-text {
  padding: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 900px) {
  .photo__post-text {
    padding: calc(var(--grid-gutter));
  }
}
.photo__post-text h3 {
  font-size: var(--font-h3);
  line-height: calc(var(--font-h3) + 6px);
}
.photo__post-text h3 a {
  color: var(--font-color);
}
.photo__post-text h3 a:hover {
  color: var(--color-primary);
}
.photo__post-one {
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: var(--grid-gutter);
}
.photo__post-link {
  margin: 20px 0;
}
.photo__post-date {
  margin-bottom: 5px;
  color: var(--color-grey);
  opacity: 0.5;
}
.photo__post-date i {
  margin-right: 7px;
}
.photo__post-count {
  position: absolute;
  box-shadow: 0 4px 58px rgba(0, 0, 0, 0.08);
  padding: 10px 20px;
  border-radius: 15px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  color: var(--color-primary);
  font-size: var(--font-small);
}
.photo__post-image {
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 250px;
  position: relative;
}
.photo__post-image:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.photo__post-image img {
  object-fit: cover;
  object-position: center;
  height: 250px;
  width: 100%;
  transition: 0.5s;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.photo__search form {
  display: flex;
}
.photo__search form input {
  border-radius: 15px !important;
  margin-right: 15px;
}
[aria-label][role~="tooltip"] {
  position: relative;
}
[aria-label][role~="tooltip"]:after,
[aria-label][role~="tooltip"]:before {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s)
    var(--microtip-transition-easing, ease-in-out)
    var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}
[aria-label][role~="tooltip"]:before {
  background-size: 100% auto !important;
  content: "";
}
@media screen and (max-width: 900px) {
  [aria-label][role~="tooltip"]:before {
    display: none !important;
  }
}
[aria-label][role~="tooltip"]:after {
  background: hsla(0, 0%, 7%, 0.9);
  border-radius: 4px;
  color: var(--color-white);
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  [aria-label][role~="tooltip"]:after {
    display: none !important;
  }
}
[aria-label][role~="tooltip"]:focus:after,
[aria-label][role~="tooltip"]:focus:before,
[aria-label][role~="tooltip"]:hover:after,
[aria-label][role~="tooltip"]:hover:before {
  opacity: 1;
  pointer-events: auto;
}
[role~="tooltip"][data-microtip-position|="top"]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 12.002 8.594 0 2.658 0z'/%3E%3C/svg%3E")
    no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}
[role~="tooltip"][data-microtip-position|="top"]:after {
  margin-bottom: 11px;
}
[role~="tooltip"][data-microtip-position|="top"]:before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}
[role~="tooltip"][data-microtip-position|="top"]:hover:before {
  transform: translate3d(-50%, -5px, 0);
}
[role~="tooltip"][data-microtip-position|="top"]:after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}
[role~="tooltip"][data-microtip-position="top"]:hover:after {
  transform: translate3d(-50%, -5px, 0);
}
[role~="tooltip"][data-microtip-position="top-left"]:after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}
[role~="tooltip"][data-microtip-position="top-left"]:hover:after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}
[role~="tooltip"][data-microtip-position="top-right"]:after {
  transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%;
}
[role~="tooltip"][data-microtip-position="top-right"]:hover:after {
  transform: translate3d(calc(0% + -16px), -5px, 0);
}
[role~="tooltip"][data-microtip-position|="bottom"]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.715-.002 27.406 12 33.342 12z'/%3E%3C/svg%3E")
    no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
[role~="tooltip"][data-microtip-position|="bottom"]:after {
  margin-top: 11px;
}
[role~="tooltip"][data-microtip-position|="bottom"]:before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}
[role~="tooltip"][data-microtip-position|="bottom"]:hover:before {
  transform: translate3d(-50%, 0, 0);
}
[role~="tooltip"][data-microtip-position|="bottom"]:after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}
[role~="tooltip"][data-microtip-position="bottom"]:hover:after {
  transform: translate3d(-50%, 0, 0);
}
[role~="tooltip"][data-microtip-position="bottom-left"]:after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}
[role~="tooltip"][data-microtip-position="bottom-left"]:hover:after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}
[role~="tooltip"][data-microtip-position="bottom-right"]:after {
  transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%;
}
[role~="tooltip"][data-microtip-position="bottom-right"]:hover:after {
  transform: translate3d(calc(0% + -16px), 0, 0);
}
[role~="tooltip"][data-microtip-position="left"]:after,
[role~="tooltip"][data-microtip-position="left"]:before {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}
[role~="tooltip"][data-microtip-position="left"]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21.715 0 27.406 0 33.342z'/%3E%3C/svg%3E")
    no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}
[role~="tooltip"][data-microtip-position="left"]:after {
  margin-right: 11px;
}
[role~="tooltip"][data-microtip-position="left"]:hover:after,
[role~="tooltip"][data-microtip-position="left"]:hover:before {
  transform: translate3d(0, -50%, 0);
}
[role~="tooltip"][data-microtip-position="right"]:after,
[role~="tooltip"][data-microtip-position="right"]:before {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}
[role~="tooltip"][data-microtip-position="right"]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 14.285 12 8.594 12 2.658z'/%3E%3C/svg%3E")
    no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}
[role~="tooltip"][data-microtip-position="right"]:after {
  margin-left: 11px;
}
[role~="tooltip"][data-microtip-position="right"]:hover:after,
[role~="tooltip"][data-microtip-position="right"]:hover:before {
  transform: translate3d(0, -50%, 0);
}
[role~="tooltip"][data-microtip-size="small"]:after {
  white-space: normal;
  width: 80px;
}
[role~="tooltip"][data-microtip-size="medium"]:after {
  white-space: normal;
  width: 150px;
}
[role~="tooltip"][data-microtip-size="large"]:after {
  white-space: normal;
  width: 260px;
}
