@font-face {
  font-family: FontRegular;
  src: url(../fonts/Verdana.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMedium;
  src: url(../fonts/Poppins-Medium.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBold;
  src: url(../fonts/Poppins-Bold.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBlack;
  src: url(../fonts/Montserrat-Black.ttf) format("truetype");
  font-display: block;
}
.font-regular {
  font-family: FontRegular;
}

.font-medium {
  font-family: FontMedium;
}

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

.font-black {
  font-family: FontBlack;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 14%;
}
@media screen and (max-width: 992px) {
  html {
    scroll-padding-top: 200px;
  }
}

a {
  text-decoration: none;
  transition: all 0.2s linear;
}

h1, h2, h3, h4, h5, h6 {
  font-family: FontBlack;
  font-weight: 600;
}

h1 {
  font-size: 50px;
  line-height: 1.2;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 44px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 100%;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 32px;
    line-height: 100%;
  }
}
@media screen and (max-width: 575px) {
  h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

p {
  margin: 0;
  font-family: FontRegular;
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (max-width: 575px) {
  p {
    font-size: 16px;
  }
}

body {
  margin: 0;
  font-family: FontRegular;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  border-radius: 50px;
  backdrop-filter: blur(42px);
  background: #342412;
}

body > main {
  flex: 1 1 auto;
}

.main-container {
  max-width: 1460px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 575px) {
  .main-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.min-container {
  max-width: 1310px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 575px) {
  .min-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 992px) {
  section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition: all 0.2s linear;
  color: #1a1b1c;
}

.nav-scroll {
  box-shadow: 0px 2px 7px 1px rgba(47, 47, 47, 0.4509803922);
}

.default-button {
  height: 55px;
  position: relative;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 3px solid #1a1b1c;
  border-radius: 12px;
  transition: all 0.2s linear;
}
.default-button .button {
  padding: 10px 24px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: FontRegular;
  font-size: 16px;
  color: #1a1b1c;
  text-transform: uppercase;
  justify-content: center;
  line-height: 100%;
}
.default-button:hover {
  background: #1a1b1c;
}
.default-button:hover .button {
  color: #FFFFFF;
}
@media screen and (max-width: 575px) {
  .default-button {
    height: 48px;
  }
}

header .default-button {
  height: 40px;
}
header .default-button .button {
  padding: 4px 14px;
  font-size: 14px;
}

.underline-nav ul li a:after {
  content: "";
  width: 0px;
  height: 1px;
  display: block;
  background: #1a1b1c;
  transition: all 0.2s linear;
}
.underline-nav ul li a:hover::after {
  width: 100%;
}

.underline-nav-black ul li a:after {
  background: #FFFFFF !important;
  margin-top: -3px;
}

/* COMPONENTS */
.header {
  background-color: #FFFFFF;
  position: sticky;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  transition: all 0.1s linear;
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}
.header .main-navigation {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .header .main-navigation {
    display: flex;
    justify-content: space-between;
  }
}
.header .main-navigation .logo__content {
  display: block;
}
.header .main-navigation .logo__content .logo {
  width: 100%;
  max-width: 123px;
  height: 80px;
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .header .main-navigation .menu-wrapper {
    display: none;
  }
}
.header .main-navigation .menu-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.header .main-navigation .menu-wrapper ul li a {
  font-size: 14px;
  color: #1a1b1c;
  text-transform: uppercase;
}
.header .main-navigation .header-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .main-navigation .header-navigation .desktop-button {
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .header .main-navigation .header-navigation .desktop-button {
    display: none;
  }
}
.header .main-navigation .header-navigation .languages-wrapper {
  width: 40px;
  height: 40px;
  background-color: #1a1b1c;
  border: 3px solid #1a1b1c;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
}
.header .main-navigation .header-navigation .languages-wrapper svg {
  position: absolute;
  width: 24px;
  height: 24px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .main-navigation .header-navigation .languages-wrapper svg path {
  fill: #FFFFFF;
  transition: all 0.2s linear;
}
.header .main-navigation .header-navigation .languages-wrapper:hover {
  background-color: #FFFFFF;
}
.header .main-navigation .header-navigation .languages-wrapper:hover svg path {
  fill: #1a1b1c;
}
.header .main-navigation .header-navigation .mobile-menu {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header .main-navigation .header-navigation .mobile-menu {
    display: block;
  }
}
.header .main-navigation .header-navigation .mobile-menu .btn-menu {
  background-color: transparent;
  border: none;
}
.header .main-navigation .header-navigation .mobile-menu .btn-menu svg {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.header .main-navigation .header-navigation .mobile-menu .offcanvas .offcanvas-body {
  padding: 40px 16px;
}
.header .main-navigation .header-navigation .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list {
  margin-bottom: 40px;
}
.header .main-navigation .header-navigation .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.header .main-navigation .header-navigation .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list ul li a {
  text-transform: uppercase;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
}
.hero .hero-slider-wrapper {
  position: relative;
}
@media screen and (max-width: 1320px) {
  .hero .hero-slider-wrapper {
    margin-left: -15px;
    margin: -15px;
    width: calc(100% + 30px);
  }
}
@media screen and (max-width: 575px) {
  .hero .hero-slider-wrapper {
    margin-left: -10px;
    margin: -10px;
    width: calc(100% + 20px);
  }
}
.hero .hero-slider-wrapper .swiper-wrapper .swiper-slide .slide-image-wrapper {
  position: relative;
  max-height: 750px;
}
.hero .hero-slider-wrapper .swiper-wrapper .swiper-slide .slide-image-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.2237762238%;
}
.hero .hero-slider-wrapper .swiper-wrapper .swiper-slide .slide-image-wrapper .slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.hero .hero-slider-wrapper .hero-slider-navigation .swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.51);
}
.hero .hero-slider-wrapper .hero-slider-navigation .swiper-button svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero .hero-slider-wrapper .hero-slider-navigation .swiper-button svg path {
  fill: #1a1b1c;
}
.hero .hero-slider-wrapper .hero-slider-navigation .swiper-button:after {
  display: none;
}

.services .services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.services .services-list:hover .service-item .image-wrapper .image {
  filter: brightness(0.6);
}
@media screen and (max-width: 767px) {
  .services .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .services .services-list {
    grid-template-columns: 1fr;
  }
}
.services .services-list .service-item .image-wrapper {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}
.services .services-list .service-item .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 131.0344827586%;
}
.services .services-list .service-item .image-wrapper .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.2s linear;
}
.services .services-list .service-item .title {
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
}
.services .services-list .service-item .price-wrapper {
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.services .services-list .service-item:hover .image-wrapper .image {
  filter: brightness(1);
  transform: scale(1.03);
}

.our-clients .our-clients-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .our-clients .our-clients-wrapper {
    grid-template-columns: 1fr;
  }
}
.our-clients .our-clients-wrapper .title-wrapper .features__title {
  margin-bottom: 20px;
  color: #1a1b1c;
}
.our-clients .our-clients-wrapper .title-wrapper .description {
  margin-bottom: 30px;
  font-size: 22px;
  text-transform: uppercase;
  color: #1a1b1c;
}
.our-clients .our-clients-wrapper .title-wrapper .default-button {
  width: fit-content;
}
@media screen and (max-width: 575px) {
  .our-clients .our-clients-wrapper .title-wrapper {
    width: 100%;
  }
}
.our-clients .our-clients-wrapper .clients-list-wrapper .clients-list-title {
  text-align: right;
  font-size: 60px;
  font-family: FontBlack;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: transparent;
  -webkit-text-stroke: 1px #afafaf;
  text-stroke: 1px #afafaf;
}
@media screen and (max-width: 992px) {
  .our-clients .our-clients-wrapper .clients-list-wrapper .clients-list-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .our-clients .our-clients-wrapper .clients-list-wrapper .clients-list-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 575px) {
  .our-clients .our-clients-wrapper .clients-list-wrapper .clients-list-title {
    font-size: 26px;
  }
}
.our-clients .our-clients-wrapper .clients-list-wrapper .clients-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 575px) {
  .our-clients .our-clients-wrapper .clients-list-wrapper .clients-list {
    grid-template-columns: 1fr;
  }
}
.our-clients .our-clients-wrapper .clients-list-wrapper .clients-list .client-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.our-clients .our-clients-wrapper .clients-list-wrapper .clients-list .client-item:before {
  content: "";
  display: block;
  padding-top: 136.25%;
}
.our-clients .our-clients-wrapper .clients-list-wrapper .clients-list .client-item .client-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.our-clients .our-clients-wrapper .clients-list-wrapper .clients-list .client-item:hover {
  box-shadow: 0px 2px 7px 1px #c9c9c9;
}

.questions {
  background-color: #c7b19d;
}
.questions .questions-head-wrapper {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .questions .questions-head-wrapper {
    margin-bottom: 30px;
  }
}
.questions .questions-head-wrapper .questions__title {
  text-align: center;
  color: #1a1b1c;
  margin-bottom: 20px;
}
.questions .questions-head-wrapper .questions__text {
  text-align: center;
  text-transform: uppercase;
  color: #1a1b1c;
}
.questions .questions-foot-text {
  color: #1a1b1c;
}

.application-form {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .application-form {
    grid-template-columns: 1fr;
  }
}
.application-form .inputs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .application-form .inputs-wrapper {
    grid-template-columns: 1fr;
  }
}
.application-form .inputs-wrapper .single-input input {
  height: 60px;
  border: 2px solid #1a1b1c;
  border-radius: 12px;
  padding: 0 12px;
}
.application-form .submit-wrapper .submit-inner input {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1b1c;
  background-color: #FFFFFF;
  border-radius: 12px;
  text-transform: uppercase;
  transition: all 0.2s linear;
  outline: none;
  border: none;
}
.application-form .submit-wrapper .submit-inner input:hover {
  background-color: #a2a2a2;
}

.application-form-success-submit {
  text-align: center;
  padding: 60px 0;
}
.application-form-success-submit .title {
  color: #FFFFFF;
}

.warning-validation {
  opacity: 1;
}
.warning-validation > .input-title {
  color: #8a0e0e !important;
}
.warning-validation input, .warning-validation textarea {
  border: 1px solid #8a0e0e !important;
}
.warning-validation input::placeholder, .warning-validation textarea::placeholder {
  color: #8a0e0e !important;
}
.warning-validation > label {
  color: #8a0e0e !important;
}
.warning-validation > label:before {
  border: 1px solid #8a0e0e !important;
}
.warning-validation > .common-input-styling > .input-title {
  color: #8a0e0e !important;
}
.warning-validation > .common-input-styling > input, .warning-validation > .common-input-styling > textarea {
  border: 1px solid #8a0e0e !important;
}
.warning-validation > .common-input-styling > input::placeholder, .warning-validation > .common-input-styling > textarea::placeholder {
  color: #8a0e0e !important;
}
.warning-validation > .common-input-styling > label {
  color: #8a0e0e !important;
}
.warning-validation > .common-input-styling > label:before {
  border: 1px solid #8a0e0e !important;
}

.wysiwyg-styles .wp-caption {
  width: 100% !important;
}
.wysiwyg-styles .wp-caption-text {
  font-size: 18px;
  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: 480px;
  border-radius: 12px;
  object-fit: cover;
}
.wysiwyg-styles > img, .wysiwyg-styles .wp-caption {
  margin-bottom: 50px;
  object-fit: cover;
}
.wysiwyg-styles > p {
  margin-bottom: 30px;
  padding-left: 0 !important;
}
.wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
  width: auto !important;
  max-width: 51% !important;
  height: auto !important;
  object-fit: cover !important;
}
.wysiwyg-styles > p .alignleft {
  float: left;
  margin: 0 47px 30px 0;
}
.wysiwyg-styles > p .alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.wysiwyg-styles > p strong {
  font-family: FontRegular;
}
.wysiwyg-styles > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  padding-left: 0;
  left: 26px;
  position: relative;
  margin-right: 26px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > ul {
    left: 0;
  }
}
.wysiwyg-styles > ul li {
  list-style-type: none;
  padding-left: 18px;
  position: relative;
}
.wysiwyg-styles > ul li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #1a1b1c;
}
.wysiwyg-styles > p, .wysiwyg-styles > ul li {
  font-family: FontRegular;
  font-size: 20px;
  line-height: 24px;
  padding-left: 14px;
  color: #1a1b1c;
  margin-bottom: 10px;
}
.wysiwyg-styles > p a:not(.default-button), .wysiwyg-styles > ul li a:not(.default-button) {
  position: relative;
  text-decoration: underline;
  color: #1a1b1c;
  transition: all 0.2s linear;
}
.wysiwyg-styles > p a:not(.default-button):hover, .wysiwyg-styles > ul li a:not(.default-button):hover {
  color: #8a0e0e;
}
.wysiwyg-styles > h2 {
  font-family: FontRegular;
  font-size: 28px;
  color: #1a1b1c;
  margin-bottom: 40px;
  line-height: 1;
  text-transform: uppercase;
}
.wysiwyg-styles > h3 {
  font-family: FontRegular;
  font-size: 22px;
  line-height: 34px;
  color: #1a1b1c;
  margin-bottom: 40px;
}
.wysiwyg-styles > h4 {
  font-family: FontRegular;
  font-size: 18px;
  line-height: 20px;
  color: #1a1b1c;
  margin-bottom: 40px;
}
.wysiwyg-styles > a, .wysiwyg-styles p span a {
  color: #8a0e0e !important;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s linear;
  font-family: FontRegular;
  line-height: 32px;
}
.wysiwyg-styles > a > img, .wysiwyg-styles p span a > img {
  margin-right: 8px;
}
.wysiwyg-styles > a:hover, .wysiwyg-styles p span a:hover {
  color: #1a1b1c !important;
}
.wysiwyg-styles .wysiwyg-button {
  margin-bottom: 30px;
}
.wysiwyg-styles > *:first-child {
  margin-top: 0 !important;
}
.wysiwyg-styles > *:last-child {
  margin-bottom: 0 !important;
}
.wysiwyg-styles table {
  width: 100%;
  border: none;
  padding: 40px 0;
  display: block;
}
.wysiwyg-styles table tbody tr {
  background-color: #fff6e4;
}
.wysiwyg-styles table tbody tr td, .wysiwyg-styles table tbody tr th {
  font-family: FontRegular;
  color: #1a1b1c;
  padding: 12px 20px;
  font-size: 20px;
  min-width: 50%;
  width: 50%;
}
.wysiwyg-styles table tbody tr td:nth-child(2n), .wysiwyg-styles table tbody tr th:nth-child(2n) {
  font-family: FontRegular;
  padding-left: 0;
  text-align: center;
}
.wysiwyg-styles table tbody tr td:nth-child(3), .wysiwyg-styles table tbody tr th:nth-child(3) {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles table tbody tr td, .wysiwyg-styles table tbody tr th {
    padding: 10px 12px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles table tbody tr td, .wysiwyg-styles table tbody tr th {
    font-size: 14px;
    padding: 8px 8px;
  }
}
.wysiwyg-styles table tbody tr:nth-child(2n) {
  background-color: #FFFFFF;
}
.wysiwyg-styles table tbody tr:first-child {
  background-color: #1a1b1c;
  color: #FFFFFF;
}
.wysiwyg-styles table tbody tr:first-child td, .wysiwyg-styles table tbody tr:first-child th {
  color: #FFFFFF;
  font-family: FontMedium;
}

.wysiwyg-styles-small > p, .wysiwyg-styles-small > ul li {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 25px;
}

.video-wysiwyg {
  margin: 35px 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}
.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 {
  margin-bottom: 30px;
}
.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% - 105px) / 4.001);
  margin: 10px 35px 10px 0;
  border-radius: 10px;
  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(4n), .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: 18px;
  line-height: 30px;
  right: 0;
  bottom: 0;
  transform: translate(-20px, -14px);
  -webkit-transform: translate(-20px, -14px);
  font-family: FontRegular;
  color: #fff;
}
.wysiwyg-gallery .single-gallery-element .darkness-effect {
  background: rgba(0, 72, 211, 0.5);
  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;
}

@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: 18px;
  }
  .wysiwyg-styles > h2, .wysiwyg-styles > h3, .wysiwyg-styles > h4 {
    margin-bottom: 10px;
  }
  .wysiwyg-styles > h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .wysiwyg-styles > h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .wysiwyg-styles > h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .wysiwyg-styles-small > p, .wysiwyg-styles-small > ul li {
    line-height: 21px;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc((100% - 45px) / 4.001);
    margin: 0 15px 15px 0 !important;
  }
  .wysiwyg-gallery .single-gallery-element:nth-of-type(4n), .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
    margin: 0 0 15px !important;
  }
}
@media screen and (max-width: 992px) {
  .wysiwyg-gallery {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
    float: none !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 0 20px !important;
  }
  .wysiwyg-styles > h2 {
    font-size: 28px;
  }
  .wysiwyg-gallery {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc((100% - 15px) / 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: 575px) {
  .wysiwyg-styles > h2 {
    font-size: 26px;
  }
  .wysiwyg-styles table tbody tr td {
    padding-left: 10px;
    padding-right: 10px;
  }
  .wysiwyg-styles table tbody tr td:nth-child(2n) {
    font-family: FontRegular;
    padding-left: 0;
    padding-right: 10px;
  }
  .wysiwyg-styles table tbody tr:nth-child(2n) {
    background-color: #FFFFFF;
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery .single-gallery-element {
    width: 100%;
    margin: 0 0 15px 0 !important;
  }
  .video-wysiwyg:before {
    padding-top: 57%;
  }
}
.about-us .about-us-wrapper {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .about-us .about-us-wrapper {
    grid-template-columns: 1fr;
  }
}
.about-us .about-us-wrapper .title-wrapper .title {
  color: #1a1b1c;
}
.about-us .about-us-wrapper .images-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
}
@media screen and (max-width: 575px) {
  .about-us .about-us-wrapper .images-wrapper {
    min-height: 400px;
  }
}
.about-us .about-us-wrapper .images-wrapper .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .about-us .about-us-wrapper .images-wrapper .image {
    width: 80%;
    height: 80%;
  }
}
.about-us .about-us-wrapper .images-wrapper .image:last-child {
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  z-index: 0;
}

.our-features .our-features-wrapper {
  display: grid;
  grid-template-columns: 1fr 60%;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .our-features .our-features-wrapper {
    grid-template-columns: 1fr;
  }
}
.our-features .our-features-wrapper .title-wrapper .title {
  color: #1a1b1c;
}
.our-features .our-features-wrapper .images-wrapper {
  position: relative;
  height: 100%;
  max-height: 500px;
  width: calc(100% + 15px);
  margin-left: -15px;
}
@media screen and (max-width: 575px) {
  .our-features .our-features-wrapper .images-wrapper {
    max-height: 400px;
    width: calc(100% + 30px);
    margin-right: -15px;
  }
}
.our-features .our-features-wrapper .images-wrapper:before {
  content: "";
  display: block;
  padding-top: 107.1725571726%;
}
.our-features .our-features-wrapper .images-wrapper .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-features .foot-text {
  text-align: center;
  font-size: 60px;
  font-family: FontBlack;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: transparent;
  -webkit-text-stroke: 1px #afafaf;
  text-stroke: 1px #afafaf;
}
@media screen and (max-width: 575px) {
  .our-features .foot-text {
    font-size: 40px;
  }
}

.reviews .reviews-wrapper .title {
  color: #1a1b1c;
}
.reviews .reviews-wrapper .reviews-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .reviews .reviews-wrapper .reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .reviews .reviews-wrapper .reviews-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .reviews .reviews-wrapper .reviews-list {
    grid-template-columns: 1fr;
  }
}
.reviews .reviews-wrapper .reviews-list .review-item {
  position: relative;
  width: calc((100% + 88px) / 6.001);
  margin-right: -20px;
  max-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s linear;
}
.reviews .reviews-wrapper .reviews-list .review-item:first-child {
  margin-top: 100px;
}
.reviews .reviews-wrapper .reviews-list .review-item:nth-child(2) {
  margin-top: 50px;
}
.reviews .reviews-wrapper .reviews-list .review-item:nth-child(3) {
  margin-top: 0;
}
.reviews .reviews-wrapper .reviews-list .review-item:nth-child(4) {
  margin-top: 80px;
}
.reviews .reviews-wrapper .reviews-list .review-item:nth-child(5) {
  margin-top: 0;
}
.reviews .reviews-wrapper .reviews-list .review-item:nth-child(6) {
  margin-right: 0;
  margin-top: 60px;
}
.reviews .reviews-wrapper .reviews-list .review-item:nth-last-of-type(1) {
  margin-right: 0;
}
@media screen and (max-width: 992px) {
  .reviews .reviews-wrapper .reviews-list .review-item {
    width: 100%;
  }
  .reviews .reviews-wrapper .reviews-list .review-item:first-child {
    margin-top: 0;
  }
  .reviews .reviews-wrapper .reviews-list .review-item:nth-child(2) {
    margin-top: 0;
  }
  .reviews .reviews-wrapper .reviews-list .review-item:nth-child(3) {
    margin-top: 0;
  }
  .reviews .reviews-wrapper .reviews-list .review-item:nth-child(4) {
    margin-top: 0;
  }
  .reviews .reviews-wrapper .reviews-list .review-item:nth-child(5) {
    margin-top: 0;
  }
  .reviews .reviews-wrapper .reviews-list .review-item:nth-child(6) {
    margin-right: 0;
    margin-top: 0;
  }
  .reviews .reviews-wrapper .reviews-list .review-item:nth-last-of-type(1) {
    margin-right: 0;
  }
}
.reviews .reviews-wrapper .reviews-list .review-item:before {
  content: "";
  display: block;
  padding-top: 166.4473684211%;
}
.reviews .reviews-wrapper .reviews-list .review-item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews .reviews-wrapper .reviews-list .review-item:hover {
  transform: translate(0, -10px);
  z-index: 1;
}

.our-certificates .our-certificates-wrapper {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .our-certificates .our-certificates-wrapper {
    grid-template-columns: 1fr;
  }
}
.our-certificates .our-certificates-wrapper .title-wrapper .title {
  color: #1a1b1c;
}
.our-certificates .our-certificates-wrapper .title-wrapper .wysiwyg-styles {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .our-certificates .our-certificates-wrapper .title-wrapper .wysiwyg-styles {
    margin-bottom: 30px;
  }
}
.our-certificates .our-certificates-wrapper .title-wrapper .wysiwyg-styles h3 {
  margin-bottom: 20px;
}
.our-certificates .our-certificates-wrapper .title-wrapper .default-button {
  width: fit-content;
}
@media screen and (max-width: 992px) {
  .our-certificates .our-certificates-wrapper .title-wrapper .default-button {
    width: 100%;
  }
}
.our-certificates .our-certificates-wrapper .images-wrapper {
  position: relative;
  height: 100%;
  min-height: 300px;
  width: calc(100% + 15px);
  margin-right: -15px;
}
@media screen and (max-width: 992px) {
  .our-certificates .our-certificates-wrapper .images-wrapper {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
.our-certificates .our-certificates-wrapper .images-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.our-certificates .our-certificates-wrapper .images-wrapper .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq .faq__title {
  color: #1a1b1c;
}
.faq .faq__accordion .accordion {
  border: 2px solid #1a1b1c;
}
.faq .faq__accordion .accordion .accordion-item {
  border-bottom: 2px solid #FFFFFF;
}
.faq .faq__accordion .accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq .faq__accordion .accordion .accordion-item .accordion-header button {
  background-color: #1a1b1c;
  color: #FFFFFF;
  padding: 30px;
  font-size: 28px;
}
@media screen and (max-width: 992px) {
  .faq .faq__accordion .accordion .accordion-item .accordion-header button {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .faq .faq__accordion .accordion .accordion-item .accordion-header button {
    font-size: 20px;
    padding: 24px;
  }
}
@media screen and (max-width: 575px) {
  .faq .faq__accordion .accordion .accordion-item .accordion-header button {
    font-size: 18px;
    padding: 12px 20px;
  }
}
.faq .faq__accordion .accordion .accordion-item .accordion-header button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.faq .faq__accordion .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 30px;
  font-size: 20px;
}

.contacts {
  padding-bottom: 0;
}
.contacts .contacts__title {
  color: #1a1b1c;
}
.contacts .map {
  overflow: hidden;
}
.contacts .map iframe {
  margin-top: -50px;
  width: 100%;
}

.footer {
  background-color: #1a1b1c;
  padding: 60px 0;
}
.footer .foot-title {
  font-size: 20px;
  font-family: FontBlack;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.footer .footer-head-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footer .footer-head-wrapper {
    grid-template-columns: 1fr;
  }
}
.footer .footer-head-wrapper .logo-inner {
  display: block;
}
@media screen and (max-width: 767px) {
  .footer .footer-head-wrapper .logo-inner {
    text-align: center;
  }
}
.footer .footer-head-wrapper .logo-inner .company-logo {
  width: 100%;
  max-width: 123px;
  height: 80px;
  margin-bottom: 30px;
  object-fit: contain;
}
.footer .footer-head-wrapper .logo-inner .company-text {
  color: #FFFFFF;
}
.footer .footer-head-wrapper .footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-head-wrapper .footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer .footer-head-wrapper .footer-nav ul li a {
  color: #FFFFFF;
}
.footer .footer-head-wrapper .foot-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-head-wrapper .foot-contacts a {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.footer .footer-foot-wrapper {
  padding-top: 40px;
  border-top: 1px solid #FFFFFF;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer .footer-foot-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .footer-foot-wrapper .copyright {
  color: #FFFFFF;
}
.footer .footer-foot-wrapper .social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer .footer-foot-wrapper .social-list li a {
  display: block;
}
.footer .footer-foot-wrapper .social-list li a svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: all 0.2s linear;
}
.footer .footer-foot-wrapper .social-list li a:hover svg {
  transform: scale(1.06);
}
.footer .footer-foot-wrapper .privacy-link {
  text-align: end;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .footer .footer-foot-wrapper .privacy-link {
    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: 100%;
  color: #1a1b1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s linear;
}
.pagination > *:hover {
  background-color: #8a0e0e;
  color: #FFFFFF;
}
.pagination .page-numbers {
  font-family: FontMedium;
  font-size: 18px;
  text-decoration: none;
}
.pagination .current {
  background-color: #8a0e0e;
  color: #FFFFFF;
}

.vacancy-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.vacancy-tags-list .tags-item {
  border-radius: 5px;
  border: 1px solid #c7b19d;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
  font-family: FontMedium;
}
.vacancy-tags-list .tags-item svg {
  width: 100%;
  max-width: 20px;
  height: 20px;
  object-fit: contain;
}

@media screen and (max-width: 575px) {
  .content-wrapper .content-inner .tags-list {
    gap: 8px;
  }
  .content-wrapper .content-inner .tags-list .tags-item {
    padding: 6px 12px;
    font-size: 14px;
    gap: 6px;
  }
  .content-wrapper .content-inner .tags-list .tags-item svg {
    max-width: 16px;
    height: 16px;
  }
}
/* PAGES */
.single-services .services .services-list {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .single-services .services .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .single-services .services .services-list {
    gap: 16px;
  }
}
@media screen and (max-width: 575px) {
  .single-services .services .services-list {
    grid-template-columns: 1fr;
  }
}
.single-services .services .services-list .service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 3px solid #1a1b1c;
  border-radius: 12px;
  text-transform: uppercase;
  color: #1a1b1c;
  padding: 10px 24px;
  justify-content: center;
  transition: all 0.2s linear;
}
.single-services .services .services-list .service-item:hover {
  background-color: #1a1b1c;
  color: #FFFFFF;
}
.single-services .service-image {
  padding-top: 0;
  padding-bottom: 20px;
}
.single-services .service-image .service-image-inner {
  position: relative;
}
@media screen {
  .single-services .service-image .service-image-inner {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}
.single-services .service-image .service-image-inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(52, 36, 18, 0.85) 0%, rgba(52, 36, 18, 0.85) 30%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.single-services .service-image .service-image-inner .image-wrapper {
  position: relative;
  height: 400px;
}
.single-services .service-image .service-image-inner .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 30.7692307692%;
}
.single-services .service-image .service-image-inner .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-services .service-image .service-image-inner .service-content {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 60%;
  transform: translate(0, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .single-services .service-image .service-image-inner .service-content {
    width: 100%;
    left: 20px;
    padding-right: 30px;
  }
}
.single-services .service-image .service-image-inner .service-content .title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.single-services .service-image .service-image-inner .service-content .service-description {
  color: #FFFFFF;
  margin-bottom: 40px;
}
.single-services .service-image .service-image-inner .service-content .contacts-button {
  border-color: #FFFFFF;
  background-color: transparent;
  width: fit-content;
}
.single-services .service-image .service-image-inner .service-content .contacts-button .button {
  color: #FFFFFF;
}
.single-services .service-image .service-image-inner .service-content .contacts-button:hover {
  background-color: #FFFFFF;
}
.single-services .service-image .service-image-inner .service-content .contacts-button:hover .button {
  color: #1a1b1c;
}
.single-services .service-image:has(.wysiwyg-styles) {
  margin-bottom: 40px;
}
.single-services .prices {
  padding-top: 20px;
}
.single-services .prices .prices-table-wrapper .prices-table {
  width: 100%;
}
.single-services .prices .prices-table-wrapper .prices-table tbody tr:first-child {
  background-color: #1a1b1c;
  color: #FFFFFF;
}
.single-services .prices .prices-table-wrapper .prices-table tbody tr:nth-child(2n+1):nth-child(n+3) {
  background-color: #fff6e4;
}
.single-services .prices .prices-table-wrapper .prices-table tbody tr td, .single-services .prices .prices-table-wrapper .prices-table tbody tr th {
  padding: 12px 20px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .single-services .prices .prices-table-wrapper .prices-table tbody tr td, .single-services .prices .prices-table-wrapper .prices-table tbody tr th {
    padding: 10px 12px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .single-services .prices .prices-table-wrapper .prices-table tbody tr td, .single-services .prices .prices-table-wrapper .prices-table tbody tr th {
    font-size: 14px;
    padding: 8px 8px;
  }
}
.single-services .prices .prices-table-wrapper .prices-table tbody tr td:nth-child(2), .single-services .prices .prices-table-wrapper .prices-table tbody tr td:nth-child(3), .single-services .prices .prices-table-wrapper .prices-table tbody tr th:nth-child(2), .single-services .prices .prices-table-wrapper .prices-table tbody tr th:nth-child(3) {
  text-align: center;
}
.single-services .wysiwyg-styles {
  padding: 40px 0;
}
.single-services .wysiwyg-styles table {
  height: auto;
  padding: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .single-services .wysiwyg-styles table {
    overflow: auto;
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 30px);
    padding-left: 10px;
    padding-right: 10px;
  }
}
.single-services .wysiwyg-styles:has(table) h3 {
  margin-bottom: 30px;
}

.vacancies-page .vacancies-page-wrapper .head-title-content .block-head-subtitle {
  max-width: 510px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 0;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 30px;
  list-style-type: none;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper .title-link .title {
  font-family: FontMedium;
  font-size: 24px;
  line-height: 1.2;
  transition: all 0.2s linear;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper .title-link:hover .title {
  color: #8a0e0e;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper .date {
  font-family: FontMedium;
  font-size: 16px;
  line-height: 1.2;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .content-wrapper .content-inner {
  max-width: 640px;
  width: 100%;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .content-wrapper .content-inner .vacancy-excerpt p {
  color: #868686;
  font-family: FontRegular;
  font-size: 16px;
}
.vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .content-wrapper .default-button .button .arrow-decor {
  display: none;
}

@media screen and (max-width: 992px) {
  .vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .content-wrapper {
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 767px) {
  .vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}
@media screen and (max-width: 575px) {
  .vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item {
    padding: 20px;
  }
  .vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper {
    gap: 4px;
  }
  .vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper .title {
    font-size: 20px;
  }
  .vacancies-page .vacancies-page-wrapper .vacancies-list-wrapper .vacancies-list .vacancies-item .head-title-wrapper .date {
    font-size: 13px;
  }
}
.single-vacancy-page {
  padding-top: 60px;
}
.single-vacancy-page .head-title-content .secondary-title {
  margin-bottom: 30px;
  text-align: center;
}
.single-vacancy-page .content-wrapper {
  background-color: #f5f5f5;
  border-radius: 12px;
  max-width: 856px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 105px;
  margin-bottom: 50px;
}
.single-vacancy-page .content-wrapper .vacancy-tags-list {
  justify-content: center;
  margin-bottom: 50px;
}
.single-vacancy-page .content-wrapper .wysiwyg-styles > h2 {
  padding-left: 37px;
  position: relative;
}
.single-vacancy-page .content-wrapper .wysiwyg-styles > h2:before {
  content: "";
  width: 22px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #8a0e0e;
  border-radius: 50px;
  transform: translateY(-50%);
}

@media screen and (max-width: 992px) {
  .single-vacancy-page .content-wrapper {
    padding: 30px 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .single-vacancy-page .content-wrapper .vacancy-tags-list {
    justify-content: start;
    margin-bottom: 30px;
  }
}

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