/* COMMON */
@font-face {
  font-family: FontMedium;
  src: url(../fonts/GothamPro.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBold;
  src: url(../fonts/GothamPro-Medium.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBold;
  src: url(../fonts/GothamPro-Bold.ttf) format("truetype");
  font-display: block;
}
.font-medium {
  font-family: FontMedium;
}

.font-semibold {
  font-family: FontSemiBold;
}

.font-bold {
  font-family: FontBold;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background-color: rgba(232, 99, 12, 0.06);
}
body::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #e30814;
}

.modal-open body {
  display: inherit;
}

body > main {
  z-index: 0;
  padding-top: 155px;
}

.header {
  position: relative;
}

.nav-scroll {
  padding: 12px 0 !important;
  background-color: #000 !important;
}
.nav-scroll .default-button:hover {
  background-color: #FFF;
  color: #000;
}

.container {
  max-width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.min-container {
  max-width: 927px;
  margin-left: auto;
  margin-right: auto;
}

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

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

ul {
  margin-bottom: 0;
  padding-left: 0;
}

p, a {
  font-family: FontSemiBold;
  font-size: 17px;
  margin-bottom: 0;
  line-height: 22px;
  color: #fff;
}

a {
  font-family: FontSemiBold;
  font-size: 17px;
  margin-bottom: 0;
  line-height: 22px;
  color: #fff;
  transition: all 0.2s linear;
}
a:hover {
  color: #e30814;
}

.green {
  color: #4AC074;
  transition: all 0.2s linear;
}
.green:hover {
  color: #F8BA0C;
}

.hide {
  display: none !important;
}

.show {
  display: inherit !important;
}

.main-background {
  /*background: url('../img/bg-decor.png'), url('../img/bg-decor-car.png'), #F0F0F0;
  background-repeat: no-repeat;
  background-position: left 0, right 0;
  background-size: 50%, 50%, 100%;
  background-attachment: scroll, fixed;*/
  background-color: #f3f3f3;
  min-height: 100vh;
}

.main-title {
  font-size: 30px !important;
  font-family: FontBold;
  line-height: 45px !important;
  color: #000 !important;
  text-transform: inherit !important;
  margin-bottom: 30px;
  position: relative;
}

.default-button {
  display: inline-block;
  padding: 14px 29px;
  background-color: #e30814;
  transition: all 0.2s linear;
  color: #FFF;
  font-family: FontBold;
  border: 0;
  white-space: nowrap;
}
.default-button:hover {
  background-color: #1c3d6d;
  color: #FFF;
}

.help-content {
  margin-top: 30px;
  margin-bottom: 30px;
}
.help-content p {
  margin-bottom: 0 !important;
}

.modal-open {
  overflow: hidden;
}

.current-menu-item a, .current-page-ancestor a {
  color: #e30814 !important;
  transition: all 0.2s linear;
}
.current-menu-item a:hover, .current-page-ancestor a:hover {
  color: #F8BA0C;
}

.color-red {
  color: #D80027;
}

.sidebar-audio-player {
  margin-bottom: 30px;
  transition: all 0.2s linear;
}

.show-player {
  opacity: 1;
  transition: all 0.2s linear;
}

.scroll-content {
  overflow-y: auto;
  max-height: calc(100% - 120px);
  padding: 30px 30px !important;
  margin-top: 30px;
  margin-bottom: 15px;
  overflow-x: hidden;
}
.scroll-content::-webkit-scrollbar {
  width: 5px;
}
.scroll-content::-webkit-scrollbar-track {
  background-color: rgba(5, 9, 21, 0.0901960784);
}
.scroll-content::-webkit-scrollbar-thumb {
  background-color: rgba(38, 38, 38, 0.6823529412);
}

.modal-open body, .modal-open .main-navigation {
  padding-right: 12px !important;
}

@media screen and (max-width: 1024px) {
  .main-background {
    background: url("../img/bg-decor-car.png"), #F0F0F0;
    background-attachment: scroll;
    background-position: right 0;
    background-repeat: no-repeat;
    background-size: 450px;
  }
  .help-content {
    margin-top: 40px;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 20px;
    align-items: baseline;
  }
  .help-content p {
    margin-bottom: 0;
  }
  .scroll-content {
    max-height: calc(100% - 80px);
    margin-top: 20px;
    margin-bottom: 5px;
    padding: 30px 50px !important;
  }
}
@media screen and (max-width: 992px) {
  .body-with-admin-bar .nav-scroll {
    top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .main-background {
    background-size: 400px;
  }
  .main-title {
    margin-bottom: 20px;
  }
  .body-with-admin-bar .main-menu {
    top: 46px;
  }
  .scroll-content {
    overflow-y: hidden;
    padding: 0 !important;
    margin-bottom: 10px;
  }
  .body-with-admin-bar .nav-scroll {
    top: 46px;
  }
  .body-with-admin-bar .application-modal {
    margin-top: 46px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
@media screen and (max-width: 575px) {
  .main-background {
    background-size: 70%;
  }
  body > main {
    padding-top: 110px;
  }
  .main-title {
    margin-bottom: 15px;
    line-height: 40px !important;
  }
  .help-content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.common-select-styling .selectize-control {
  font-size: 0 !important;
}
.common-select-styling .selectize-input {
  padding: 9px 48px 9px 12px !important;
  background-color: #fff !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
  background-image: url("../../assets/img/dropdown-selectize.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 18px) 50% !important;
  background-size: 12px 7px !important;
  font-size: 0 !important;
  line-height: normal !important;
  width: 100% !important;
  position: relative !important;
  box-shadow: none !important;
  transition: all 0.2s linear !important;
}
.common-select-styling .selectize-input:focus {
  outline: none !important;
}
.common-select-styling .selectize-input:before {
  content: none !important;
}
.common-select-styling .selectize-input:after {
  content: none !important;
}
.common-select-styling .selectize-input input {
  width: 100% !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-family: FontMedium !important;
  margin: 0 !important;
  height: auto !important;
  color: #33293C !important;
}
.common-select-styling .selectize-input .item {
  font-size: 16px !important;
  line-height: 24px !important;
  font-family: FontMedium !important;
  color: #33293C !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
}
.common-select-styling .selectize-input.full input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}
.common-select-styling .selectize-dropdown {
  box-shadow: none !important;
  border-radius: 0 0 12px 12px !important;
  width: 100% !important;
  top: 44px !important;
  border: 1px solid #33293C !important;
  background-color: #fff !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all 0.2s linear !important;
}
.common-select-styling .selectize-dropdown .option {
  font-size: 16px !important;
  line-height: 24px !important;
  font-family: FontMedium !important;
  color: #33293C !important;
  transition: all 0.2s linear !important;
  background-color: #fff !important;
  padding: 11px 12px !important;
}
.common-select-styling .selectize-dropdown .option[data-selectable]:hover {
  transition: all 0.2s linear !important;
  color: #fff !important;
  background-color: #33293C !important;
}
.common-select-styling .selectize-dropdown .active {
  color: #fff !important;
  background-color: #33293C !important;
}
.common-select-styling .selectize-dropdown-content::-webkit-scrollbar {
  width: 5px;
}
.common-select-styling .selectize-dropdown-content::-webkit-scrollbar-track {
  background-color: #fff;
}
.common-select-styling .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #33293C;
}
.common-select-styling .dropdown-active {
  border-radius: 12px 12px 0 0 !important;
  border: 1px solid #33293C !important;
  box-shadow: 0 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03) !important;
}
.common-select-styling .dropdown-active ~ .selectize-dropdown {
  border: 1px solid #33293C !important;
  box-shadow: 0 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03) !important;
}

#wpcontent {
  padding-left: 0 !important;
}

#wpbody-content {
  padding-bottom: 0 !important;
}

.main-container-admin-panel {
  padding: 0 20px;
  margin: 0 auto;
}
.main-container-admin-panel a:focus {
  box-shadow: none;
}
.main-container-admin-panel .default-admin-wrapper {
  padding: 32px 0;
}
.main-container-admin-panel .default-admin-wrapper .main-title {
  color: #121725 !important;
}
.main-container-admin-panel .single-row-subscribe {
  margin-bottom: 3px;
  font-size: 16px;
  padding: 4px 12px;
}
.main-container-admin-panel .single-row-subscribe:nth-child(2n) {
  background-color: #efe9f4 !important;
}
.main-container-admin-panel .row-id {
  width: 60px;
  color: #33293C;
  margin-right: 15px;
}
.main-container-admin-panel .row-value {
  width: 300px;
}
.main-container-admin-panel .row-value a {
  color: #33293C;
  position: relative;
}
.main-container-admin-panel .row-value a:hover {
  color: #33293C;
}
.main-container-admin-panel .row-date {
  width: 100px;
  color: #33293C;
  margin-right: 15px;
}
.main-container-admin-panel .delete-wrapper .delete-toggle {
  width: 16px;
  height: 16px;
  cursor: pointer;
  object-fit: contain;
  margin-right: 15px;
}
.main-container-admin-panel .delete-wrapper .delete-toggle:hover {
  -webkit-animation: rotating 0.5s 0.1s ease-out;
  animation: rotating 0.5s 0.1s ease-out;
}
.main-container-admin-panel .delete-wrapper .are-you-sure {
  font-size: 12px;
}
.main-container-admin-panel .delete-wrapper .delete-it {
  color: #33293C;
  text-decoration: underline;
  margin-left: 5px;
}
.main-container-admin-panel .single-admin-panel-select {
  width: 200px;
  margin: 0 15px 15px 0;
}
.main-container-admin-panel .single-admin-panel-select:nth-last-of-type(1) {
  margin: 0 0 15px;
}
.main-container-admin-panel .export-button {
  margin-bottom: 15px;
}
.main-container-admin-panel .export-button .export-subscribers {
  padding: 9px 23px 9px 28px !important;
  transition: all 0.2s linear !important;
  color: #fff !important;
}
.main-container-admin-panel .export-button .export-subscribers:hover {
  color: #fff !important;
  background-color: #5C5463 !important;
}

.preloader-circle {
  display: none;
  max-width: 30px;
  max-height: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(100% + 10px);
  -webkit-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
}

@media screen and (max-width: 767px) {
  .main-container-admin-panel .row-subscribe-date {
    width: 100%;
    text-align: right;
  }
  .main-container-admin-panel .row-value {
    text-align: right;
  }
  .main-container-admin-panel .single-row-subscribe {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    margin-bottom: 10px;
  }
  .main-container-admin-panel .delete-wrapper .delete-toggle-subscribe {
    margin: 0 0 0 15px;
    order: 2;
  }
  .main-container-admin-panel .delete-wrapper .are-you-sure-subscribe {
    order: 1;
  }
  .main-container-admin-panel .row-value-subscribe {
    width: 260px;
  }
}
@media screen and (max-width: 500px) {
  .main-container-admin-panel .common-select-styling {
    width: 300px;
    margin: 0 0 15px auto !important;
  }
  .main-container-admin-panel .export-button {
    margin: 0 0 30px auto;
    display: inline-block;
  }
  .main-container-admin-panel .subscribers-export-wrapper {
    display: block !important;
    text-align: right;
  }
  .main-container-admin-panel .preloader-subscribers {
    left: auto;
    right: calc(100% + 8px);
  }
}
/* COMPONENTS */
.header .main-navigation {
  padding: 12px 0;
  background-color: #000000;
  position: fixed;
  width: 100%;
  transition: padding-top 0.2s linear, padding-bottom 0.2s linear, background-color 0.2s linear;
  z-index: 2;
}
.header .main-navigation .header-logo .nav-logo {
  max-height: 55px;
  max-width: 189px;
  object-fit: contain;
}
.header .main-navigation .header-phone .header-phone-link {
  color: #fff;
  transition: all 0.2s linear;
}
.header .main-navigation .header-phone .header-phone-link:hover {
  color: #e30814;
}
.header .main-navigation .header-phone .header-phone-link:hover > span {
  color: #e30814;
}
.header .main-navigation .header-phone .header-phone-link span {
  color: #4AC074;
  transition: all 0.2s linear;
}
.header .main-navigation .navigation-menu ul {
  display: flex;
  align-items: center;
}
.header .main-navigation .navigation-menu ul li {
  list-style-type: none;
  color: #fff !important;
  padding-left: 43px;
}
.header .main-navigation .navigation-menu ul li:first-child {
  padding-left: 0;
}
.header .main-navigation .languages ul li {
  list-style-type: none;
}
.header .main-navigation .languages ul li .lang-img {
  max-width: 30px;
  max-height: 30px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.2s linear;
}
.header .main-navigation .languages ul li .lang-img:hover {
  transform: scale(1.1);
}
.header .main-navigation .header-menu-mobile {
  display: none;
}
.header .main-navigation .header-menu-mobile .menu-btn-mobile svg {
  width: 42px;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.header .main-navigation .header-menu-mobile .menu-btn-mobile svg path {
  transition: all 0.2s linear;
}
.header .main-navigation .header-menu-mobile .menu-btn-mobile:hover svg > path {
  fill: #e30814;
}
.header .main-navigation .header-menu-mobile li {
  list-style-type: none;
}
.header .main-navigation .header-menu-mobile li a {
  color: #fff;
  text-decoration: none;
}
.header .main-navigation .header-menu-mobile .nav-menu-btn-popup {
  cursor: pointer;
}
.header .main-navigation .header-menu-mobile .nav-menu-btn-popup .default-button img {
  max-width: 31px;
  max-height: 22px;
  object-fit: contain;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile {
  position: absolute;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  top: 0;
  right: 0;
  margin: 0 0 0 auto;
  z-index: 3;
  transform: translateX(calc(100vw + 10px));
  transition: all 0.5s linear;
  text-align: center;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.4392156863);
  border-left: 1px solid #e30814;
  padding: 20px;
  background: url("../img/bg-decor.png"), #050915;
  background-repeat: no-repeat;
  background-position: right 0 top;
  background-size: 100%, 100%;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow-y: scroll;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile .mobile-button-close {
  color: #e30814;
  width: 100%;
  display: flex;
  justify-content: end;
  font-size: 40px;
  padding-right: 20px;
  transition: all 0.2s linear;
  margin-right: -20px;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile .mobile-button-close:hover {
  color: #e30814;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile ul li {
  margin-bottom: 15px;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile ul li:last-child {
  margin-bottom: 0;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile ul li a {
  color: #fff;
  transition: all 0.2s linear;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile ul li a:hover {
  color: #4AC074;
}
.header .main-navigation .header-menu-mobile .nav-menu-mobile-bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5215686275);
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.1s linear;
  text-align: center;
}

@media screen and (max-width: 1170px) {
  .header .main-navigation {
    padding: 12px 0;
  }
  .header .main-navigation .header-logo .nav-logo {
    max-width: 150px;
  }
  .header .main-navigation .header-phone {
    text-align: end;
    margin-left: auto;
    margin-right: 30px;
  }
  .header .main-navigation .header-menu-mobile {
    display: flex;
    justify-content: end;
    margin-left: 0;
  }
  .header .main-navigation .header-menu-mobile .languages {
    display: block;
  }
  .header .main-navigation .header-menu-mobile .nav-menu-mobile .header-phone {
    display: none;
  }
  .header .main-navigation .navigation-menu, .header .main-navigation .languages, .header .main-navigation .nav-menu-btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header .main-navigation .header-phone {
    display: none;
  }
  .header .main-navigation .header-menu-mobile {
    margin-left: auto;
    margin-right: 0;
  }
  .header .main-navigation .header-menu-mobile .nav-menu-mobile .header-phone {
    display: block;
    width: 100%;
    text-align: center;
  }
  .header .main-navigation .header-menu-mobile .nav-menu-mobile .nav-menu-btn-popup .default-button {
    background-color: #e30814;
    transition: all 0.2s linear;
  }
  .header .main-navigation .header-menu-mobile .nav-menu-mobile .nav-menu-btn-popup .default-button:hover {
    background-color: #4AC074;
  }
  .header .main-navigation .header-menu-mobile .nav-menu-mobile .mobile-button-close {
    font-size: 34px;
  }
  .header .main-navigation .header-logo .nav-logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 575px) {
  .header .main-navigation .header-menu-mobile .nav-menu-mobile {
    width: 100vw;
  }
}
.services {
  display: flex;
  flex-wrap: wrap;
}
.services .single-services .single-services-wrapper {
  border: 2px solid #4AC074;
  padding: 44px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.2s linear;
}
.services .single-services .single-services-wrapper:hover {
  cursor: pointer;
  border: 2px solid #F8BA0C;
  box-shadow: 0px 0px 7px 0px #F8BA0C;
  transform: translateY(-8px);
}
.services .single-services .single-services-wrapper:hover .services-title {
  color: #F8BA0C;
}
.services .single-services .single-services-wrapper:hover svg path {
  fill: #F8BA0C;
}
.services .single-services .single-services-wrapper .services-image {
  height: 60px;
  margin-bottom: 30px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  transition: all 0.2s linear;
}
.services .single-services .single-services-wrapper svg {
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
  border-radius: 0;
  border: none;
}
.services .single-services .single-services-wrapper svg path {
  transition: all 0.2s linear;
  fill: #4AC074;
}
.services .single-services .single-services-wrapper .services-title {
  transition: all 0.2s linear;
}

@media screen and (max-width: 1280px) {
  .services .single-services .single-services-wrapper {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 1170px) {
  .services {
    justify-content: center;
    overflow-x: hidden;
  }
  .services .single-services .single-services-wrapper {
    padding: 30px 15px;
  }
  .services .single-services .single-services-wrapper .services-image {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 992px) {
  .services .single-services .single-services-wrapper {
    padding: 51px 20px;
  }
  .services .single-services .single-services-wrapper .services-image {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .services .single-services {
    height: auto;
  }
  .services .single-services .single-services-wrapper {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 575px) {
  .services .single-services {
    min-height: 150px;
  }
  .services .single-services .single-services-wrapper {
    padding: 10px 8px;
  }
  .services .single-services .single-services-wrapper .services-image {
    margin-bottom: 10px;
    max-height: 50px;
  }
  .services .single-services .single-services-wrapper svg {
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 345px) {
  .services .single-services {
    width: 100%;
    margin: 0 0 21px 0;
  }
}
.contacts-block .content {
  /*background: url('../img/contacts-gallery-decor.png');
  background-repeat: no-repeat;
  background-position: top left 41%;
  background-size: 160px;
  background-attachment: scroll;*/
  padding-top: 65px;
  padding-bottom: 65px;
  z-index: -2;
}
.contacts-block .content .title {
  width: 630px;
  padding-right: 74px;
  padding-left: 12px;
  position: relative;
}
.contacts-block .content .text {
  width: calc(100% - 630px);
}
.contacts-block .contacts-gallery-container {
  max-width: 1610px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.contacts-block .contacts-button {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 1170px) {
  .contacts-block .content {
    padding-top: 20px;
    padding-bottom: 35px;
    background-size: 130px;
    margin-top: 80px;
    background-position: top left 32%;
  }
  .contacts-block .content .title {
    width: 400px;
    padding-right: 30px;
  }
  .contacts-block .content .text {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 992px) {
  .contacts-block .content {
    background-size: 125px;
    padding-top: 0;
    margin-top: 75px;
  }
  .contacts-block .content .title {
    width: 350px;
    padding-right: 40px;
  }
  .contacts-block .content .text {
    width: calc(100% - 350px);
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contacts-block .content {
    flex-direction: column;
    background-position: top 40% left 50%;
    background-size: 140px;
    margin-top: 70px;
    padding-bottom: 10px;
  }
  .contacts-block .content .title {
    width: 100%;
  }
  .contacts-block .content .text {
    width: 100%;
    padding-left: 12px;
  }
  .contacts-block .contacts-button {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .contacts-block .content {
    margin-top: 40px;
  }
  .contacts-block .contacts-button {
    margin-top: 30px;
  }
}
.wysiwyg-styles .wp-caption {
  width: 100% !important;
}
.wysiwyg-styles .wp-caption-text {
  font-size: 12px;
  line-height: 18px;
  margin: 10px 0 0;
  color: #000;
}
.wysiwyg-styles > img, .wysiwyg-styles > p > img, .wysiwyg-styles .wp-caption > img {
  width: 100%;
  max-height: 478px;
  object-fit: cover;
  border: 1px solid #e30814;
  margin-top: 15px;
}
.wysiwyg-styles > img, .wysiwyg-styles .wp-caption {
  margin-bottom: 30px;
  object-fit: cover;
}
.wysiwyg-styles > p {
  margin-bottom: 30px;
}
.wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
  max-width: 50% !important;
  max-height: 500px !important;
  height: auto !important;
  object-fit: cover !important;
}
.wysiwyg-styles > p .alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.wysiwyg-styles > p .alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.wysiwyg-styles > p strong {
  font-family: FontBold;
}
.wysiwyg-styles > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  padding-left: 0;
}
.wysiwyg-styles > ul li {
  padding-left: 30px;
  position: relative;
}
.wysiwyg-styles > ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 13px;
  height: 13px;
  background-color: #e30814;
  border-radius: 50%;
}
.wysiwyg-styles > p, .wysiwyg-styles > ul li, .wysiwyg-styles > ol li {
  font-family: FontMedium;
  font-size: 18px;
  line-height: 34px;
  color: #000;
}
.wysiwyg-styles > p a:not(.default-button), .wysiwyg-styles > ul li a:not(.default-button), .wysiwyg-styles > ol li a:not(.default-button) {
  position: relative;
  color: #e30814;
  transition: all 0.2s linear;
  font-family: FontBold;
}
.wysiwyg-styles > p a:not(.default-button):hover, .wysiwyg-styles > ul li a:not(.default-button):hover, .wysiwyg-styles > ol li a:not(.default-button):hover {
  color: #F8BA0C;
}
.wysiwyg-styles > h2 {
  font-family: FontBold;
  font-size: 30px;
  line-height: 40px;
  color: #000;
  font-weight: normal;
  margin-bottom: 15px;
}
.wysiwyg-styles > h3 {
  font-family: FontBold;
  font-size: 20px;
  line-height: 34px;
  color: #000;
  margin: 50px 0 15px;
}
.wysiwyg-styles > h4 {
  font-family: FontBold;
  font-size: 18px;
  line-height: 20px;
  color: #000;
}
.wysiwyg-styles > a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s linear;
  font-family: InterRegular;
  line-height: 30px;
  letter-spacing: 0.05em;
}
.wysiwyg-styles > a:hover {
  color: #e30814;
}
.wysiwyg-styles .wysiwyg-button {
  margin-bottom: 30px;
}
.wysiwyg-styles > *:first-child {
  margin-top: 0 !important;
}

.video-wysiwyg {
  margin: 50px 0;
  position: relative;
  overflow: hidden;
  max-width: 920px;
}
.video-wysiwyg:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-wysiwyg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wysiwyg-gallery .single-gallery-element {
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  width: calc((100% - 40px) / 5.001);
  margin: 10px 10px 10px 0;
  transition: all 0.2s linear;
}
.wysiwyg-gallery .single-gallery-element > a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wysiwyg-gallery .single-gallery-element:nth-of-type(5n), .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
  margin: 10px 0 10px;
}
.wysiwyg-gallery .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 90.9375%;
}
.wysiwyg-gallery .single-gallery-element .additional-number {
  font-size: 25px;
  line-height: 30px;
  right: 0;
  bottom: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  font-family: InterMedium;
  color: #fff;
}
.wysiwyg-gallery .single-gallery-element .darkness-effect {
  background-color: rgba(51, 41, 60, 0.58);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.wysiwyg-gallery .single-gallery-element:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
}

.wp-video {
  margin-bottom: 30px;
}

.mejs-container {
  background: #efefef !important;
  z-index: 1 !important;
  margin-top: 30px !important;
}
.mejs-container .mejs-controls, .mejs-container .mejs-embed, .mejs-container .mejs-embed body {
  background: linear-gradient(9deg, rgb(167, 167, 167) 0%, rgb(246, 246, 246) 100%) !important;
}
.mejs-container .mejs-time {
  color: #888888 !important;
}
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background-color: #fff !important;
}
.mejs-container .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background: #d10000 !important;
}
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total {
  background-color: #fff !important;
}
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-loaded {
  background-color: rgba(219, 78, 136, 0.075) !important;
}
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-current {
  background: #d10000 !important;
}
.mejs-container .mejs-time-buffering, .mejs-container .mejs-time-current, .mejs-container .mejs-time-float, .mejs-container .mejs-time-float-corner, .mejs-container .mejs-time-float-current, .mejs-container .mejs-time-hovered, .mejs-container .mejs-time-loaded, .mejs-container .mejs-time-marker, .mejs-container .mejs-time-total, .mejs-container .mejs-horizontal-volume-total, .mejs-container .mejs-time-handle-content {
  height: 4px !important;
}
.mejs-container .mejs-time-handle-content {
  top: -6px !important;
}
.mejs-container .mejs-time-total {
  margin-top: 8px !important;
}
.mejs-container .mejs-horizontal-volume-total {
  top: 19px !important;
}

@media screen and (max-width: 1024px) {
  .wysiwyg-styles > img, .wysiwyg-styles .wp-caption {
    margin-bottom: 30px;
  }
  .wysiwyg-styles > p {
    margin-bottom: 20px;
  }
  .wysiwyg-styles > p > img {
    margin-bottom: 10px;
  }
  .wysiwyg-styles > p .alignleft {
    margin: 0 20px 20px 0;
  }
  .wysiwyg-styles > p .alignright {
    margin: 0 0 20px 20px;
  }
  .wysiwyg-styles > ul {
    margin-bottom: 20px;
  }
  .wysiwyg-styles > ul li {
    background-position: 0 10px;
  }
  .wysiwyg-styles > p, .wysiwyg-styles > ul li {
    font-size: 16px;
    line-height: 28px;
  }
  .wysiwyg-styles > h2, .wysiwyg-styles > h3, .wysiwyg-styles > h4 {
    margin-bottom: 10px;
  }
  .wysiwyg-styles > h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .wysiwyg-styles > h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .wysiwyg-styles > h4 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-gallery {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc((100% - 30px) / 2.001);
    margin: 0 15px 15px 0 !important;
  }
  .wysiwyg-gallery .single-gallery-element:nth-of-type(2n), .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
    margin: 0 0 15px !important;
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-styles > p .alignleft {
    float: none;
    margin: 0 0 0 0;
    max-width: 100% !important;
  }
  .wysiwyg-styles > p .alignright {
    float: none;
    margin: 0 0 0 0;
    max-width: 100% !important;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: 100%;
    margin: 0 0 15px 0 !important;
  }
  .video-wysiwyg:before {
    padding-top: 57%;
  }
}
.image-modal-window .modal {
  padding: 0 !important;
  overflow-y: scroll;
  text-align: center;
}
.image-modal-window .modal.show {
  display: flex !important;
  display: -webkit-flex !important;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.image-modal-window .modal-dialog {
  max-width: 1500px;
  background-color: transparent;
  margin: 0;
  max-height: 100%;
}
.image-modal-window .modal-dialog .modal-content {
  background-color: transparent;
  border: none !important;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .align-modal-helper {
  padding: 15px !important;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .slide-image, .image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  background-color: transparent;
}
.image-modal-window .modal-dialog .modal-content .slide-image {
  width: auto;
  height: auto;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  width: 1200px;
  position: relative;
  margin: 0 auto;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.image-modal-window .modal-dialog .modal-content .carousel-inner, .image-modal-window .modal-dialog .modal-content .carousel-item {
  background-color: transparent !important;
}
.image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #F8BA0C;
  color: #1E1E1E;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.75;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
  opacity: 1;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev {
  margin-left: 10px;
}
.image-modal-window .carousel-control-next {
  margin-right: 10px;
}
.image-modal-window .modal-cross {
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #F8BA0C;
  opacity: 0.75;
  padding: 0;
  border: none;
  cursor: pointer;
  color: #1E1E1E;
}
.image-modal-window .modal-cross img {
  width: 20px !important;
  height: 20px !important;
}
.image-modal-window .modal-cross:hover {
  opacity: 1;
}
.image-modal-window .modal-cross:focus {
  outline: none;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

@media screen and (max-width: 1200px) {
  .image-modal-window .modal {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 1024px) {
  .image-modal-window .modal {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .image-modal-window .align-modal-helper {
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .image-modal-window .modal {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:focus, .image-modal-window .carousel-control-next:focus {
    opacity: 0.75;
  }
  .image-modal-window .modal-cross {
    opacity: 1;
  }
  .image-modal-window .modal-cross:hover {
    opacity: 1;
  }
  .image-modal-window .modal-cross:focus {
    opacity: 1;
  }
}
.feedback {
  margin-top: 80px;
  position: relative;
}
.feedback .content {
  position: relative;
  text-align: center;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.feedback .content .main-title {
  padding-left: 0;
}
.feedback .content .main-title::before {
  left: 50%;
  transform: translate(-50%);
  background: #4AC074;
}
.feedback .feedback-wrapper {
  align-items: inherit;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.feedback .feedback-wrapper .single-feedback {
  background: #FFFFFF;
  margin: 0 20px 20px 0;
}
.feedback .feedback-wrapper .single-feedback:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
  background: #1a2030;
}
.feedback .feedback-wrapper .single-feedback .date {
  font-family: FontMedium;
  font-size: 12px;
  line-height: 27px;
  color: #626E92;
}
.feedback .feedback-wrapper .single-feedback .title {
  font-family: FontBold;
  font-size: 20px;
  line-height: 40px;
  color: #fff;
}
.feedback .feedback-wrapper .single-feedback .single-response .response-logo {
  max-width: 62px;
  max-height: 62px;
  object-fit: contain;
}
.feedback .feedback-wrapper .single-feedback .single-response .response-audio {
  padding-left: 27px;
  color: #4AC074;
  font-family: FontBold;
  font-size: 12px;
  line-height: 45px;
  transition: all 0.2s linear;
}
.feedback .feedback-wrapper .single-feedback .single-response .response-text {
  padding-left: 27px;
  color: #A638C1;
  font-family: FontBold;
  font-size: 12px;
  line-height: 45px;
  transition: all 0.2s linear;
}
.feedback .feedback-button {
  text-align: center;
  margin-top: 50px;
}

@media screen and (min-width: 1170.1px) {
  .feedback .feedback-wrapper .single-feedback {
    padding: 30px 40px;
    width: calc((100% - 40px) / 3.001);
  }
  .feedback .feedback-wrapper .single-feedback:nth-child(3n), .feedback .feedback-wrapper .single-feedback:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (min-width: 992.1px) and (max-width: 1170px) {
  .feedback .feedback-wrapper .single-feedback {
    padding: 30px 40px;
    width: calc((100% - 20px) / 2.001);
  }
  .feedback .feedback-wrapper .single-feedback:nth-child(2n), .feedback .feedback-wrapper .single-feedback:nth-last-of-type(1) {
    margin-right: 0;
  }
  .feedback .feedback-wrapper .single-feedback .single-response .response-audio {
    line-height: 30px;
  }
}
@media screen and (min-width: 767.1px) and (max-width: 992px) {
  .feedback .feedback-wrapper .single-feedback {
    padding: 25px;
    width: calc((100% - 20px) / 2.001);
  }
  .feedback .feedback-wrapper .single-feedback:nth-child(2n), .feedback .feedback-wrapper .single-feedback:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .feedback {
    margin-top: 50px;
  }
  .feedback .content {
    max-width: 100%;
  }
  .feedback .feedback-wrapper {
    flex-direction: column;
    margin-top: 30px;
  }
  .feedback .feedback-wrapper .single-feedback {
    padding: 25px 30px;
    width: 100%;
    margin-right: 0;
  }
  .feedback .feedback-wrapper .single-feedback:nth-child(2n), .feedback .feedback-wrapper .single-feedback:nth-last-of-type(1) {
    margin-right: 0;
  }
  .feedback .feedback-wrapper .single-feedback .single-response {
    flex-direction: inherit;
  }
  .feedback .feedback-wrapper .single-feedback .single-response .response-audio {
    padding-left: 27px;
  }
  .feedback .feedback-button {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .feedback {
    margin-top: 40px;
  }
}
@media screen and (max-width: 375px) {
  .feedback .feedback-wrapper .single-feedback .single-response {
    flex-direction: column;
    align-items: baseline;
  }
  .feedback .feedback-wrapper .single-feedback .single-response .response-audio {
    padding-left: 0;
  }
}
.articles {
  margin-top: 80px;
  position: relative;
}
.articles .content-text {
  position: relative;
  text-align: center;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.articles .content-text .main-title::before {
  left: 50%;
  transform: translate(-50%);
  background: #4AC074;
}
.articles .articles-wrapper, .articles .articles-wrapper-top {
  margin-top: 50px;
  flex-wrap: wrap;
  align-items: inherit;
  justify-content: center;
}
.articles .articles-wrapper .single-article, .articles .articles-wrapper-top .single-article {
  transition: all 0.2s linear;
}
.articles .articles-wrapper .single-article .content, .articles .articles-wrapper-top .single-article .content {
  position: relative;
}
.articles .articles-wrapper .single-article .content .content-image::before, .articles .articles-wrapper-top .single-article .content .content-image::before {
  content: "";
  display: block;
  padding-top: 128.8753799392%;
}
.articles .articles-wrapper .single-article .content .content-image::after, .articles .articles-wrapper-top .single-article .content .content-image::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(18, 23, 37, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s linear;
}
.articles .articles-wrapper .single-article .content .content-image .image, .articles .articles-wrapper-top .single-article .content .content-image .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles .articles-wrapper .single-article .content .title, .articles .articles-wrapper-top .single-article .content .title {
  color: #fff;
  font-size: 22px;
  font-family: FontBold;
  line-height: 30px;
  position: absolute;
  bottom: 0;
  padding: 40px 30px !important;
  width: 100%;
  text-align: center;
}
.articles .articles-wrapper .single-article .info-icons, .articles .articles-wrapper-top .single-article .info-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 15px;
}
.articles .articles-wrapper .single-article:hover, .articles .articles-wrapper-top .single-article:hover {
  cursor: pointer;
  transform: translateY(-8px);
}
.articles .articles-wrapper .single-article:hover .content .content-image::after, .articles .articles-wrapper-top .single-article:hover .content .content-image::after {
  background-color: rgba(232, 99, 12, 0.5);
}
.articles .articles-button {
  text-align: center;
  margin-top: 17px;
}

.articles-top {
  margin-top: 30px;
}

@media screen and (min-width: 992.1px) {
  .articles {
    position: relative;
  }
  .articles .articles-wrapper .single-article, .articles .articles-wrapper-top .single-article {
    width: calc((100% - 36px) / 4.001);
    margin: 0 12px 50px 0;
  }
  .articles .articles-wrapper .single-article:nth-child(4n), .articles .articles-wrapper .single-article:nth-last-of-type(1), .articles .articles-wrapper-top .single-article:nth-child(4n), .articles .articles-wrapper-top .single-article:nth-last-of-type(1) {
    margin-right: 0;
  }
  .articles .articles-wrapper .single-article .content .title, .articles .articles-wrapper-top .single-article .content .title {
    padding: 30px;
  }
}
@media screen and (min-width: 449.1px) and (max-width: 992px) {
  .articles {
    margin-top: 50px;
    position: relative;
  }
  .articles .content-text {
    max-width: 100%;
  }
  .articles .articles-wrapper, .articles .articles-wrapper-top {
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .articles .articles-wrapper .single-article, .articles .articles-wrapper-top .single-article {
    width: calc((100% - 12px) / 2.001);
    margin: 0 12px 25px 0;
    transition: all 0.2s linear;
  }
  .articles .articles-wrapper .single-article:nth-child(2n), .articles .articles-wrapper .single-article:nth-last-of-type(1), .articles .articles-wrapper-top .single-article:nth-child(2n), .articles .articles-wrapper-top .single-article:nth-last-of-type(1) {
    margin-right: 0;
  }
  .articles .articles-wrapper .single-article .content .title, .articles .articles-wrapper-top .single-article .content .title {
    padding: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 449px) {
  .articles {
    margin-top: 40px;
    position: relative;
  }
  .articles .content-text {
    max-width: 100%;
  }
  .articles .articles-wrapper, .articles .articles-wrapper-top {
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .articles .articles-wrapper .single-article, .articles .articles-wrapper-top .single-article {
    width: 100%;
    margin: 0 0 25px 0;
    transition: all 0.2s linear;
  }
}
.footer {
  margin-top: 80px;
  padding-bottom: 65px;
}
.footer .footer-wrapper {
  text-align: center;
}
.footer .footer-wrapper .footer-logo .logo {
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
}
.footer .footer-wrapper .address {
  margin-top: 30px;
}
.footer .footer-wrapper .address a {
  font-size: 16px;
  line-height: 28px;
  font-family: FontMedium;
  color: #626E92;
  transition: all 0.2s linear;
}
.footer .footer-wrapper .address a:hover {
  color: #4AC074;
}
.footer .footer-wrapper .address .text {
  font-family: FontBold;
  color: #626E92;
  margin-top: 10px;
}
.footer .footer-wrapper .contacts {
  margin-top: 35px;
}
.footer .footer-wrapper .contacts p, .footer .footer-wrapper .contacts a {
  color: #626E92;
  font-family: FontMedium;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 5px;
}
.footer .footer-wrapper .contacts a:hover {
  color: #4AC074;
}
.footer .footer-wrapper .copyright {
  margin-top: 20px;
}
.footer .footer-wrapper .copyright p {
  color: #626E92;
  font-family: FontMedium;
  font-size: 14px;
  line-height: 25px;
}
.footer .footer-wrapper .copyright a {
  color: #4AC074;
  font-family: FontMedium;
  font-size: 14px;
  line-height: 25px;
  transition: all 0.2s linear;
}
.footer .footer-wrapper .copyright a:hover {
  color: #F8BA0C;
}
.footer .footer-wrapper .copyright > * {
  padding-left: 10px;
  padding-right: 10px;
}
.footer .footer-wrapper .copyright > :not(:last-child) {
  position: relative;
}
.footer .footer-wrapper .copyright > :not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
}
.footer .footer-wrapper .footer-facebook {
  margin-top: 25px;
}
.footer .footer-wrapper .footer-facebook svg {
  max-width: 35px;
  max-height: 35px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.2s linear;
}
.footer .footer-wrapper .footer-facebook svg path {
  transition: all 0.2s linear;
}
.footer .footer-wrapper .footer-facebook:hover svg {
  transform: scale(1.1);
}
.footer .footer-wrapper .footer-facebook:hover svg path {
  fill: #4AC074;
}

@media screen and (max-width: 575px) {
  .footer .footer-wrapper .copyright {
    flex-direction: column;
  }
  .footer .footer-wrapper .copyright > :not(:last-child) {
    position: relative;
  }
  .footer .footer-wrapper .copyright > :not(:last-child)::after {
    content: "";
  }
}
.preloader {
  width: 80px;
  height: 15px;
  transition: all 0.1s linear;
  visibility: hidden;
  opacity: 0;
  bottom: -25px;
}
.preloader div {
  background-color: #4AC074;
  position: absolute;
  top: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.preloader div:nth-child(1) {
  left: 8px;
  animation: preloader-animation-1 0.6s infinite;
}
.preloader div:nth-child(2) {
  left: 8px;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(3) {
  left: 32px;
  animation: preloader-animation-2 0.6s infinite;
}
.preloader div:nth-child(4) {
  left: 56px;
  animation: preloader-animation-3 0.6s infinite;
}

.preloader-visible {
  visibility: visible;
  opacity: 1;
}

.ajax-posts-preloader {
  left: 50%;
  transform: translate(-46%, 0);
  bottom: 20px !important;
}

.ajax-posts-invisible {
  visibility: hidden;
  opacity: 0;
}

.ajax-posts-visible {
  visibility: visible;
  opacity: 1;
}

@keyframes preloader-animation-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes preloader-animation-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes preloader-animation-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.common-form-preloader {
  left: 50%;
  transform: translate(-46%, 0);
  bottom: -25px;
}

.common-form-preloader-side {
  left: calc(100% + 10px);
  top: calc(50% - 7.5px);
}

@media screen and (max-width: 767px) {
  .common-form-preloader {
    left: 100%;
    transform: translate(40%, -15px);
    bottom: 0;
  }
}
.reviews-block .head-title-content .secondary-title {
  max-width: 80%;
  margin-bottom: 40px !important;
  position: relative;
}
.reviews-block .head-title-content .secondary-title:before {
  content: "";
  position: absolute;
  width: 48px;
  height: 46px;
  top: 0;
  right: 0;
  background-image: url(".././img/icon-title-partners.svg");
  background-repeat: no-repeat;
  background-size: 48px 46px;
  transform: translate(50%, -50%);
}
.reviews-block .head-title-content .description-wrapper {
  grid-template-columns: 1fr;
  max-width: 800px;
}
.reviews-block .head-title-content .description-wrapper:before {
  display: none;
}
.reviews-block .head-title-content .description-wrapper:after {
  display: none;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide {
  max-width: 800px;
  width: 100%;
  background-color: #FFF;
  padding: 24px;
  filter: blur(3px);
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .stars-wrapper {
  margin-bottom: 24px;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .stars-wrapper .stars-num {
  font-family: FontMedium;
  font-size: 18px;
  margin-bottom: 0;
  color: #000;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .wysiwyg-styles {
  margin-bottom: 24px;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  height: 100%;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper .name-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper .name-inner .avatar-wrapp .avatar-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 100px;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper .name-inner .name-position-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper .name-inner .name-position-wrapper .name-text {
  font-size: 18px;
  font-family: FontBold;
  line-height: 1.2;
  color: #000;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper .name-inner .name-position-wrapper .position {
  line-height: 1.2;
  color: #000;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper svg {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide .name-wrapper svg path {
  fill: #e30814;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide-active {
  filter: blur(0);
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide-active .name-wrapper svg {
  width: 50px;
  height: 50px;
}
.reviews-block .reviews-slider-wrapper .swiper-wrapper .swiper-slide-active .name-wrapper svg path {
  fill: #e30814;
}
.reviews-block .reviews-slider-wrapper .buttons-reviews-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
}
.reviews-block .reviews-slider-wrapper .buttons-reviews-wrapper .reviews-button {
  width: 44px;
  height: 44px;
  background-color: #FFF;
  border-radius: 100%;
  position: relative;
  transition: all 0.2s linear;
}
.reviews-block .reviews-slider-wrapper .buttons-reviews-wrapper .reviews-button svg {
  position: absolute;
  width: 20px;
  height: 20px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.reviews-block .reviews-slider-wrapper .buttons-reviews-wrapper .reviews-button svg path {
  fill: #000;
  transition: all 0.2s linear;
}
.reviews-block .reviews-slider-wrapper .buttons-reviews-wrapper .reviews-button:hover {
  background-color: #e30814;
}
.reviews-block .reviews-slider-wrapper .buttons-reviews-wrapper .reviews-button:hover svg path {
  fill: #FFF;
}

.our-avto {
  padding: 65px 0;
  overflow: hidden;
}
.our-avto .content .our-avto-list .buttons-avto-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
}
.our-avto .content .our-avto-list .buttons-avto-wrapper .avto-button {
  width: 44px;
  height: 44px;
  background-color: #FFF;
  border-radius: 100%;
  position: relative;
  transition: all 0.2s linear;
}
.our-avto .content .our-avto-list .buttons-avto-wrapper .avto-button svg {
  position: absolute;
  width: 20px;
  height: 20px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.our-avto .content .our-avto-list .buttons-avto-wrapper .avto-button svg path {
  fill: #000;
  transition: all 0.2s linear;
}
.our-avto .content .our-avto-list .buttons-avto-wrapper .avto-button:hover {
  background-color: #e30814;
}
.our-avto .content .our-avto-list .buttons-avto-wrapper .avto-button:hover svg path {
  fill: #FFF;
}

.article-avto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.1764705882);
  padding: 20px;
  height: auto;
}
.article-avto .article-avto-wrapper .title {
  margin-bottom: 12px;
  font-family: FontBold;
  font-size: 20px;
  color: #000;
}
.article-avto .article-avto-wrapper .image-wrapper {
  position: relative;
  margin-bottom: 12px;
  display: block;
  overflow: hidden;
}
.article-avto .article-avto-wrapper .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.3082437276%;
}
.article-avto .article-avto-wrapper .image-wrapper .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.2s linear;
}
.article-avto .article-avto-wrapper .image-wrapper:hover .image {
  transform: scale(1.02);
}
.article-avto .article-avto-wrapper .content .content-head-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background-color: #ececec;
}
.article-avto .article-avto-wrapper .content .content-head-wrapper .head-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-avto .article-avto-wrapper .content .content-head-wrapper .head-item .item-icon {
  position: relative;
  width: 24px;
  height: 24px;
}
.article-avto .article-avto-wrapper .content .content-head-wrapper .head-item .item-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  object-fit: contain;
}
.article-avto .article-avto-wrapper .content .content-head-wrapper .head-item .item-icon svg path {
  fill: #e30814;
}
.article-avto .article-avto-wrapper .content .content-head-wrapper .head-item .head-item-title {
  font-size: 13px;
  color: #000;
}
.article-avto .article-avto-wrapper .content .content-head-wrapper:has(.head-item) {
  padding: 6px 10px;
  margin-bottom: 20px;
}
.article-avto .article-avto-wrapper .content .price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-avto .article-avto-wrapper .content .price-list .price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.article-avto .article-avto-wrapper .content .price-list .price-item .item-days {
  color: #727477;
  font-size: 16px;
}
.article-avto .article-avto-wrapper .content .price-list .price-item .item-price {
  color: #000;
  font-size: 16px;
}
.article-avto .article-avto-wrapper .content .price-list .price-item .item-price span {
  color: #727477;
}
.article-avto .article-avto-button .default-button {
  width: 100%;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: FontMedium;
  font-size: 18px;
  margin-top: 40px;
}
.pagination > * {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s linear;
}
.pagination > *:hover {
  background-color: #e30814;
  color: #FFF;
}
.pagination .page-numbers {
  font-family: FontMedium;
  font-size: 18px;
  text-decoration: none;
}
.pagination .current {
  background-color: #e30814;
  color: #FFF;
}

.rank-math-breadcrumb {
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .rank-math-breadcrumb {
    margin-bottom: 20px;
  }
}
.rank-math-breadcrumb p {
  font-size: 16px;
}
.rank-math-breadcrumb p a {
  color: #e30814;
}
.rank-math-breadcrumb p .separator {
  color: #000;
  font-family: FontMedium;
}
.rank-math-breadcrumb p .last {
  color: #737373;
  font-family: FontMedium;
}

.form-buy-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
.form-buy-wrapper .form-row {
  margin-bottom: 20px;
}
.form-buy-wrapper .form-row:last-of-type {
  margin-bottom: 0;
}
.form-buy-wrapper .form-group.half {
  margin-bottom: 0;
}
.form-buy-wrapper .form-group.full-width {
  margin-top: 30px;
}
.form-buy-wrapper .form-group span.month-counter,
.form-buy-wrapper .form-group span.first-pay {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.form-buy-wrapper .form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 50px;
  transition: all 0.3s ease;
}
.form-buy-wrapper .form-control::placeholder {
  color: #999;
  font-family: FontMedium;
}
.form-buy-wrapper .form-control:focus {
  outline: none;
  border-color: #e30814;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.form-buy-wrapper .form-control.wpcf7-not-valid {
  border-color: #dc3545;
}
.form-buy-wrapper input[type=number].month-counter, .form-buy-wrapper input[type=number].first-pay {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.form-buy-wrapper input[type=number].month-counter:focus, .form-buy-wrapper input[type=number].first-pay:focus {
  outline: none;
  border-color: #e30814;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.form-buy-wrapper .wpcf7-not-valid-tip {
  display: block;
  font-size: 13px;
  color: #dc3545;
  margin-top: 5px;
}
.form-buy-wrapper .callback-btn {
  text-align: center;
}
.form-buy-wrapper .callback-btn .btn {
  min-width: 200px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-buy-wrapper .callback-btn .btn.btn-primary {
  background-color: #e30814;
  color: #fff;
}
.form-buy-wrapper .callback-btn .btn.btn-primary:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 99, 12, 0.18);
}
.form-buy-wrapper .callback-btn .btn.btn-primary:active {
  transform: translateY(0);
}
.form-buy-wrapper .wpcf7-spinner {
  margin-left: 10px;
}
.form-buy-wrapper .wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
}
.form-buy-wrapper .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}
.form-buy-wrapper .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #28a745;
  color: #155724;
}
.form-buy-wrapper .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  border: 1px solid #dc3545;
  color: #721c24;
}
@media (max-width: 576px) {
  .form-buy-wrapper {
    padding: 15px;
  }
  .form-buy-wrapper .form-control,
  .form-buy-wrapper input[type=number] {
    font-size: 14px;
    padding: 10px 14px;
  }
  .form-buy-wrapper .callback-btn .btn {
    width: 100%;
    min-width: auto;
    padding: 12px 24px;
    font-size: 14px;
  }
}

.sales {
  margin-top: 80px;
}
.sales .sales-wrapper .title {
  text-align: center;
  margin-bottom: 20px;
}
.sales .sales-wrapper .description {
  text-align: center;
  margin-bottom: 40px;
  color: #000;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: FontMedium;
}
.sales .sales-wrapper .sales-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .sales .sales-wrapper .sales-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .sales .sales-wrapper .sales-list {
    grid-template-columns: 1fr;
  }
}

.article-sales .image-wrapper {
  display: block;
  position: relative;
}
.article-sales .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.article-sales .image-wrapper .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* PAGES */
.home-page {
  padding-top: 0;
}
.home-page .hero-main-wrapper {
  background-color: #000;
  padding-top: 220px;
  padding-bottom: 80px;
  position: relative;
}
.home-page .hero-main-wrapper .hero-circle-decor {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 25%;
  left: 40%;
  background-color: rgb(232, 99, 12);
  filter: blur(200px);
  z-index: 0;
}
.home-page .hero-main-wrapper .decor-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.home-page .hero-main-wrapper .decor-wrapper .hero-decor svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-page .hero-main-wrapper .decor-wrapper .hero-decor:nth-child(1) {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 37%;
  top: 56%;
}
@media screen and (max-width: 992px) {
  .home-page .hero-main-wrapper .decor-wrapper .hero-decor:nth-child(1) {
    width: 100px;
    height: 100px;
    left: auto;
    top: auto;
    right: 5%;
    bottom: 5%;
  }
}
.home-page .hero-main-wrapper .decor-wrapper .hero-decor:nth-child(2) {
  position: absolute;
  width: 56px;
  height: 56px;
  right: 8%;
  top: 65%;
}
@media screen and (max-width: 992px) {
  .home-page .hero-main-wrapper .decor-wrapper .hero-decor:nth-child(2) {
    top: 14%;
  }
}
.home-page .hero-main-wrapper .decor-wrapper .hero-decor:nth-child(3) {
  position: absolute;
  width: 66px;
  height: 66px;
  right: 8%;
  top: 20%;
}
@media screen and (max-width: 992px) {
  .home-page .hero-main-wrapper .decor-wrapper .hero-decor:nth-child(3) {
    top: 18%;
    right: auto;
    left: 8%;
  }
}
.home-page .hero-content {
  z-index: 1;
  position: relative;
}
.home-page .hero-content .hero-text {
  width: 630px;
  padding-right: 74px;
  padding-left: 12px;
  position: relative;
  color: #FFF;
}
.home-page .hero-content .hero-text .main-title {
  color: #FFF !important;
  font-size: 48px !important;
  line-height: 120% !important;
  text-transform: uppercase !important;
}
@media screen and (max-width: 992px) {
  .home-page .hero-content .hero-text .main-title {
    font-size: 42px !important;
  }
}
@media screen and (max-width: 575px) {
  .home-page .hero-content .hero-text .main-title {
    font-size: 34px !important;
  }
}
.home-page .hero-content .hero-text .hero-button {
  margin-top: 20px;
  display: inline-block;
}
.home-page .hero-content .hero-text .wysiwyg-styles p {
  color: #b8b8b8;
}
.home-page .hero-content .services {
  width: calc(100% - 630px);
}
.home-page .hero-content .hero-image {
  width: calc(100% - 630px);
  position: relative;
}
.home-page .hero-content .hero-image .image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contacts-gallery-block {
  overflow: hidden;
}
.contacts-gallery-block .swiper-wrapper .swiper-slide:nth-of-type(2n) {
  margin-right: 15px !important;
}
@media screen and (max-width: 500px) {
  .contacts-gallery-block .swiper-wrapper .swiper-slide {
    margin-right: 15px !important;
  }
}
.contacts-gallery-block .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0 !important;
}

@media screen and (max-width: 1170px) {
  .home-page {
    padding-top: 0;
  }
  .home-page .hero-content .hero-text {
    width: 400px;
    padding-right: 30px;
  }
  .home-page .hero-content .services {
    width: calc(100% - 400px);
  }
  .home-page .hero-content .hero-image {
    width: calc(100% - 400px);
  }
}
@media screen and (min-width: 576px) {
  .home-page .hero-content .services .single-services {
    width: calc((100% - 28px) / 3.001);
    margin: 0 14px 21px 0;
  }
  .home-page .hero-content .services .single-services:nth-child(3n), .home-page .hero-content .services .single-services:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 992px) {
  .home-page .hero-content {
    flex-direction: column;
    gap: 50px;
    padding-top: 30px;
  }
  .home-page .hero-content .hero-text {
    width: 100%;
  }
  .home-page .hero-content .services {
    width: 100%;
  }
  .home-page .hero-content .hero-image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .home-page .hero-content {
    padding-top: 20px;
  }
  .home-page .hero-content .hero-text {
    padding-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .home-page {
    padding-top: 0;
  }
  .home-page .hero-main-wrapper {
    padding-top: 120px;
  }
  .home-page .hero-content {
    padding-top: 0;
    gap: 40px;
  }
  .home-page .hero-content .services .single-services {
    width: calc((100% - 14px) / 2.001);
    margin: 0 14px 21px 0;
  }
  .home-page .hero-content .services .single-services:nth-child(2n), .home-page .hero-content .services .single-services:nth-last-of-type(1) {
    margin-right: 0;
  }
  .home-page .hero-content .hero-text .hero-button {
    margin-top: 10px;
  }
}
@media screen and (max-width: 345px) {
  .home-page .hero-content .services .single-services {
    width: 100%;
    margin: 0 0 21px 0;
  }
}
.services-page .text {
  position: relative;
}
.services-page .text .main-title {
  padding-left: 12px;
}
.services-page .services {
  margin-top: 50px;
}

@media screen and (min-width: 1170px) {
  .services-page .services .single-services {
    width: calc((100% - 70px) / 6.001);
    margin: 0 14px 21px 0;
  }
  .services-page .services .single-services:nth-child(6n), .services-page .services .single-services:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (min-width: 993px) and (max-width: 1169px) {
  .services-page .services .single-services {
    width: calc((100% - 56px) / 5.001);
    margin: 0 14px 21px 0;
  }
  .services-page .services .single-services:nth-child(5n), .services-page .services .single-services:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .services-page .services .single-services {
    width: calc((100% - 42px) / 4.001);
    margin: 0 14px 21px 0;
  }
  .services-page .services .single-services:nth-child(4n), .services-page .services .single-services:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .services-page .services .single-services {
    width: calc((100% - 28px) / 3.001);
    margin: 0 14px 21px 0;
  }
  .services-page .services .single-services:nth-child(3n), .services-page .services .single-services:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (min-width: 376px) and (max-width: 575px) {
  .services-page .services .single-services {
    width: calc((100% - 14px) / 2.001);
    margin: 0 14px 21px 0;
  }
  .services-page .services .single-services:nth-child(2n), .services-page .services .single-services:nth-last-of-type(1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 375px) {
  .services-page .services .single-services {
    width: 100%;
    margin: 0 0 21px 0;
  }
}
.single-page .thumbnail-content {
  position: relative;
  margin-bottom: 40px;
}
.single-page .thumbnail-content .wrapper {
  width: 100%;
  max-height: 675px;
  position: relative;
}
.single-page .thumbnail-content .wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.single-page .thumbnail-content .wrapper::after {
  content: "";
  background: rgba(18, 23, 37, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .single-page .thumbnail-content .wrapper::after {
    display: none;
  }
}
.single-page .thumbnail-content .wrapper .thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.single-page .thumbnail-content .text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  bottom: 47%;
  width: 100%;
}
.single-page .thumbnail-content .text .main-title {
  width: 76%;
  margin-left: auto;
  margin-right: auto;
  color: #FFF !important;
}
.single-page .thumbnail-content .text .main-title::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .single-page .thumbnail-content .text .main-title {
    color: #000 !important;
  }
}
.single-page .thumbnail-content .text .description {
  font-family: FontMedium;
  font-size: 18px;
  line-height: 34px;
}
.single-page .wysiwyg-styles ul {
  padding-left: 0;
}
.single-page .wysiwyg-styles ul li {
  padding-left: 30px;
}

@media screen and (max-width: 1024px) {
  .single-page .thumbnail-content .text .description {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .single-page .thumbnail-content {
    margin-bottom: 20px;
  }
  .single-page .thumbnail-content .text {
    position: inherit;
    margin-top: 30px;
    text-align: left;
    left: 0;
    bottom: 0;
    transform: none;
  }
  .single-page .thumbnail-content .text .main-title {
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .single-page .thumbnail-content .text .description {
    color: #626E92;
  }
  .single-page .wysiwyg-styles ul li:before {
    top: 8px;
  }
}
.single-services-page .content .single-head .single-image, .single-services-page .content .single-head svg {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  margin-right: 30px;
  margin-bottom: 30px;
}
.single-services-page .content .single-head svg > path {
  fill: #4AC074;
}

@media screen and (max-width: 375px) {
  .single-services-page .content .single-head {
    flex-direction: column;
    align-items: baseline;
  }
  .single-services-page .content .single-head .single-image {
    margin-bottom: 10px;
  }
}
.single-feedback-page .single-content {
  display: flex;
  margin-top: 40px;
  max-height: 620px;
}
.single-feedback-page .single-content .single-title {
  font-family: FontBold;
  font-size: 20px;
  line-height: 34px;
  color: #fff;
  margin: 50px 0 30px;
}
.single-feedback-page .single-content .content-main {
  width: calc(100% - 383px);
  padding: 50px 30px 50px 40px;
  background-color: #121725;
  height: auto;
}
.single-feedback-page .single-content .content-main .head-info {
  margin-top: 0;
  margin-bottom: 30px;
  gap: 30px;
}
.single-feedback-page .single-content .content-main .head-info .date {
  font-family: FontMedium;
  font-size: 12px;
  line-height: 27px;
  color: #626E92;
}
.single-feedback-page .single-content .content-main .head-info .response-logo {
  max-width: 62px;
  object-fit: contain;
}
.single-feedback-page .single-content .content-main .head-info .response-audio {
  padding-left: 0;
  color: #4AC074;
  font-family: FontBold;
  font-size: 12px;
  line-height: 45px;
  transition: all 0.2s linear;
}
.single-feedback-page .single-content .content-main .head-info .response-text {
  padding-left: 0;
  color: #A638C1;
  font-family: FontBold;
  font-size: 12px;
  line-height: 45px;
  transition: all 0.2s linear;
}
.single-feedback-page .single-content .content-main .single-title {
  margin-top: 0;
}
.single-feedback-page .single-content .content-main .text {
  overflow-y: auto;
  max-height: 480px;
  overflow-x: hidden;
  padding-right: 10px;
}
.single-feedback-page .single-content .content-main .text::-webkit-scrollbar {
  width: 9px;
}
.single-feedback-page .single-content .content-main .text::-webkit-scrollbar-track {
  background-color: transparent;
}
.single-feedback-page .single-content .content-main .text::-webkit-scrollbar-thumb {
  background-color: #F8BA0C;
}
.single-feedback-page .single-content .content-main .text p {
  line-height: 27px;
}
.single-feedback-page .single-content .content-main .buttons-foot {
  margin-top: 30px;
}
.single-feedback-page .single-content .content-sidebar {
  width: 383px;
  padding: 60px 15px 25px 25px;
  background-color: #101218;
  display: flex;
  flex-direction: column;
  height: auto;
}
.single-feedback-page .single-content .content-sidebar .sidebar-logo {
  max-height: 68px;
  margin-left: auto;
  margin-right: auto;
}
.single-feedback-page .single-content .content-sidebar .single-title {
  text-align: center;
  margin-top: 50px;
}
.single-feedback-page .single-content .content-sidebar .text {
  overflow-y: auto;
  max-height: 600px;
  margin: 0;
  overflow-x: hidden;
  padding-right: 10px;
}
.single-feedback-page .single-content .content-sidebar .text::-webkit-scrollbar {
  width: 9px;
}
.single-feedback-page .single-content .content-sidebar .text::-webkit-scrollbar-track {
  background-color: transparent;
}
.single-feedback-page .single-content .content-sidebar .text::-webkit-scrollbar-thumb {
  background-color: #F8BA0C;
}
.single-feedback-page .single-content .content-sidebar .text p {
  line-height: 27px;
}
.single-feedback-page .single-content .content-sidebar .text .button-audio {
  width: 100%;
  background-color: #A7A7A7;
  color: #D80027;
  padding: 16px 10px;
  display: inline-block;
  text-align: center;
  transition: all 0.2s linear;
}
.single-feedback-page .single-content .content-sidebar .text .button-audio:hover {
  color: #1E1E1E;
  background-color: #F8BA0C;
}
.single-feedback-page .single-content .content-sidebar .buttons-foot-desktop-hide {
  display: none;
}
.single-feedback-page .back-button-inner .back-button {
  padding: 15px 32px;
  border: 2px solid #626E92;
  transition: all 0.2s linear;
  color: #626E92;
  font-family: FontBold;
  white-space: nowrap;
  display: inline-block;
}
.single-feedback-page .back-button-inner .back-button:hover {
  color: #F8BA0C;
  border: 2px solid #F8BA0C;
}

@media screen and (max-width: 992px) {
  .single-feedback-page .single-content {
    flex-direction: column;
    max-height: 100%;
    margin-top: 40px;
  }
  .single-feedback-page .single-content .content-main {
    width: 100%;
    padding: 50px 30px 50px 30px;
  }
  .single-feedback-page .single-content .content-main .buttons-foot-mobile-hide {
    display: none;
  }
  .single-feedback-page .single-content .content-sidebar {
    width: 100%;
    padding: 50px 30px 25px;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot-desktop-hide {
    margin-top: 30px;
    display: flex;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot-desktop-hide .back-button-inner .back-button {
    padding: 15px 32px;
    border: 2px solid #626E92;
    transition: all 0.2s linear;
    color: #626E92;
    font-family: FontBold;
    white-space: nowrap;
    display: inline-block;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot-desktop-hide .back-button-inner .back-button:hover {
    color: #F8BA0C;
    border: 2px solid #F8BA0C;
  }
}
@media screen and (max-width: 767px) {
  .single-feedback-page .single-content .content-sidebar .buttons-foot {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot .back-button-inner {
    width: 100%;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot .back-button-inner .back-button {
    width: 100%;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot .feedback-button {
    padding-left: 0;
    padding-right: 0;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot .feedback-button .default-button {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .single-feedback-page .single-content .content-main {
    padding: 40px 20px 40px 20px;
  }
  .single-feedback-page .single-content .content-main .head-info {
    flex-direction: column;
    align-items: baseline;
    gap: 6px;
    margin-top: 20px;
  }
  .single-feedback-page .single-content .content-main .head-info .response-audio {
    line-height: 34px;
  }
  .single-feedback-page .single-content .content-sidebar {
    padding: 60px 20px 25px 20px;
  }
  .single-feedback-page .single-content .content-sidebar .single-title {
    margin-top: 40px;
  }
  .single-feedback-page .single-content .content-sidebar .buttons-foot .feedback-button {
    width: 100%;
  }
}
.contacts-page .text .wrapper {
  width: 70%;
}
.contacts-page .text .contacts-info {
  display: flex;
  align-items: center;
  gap: 90px;
}
.contacts-page .text .contacts-info p {
  color: #626E92;
  margin-bottom: 18px;
}
.contacts-page .text .contacts-info a {
  color: #F8BA0C;
}
.contacts-page .text .contacts-info a:hover {
  color: #4AC074;
}
.contacts-page .text .contacts-info .working-mode p strong, .contacts-page .text .contacts-info .contacts p strong {
  color: #fff;
}
.contacts-page .map .map-title {
  font-family: FontBold;
  font-size: 22px;
  line-height: 41px;
  color: #fff;
  margin-top: 30px;
}
.contacts-page .map .map-wrapper {
  width: 100%;
  height: 662px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .contacts-page .text .wrapper {
    width: 100%;
  }
  .contacts-page .text .contacts-info {
    gap: 0;
    align-items: baseline;
    flex-direction: column;
  }
  .contacts-page .map .map-wrapper {
    height: 320px;
  }
}
.autotech-page .text .wysiwyg-styles > p {
  margin-bottom: 15px;
}
.autotech-page .text .wysiwyg-styles .help-content {
  margin-top: 0;
}
.autotech-page .feedback {
  margin-top: 30px;
}
.autotech-page .feedback .feedback-wrapper {
  margin-top: 40px;
}
.autotech-page .articles .articles-wrapper-all {
  margin-top: 0;
}
.autotech-page .articles:not(.articles-top) {
  margin-top: 0;
}

.feedback-page .feedback {
  margin-top: 40px;
}

.feedback-block {
  overflow: hidden;
}

.single-avto-page .single-avto-wrapper .single-avto-head {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .single-avto-page .single-avto-wrapper .single-avto-head {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .single-avto-page .single-avto-wrapper .single-avto-head {
    margin-bottom: 20px;
  }
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider {
  width: 700px;
}
@media screen and (max-width: 1280px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider {
    width: 600px;
  }
}
@media screen and (max-width: 1170px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider {
    width: 520px;
  }
}
@media screen and (max-width: 992px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider {
    width: 100%;
  }
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-main .swiper-wrapper .swiper-slide {
  position: relative;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-main .swiper-wrapper .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-main .swiper-wrapper .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-main .slider-navigation .swiper-button {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.6117647059);
  border-radius: 50px;
  transition: all 0.2s linear;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-main .slider-navigation .swiper-button:after {
  font-size: 20px;
  color: #000;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-main .slider-navigation .swiper-button:hover {
  background-color: #ffffff;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-main .slider-navigation .swiper-pagination {
  padding: 2px 20px;
  border-radius: 50px;
  background-color: #F0F0F0;
  width: auto;
  left: 50%;
  transform: translate(-50%, 0);
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-mini {
  padding: 10px 2px;
  margin-left: -2px;
  margin-right: -2px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-mini .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-mini .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.single-avto-page .single-avto-wrapper .single-avto-head .single-avto-slider .single-slider-mini .swiper-wrapper .swiper-slide-thumb-active {
  outline: 2px solid #e30814;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info {
  width: calc(100% - 700px);
  background-color: #FFF;
  padding: 30px;
}
@media screen and (max-width: 1280px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .main-info {
    width: calc(100% - 600px);
  }
}
@media screen and (max-width: 1170px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .main-info {
    width: calc(100% - 520px);
  }
}
@media screen and (max-width: 992px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .main-info {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .main-info {
    padding: 20px;
  }
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .title {
  margin-bottom: 10px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .class-avto {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .class-avto .class-title {
  color: #a1a1a1;
  font-family: FontMedium;
  font-size: 15px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .class-avto .category-name {
  background-color: #e30814;
  color: #FFF;
  padding: 1px 5px;
  font-size: 15px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper .head-item {
  display: flex;
  gap: 20px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper .head-item .item-icon {
  background-color: #eee;
  padding: 24px;
  width: 24px;
  position: relative;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper .head-item .item-icon svg {
  position: absolute;
  width: 100%;
  height: 24px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper .head-item .item-icon svg path {
  fill: #e30814;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper .head-item .details .title {
  margin-bottom: 2px;
  color: #a1a1a1;
  font-family: FontMedium;
  font-size: 15px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .content-head-wrapper .head-item .details .head-item-title {
  font-family: FontBold;
  color: #000;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .deposit {
  margin-bottom: 30px;
  font-size: 15px;
  font-family: FontSemiBold;
  color: #000;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .price-list .title {
  margin-bottom: 12px;
  font-size: 22px;
  font-family: FontBold;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .price-list .price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .price-list .price-item .item-days {
  color: #727477;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .price-list .price-item .item-price {
  color: #000;
}
.single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .price-list .price-item .item-price span {
  color: #727477;
}
@media screen and (max-width: 575px) {
  .single-avto-page .single-avto-wrapper .single-avto-head .main-info .content .article-avto-button .default-button {
    width: 100%;
    text-align: center;
  }
}
.single-avto-page .single-avto-wrapper .main-info-text {
  background-color: #FFF;
  padding: 30px 40px;
}
@media screen and (max-width: 992px) {
  .single-avto-page .single-avto-wrapper .main-info-text {
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .single-avto-page .single-avto-wrapper .main-info-text {
    padding: 20px;
  }
}
.single-avto-page .single-avto-wrapper .main-info-text .main-info-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-family: FontBold;
}
.single-avto-page .modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.our-avto-page .archive-wrapper .archive-content-inner .categories-list-block {
  padding: 40px 0;
}
@media screen and (max-width: 575px) {
  .our-avto-page .archive-wrapper .archive-content-inner .categories-list-block {
    padding: 25px 0;
  }
}
.our-avto-page .archive-wrapper .archive-content-inner .categories-list-block .categories-title {
  font-family: FontMedium;
  font-size: 20px;
  color: #737373;
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .our-avto-page .archive-wrapper .archive-content-inner .categories-list-block .categories-title {
    font-size: 16px;
  }
}
.our-avto-page .archive-wrapper .archive-content-inner .categories-list-block .categories-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-left: 0;
}
.our-avto-page .archive-wrapper .archive-content-inner .categories-list-block .categories-list .category-item {
  list-style-type: none;
}
.our-avto-page .archive-wrapper .archive-content-inner .categories-list-block .categories-list .category-item .category-link {
  padding: 8px 20px;
  background-color: #d0d0d0;
  color: #000;
  display: block;
  transition: all 0.2s linear;
}
.our-avto-page .archive-wrapper .archive-content-inner .categories-list-block .categories-list .category-item .category-link:hover {
  background-color: #e30814;
  color: #FFF;
}
.our-avto-page .archive-wrapper .archive-content-inner .category-block {
  padding: 40px 0;
}
@media screen and (max-width: 575px) {
  .our-avto-page .archive-wrapper .archive-content-inner .category-block {
    padding: 25px 0;
  }
}
.our-avto-page .archive-wrapper .archive-content-inner .category-block .category-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .our-avto-page .archive-wrapper .archive-content-inner .category-block .category-title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.our-avto-page .archive-wrapper .archive-content-inner .category-block .content-wrapper .posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .our-avto-page .archive-wrapper .archive-content-inner .category-block .content-wrapper .posts-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .our-avto-page .archive-wrapper .archive-content-inner .category-block .content-wrapper .posts-wrapper {
    grid-template-columns: 1fr;
  }
}

.single-sales .thumbnail-content {
  flex-direction: column-reverse;
  display: flex;
}
.single-sales .thumbnail-content .wrapper {
  max-height: 100%;
}
.single-sales .thumbnail-content .wrapper:before {
  padding-top: 100%;
}
.single-sales .thumbnail-content .wrapper:after {
  background: none;
}
.single-sales .thumbnail-content .text {
  position: relative;
  left: auto;
  transform: inherit;
  margin-top: 0;
  padding: 0 !important;
  bottom: 0;
  text-align: left;
  max-height: 100%;
}
.single-sales .thumbnail-content .text .main-title {
  width: 100%;
  color: #000 !important;
}

/*# sourceMappingURL=style.css.map */
