@font-face {
  font-family: FontRegular;
  src: url("../../fonts/Inter-Regular.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontLight;
  src: url("../../fonts/Inter-Light.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBold;
  src: url("../../fonts/Inter-Bold.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontItalic;
  src: url("../../fonts/Inter-Italic.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBoldItalic;
  src: url("../../fonts/Inter-BoldItalic.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBold;
  src: url("../../fonts/Inter-SemiBold.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMedium;
  src: url("../../fonts/Inter-Medium.ttf") format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontAdditionalRegular;
  src: url("../../fonts/Caveat-Regular.ttf") format("truetype");
  font-display: block;
}
.font-regular {
  font-family: FontRegular;
}

.font-light {
  font-family: FontLight;
}

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

.font-italic {
  font-family: FontItalic;
}

.font-bold-italic {
  font-family: FontBoldItalic;
}

.font-semi-bold {
  font-family: FontSemiBold;
}

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

.font-additional-regular {
  font-family: FontAdditionalRegular;
}

strong, b {
  font-family: FontBold;
}

i, em {
  font-family: FontItalic;
}

strong i, strong em, b i, b em, i strong, i b, em strong, em b {
  font-family: FontBoldItalic;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #1B1D25;
}

.default-text-color {
  color: #40465F;
}

.default-color {
  color: #E77747;
}

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

.background-black {
  background-color: #1B1D25;
}

.background-default {
  background-color: #E77747;
}

.default-hover {
  color: #40465F;
}
.default-hover:hover {
  color: #E77747;
}

.default-link {
  position: relative;
  color: #E77747;
}
.default-link:hover:before, .default-link:hover:after {
  width: 100%;
  opacity: 1;
}
.default-link:after {
  left: 0;
  background-color: #E77747;
}
.default-link:before, .default-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.default-link:hover {
  color: #E77747;
}

a {
  transition: all 0.2s linear;
}
a:hover {
  transition: all 0.2s linear;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:before, a:after {
  transition: all 0.2s linear;
}

input, textarea, button {
  transition: all 0.2s linear;
}
input:hover, textarea:hover, button:hover {
  transition: all 0.2s linear;
}
input:focus, textarea:focus, button:focus {
  transition: all 0.2s linear;
  outline: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, button::-webkit-input-placeholder {
  transition: all 0.2s linear;
}
input::-moz-placeholder, textarea::-moz-placeholder, button::-moz-placeholder {
  transition: all 0.2s linear;
}
input:-moz-placeholder, textarea:-moz-placeholder, button:-moz-placeholder {
  transition: all 0.2s linear;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, button:-ms-input-placeholder {
  transition: all 0.2s linear;
}

input[type=submit], button {
  cursor: pointer;
}

.transition-default {
  transition: all 0.2s linear;
}
.transition-default:hover {
  transition: all 0.2s linear;
}

.transition-default-longer {
  transition: all 0.4s linear;
}
.transition-default-longer:hover {
  transition: all 0.4s linear;
}

.transition-default-long {
  transition: all 0.6s linear;
}
.transition-default-long:hover {
  transition: all 0.6s linear;
}

.absolute-cover-img, .darkness-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.darkness-effect {
  background-color: rgba(28, 36, 67, 0.5);
}

.radius-10-px {
  border-radius: 10px;
}

.radius-50-px {
  border-radius: 50px;
}

.radius-50-percents {
  border-radius: 50%;
}

.m-auto-horizontal {
  margin: 0 auto;
}

.m-auto-vertical {
  margin: auto 0;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.background-image-default {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.backface-hidden {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.non-default-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.last-child-without-margin > *:last-child {
  margin-bottom: 0 !important;
}

.body-with-admin-bar .navbar-header {
  top: 32px;
}

@media screen and (min-width: 1025px) {
  .prevent-shaking-animation {
    transform: perspective(1000px);
    -webkit-transform: perspective(1000px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
  }
  .prevent-shaking-animation:hover {
    transform: translateY(-5px) perspective(1000px);
    -webkit-transform: translateY(-5px) perspective(1000px);
  }

  .prevent-shaking-animation-small:hover {
    transform: translateY(-3px) perspective(1000px);
    -webkit-transform: translateY(-3px) perspective(1000px);
  }
}
@media screen and (max-width: 782px) {
  .body-with-admin-bar .navbar-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
body {
  font-family: FontRegular;
  color: #40465F;
  font-size: 16px;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 15px;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: #E77747;
}

.default-text {
  font-size: 16px;
  line-height: 30px;
}

.main-title {
  font-family: FontLight;
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #1B1D25;
}

.main-container {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 30px;
}

.default-page-height {
  min-height: calc(100vh - 132px);
}

.default-button {
  font-family: FontSemiBold;
  display: inline-block;
  padding: 17px 22px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #E77747 !important;
  background-color: transparent !important;
  border: 2px solid #E77747 !important;
}
.default-button:hover {
  border: 2px solid #E77747 !important;
  color: #fff !important;
  background-color: #E77747 !important;
}

.default-button-white {
  color: #fff !important;
  background-color: transparent !important;
  border: 2px solid #fff !important;
}
.default-button-white:hover {
  border: 2px solid #fff !important;
  color: #E77747 !important;
  background-color: #fff !important;
}

.default-button-dark {
  color: #40465F !important;
  background-color: transparent !important;
  border: 2px solid #40465F !important;
}
.default-button-dark:hover {
  border: 2px solid #40465F !important;
  color: #fff !important;
  background-color: #40465F !important;
}

.default-buttons-row {
  margin-bottom: -15px !important;
}
.default-buttons-row .single-button {
  margin: 0 15px 15px 0;
}
.default-buttons-row .single-button:nth-last-of-type(1) {
  margin: 0 0 15px;
}

.default-menu-styles > ul > li:nth-last-of-type(1) {
  margin: 0 !important;
}

.default-wrapper {
  padding: 48px 0 64px;
}

.common-carousel-indicators {
  margin: 0 !important;
}
.common-carousel-indicators > * {
  background-color: transparent !important;
  border-radius: 50% !important;
  transition: all 0.2s linear !important;
  width: 16px !important;
  height: 16px !important;
  opacity: 1 !important;
  margin: 0 8px 0 0 !important;
}
.common-carousel-indicators > *:nth-last-of-type(1) {
  margin: 0 !important;
}

.white-background-indicators > * {
  border: 1px solid #fff !important;
}
.white-background-indicators > *:hover {
  background-color: #fff !important;
}
.white-background-indicators .active {
  background-color: #fff !important;
}

.orange-background-indicators > * {
  border: 1px solid #E77747 !important;
}
.orange-background-indicators > *:hover {
  background-color: #E77747 !important;
}
.orange-background-indicators .active {
  background-color: #E77747 !important;
}

.fixed-background {
  width: 313px;
  height: 363px;
  position: fixed;
  object-fit: contain;
  top: 200px;
  right: 175px;
  z-index: -1;
}

@media screen and (max-width: 1366px) {
  .default-wrapper {
    padding: 32px 0 48px;
  }

  .fixed-background {
    width: 208.66px;
    height: 242px;
    top: 150px;
    right: 131.25px;
  }
}
@media screen and (max-width: 1024px) {
  .main-container {
    padding: 0 15px;
  }

  .default-page-height {
    min-height: calc(100vh - 100px);
  }

  .fixed-background {
    display: none;
  }

  .default-buttons-row.justify-content-center .single-button {
    width: 100%;
    margin: 0 0 15px !important;
  }
}
@keyframes scaling {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}
@keyframes sideMovingAnimation {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes verticalSideMovingAnimation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes verticalSideMovingAnimationSmall {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounce-link-with-image-on-hover img:hover, .bounce-link-with-image-on-hover svg:hover {
  animation: bounce 0.5s linear infinite;
  -webkit-animation: bounce 0.5s linear infinite;
}

@keyframes movement-rotation-effect-first {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  17% {
    transform: translate(-6px, -6px);
    -webkit-transform: translate(-6px, -6px);
  }
  34% {
    transform: translate(6px, 0);
    -webkit-transform: translate(6px, 0);
  }
  51% {
    transform: translate(0, 6px);
    -webkit-transform: translate(0, 6px);
  }
  68% {
    transform: translate(6px, -6px);
    -webkit-transform: translate(6px, -6px);
  }
  85% {
    transform: translate(-6px, 0);
    -webkit-transform: translate(-6px, 0);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-second {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  20% {
    transform: translate(-6px, 6px);
    -webkit-transform: translate(-6px, 6px);
  }
  40% {
    transform: translate(-6px, -6px);
    -webkit-transform: translate(-6px, -6px);
  }
  60% {
    transform: translate(6px, -6px);
    -webkit-transform: translate(6px, -6px);
  }
  80% {
    transform: translate(0, 6px);
    -webkit-transform: translate(0, 6px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-third {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  17% {
    transform: translate(6px, 6px);
    -webkit-transform: translate(6px, 6px);
  }
  34% {
    transform: translate(-6px, -6px);
    -webkit-transform: translate(-6px, -6px);
  }
  51% {
    transform: translate(6px, -6px);
    -webkit-transform: translate(6px, -6px);
  }
  68% {
    transform: translate(-6px, 6px);
    -webkit-transform: translate(-6px, 6px);
  }
  85% {
    transform: translate(0, -6px);
    -webkit-transform: translate(0, -6px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@keyframes movement-rotation-effect-fourth {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  20% {
    transform: translate(6px, -6px);
    -webkit-transform: translate(6px, -6px);
  }
  40% {
    transform: translate(0px, 6px);
    -webkit-transform: translate(0px, 6px);
  }
  60% {
    transform: translate(6px, 0);
    -webkit-transform: translate(6px, 0);
  }
  80% {
    transform: translate(-6px, -6px);
    -webkit-transform: translate(-6px, -6px);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
.first-animation-move {
  animation: movement-rotation-effect-first 10s linear infinite;
  -webkit-animation: movement-rotation-effect-first 10s linear infinite;
}

.second-animation-move {
  animation: movement-rotation-effect-second 10s linear infinite;
  -webkit-animation: movement-rotation-effect-second 10s linear infinite;
}

.third-animation-move {
  animation: movement-rotation-effect-third 10s linear infinite;
  -webkit-animation: movement-rotation-effect-third 10s linear infinite;
}

.fourth-animation-move {
  animation: movement-rotation-effect-fourth 10s linear infinite;
  -webkit-animation: movement-rotation-effect-fourth 10s linear infinite;
}

.before-animation-visibility-backface {
  opacity: 0;
  visibility: hidden;
  transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.before-animation-visibility-gallery {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.1) rotate(90deg);
  -webkit-transform: scale(0.1) rotate(90deg);
}

.before-animation-visibility {
  opacity: 0;
  visibility: hidden;
}

.before-animation-left {
  transform: translateX(-100vw);
  -webkit-transform: translateX(-100vw);
}

.before-animation-right {
  transform: translateX(100vw);
  -webkit-transform: translateX(100vw);
}

@keyframes leftSideAnimationSimple {
  0% {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes rightSideAnimationSimple {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.left-side-animation-simple {
  -webkit-animation: leftSideAnimationSimple 1s ease-out forwards;
  animation: leftSideAnimationSimple 1s ease-out forwards;
  opacity: 1 !important;
}

.right-side-animation-simple {
  -webkit-animation: rightSideAnimationSimple 1s ease-out forwards;
  animation: rightSideAnimationSimple 1s ease-out forwards;
  opacity: 1 !important;
}

.animation-fix {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  will-change: transform;
}

.padding-top-for-header {
  padding-top: 132px;
}

.header-content {
  height: 132px;
}

.navbar-header {
  top: 0;
  left: 0;
  z-index: 1020;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #fff;
}

.navbar-scrolled {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.header-logo img {
  max-width: 80px;
  max-height: 102px;
}

.header-menu ul > li > a {
  text-transform: uppercase;
  font-family: FontSemiBold;
  color: #40465F;
}
.header-menu ul > li > a:hover {
  color: #E77747;
}
.header-menu ul .current-menu-item > a, .header-menu ul .current-page-ancestor > a {
  color: #E77747;
}

.header-languages .single-language {
  margin-right: 15px;
}
.header-languages .single-language:nth-last-of-type(1) {
  margin-right: 0;
}
.header-languages .single-language a {
  color: #B0B6CF;
  font-size: 16px;
  line-height: 20px;
  font-family: FontSemiBold;
}
.header-languages .single-language a:hover {
  color: #E77747;
}
.header-languages .single-language .active-language {
  color: #E77747;
}

@media screen and (min-width: 1367px) {
  .header-menu ul > li {
    margin-right: 60px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .header-menu ul > li {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .header-menu ul {
    display: flex;
    display: -webkit-flex;
  }
  .header-menu ul > li > a {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
  }

  .header-burger {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo img {
    max-width: 57px;
    max-height: 70px;
  }

  .padding-top-for-header {
    padding-top: 100px;
  }

  .header-content {
    height: 100px;
  }

  .header-burger {
    margin-left: auto;
  }
  .header-burger:hover img path, .header-burger:hover svg path {
    fill: #E77747;
  }
  .header-burger img, .header-burger svg {
    cursor: pointer;
    width: 36px;
    height: 27px;
    object-fit: contain;
  }
  .header-burger img path, .header-burger svg path {
    fill: #40465F;
    transition: all 0.2s linear;
  }

  .header-close {
    display: inline-block;
    position: absolute;
    top: 35px;
    right: 20px;
  }
  .header-close:hover img, .header-close:hover svg {
    -webkit-animation: rotating 0.5s 0.1s ease-out;
    animation: rotating 0.5s 0.1s ease-out;
  }
  .header-close img, .header-close svg {
    width: 30px;
    height: 30px;
    cursor: pointer;
    object-fit: contain;
  }
  .header-close img path, .header-close svg path {
    fill: #E77747;
    transition: all 0.2s linear;
  }

  .header-menu-desktop, .header-languages-desktop {
    display: none !important;
  }

  .mobile-menu {
    width: calc(100% - 30px);
    height: 100vh;
    max-width: 500px;
    top: 0;
    right: 0;
    z-index: 1022;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    padding: 35px 70px 35px 35px;
    overflow: auto;
  }
  .mobile-menu::-webkit-scrollbar {
    width: 0;
  }
  .mobile-menu::-webkit-scrollbar-track, .mobile-menu::-webkit-scrollbar-thumb {
    background-color: transparent;
  }

  .mobile-background {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1021;
    background-color: rgba(0, 0, 0, 0.9);
  }

  .mobile-menu-hidden {
    transform: translateX(100vw);
    -webkit-transform: translateX(100vw);
  }

  .mobile-background-hidden {
    visibility: hidden;
    opacity: 0;
  }

  .header-menu {
    margin-bottom: 60px;
  }
  .header-menu ul > li {
    margin-bottom: 15px;
  }
  .header-menu ul > li > a {
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
  }
}
.footer {
  padding: 32px 0 48px;
}
.footer .footer-logo {
  margin-bottom: 10px;
}
.footer .footer-logo img {
  max-width: 75px;
  max-height: 88px;
}
.footer .footer-title {
  letter-spacing: 0.5em;
  font-size: 12px;
  line-height: 27px;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.footer .footer-socials {
  margin-bottom: 15px;
}
.footer .footer-socials .single-social {
  margin: 0 10px 10px 0;
}
.footer .footer-socials .single-social:nth-last-of-type(1) {
  margin: 0 0 10px;
}
.footer .footer-socials .single-social a:hover svg path {
  fill: #E77747;
}
.footer .footer-socials .single-social img, .footer .footer-socials .single-social svg {
  width: 32px;
  height: 33px;
}
.footer .footer-socials .single-social img path, .footer .footer-socials .single-social svg path {
  fill: #40465F;
  transition: all 0.2s linear;
}
.footer .footer-menu ul > li {
  margin: 0 20px 0 0;
}
.footer .footer-menu ul > li:nth-last-of-type(1) {
  margin: 0;
}
.footer .footer-menu ul > li > a {
  text-transform: uppercase;
  color: #40465F;
  font-size: 12px;
  line-height: 30px;
}
.footer .footer-menu ul > li > a:hover {
  color: #E77747;
}
.footer .footer-menu ul .current-menu-item > a, .footer .footer-menu ul .current-page-ancestor > a {
  color: #E77747;
}
.footer .copyright {
  font-size: 12px;
  line-height: 30px;
  color: #B0B6CF;
  margin-bottom: 30px;
}
.footer .developed-by-wrapper {
  width: 84px;
}
.footer .developed-by-wrapper .developed-by-title {
  font-size: 11px;
  line-height: 18px;
  margin-left: 7px;
}

.wysiwyg-styles .wp-caption {
  width: 100% !important;
}
.wysiwyg-styles .wp-caption-text {
  font-size: 12px;
  line-height: 18px;
  margin: 10px 0 0;
  color: #1B1D25;
  font-family: FontBold;
}
.wysiwyg-styles > img, .wysiwyg-styles > p > img, .wysiwyg-styles .wp-caption > img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
.wysiwyg-styles > img, .wysiwyg-styles .wp-caption {
  margin-bottom: 30px;
}
.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 > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.wysiwyg-styles > ul li {
  display: table;
  background-repeat: no-repeat;
  background-image: url("../../images/dot.svg");
  background-size: 6px 6px;
  background-position: 0 12px;
  padding-left: 15px;
}
.wysiwyg-styles > p, .wysiwyg-styles > ul li {
  font-size: 16px;
  line-height: 30px;
}
.wysiwyg-styles > p a:not(.default-button), .wysiwyg-styles > ul li a:not(.default-button) {
  position: relative;
  color: #E77747;
}
.wysiwyg-styles > p a:not(.default-button):hover:before, .wysiwyg-styles > p a:not(.default-button):hover:after, .wysiwyg-styles > ul li a:not(.default-button):hover:before, .wysiwyg-styles > ul li a:not(.default-button):hover:after {
  width: 100%;
  opacity: 1;
}
.wysiwyg-styles > p a:not(.default-button):after, .wysiwyg-styles > ul li a:not(.default-button):after {
  left: 0;
  background-color: #E77747;
}
.wysiwyg-styles > p a:not(.default-button):before, .wysiwyg-styles > p a:not(.default-button):after, .wysiwyg-styles > ul li a:not(.default-button):before, .wysiwyg-styles > ul li a:not(.default-button):after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.wysiwyg-styles > p a:not(.default-button):hover, .wysiwyg-styles > ul li a:not(.default-button):hover {
  color: #E77747;
}
.wysiwyg-styles > h2, .wysiwyg-styles > h3 {
  font-family: FontLight;
  text-transform: uppercase;
  color: #1B1D25;
}
.wysiwyg-styles > h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 30px;
}
.wysiwyg-styles > h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}
.wysiwyg-styles .wysiwyg-button {
  margin-bottom: 30px;
}
.wysiwyg-styles > *:last-child {
  margin-bottom: 0 !important;
}
.wysiwyg-styles > *:first-child {
  margin-top: 0 !important;
}

.video-wysiwyg {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.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 {
  width: calc(100% + 320px);
  margin: 0 -160px 22px;
}
.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% - 24px) / 4.001);
  margin: 0 8px 8px 0;
}
.wysiwyg-gallery .single-gallery-element:nth-of-type(4n), .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
  margin: 0 0 8px;
}
.wysiwyg-gallery .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 79.85%;
}
.wysiwyg-gallery .single-gallery-element .additional-number {
  font-size: 20px;
  line-height: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  font-family: FontSemiBold;
}
.wysiwyg-gallery .single-gallery-element:hover {
  transform: translateY(-3px) perspective(1000px);
  -webkit-transform: translateY(-3px) perspective(1000px);
}

@media screen and (max-width: 1745px) {
  .wysiwyg-gallery {
    width: 100%;
    margin: 0 0 22px 0;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-gallery {
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc(50% - 4px);
    margin: 0 0 8px !important;
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery .single-gallery-element {
    width: 100%;
  }
}
.preloader {
  position: absolute;
  width: 80px;
  height: 15px;
  transition: all 0.1s linear;
  visibility: hidden;
  opacity: 0;
}
.preloader div {
  background-color: #E77747;
  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;
}

@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);
  }
}
.contact-form-preloader {
  top: calc(100% + 15px);
  left: calc(50% - 40px);
}

.single-input {
  margin-bottom: 20px;
  width: calc(50% - 10px);
  font-size: 0;
}
.single-input > input, .single-input > textarea {
  padding: 8.5px 25px;
  font-size: 16px;
  line-height: 30px;
  color: #B0B6CF;
  background-color: transparent;
  border: 2px solid #fff;
  -webkit-appearance: none;
}
.single-input > input::-webkit-input-placeholder, .single-input > textarea::-webkit-input-placeholder {
  color: #B0B6CF;
  font-size: 16px;
}
.single-input > input::-moz-placeholder, .single-input > textarea::-moz-placeholder {
  color: #B0B6CF;
  font-size: 16px;
}
.single-input > input:-moz-placeholder, .single-input > textarea:-moz-placeholder {
  color: #B0B6CF;
  font-size: 16px;
}
.single-input > input:-ms-input-placeholder, .single-input > textarea:-ms-input-placeholder {
  color: #B0B6CF;
  font-size: 16px;
}
.single-input > input:placeholder-shown, .single-input > textarea:placeholder-shown {
  text-overflow: ellipsis;
}
.single-input > textarea {
  min-height: 110px;
  resize: none;
}
.single-input > textarea::-webkit-scrollbar {
  width: 5px;
}
.single-input > textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
.single-input > textarea::-webkit-scrollbar-thumb {
  background-color: #E77747;
}

.warning-validation > input, .warning-validation > textarea {
  border: 2px solid #DB6565 !important;
}
.warning-validation > input::-webkit-input-placeholder, .warning-validation > textarea::-webkit-input-placeholder {
  color: #FF0000 !important;
  font-size: 16px;
}
.warning-validation > input::-moz-placeholder, .warning-validation > textarea::-moz-placeholder {
  color: #FF0000 !important;
  font-size: 16px;
}
.warning-validation > input:-moz-placeholder, .warning-validation > textarea:-moz-placeholder {
  color: #FF0000 !important;
  font-size: 16px;
}
.warning-validation > input:-ms-input-placeholder, .warning-validation > textarea:-ms-input-placeholder {
  color: #FF0000 !important;
  font-size: 16px;
}

.success-form-wrapper {
  max-width: 637px;
  margin: 0 auto;
  text-align: center;
}
.success-form-wrapper .success-form-icon {
  margin-bottom: 30px;
}
.success-form-wrapper .success-form-icon img {
  max-width: 200px;
}
.success-form-wrapper .success-form-title {
  color: #fff;
  margin-bottom: 20px;
}
.success-form-wrapper .success-form-wysiwyg *:not(a) {
  color: #fff;
}
.success-form-wrapper .success-form-wysiwyg > p, .success-form-wrapper .success-form-wysiwyg > ul li {
  color: #B0B6CF;
}

@media screen and (max-width: 500px) {
  .single-input {
    width: 100%;
  }
}
.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: #E77747;
  color: #fff;
  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: #E77747;
  opacity: 0.75;
  padding: 0;
  border: none;
  cursor: pointer;
  color: #fff;
}
.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;
  }
}
.common-slick-carousel {
  visibility: hidden;
}
.common-slick-carousel .slick-slider {
  margin: 0 !important;
}
.common-slick-carousel .slick-track {
  display: flex;
  display: -webkit-flex;
  margin: 0;
}
.common-slick-carousel .slick-slide {
  font-size: 0;
}

.slick-initialized {
  visibility: visible;
}

.home-page .home-hero {
  margin-bottom: 88px;
}
.home-page .home-hero .hero-container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1642px;
}
.home-page .home-hero .hero-content {
  min-height: 778px;
}
.home-page .home-hero .hero-content-inner {
  padding: 144px 0 96px;
}
.home-page .home-hero .hero-title {
  margin-bottom: 15px;
  color: #fff;
  max-width: 430px;
  text-transform: none;
}
.home-page .home-hero .hero-carousel-indicators {
  bottom: 64px;
}
.home-page .home-gallery {
  margin-bottom: 64px;
}
.home-page .home-gallery .gallery-images {
  width: calc(100% - 440px - 80px);
}
.home-page .home-gallery .gallery-content {
  width: 440px;
}
.home-page .home-gallery .single-image:before {
  content: "";
  display: block;
  padding-top: 79.85%;
}
.home-page .home-gallery .gallery-title {
  color: #40465F;
}
.home-page .home-gallery .gallery-title span {
  color: #E77747;
}
.home-page .home-gallery .gallery-wysiwyg {
  margin-bottom: 32px;
}
.home-page .home-projects {
  margin-bottom: 72px;
}
.home-page .home-projects .projects-title {
  color: #40465F;
}
.home-page .home-projects .project-image {
  margin-bottom: 24px;
}
.home-page .home-projects .project-image:before {
  content: "";
  display: block;
  padding-top: 94.69%;
}
.home-page .home-projects .project-title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 36px;
}
.home-page .home-projects .project-subtext {
  margin-bottom: 36px;
}
.home-page .home-why-us {
  padding: 80px 0 128px;
  margin-bottom: 32px;
}
.home-page .home-why-us .darkness-effect-black {
  background-color: rgba(27, 29, 37, 0.9);
}
.home-page .home-why-us .why-us-container {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 30px;
}
.home-page .home-why-us .why-us-title {
  color: #fff;
}
.home-page .home-why-us .why-us-title span {
  color: #E77747;
}
.home-page .home-why-us .why-us-wysiwyg {
  margin-bottom: 50px;
}
.home-page .home-why-us .why-us-wysiwyg *:not(a) {
  color: #fff;
}
.home-page .home-why-us .why-us-wysiwyg > p, .home-page .home-why-us .why-us-wysiwyg > ul li {
  color: #B0B6CF;
}
.home-page .home-why-us .why-us-columns {
  margin-bottom: 20px;
}
.home-page .home-why-us .single-why-us-column {
  width: calc((100% - 128px) / 3.001);
  margin: 0 64px 64px 0;
}
.home-page .home-why-us .single-why-us-column:nth-of-type(3n), .home-page .home-why-us .single-why-us-column:nth-last-of-type(1) {
  margin: 0 0 64px;
}
.home-page .home-why-us .single-why-us-column .column-icon {
  margin-bottom: 25px;
}
.home-page .home-why-us .single-why-us-column .column-icon img {
  width: 128px;
  height: 128px;
}
.home-page .home-why-us .single-why-us-column .column-title {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
}
.home-page .home-why-us .single-why-us-column .column-subtext {
  color: #B0B6CF;
}

@media screen and (min-width: 1681px) {
  .home-page .home-projects .single-project {
    width: calc((100% - 216px) / 4.001);
    margin: 0 72px 72px 0;
  }
  .home-page .home-projects .single-project:nth-of-type(4n), .home-page .home-projects .single-project:nth-last-of-type(1) {
    margin: 0 0 72px 0;
  }
}
@media screen and (max-width: 1680px) {
  .home-page .home-hero {
    margin-bottom: 64px;
  }
  .home-page .home-hero .hero-container {
    padding: 0;
    max-width: 1680px;
  }
  .home-page .home-hero .hero-content {
    min-height: calc(100vh - 132px);
  }
  .home-page .home-hero .hero-content-inner {
    padding: 96px 0;
  }
  .home-page .home-gallery {
    margin-bottom: 48px;
  }
  .home-page .home-gallery .gallery-images {
    width: calc(100% - 440px - 64px);
  }
  .home-page .home-projects {
    margin-bottom: 64px;
  }
  .home-page .home-projects .project-title {
    margin-bottom: 16px;
  }
  .home-page .home-projects .project-subtext {
    margin-bottom: 32px;
  }
  .home-page .home-why-us {
    padding: 64px 0 96px;
    margin-bottom: 16px;
  }
  .home-page .home-why-us .single-why-us-column {
    width: calc((100% - 96px) / 3.001);
    margin: 0 48px 48px 0;
  }
  .home-page .home-why-us .single-why-us-column:nth-of-type(3n), .home-page .home-why-us .single-why-us-column:nth-last-of-type(1) {
    margin: 0 0 48px;
  }
}
@media screen and (min-width: 1367px) and (max-width: 1680px) {
  .home-page .home-projects .single-project {
    width: calc((100% - 192px) / 4.001);
    margin: 0 64px 64px 0;
  }
  .home-page .home-projects .single-project:nth-of-type(4n), .home-page .home-projects .single-project:nth-last-of-type(1) {
    margin: 0 0 64px 0;
  }
}
@media screen and (max-width: 1366px) {
  .home-page .home-hero {
    margin-bottom: 48px;
  }
  .home-page .home-hero .hero-content-inner {
    padding: 64px 0;
  }
  .home-page .home-hero .hero-carousel-indicators {
    bottom: 32px;
  }
  .home-page .home-gallery {
    margin-bottom: 40px;
  }
  .home-page .home-gallery .gallery-images {
    width: calc(100% - 440px - 32px);
  }
  .home-page .home-projects {
    margin-bottom: 32px;
  }
  .home-page .home-why-us {
    padding: 48px 0 64px;
  }
  .home-page .home-why-us .why-us-wysiwyg {
    margin-bottom: 30px;
  }
  .home-page .home-why-us .why-us-columns {
    margin-bottom: 0;
  }
  .home-page .home-why-us .single-why-us-column {
    width: calc((100% - 64px) / 3.001);
    margin: 0 32px 48px 0;
  }
  .home-page .home-why-us .single-why-us-column:nth-of-type(3n), .home-page .home-why-us .single-why-us-column:nth-last-of-type(1) {
    margin: 0 0 48px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  .home-page .home-projects .single-project {
    width: calc((100% - 96px) / 4.001);
    margin: 0 32px 32px 0;
  }
  .home-page .home-projects .single-project:nth-of-type(4n), .home-page .home-projects .single-project:nth-last-of-type(1) {
    margin: 0 0 32px 0;
  }
}
@media screen and (max-width: 1280px) {
  .home-page .home-projects {
    margin-bottom: 24px;
  }
  .home-page .home-projects .project-subtext {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .home-page .home-projects .single-project {
    width: calc((100% - 72px) / 4.001);
    margin: 0 24px 24px 0;
  }
  .home-page .home-projects .single-project:nth-of-type(4n), .home-page .home-projects .single-project:nth-last-of-type(1) {
    margin: 0 0 24px 0;
  }
}
@media screen and (min-width: 1025px) {
  .home-page .home-gallery .single-image {
    width: calc(50% - 4px);
    margin: 0 8px 8px 0;
  }
  .home-page .home-gallery .single-image:nth-of-type(2n), .home-page .home-gallery .single-image:nth-last-of-type(1) {
    margin: 0 0 8px;
  }
  .home-page .home-gallery .gallery-button-tablet {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .home-page .home-hero {
    margin-bottom: 32px;
  }
  .home-page .home-hero .hero-content {
    min-height: calc(100vh - 100px);
  }
  .home-page .home-gallery .gallery-images, .home-page .home-gallery .gallery-content {
    width: 100%;
  }
  .home-page .home-gallery .gallery-images {
    order: 2;
  }
  .home-page .home-gallery .gallery-content {
    order: 1;
  }
  .home-page .home-projects {
    margin-bottom: 0;
  }
  .home-page .home-projects .single-project {
    width: calc(50% - 16px);
    margin: 0 32px 48px 0;
  }
  .home-page .home-projects .single-project:nth-of-type(2n) {
    margin: 0 0 48px 0;
  }
  .home-page .home-why-us {
    padding: 48px 0;
    margin-bottom: 0;
  }
  .home-page .home-why-us .why-us-container {
    padding: 0 15px;
  }
  .home-page .home-why-us .single-why-us-column {
    width: 100%;
    margin: 0 0 48px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .home-page .home-gallery .single-image {
    width: calc((100% - 24px) / 4.001);
    margin: 0 8px 8px 0;
  }
  .home-page .home-gallery .single-image:nth-of-type(4n), .home-page .home-gallery .single-image:nth-last-of-type(1) {
    margin: 0 0 8px;
  }
  .home-page .home-gallery .gallery-button-content {
    display: none;
  }
  .home-page .home-gallery .gallery-images-inner {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .home-page .home-gallery .gallery-images-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .home-page .home-hero .hero-title {
    font-size: 24px;
    line-height: 30px;
    max-width: 228px;
  }
  .home-page .home-hero .hero-content {
    min-height: 300px;
  }
  .home-page .home-hero .hero-content-inner {
    padding: 48px 0;
  }
  .home-page .home-hero .hero-carousel-indicators {
    bottom: 16px;
  }
  .home-page .home-gallery .gallery-images {
    display: none;
  }
  .home-page .home-gallery .gallery-content {
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-animation: none !important;
    animation: none !important;
  }
  .home-page .home-gallery .gallery-button-content {
    text-align: center;
  }
  .home-page .home-gallery .gallery-images-mobile {
    width: calc(100% + 30px);
    margin: 0 -15px 30px;
  }
  .home-page .home-gallery .home-gallery-carousel-indicators {
    margin-top: 20px !important;
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
  }
}
@media screen and (max-width: 600px) {
  .home-page .home-projects .single-project {
    width: 100%;
    margin: 0 32px 64px !important;
    text-align: center;
  }
}
.single-page .back-button {
  margin-bottom: 80px;
  font-size: 0;
}
.single-page .back-button a {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 25px;
  color: #1B1D25;
  display: inline-block;
  font-family: FontLight;
}
.single-page .back-button a:hover {
  color: #E77747;
}
.single-page .back-button a:hover span {
  color: #E77747;
  transform: translate(-5px, -1px);
  -webkit-transform: translate(-5px, -1px);
}
.single-page .back-button span {
  transform: translate(0, -1px);
  -webkit-transform: translate(0, -1px);
  display: inline-block;
  transition: all 0.2s linear;
}
.single-page .titles-wrapper {
  margin-bottom: 24px;
}
.single-page .titles-wrapper .main-title-single {
  margin: 0 24px 16px 0;
  color: #40465F;
}
.single-page .titles-wrapper .button-wrapper {
  margin-bottom: 24px;
}
.single-page .wysiwyg-single {
  margin-bottom: 42px;
}
.single-page .carousel-single-wrapper {
  margin-left: calc(((100% - 1350px) / 2) - 156px);
  margin-bottom: 72px;
}
.single-page .single-carousel-image {
  padding: 5px 0 0;
}
.single-page .single-carousel-image a:before {
  content: "";
  display: block;
  padding-top: 90.4%;
}
.single-page .slick-list {
  padding: 0 8% 0 0;
}
.single-page .slick-slide {
  padding: 0 4px;
}
.single-page .slick-dots {
  position: static;
  bottom: auto;
  left: auto;
  right: auto;
  top: auto;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 24px 0 0 0;
  padding-right: calc(((100vw - 1350px) / 2) - 156px + 7.5px);
}
.single-page .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 8px 0 0;
}
.single-page .slick-dots li:nth-last-of-type(1) {
  margin: 0;
}
.single-page .slick-dots li button {
  width: 16px;
  height: 16px;
  padding: 0;
  background: transparent;
  border: 1px solid #E77747;
  border-radius: 50%;
}
.single-page .slick-dots li button:before {
  content: none;
}
.single-page .slick-dots li button:hover {
  background-color: #E77747;
}
.single-page .slick-dots .slick-active button {
  background-color: #E77747;
}
.single-page .additional-content-wrapper {
  padding-bottom: 48px;
}
.single-page .additional-content-inner {
  margin: 0 calc((100% - 1350px) / 2) 72px 30px;
}
.single-page .additional-content-image {
  float: left;
  width: 34%;
  margin: 0 72px 72px 0;
  min-height: 720px;
}
.single-page .additional-content-wysiwyg {
  margin-bottom: 64px;
}
.single-page .contact-form-wrapper {
  padding: 80px 0 100px;
}
.single-page .contact-form-wrapper .darkness-effect-black {
  background-color: rgba(27, 29, 37, 0.8);
}
.single-page .contact-form-inner {
  max-width: 1054px;
  padding: 0 15px;
}
.single-page .contact-form-title {
  color: #fff;
}
.single-page .contact-form-title span {
  color: #E77747;
}
.single-page .contact-form-subtitle {
  font-size: 35px;
  line-height: 30px;
  margin-bottom: 40px;
}
.single-page .contact-form-subtitle span {
  color: #E77747;
}
.single-page .contact-form {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  max-width: 637px;
  margin: 0 auto;
}
.single-page .submit-wrapper {
  padding-top: 5px;
}
.single-page .submit-wrapper .default-button {
  padding: 17px 27px;
}

@media screen and (max-width: 1745px) {
  .single-page .carousel-single-wrapper {
    margin-left: 26px;
  }
  .single-page .slick-dots {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1680px) {
  .single-page .back-button, .single-page .carousel-single-wrapper {
    margin-bottom: 64px;
  }
  .single-page .wysiwyg-single {
    margin-bottom: 32px;
  }
  .single-page .additional-content-wrapper {
    padding-bottom: 16px;
  }
  .single-page .additional-content-inner {
    margin: 0 calc((100% - 1350px) / 2) 64px 30px;
  }
  .single-page .additional-content-image {
    margin: 0 64px 64px 0;
    min-height: 700px;
  }
  .single-page .contact-form-wrapper {
    padding: 64px 0 80px;
  }
  .single-page .additional-content-wysiwyg {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1366px) {
  .single-page .back-button, .single-page .carousel-single-wrapper {
    margin-bottom: 48px;
  }
  .single-page .additional-content-wrapper {
    padding-bottom: 0;
  }
  .single-page .additional-content-inner {
    margin: 0 30px 48px;
  }
  .single-page .additional-content-image {
    margin: 0 48px 48px 0;
    min-height: 505px;
  }
  .single-page .titles-wrapper {
    margin-bottom: 16px;
  }
  .single-page .titles-wrapper .main-title-single {
    margin: 0 16px 16px 0;
  }
  .single-page .titles-wrapper .button-wrapper {
    margin-bottom: 16px;
  }
  .single-page .contact-form-wrapper {
    padding: 48px 0 64px;
  }
  .single-page .additional-content-wysiwyg {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .single-page .additional-content-image {
    width: 400px;
    margin: 0 32px 32px 0;
  }
}
@media screen and (max-width: 1024px) {
  .single-page .back-button {
    margin-bottom: 32px;
  }
  .single-page .titles-wrapper {
    margin-bottom: 0;
  }
  .single-page .titles-wrapper .main-title-single {
    width: 100%;
  }
  .single-page .titles-wrapper .main-title-single {
    margin: 0 0 30px;
  }
  .single-page .titles-wrapper .button-wrapper {
    display: none;
  }
  .single-page .additional-content-inner {
    margin: 0 15px 48px;
  }
  .single-page .additional-content-image {
    width: 300px;
    min-height: 370px;
  }
  .single-page .slick-list {
    padding: 0 15% 0 0;
  }
  .single-page .carousel-single-wrapper {
    margin-left: 11px;
  }
  .single-page .slick-dots {
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .single-page .contact-form-title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 20px;
  }
  .single-page .contact-form-subtitle {
    margin-bottom: 35px;
  }
  .single-page .additional-content-image {
    float: none;
    width: 100%;
    margin: 0 0 24px;
    min-height: 0;
    max-height: 500px;
    transform: none !important;
    -webkit-transform: none !important;
    animation: none !important;
    -webkit-animation: none !important;
  }
}
@media screen and (max-width: 600px) {
  .single-page .slick-list {
    padding: 0 20% 0 0;
  }
}
.contacts-page .contacts-columns {
  margin-bottom: 32px;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contacts-page .single-contact-column {
  width: calc(50% - 16px);
  margin: 0 0 32px !important;
}
.contacts-page .single-contact-element-margin {
  margin-bottom: 30px;
}
.contacts-page .contact-element-icon {
  margin-right: 15px;
  top: 3.5px;
  font-size: 0;
}
.contacts-page .contact-element-icon img {
  width: 24px;
  height: 24px;
}
.contacts-page .contact-element-value {
  max-width: calc(100% - 15px - 20px);
}
.contacts-page .contact-element-value a {
  color: #40465F;
}
.contacts-page .contact-element-value a:hover {
  color: #E77747;
}
.contacts-page .copy-link-wrapper {
  margin-bottom: 20px;
}
.contacts-page .copy-link:hover {
  color: #E77747;
}
.contacts-page .copy-link:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.contacts-page .copy-link img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}
.contacts-page .success-copy {
  display: none;
  font-size: 12px;
  line-height: 18px;
  bottom: calc(100% + 5px);
  left: 0;
}
.contacts-page .single-contact-member a {
  color: #40465F;
}
.contacts-page .single-contact-member a:hover {
  color: #E77747;
}
.contacts-page .map-wrapper {
  min-height: 585px;
}

@media screen and (max-width: 1366px) {
  .contacts-page .map-wrapper {
    min-height: 500px;
  }
}
@media screen and (min-width: 1281px) {
  .contacts-page .single-contact-member {
    width: calc((100% - 96px) / 4.001);
    margin: 0 32px 32px 0;
  }
  .contacts-page .single-contact-member:nth-of-type(4n), .contacts-page .single-contact-member:nth-last-of-type(1) {
    margin: 0 0 32px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .contacts-page .single-contact-member {
    width: calc((100% - 64px) / 3.001);
    margin: 0 32px 32px 0;
  }
  .contacts-page .single-contact-member:nth-of-type(3n), .contacts-page .single-contact-member:nth-last-of-type(1) {
    margin: 0 0 32px;
  }
}
@media screen and (max-width: 1024px) {
  .contacts-page .contacts-columns {
    margin-bottom: 0;
  }
  .contacts-page .copy-link-wrapper {
    margin-bottom: 8px;
  }
  .contacts-page .single-contact-element-margin {
    margin-bottom: 16px;
  }
  .contacts-page .contacts-columns-members {
    margin-bottom: -32px;
  }
  .contacts-page .map-wrapper {
    min-height: 400px;
  }
  .contacts-page .single-contact-member {
    width: calc((100% - 32px) / 3.001);
    margin: 0 16px 32px 0;
  }
  .contacts-page .single-contact-member:nth-of-type(3n), .contacts-page .single-contact-member:nth-last-of-type(1) {
    margin: 0 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .contacts-page .single-contact-element-margin {
    margin-bottom: 24px;
  }
  .contacts-page .contacts-columns-members {
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .contacts-page .single-contact-column, .contacts-page .single-contact-member {
    width: 100%;
    margin: 0 0 32px !important;
  }
}
.about-us-page .about-us-main {
  margin-bottom: 64px;
}
.about-us-page .why-us-wysiwyg, .about-us-page .about-us-why-us {
  margin-bottom: 30px;
}
.about-us-page .advantage-icon {
  margin-bottom: 15px;
}
.about-us-page .advantage-icon img {
  width: 100px;
  height: 100px;
}
.about-us-page .advantage-title {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 0;
}
.about-us-page .single-why-us-image {
  width: calc((100% - 84px) / 3.001);
  margin: 0 42px 42px 0;
}
.about-us-page .single-why-us-image:nth-of-type(3n), .about-us-page .single-why-us-image:nth-last-of-type(1) {
  margin: 0 0 42px 0;
}
.about-us-page .single-why-us-image:before {
  content: "";
  display: block;
  padding-top: 70.61%;
}
.about-us-page .partners-title span {
  color: #E77747;
}
.about-us-page .partners-list {
  margin-bottom: -48px;
}
.about-us-page .single-partner a:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.about-us-page .single-partner img {
  height: 80px;
  max-width: 100%;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

@media screen and (min-width: 1681px) {
  .about-us-page .single-advantage {
    width: calc((100% - 288px) / 4.001);
    margin: 0 96px 96px 0;
  }
  .about-us-page .single-advantage:nth-of-type(4n), .about-us-page .single-advantage:nth-last-of-type(1) {
    margin: 0 0 96px 0;
  }
  .about-us-page .single-partner {
    width: calc((100% - 368px) / 5.001);
    margin: 0 92px 48px 0;
  }
  .about-us-page .single-partner:nth-of-type(5n), .about-us-page .single-partner:nth-last-of-type(1) {
    margin: 0 0 48px 0;
  }
}
@media screen and (min-width: 1367px) and (max-width: 1680px) {
  .about-us-page .single-advantage {
    width: calc((100% - 192px) / 4.001);
    margin: 0 64px 64px 0;
  }
  .about-us-page .single-advantage:nth-of-type(4n), .about-us-page .single-advantage:nth-last-of-type(1) {
    margin: 0 0 64px 0;
  }
  .about-us-page .single-partner {
    width: calc((100% - 256px) / 5.001);
    margin: 0 64px 48px 0;
  }
  .about-us-page .single-partner:nth-of-type(5n), .about-us-page .single-partner:nth-last-of-type(1) {
    margin: 0 0 48px 0;
  }
}
@media screen and (max-width: 1366px) {
  .about-us-page .about-us-why-us {
    margin-bottom: 16px;
  }
  .about-us-page .single-why-us-image {
    width: calc((100% - 64px) / 3.001);
    margin: 0 32px 32px 0;
  }
  .about-us-page .single-why-us-image:nth-of-type(3n), .about-us-page .single-why-us-image:nth-last-of-type(1) {
    margin: 0 0 32px 0;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  .about-us-page .single-advantage {
    width: calc((100% - 144px) / 4.001);
    margin: 0 48px 48px 0;
  }
  .about-us-page .single-advantage:nth-of-type(4n), .about-us-page .single-advantage:nth-last-of-type(1) {
    margin: 0 0 48px 0;
  }
  .about-us-page .single-partner {
    width: calc((100% - 192px) / 5.001);
    margin: 0 48px 48px 0;
  }
  .about-us-page .single-partner:nth-of-type(5n), .about-us-page .single-partner:nth-last-of-type(1) {
    margin: 0 0 48px 0;
  }
}
@media screen and (max-width: 1280px) {
  .about-us-page .why-us-advantages {
    margin-bottom: 16px;
  }
  .about-us-page .single-advantage {
    width: calc(50% - 24px);
    margin: 0 48px 48px 0;
  }
  .about-us-page .single-advantage:nth-of-type(2n), .about-us-page .single-advantage:nth-last-of-type(1) {
    margin: 0 0 48px 0;
  }
  .about-us-page .partners-list {
    margin-bottom: -32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .about-us-page .single-partner {
    width: calc((100% - 128px) / 5.001);
    margin: 0 32px 32px 0;
  }
  .about-us-page .single-partner:nth-of-type(5n), .about-us-page .single-partner:nth-last-of-type(1) {
    margin: 0 0 32px 0;
  }
}
@media screen and (max-width: 1024px) {
  .about-us-page .single-advantage {
    width: calc(50% - 16px);
    margin: 0 32px 32px 0;
  }
  .about-us-page .single-advantage:nth-of-type(2n), .about-us-page .single-advantage:nth-last-of-type(1) {
    margin: 0 0 32px 0;
  }
  .about-us-page .about-us-main {
    margin-bottom: 48px;
  }
  .about-us-page .single-why-us-image {
    width: calc((100% - 32px) / 3.001);
    margin: 0 16px 16px 0;
  }
  .about-us-page .single-why-us-image:nth-of-type(3n), .about-us-page .single-why-us-image:nth-last-of-type(1) {
    margin: 0 0 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-us-page .partners-title {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .about-us-page .single-partner {
    width: calc((100% - 64px) / 3.001);
    margin: 0 32px 32px 0;
  }
  .about-us-page .single-partner:nth-of-type(3n), .about-us-page .single-partner:nth-last-of-type(1) {
    margin: 0 0 32px 0;
  }
}
@media screen and (max-width: 600px) {
  .about-us-page .single-advantage, .about-us-page .single-why-us-image {
    width: 100%;
  }
  .about-us-page .single-advantage {
    margin: 0 0 32px !important;
  }
  .about-us-page .single-why-us-image {
    margin: 0 0 8px !important;
  }
  .about-us-page .about-us-why-us {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .about-us-page .partners-list {
    margin-bottom: -16px;
  }
  .about-us-page .single-partner {
    width: calc((100% - 32px) / 3.001);
    margin: 0 16px 16px 0;
  }
  .about-us-page .single-partner:nth-of-type(3n), .about-us-page .single-partner:nth-last-of-type(1) {
    margin: 0 0 16px 0;
  }
}
.projects-page .projects-main-title {
  margin-bottom: 64px;
}
.projects-page .single-project {
  margin-bottom: 80px;
}
.projects-page .project-image {
  width: 384px;
}
.projects-page .project-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.projects-page .project-image img {
  transition: all 1s linear;
}
.projects-page .project-content {
  width: calc(100% - 384px - 80px);
}
.projects-page .project-title {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 30px;
}
.projects-page .project-subtext {
  margin-bottom: 36px;
}

@media screen and (max-width: 1680px) {
  .projects-page .projects-main-title {
    margin-bottom: 48px;
  }
  .projects-page .single-project {
    margin-bottom: 64px;
  }
  .projects-page .project-content {
    width: calc(100% - 384px - 64px);
  }
  .projects-page .project-title {
    margin-bottom: 24px;
  }
  .projects-page .project-subtext {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1366px) {
  .projects-page .projects-main-title {
    margin-bottom: 30px;
  }
  .projects-page .single-project {
    margin-bottom: 48px;
  }
  .projects-page .project-content {
    width: calc(100% - 384px - 48px);
  }
}
@media screen and (max-width: 1024px) {
  .projects-page .project-image {
    width: 300px;
  }
  .projects-page .project-content {
    width: calc(100% - 300px - 32px);
  }
  .projects-page .project-title {
    margin-bottom: 16px;
  }
  .projects-page .project-subtext {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .projects-page .projects-main-title, .projects-page .single-project {
    text-align: center;
  }
  .projects-page .projects-list {
    margin: 0 32px -64px;
  }
  .projects-page .single-project {
    display: block !important;
    width: 100%;
    margin: 0 0 64px;
  }
  .projects-page .project-image, .projects-page .project-content {
    width: 100%;
  }
  .projects-page .project-image {
    margin-bottom: 24px;
  }
  .projects-page .project-image:before {
    padding-top: 94.69%;
  }
  .projects-page .project-title {
    font-size: 20px;
    line-height: 24px;
  }
}
.custom-about-us-page .custom-about-us-main-title {
  margin-bottom: 48px;
}
.custom-about-us-page .custom-about-us-default-title {
  font-size: 40px;
  line-height: 48px;
  text-transform: uppercase;
  color: #1B1D25;
  font-family: FontLight;
}
.custom-about-us-page .custom-about-us-default-title span {
  color: #E77747;
}
.custom-about-us-page .custom-about-us-button {
  margin-top: 56px;
}
.custom-about-us-page .custom-about-us-main {
  padding-bottom: 16px;
}
.custom-about-us-page .custom-about-us-main .main-image {
  float: left;
  width: calc(50% - 36px);
  margin: 0 72px 72px 0;
  min-height: 593px;
}
.custom-about-us-page .custom-about-us-main .main-content-wrapper {
  padding-top: 48px;
  margin: 0 calc((100% - 1350px) / 2) 72px 30px;
}
.custom-about-us-page .custom-about-us-main .main-default-title {
  margin-bottom: 32px;
}
.custom-about-us-page .custom-about-us-main .main-wysiwyg {
  margin-bottom: 48px;
}
.custom-about-us-page .custom-about-us-advantages .advantages-default-title {
  margin-bottom: 56px;
}
.custom-about-us-page .custom-about-us-advantages .advantages-list {
  padding-bottom: 32px;
}
.custom-about-us-page .custom-about-us-advantages .single-advantage {
  margin-bottom: 48px;
}
.custom-about-us-page .custom-about-us-advantages .advantage-icon {
  width: 120px;
  margin-right: 32px;
}
.custom-about-us-page .custom-about-us-advantages .advantage-content {
  width: calc(100% - 120px - 32px);
}
.custom-about-us-page .custom-about-us-advantages .advantage-title {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 16px;
}
.custom-about-us-page .custom-about-us-what-else {
  padding: 80px 0;
}
.custom-about-us-page .custom-about-us-what-else .darkness-effect-black {
  background-color: rgba(27, 29, 37, 0.8);
}
.custom-about-us-page .custom-about-us-what-else .what-else-title {
  color: #fff;
}
.custom-about-us-page .custom-about-us-what-else .what-else-title span {
  color: #E77747;
}
.custom-about-us-page .custom-about-us-what-else .info-container {
  max-width: 564px;
}
.custom-about-us-page .custom-about-us-what-else .single-info {
  margin-bottom: 48px;
}
.custom-about-us-page .custom-about-us-what-else .single-info *:not(a) {
  color: #fff;
}
.custom-about-us-page .custom-about-us-what-else .single-info > p, .custom-about-us-page .custom-about-us-what-else .single-info > ul li {
  color: #B0B6CF;
}

@media screen and (max-width: 1680px) {
  .custom-about-us-page .custom-about-us-main-title {
    margin-bottom: 30px;
  }
  .custom-about-us-page .custom-about-us-button {
    margin-top: 48px;
  }
  .custom-about-us-page .custom-about-us-main .main-image {
    width: calc(50% - 32px);
    margin: 0 64px 64px 0;
    min-height: 500px;
  }
  .custom-about-us-page .custom-about-us-main .main-content-wrapper {
    padding-top: 32px;
    margin: 0 calc((100% - 1350px) / 2) 64px 30px;
  }
  .custom-about-us-page .custom-about-us-main .main-default-title {
    margin-bottom: 24px;
  }
  .custom-about-us-page .custom-about-us-main .main-wysiwyg {
    margin-bottom: 32px;
  }
  .custom-about-us-page .custom-about-us-advantages .advantages-default-title {
    margin-bottom: 48px;
  }
  .custom-about-us-page .custom-about-us-what-else {
    padding: 64px 0;
  }
  .custom-about-us-page .custom-about-us-what-else .single-info {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1366px) {
  .custom-about-us-page .custom-about-us-main .main-image {
    width: calc(50% - 48px);
    margin: 0 48px 48px 0;
  }
  .custom-about-us-page .custom-about-us-main .main-content-wrapper {
    margin: 0 30px 48px;
  }
  .custom-about-us-page .custom-about-us-advantages .advantages-default-title, .custom-about-us-page .custom-about-us-advantages .single-advantage {
    margin-bottom: 32px;
  }
  .custom-about-us-page .custom-about-us-advantages .advantages-list {
    padding-bottom: 16px;
  }
  .custom-about-us-page .custom-about-us-what-else {
    padding: 48px 0;
  }
}
@media screen and (max-width: 1280px) {
  .custom-about-us-page .custom-about-us-main .main-image {
    width: 400px;
    margin: 0 32px 32px 0;
  }
  .custom-about-us-page .custom-about-us-main .main-content-wrapper {
    padding-top: 24px;
  }
  .custom-about-us-page .custom-about-us-main .main-default-title {
    margin-bottom: 16px;
  }
  .custom-about-us-page .custom-about-us-main .main-wysiwyg {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .custom-about-us-page .custom-about-us-main-title {
    text-align: center;
  }
  .custom-about-us-page .custom-about-us-main .main-image {
    float: none;
    width: 100%;
    margin: 0 0 24px;
    min-height: 0;
    max-height: 500px;
    transform: none !important;
    -webkit-transform: none !important;
    animation: none !important;
    -webkit-animation: none !important;
  }
  .custom-about-us-page .custom-about-us-main .main-content-wrapper {
    padding-top: 0;
    margin: 0 15px 48px;
    text-align: center;
  }
  .custom-about-us-page .custom-about-us-advantages .advantages-default-title {
    text-align: center;
  }
  .custom-about-us-page .custom-about-us-advantages .advantages-list {
    padding-bottom: 0;
  }
  .custom-about-us-page .custom-about-us-advantages .single-advantage {
    margin-bottom: 48px;
  }
  .custom-about-us-page .custom-about-us-advantages .advantage-icon {
    width: 100%;
    margin: 0 0 24px;
    text-align: center;
  }
  .custom-about-us-page .custom-about-us-advantages .advantage-icon img {
    max-width: 120px;
  }
  .custom-about-us-page .custom-about-us-advantages .advantage-content {
    width: 100%;
    text-align: center;
  }
}
.gallery-page .gallery-wysiwyg {
  margin-bottom: 32px;
}
.gallery-page .gallery-tab-links-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 40px;
  right: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}
.gallery-page .gallery-tab-links {
  margin-bottom: 40px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.gallery-page .gallery-tab-links::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.gallery-page .gallery-tab-links::-webkit-scrollbar-track, .gallery-page .gallery-tab-links::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.gallery-page .single-gallery-tab {
  flex-shrink: 0;
  margin-right: 40px;
}
.gallery-page .single-gallery-tab a {
  color: #1B1D25;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}
.gallery-page .single-gallery-tab a:hover {
  color: #E77747;
}
.gallery-page .single-gallery-tab .active {
  color: #E77747;
}
.gallery-page .masonry-wrapper {
  transition: visibility 0.6s linear, opacity 0.6s linear;
}
.gallery-page .hidden-masonry-during-loading {
  visibility: hidden;
  opacity: 0;
}
.gallery-page .play-button {
  width: 83px;
  height: 83px;
  object-fit: contain;
  right: 25px;
  bottom: 25px;
  position: absolute;
  animation: scaling 1.5s linear infinite;
  -webkit-animation: scaling 1.5s linear infinite;
}
.gallery-page .masonry-preloader {
  width: 200px;
  height: 200px;
  max-width: 100%;
  max-height: 100%;
  -webkit-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
  margin: 30px;
}
.gallery-page .masonry-percent {
  font-size: 40px;
  line-height: 50px;
  margin-top: 60px;
}
.gallery-page .masonry-gallery-modal .carousel-inner {
  height: 100% !important;
}

@media screen and (max-width: 1366px) {
  .gallery-page .gallery-tab-links {
    margin-bottom: 32px;
  }
  .gallery-page .single-gallery-tab {
    margin-right: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .gallery-page .single-gallery-tab {
    margin-right: 24px;
  }
}

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