@import url(vendor/swiper.min.css);
@import url(vendor/jquery.fancybox.min.css);
@import url("https://fonts.googleapis.com/css?family=Abril+Fatface&display=swap&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Bai+Jamjuree:300,400,500,700&display=swap&subset=latin-ext");
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #393939;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  letter-spacing: 2px;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #393939;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  letter-spacing: 2px;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #393939;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  letter-spacing: 2px;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #393939;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  letter-spacing: 2px;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #393939;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  letter-spacing: 2px;
}

header {
  width: calc(100% + 80px);
  margin-left: -40px;
  height: 85px;
  display: flex;
  background-color: #e8e8e8;
}

header .logo_cont {
  width: 320px;
  height: 100%;
  background-color: #393939;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

header .logo_cont > a {
  display: block;
  width: 100%;
}

header .logo_cont > a > img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

header .contacts {
  width: 22.08vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

header .contacts > a {
  color: #000;
  letter-spacing: 1px;
  font-size: 0.75em;
  display: block;
  padding-left: 28px;
}

header .contacts > a:hover::before,
header .contacts > a:hover::after {
  transform: scale(1.2);
}

header .contacts > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 16px;
  width: 16px;
  background-image: url("../img/svg/tel.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}

header .contacts::after {
  content: "";
  height: 46px;
  width: 1px;
  position: absolute;
  right: 0;
  top: calc(50% - 23px);
  background-color: #000000;
}

header > ul {
  width: calc(100% - 320px - 22.08vw);
  display: flex;
  height: 100%;
  padding: 0 35px 0 0;
  align-items: center;
  justify-content: flex-end;
}

header > ul > li {
  list-style: none;
  line-height: 1;
}

header > ul > li.clicked > a::before,
header > ul > li.clicked > a::after {
  opacity: 0.3;
  transform: translateY(0);
}

header > ul > li:not(:last-child) {
  margin-right: 30px;
}

header > ul > li > a {
  font-size: 0.875em;
  color: #424242 !important;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 300;
}

header > ul > li > a:hover::before,
header > ul > li > a:hover::after {
  opacity: 0.3;
  transform: translateY(0);
}

header > ul > li > a::before,
header > ul > li > a::after {
  content: attr(data-hover);
  position: absolute;
  font-weight: 300;
  left: 0;
  top: -20px;
  transform: translateY(20px);
  transition: 0.3s;
  opacity: 0;
  color: #000 !important;
}

header > ul > li > a::after {
  top: auto;
  bottom: -20px;
  transform: translateY(-20px);
  color: #808080 !important;
}

header .hamburger {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 24px;
}

header .hamburger.active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(225deg);
}

header .hamburger.active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}

header .hamburger.active .hamburger-inner::after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

header .hamburger .hamburger-inner,
header .hamburger .hamburger-inner::after,
header .hamburger .hamburger-inner::before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-property: transform;
  border-radius: 4px;
  background-color: #393939;
}

header .hamburger .hamburger-inner::after,
header .hamburger .hamburger-inner::before {
  display: block;
  content: "";
}

header .hamburger .hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.22s;
}

header .hamburger .hamburger-inner::before {
  top: -10px;
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

header .hamburger .hamburger-inner::after {
  bottom: -10px;
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@media (max-width: 1700px) {
  header .contacts {
    width: 210px;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 30px;
  }
  header > ul {
    width: calc(100% - 320px - 210px);
  }
}
@media (max-width: 1430px) {
  header .logo_cont {
    width: 240px;
  }
  header > ul {
    width: calc(100% - 240px - 210px);
  }
  header > ul > li:not(:last-child) {
    margin-right: 20px;
  }
  header > ul > li > a {
    letter-spacing: 2px;
  }
}
@media (max-width: 1200px) {
  header {
    padding-right: 40px;
    align-items: center;
  }
  header .logo_cont {
    width: 320px;
  }
  header .contacts {
    width: 230px;
    padding-left: 30px;
  }
  header > ul {
    position: fixed;
    visibility: hidden;
    left: 0;
    width: 100%;
    height: calc(100% - 85px);
    top: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 120px 40px;
    background-color: #393939;
    z-index: 50;
    transform: translateX(100%);
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0.38, 0.52, 0.37, 1.27);
  }
  header > ul.active {
    transform: translateX(0);
    visibility: visible;
  }
  header > ul > li:not(:last-child) {
    margin-right: 0;
  }
  header > ul > li.clicked > a::before,
  header > ul > li.clicked > a::after {
    opacity: 1;
  }
  header > ul > li > a {
    font-weight: 400;
    font-size: 1.125em;
    color: #e8e8e8 !important;
  }
  header > ul > li > a:hover::before,
  header > ul > li > a:hover::after {
    opacity: 1;
  }
  header > ul > li > a::before,
  header > ul > li > a::after {
    content: "";
    width: 100%;
    height: 1px;
    top: auto;
    bottom: -3px;
    transform: translateY(0);
    background-color: #e8e8e8 !important;
  }
  header > ul > li > a::after {
    display: none;
  }
  header .hamburger {
    display: inline-block;
  }
}
@media (max-width: 750px) {
  header {
    height: 60px;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding-right: 20px;
  }
  header .logo_cont {
    width: 210px;
    padding: 0 20px;
  }
  header .contacts {
    width: 210px;
    padding-left: 30px;
  }
  header .contacts::after {
    height: 30px;
    top: calc(50% - 15px);
  }
  header > ul {
    top: 60px;
    height: calc(100% - 60px);
  }
}
@media (max-width: 500px) {
  header {
    width: calc(100% + 20px);
    margin-left: -10px;
    padding-right: 10px;
  }
  header .logo_cont {
    width: 160px;
    padding: 0 10px;
  }
  header .contacts {
    width: 175px;
    padding-left: 25px;
  }
  header .contacts > a {
    letter-spacing: 0;
    padding-left: 20px;
  }
  header .contacts > a::before {
    width: 12px;
  }
}
@media (max-width: 400px) {
  header .logo_cont {
    width: 100px;
  }
  header .hamburger {
    width: 22px;
    height: 14px;
  }
  header .hamburger .hamburger-inner,
  header .hamburger .hamburger-inner::after,
  header .hamburger .hamburger-inner::before {
    width: 100%;
    height: 1px;
  }
  header .hamburger .hamburger-inner {
    margin-top: -0.5px;
  }
  header .hamburger .hamburger-inner::before {
    top: -7px;
  }
  header .hamburger .hamburger-inner::after {
    bottom: -7px;
  }
}
/** GLOBALS **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* prevent tap highlight color / shadow */
  outline: none;
}

.fancybox-navigation {
  position: static;
}

._hidden {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
  font-family: "Bai Jamjuree", sans-serif;
}

html.noscroll,
body.noscroll {
  overflow-y: hidden;
}

body {
  padding: 0 40px;
  background-color: #c8c8c8;
}

h1,
h2,
h3 {
  width: fit-content;
  width: -moz-fit-content;
}

h1 {
  color: #4a4a4a;
  font-size: 2.875em;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.3;
}

h2 {
  font-size: 1.375em;
  letter-spacing: 4px;
  line-height: 1.2;
  color: #e8e8e8;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

h2.square {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4a4a4a;
}

h2.square.lined::after {
  bottom: 75px;
}

h2.lined {
  padding-bottom: 35px;
}

h2.lined::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  left: calc(50% - 20px);
  bottom: 0;
  background-color: #4a4a4a;
}

section {
  width: 100%;
}

section.sub {
  padding: 80px 0 80px 8vw;
  min-height: 800px;
}

section.sub h1 {
  writing-mode: vertical-rl;
  font-weight: 300;
  color: #fff;
  font-size: 6.5em;
  letter-spacing: 18px;
  text-transform: uppercase;
}

section.sub h1::after {
  content: "";
  position: absolute;
  height: 400vh;
  width: 1px;
  left: 50%;
  bottom: -400vh;
  background-color: #fff;
}

a {
  color: #000;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: #000;
}

p {
  color: #4a4a4a;
  font-size: 1.125em;
  letter-spacing: 2px;
  line-height: 1.3;
}

p > strong {
  font-weight: 700;
}

form {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

form input[type=text],
form input[type=email],
form textarea {
  width: 100%;
  background: none;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: 0;
  border-bottom: 1px solid #393939;
  color: #393939;
  height: 35px;
  margin-top: 25px;
  text-align: center;
  padding: 0;
  letter-spacing: 2px;
}

form textarea {
  resize: none;
  height: 280px;
  padding: 10px;
  margin-top: 55px;
  border: 1px solid #393939;
}

form .btn {
  margin-top: 40px;
}

form p.info {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 40px;
}

form p.message {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(200, 200, 200, 0.95);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: 500;
  color: #000;
  padding: 30px;
  z-index: 5;
}

@media (max-width: 1800px) {
  section.sub {
    padding: 80px 0 80px 2vw;
  }
}
@media (max-width: 1300px) {
  section.sub {
    padding: 40px 0;
  }
}
@media (max-width: 1200px) {
  section.sub {
    min-height: auto;
  }
  section.sub h1 {
    writing-mode: initial;
    font-size: 2.8125em !important;
    letter-spacing: 4px !important;
  }
  section.sub h1::after {
    display: none;
  }
}
@media (max-width: 750px) {
  body {
    padding: 0 20px;
  }
  section.sub {
    padding: 20px 0;
  }
}
@media (max-width: 500px) {
  body {
    padding: 0 10px;
  }
  section.sub {
    padding: 20px 10px;
  }
}
@media (max-width: 400px) {
  section.sub h1 {
    font-size: 2.25em !important;
    letter-spacing: 3px !important;
  }
  p {
    font-size: 0.875em;
    letter-spacing: 1px;
  }
}
section .pagination_cont {
  width: 100%;
  margin: 60px auto 0 auto;
  padding-bottom: 5px;
}

section .pagination_cont::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4a4a4a;
}

section .pagination_cont ul {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

section .pagination_cont ul .pageEllipsis {
  margin-right: 10px;
}

section .pagination_cont ul li {
  list-style: none;
}

section .pagination_cont ul li.active a {
  pointer-events: none;
  opacity: 0.7;
}

section .pagination_cont ul li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 7px;
  background-color: #000;
  opacity: 0.7;
}

section .pagination_cont ul li:nth-child(1):not(.active) {
  margin-right: auto;
}

section .pagination_cont ul li:nth-child(1).active {
  margin-left: auto;
}

section .pagination_cont ul li:last-child:not(.active) {
  margin-left: auto;
}

section .pagination_cont ul li:last-child.active {
  margin-right: auto;
}

section .pagination_cont ul li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 10px;
}

section .pagination_cont ul li .fa {
  display: block;
  width: 10px;
  height: 17px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/svg/arrow_duck_left.svg");
}

section .pagination_cont ul li .fa.fa-angle-double-left {
  margin-right: auto;
}

section .pagination_cont ul li .fa.fa-angle-double-right {
  transform: rotate(180deg);
  margin-left: auto;
}

section.front_references {
  padding-bottom: 40px;
}

section.front_references h2 {
  margin: 0 auto;
  color: #4a4a4a;
}

section.front_references .references_grid {
  width: 1000px;
  display: grid;
  margin: 40px auto 0 auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 70px;
  justify-items: center;
  align-items: center;
}

section.front_references .references_grid > img {
  height: 65px;
  width: auto;
  max-width: 90%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

section.front_references .references_grid > img:nth-child(6),
section.front_references .references_grid > img:nth-child(9),
section.front_references .references_grid > img:nth-child(10),
section.front_references .references_grid > img:nth-child(11) {
  height: 100px;
}

section.front_references > .btn {
  margin: 90px auto 0 auto;
}

@media (max-width: 1300px) {
  section .pagination_cont ul {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  section.front_references .references_grid {
    width: 650px;
    grid-row-gap: 50px;
  }
  section.front_references .references_grid > img {
    height: 50px;
  }
  section.front_references .references_grid > img:nth-child(3),
  section.front_references .references_grid > img:nth-child(6),
  section.front_references .references_grid > img:nth-child(9),
  section.front_references .references_grid > img:nth-child(10),
  section.front_references .references_grid > img:nth-child(11) {
    height: 80px;
  }
}
@media (max-width: 700px) {
  section.front_references .references_grid {
    width: 450px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  section.front_references .references_grid > img {
    height: 45px;
  }
  section.front_references .references_grid > img:nth-child(3),
  section.front_references .references_grid > img:nth-child(6),
  section.front_references .references_grid > img:nth-child(9),
  section.front_references .references_grid > img:nth-child(10),
  section.front_references .references_grid > img:nth-child(11) {
    height: 70px;
  }
}
@media (max-width: 500px) {
  section.front_references .references_grid {
    width: 90%;
    grid-template-columns: 1fr 1fr;
  }
  section.front_references .references_grid > img {
    max-width: 80%;
    height: 16vw;
  }
  section.front_references .references_grid > img:nth-child(3),
  section.front_references .references_grid > img:nth-child(6),
  section.front_references .references_grid > img:nth-child(9),
  section.front_references .references_grid > img:nth-child(10),
  section.front_references .references_grid > img:nth-child(11) {
    height: 19vw;
  }
}
footer {
  width: 100%;
}

footer > .main {
  padding: 35px 40px;
  background-color: #393939;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}

footer > .main ul {
  justify-self: baseline;
  width: -moz-fit-content;
  width: fit-content;
}

footer > .main ul li {
  list-style: none;
  line-height: 1;
}

footer > .main ul li:not(:first-child) {
  margin-top: 15px;
}

footer > .main ul li a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #9b9b9b !important;
  width: fit-content;
  width: -moz-fit-content;
  text-transform: uppercase;
}

footer > .main > div {
  width: fit-content;
  width: -moz-fit-content;
}

footer > .main > div > strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #9b9b9b;
  text-decoration: underline;
  text-transform: uppercase;
}

footer > .main > div p {
  margin-top: 15px;
  line-height: 1.5;
  color: #9b9b9b;
  font-size: 14px;
}

footer > .main > div p a {
  display: block;
  line-height: 1.5;
  color: #9b9b9b !important;
  font-size: 14px;
}

footer > .main > div a.fb {
  display: block;
  width: 25px;
  height: 35px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/svg/fb.svg");
}

footer > .bottom {
  width: 100%;
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
}

footer > .bottom a {
  display: block;
  font-size: 12px;
  color: #4a4a4a !important;
  letter-spacing: 4px;
}

@media (max-width: 1300px) {
  footer > .main {
    padding: 30px;
  }
  footer > .main > div:nth-child(2) {
    justify-self: baseline;
  }
  footer > .main > div:nth-child(3) {
    justify-self: end;
  }
}
@media (max-width: 1100px) {
  footer > .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer > .bottom {
    flex-direction: column;
    align-items: center;
  }
  footer > .bottom a:not(:first-child) {
    margin-top: 15px;
  }
}
@media (max-width: 900px) {
  footer > .main {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    justify-items: center;
  }
  footer > .main > *:not(:last-child) {
    width: 270px !important;
  }
  footer > .main > ul {
    justify-self: center;
  }
  footer > .main > div:nth-child(2),
  footer > .main > div:nth-child(3) {
    justify-self: center;
  }
}
@media (max-width: 700px) {
  footer > .bottom a {
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.4;
  }
}
@media (max-width: 500px) {
  footer > .main {
    padding: 35px 20px;
  }
  footer > .main > *:not(:last-child) {
    width: fit-content !important;
    width: -moz-fit-content !important;
  }
  footer > .main > ul {
    justify-self: baseline;
  }
  footer > .main > div:nth-child(2),
  footer > .main > div:nth-child(3) {
    justify-self: baseline;
  }
}
section.front_header_bottom {
  height: 680px;
  display: flex;
  align-items: flex-end;
}

section.front_header_bottom #front_header_slider,
section.front_header_bottom #front_header_slider_small {
  width: 50%;
  height: 100%;
  margin: 0;
}

section.front_header_bottom #front_header_slider .swiper-slide > img,
section.front_header_bottom #front_header_slider_small .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

section.front_header_bottom #front_header_slider_small {
  width: 200px;
  height: 255px;
  padding-top: 55px;
}

section.front_header_bottom #front_header_slider_small .abs_navigation {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 55px;
  padding: 0 0 0 10px;
  display: flex;
  justify-content: space-between;
}

section.front_header_bottom #front_header_slider_small .abs_navigation > img {
  width: 32px;
  height: auto;
  display: block;
  cursor: pointer;
}

section.front_header_bottom #front_header_slider_small .abs_navigation > img.swiper-button-disabled {
  opacity: 0.4;
}

section.front_header_bottom #front_header_slider_small .abs_navigation > img:nth-child(1) {
  transform: rotate(180deg);
  align-self: flex-end;
  margin-bottom: 10px;
}

section.front_header_bottom #front_header_slider_small .abs_navigation > img:last-child {
  align-self: flex-start;
}

section.front_header_bottom #front_header_slider_small .abs_navigation > span {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #000;
}

section.front_header_bottom .swiper-pagination {
  position: relative;
  width: calc(50% - 240px);
  margin: 0 0 100px 40px;
  height: 1px;
}

section.front_header_bottom .swiper-pagination.swiper-pagination-progressbar {
  background: #d8d8d8;
}

section.front_header_bottom .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #9b9b9b;
}

section.front_header_bottom > .abs_top_decor {
  position: absolute;
  top: 0;
  left: -40px;
  width: 320px;
  height: 235px;
  background-color: #393939;
}

section.front_header_bottom > .abs_h1_cont {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: calc(100% - 255px);
  display: flex;
  justify-content: center;
}

section.front_header_bottom > .abs_h1_cont h1 {
  width: 630px;
  margin-top: 130px;
}

section.front_services {
  z-index: 1;
  padding: 0 40px 140px 40px;
  margin-top: -40px;
}

section.front_services > h2 {
  transform: rotate(-90deg);
  box-shadow: -20px 40px 45px 0 rgba(0, 0, 0, 0.25);
}

section.front_services > .abs_pagination {
  position: absolute;
  width: 140px;
  left: 40px;
  top: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 15px;
}

section.front_services > .abs_pagination span {
  font-size: 1.25em;
  letter-spacing: 2px;
  font-weight: 700;
  color: #4a4a4a;
  opacity: 1;
}

section.front_services > .abs_pagination span:nth-child(3n+1) {
  justify-self: baseline;
}

section.front_services > .abs_pagination span:nth-child(3n+3) {
  justify-self: end;
}

section.front_services > .abs_pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent !important;
  border-radius: 0;
}

section.front_services > .abs_pagination .swiper-pagination-bullet-active {
  opacity: 0.5;
}

section.front_services .slider_cont {
  width: 1180px;
  padding: 0 40px;
  margin: 40px auto 0 auto;
}

section.front_services .slider_cont #front_services_slider {
  width: 100%;
}

section.front_services .slider_cont #front_services_slider .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.front_services .slider_cont #front_services_slider .swiper-slide > img {
  margin-left: 30px;
  width: 500px;
  height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

section.front_services .slider_cont #front_services_slider .swiper-slide > span {
  margin-left: -30px;
  display: block;
  width: 1px;
  height: 240px;
  background-color: #4a4a4a;
  transform: rotate(20deg);
}

section.front_services .slider_cont #front_services_slider .swiper-slide .text_box {
  width: 500px;
}

section.front_services .slider_cont #front_services_slider .swiper-slide .text_box h2 {
  color: #000;
  text-align: left;
}

section.front_services .slider_cont #front_services_slider .swiper-slide .text_box p {
  margin-top: 20px;
}

section.front_services .slider_cont img.nav {
  position: absolute;
  top: calc(50% - 28px);
  height: 56px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}

section.front_services .slider_cont img.nav.swiper-button-disabled {
  opacity: 0.4;
}

section.front_services .slider_cont img.nav.prev {
  transform: rotate(180deg);
  left: 0;
}

section.front_services .slider_cont img.nav.next {
  right: 0;
}

section.front_services > .abs_right {
  position: absolute;
  width: 50%;
  height: calc(100% - 40px);
  right: 0;
  bottom: 0;
  background-color: #e8e8e8;
  z-index: -1;
}

section.front_about_and_gallery {
  display: flex;
}

section.front_about_and_gallery > div {
  width: 50%;
}

section.front_about_and_gallery > div.left {
  padding: 60px 20px 100px 20px;
  background-color: #393939;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.front_about_and_gallery > div.left h2 {
  color: #e8e8e8;
}

section.front_about_and_gallery > div.left .text_box {
  width: 520px;
  margin-top: 45px;
}

section.front_about_and_gallery > div.left .text_box > p {
  color: #e8e8e8;
}

section.front_about_and_gallery > div.left .text_box > p:not(:first-child) {
  margin-top: 25px;
}

section.front_about_and_gallery > div.left .btn {
  margin-top: 70px;
}

section.front_about_and_gallery > div.right {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.front_about_and_gallery > div.right > a {
  width: 200px;
  height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 45px;
  background-color: #e8e8e8;
}

section.front_about_and_gallery > div.right > a h2 {
  color: #000;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

section.front_about_and_gallery > div.right > a > img {
  width: 32px;
  height: auto;
  display: block;
  margin-top: 50px;
}

section.front_numbers {
  padding: 160px 0 60px 0;
  display: flex;
  flex-direction: column;
  width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

section.front_numbers > .abs_bckg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 39.6875em;
  font-family: "Abril Fatface", cursive;
  font-weight: 400;
  color: #dcdcdc;
  z-index: -1;
}

section.front_numbers .numbers_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

section.front_numbers .numbers_box > div {
  height: 250px;
}

section.front_numbers .numbers_box > div:nth-child(4) {
  width: 150px;
}

section.front_numbers .numbers_box > div:nth-child(-n+3) {
  justify-self: baseline;
}

section.front_numbers .numbers_box > div:nth-child(n+5) {
  justify-self: end;
}

section.front_numbers .numbers_box > div > img {
  display: block;
  height: 92%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

section.front_numbers > .line {
  width: 100%;
  height: 2px;
  margin: 40px 0;
  background-color: #4a4a4a;
}

section.front_numbers > span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.875em;
  letter-spacing: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4a4a4a;
  margin: 50px 0 0 44.5313vw;
}

section.front_numbers > strong {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 7.5em;
  letter-spacing: 10px;
  font-weight: 700;
  color: #4a4a4a;
  align-self: flex-end;
  line-height: 1;
  margin-top: -90px;
}

section.front_numbers > strong sup {
  font-size: 0.35em;
}

section.front_certificates {
  background-color: #d8d8d8;
  padding-bottom: 40px;
}

section.front_certificates h2 {
  margin: 0 auto;
  color: #4a4a4a;
}

section.front_certificates h2.square {
  width: 240px;
  background-color: #c8c8c8;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%);
}

section.front_certificates .slider_cont {
  margin: 60px auto 0 auto;
  width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.front_certificates .slider_cont > img {
  width: 30px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  cursor: pointer;
}

section.front_certificates .slider_cont > img:first-child {
  transform: rotate(180deg);
}

section.front_certificates .slider_cont > img.swiper-button-disabled {
  opacity: 0.4;
}

section.front_certificates .slider_cont #certificates_slider {
  width: 980px;
  height: 300px;
}

section.front_certificates .slider_cont #certificates_slider .swiper-slide > a {
  display: block;
  height: 100%;
}

section.front_certificates .slider_cont #certificates_slider .swiper-slide > a > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: 0.3s;
}

section.front_certificates .slider_cont #certificates_slider .swiper-slide > a > img:hover {
  filter: grayscale(0);
}

section.front_certificates > p {
  max-width: 590px;
  margin: 40px auto 0 auto;
  text-align: center;
}

@media (max-width: 1700px) {
  section.front_header_bottom {
    height: 580px;
  }
  section.front_header_bottom > .abs_h1_cont {
    align-items: center;
  }
  section.front_header_bottom > .abs_h1_cont h1 {
    font-size: 2.375em;
    width: 560px;
    margin-top: 0;
  }
  section.front_numbers {
    padding: 130px 0 100px 0;
    width: 1000px;
  }
  section.front_numbers > .abs_bckg {
    font-size: 32.5em;
    height: 90%;
  }
  section.front_numbers .numbers_box > div {
    height: 170px;
  }
  section.front_numbers .numbers_box > div:nth-child(4) {
    width: 100px;
  }
  section.front_numbers > .line {
    margin: 20px 0;
  }
  section.front_numbers > span {
    font-size: 1.4375em;
    letter-spacing: 4px;
    margin: 80px 0 0 30.5313vw;
  }
  section.front_numbers > strong {
    font-size: 5.5em;
    letter-spacing: 5px;
    margin-top: -70px;
  }
}
@media (max-width: 1650px) {
  section.front_services {
    padding: 0 40px 100px 40px;
  }
  section.front_services .slider_cont {
    width: 900px;
    margin: 60px auto 0 auto;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide > img {
    width: 350px;
    height: 225px;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide > span {
    height: 200px;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box {
    width: 350px;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box h2 {
    color: #000;
    text-align: left;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box p {
    margin-top: 20px;
  }
  section.front_services .slider_cont img.nav {
    position: absolute;
    top: calc(50% - 28px);
    height: 56px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    cursor: pointer;
  }
  section.front_services .slider_cont img.nav.swiper-button-disabled {
    opacity: 0.4;
  }
  section.front_services .slider_cont img.nav.prev {
    transform: rotate(180deg);
    left: 0;
  }
  section.front_services .slider_cont img.nav.next {
    right: 0;
  }
  section.front_services > .abs_right {
    position: absolute;
    width: 50%;
    height: calc(100% - 40px);
    right: 0;
    bottom: 0;
    background-color: #e8e8e8;
    z-index: -1;
  }
}
@media (max-width: 1500px) {
  section.front_numbers > span {
    margin: 80px 0 0 37.5vw;
  }
}
@media (max-width: 1440px) {
  section.front_header_bottom > .abs_h1_cont h1 {
    width: 460px;
  }
  section.front_about_and_gallery > div.left {
    padding: 30px 20px;
  }
  section.front_about_and_gallery > div.left .text_box {
    width: 90%;
  }
  section.front_about_and_gallery > div.right > a {
    width: 150px;
    height: 340px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1430px) {
  section.front_header_bottom > .abs_top_decor {
    width: 240px;
    height: 155px;
  }
}
@media (max-width: 1400px) {
  section.front_services .slider_cont {
    width: 600px;
    margin: 20px auto 0 auto;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide {
    flex-direction: column;
    align-items: center;
    justify-content: unset;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide > img {
    margin-left: 0;
    width: 80%;
    height: 280px;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide > span {
    margin: 0;
    width: 50%;
    height: 2px;
    transform: rotate(0deg);
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box {
    width: 90%;
    margin-top: 20px;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box h2,
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box p {
    width: 100%;
    text-align: center;
  }
  section.front_certificates .slider_cont {
    width: 800px;
  }
  section.front_certificates .slider_cont #certificates_slider {
    width: 640px;
    height: 270px;
  }
}
@media (max-width: 1300px) {
  section.front_numbers > span {
    margin: 80px 0 0 47.5vw;
  }
}
@media (max-width: 1200px) {
  section.front_header_bottom > .abs_top_decor {
    width: 320px;
    height: 235px;
  }
}
@media (max-width: 1100px) {
  section.front_header_bottom > .abs_h1_cont h1 {
    font-size: 1.75em;
    width: 260px;
    letter-spacing: 2px;
  }
  section.front_services .slider_cont {
    margin: 50px auto 0 auto;
  }
  section.front_services > .abs_pagination {
    display: none;
  }
  section.front_numbers {
    width: 600px;
  }
  section.front_numbers > .abs_bckg {
    font-size: 25.625em;
    height: 93%;
  }
  section.front_numbers .numbers_box > div {
    height: 100px;
  }
  section.front_numbers .numbers_box > div:nth-child(4) {
    width: 50px;
  }
  section.front_numbers > span {
    margin: 80px 0 0 27.5vw;
  }
  section.front_numbers > strong {
    font-size: 3.5em;
    letter-spacing: 2px;
    margin-top: -55px;
  }
}
@media (max-width: 1000px) {
  section.front_about_and_gallery {
    flex-wrap: wrap;
  }
  section.front_about_and_gallery > div.left {
    width: 100%;
    padding: 40px;
  }
  section.front_about_and_gallery > div.left .text_box {
    width: 60%;
  }
  section.front_about_and_gallery > div.right {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 900px) {
  section.front_header_bottom {
    height: 500px;
  }
  section.front_header_bottom #front_header_slider,
  section.front_header_bottom #front_header_slider_small {
    width: calc(100% - 180px);
  }
  section.front_header_bottom #front_header_slider_small {
    width: 180px;
    height: 235px;
  }
  section.front_header_bottom .swiper-pagination {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 50%;
    margin: 0;
    height: 2px;
  }
  section.front_header_bottom .swiper-pagination.swiper-pagination-progressbar {
    background: #d8d8d8;
  }
  section.front_header_bottom .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #9b9b9b;
  }
  section.front_header_bottom > .abs_h1_cont {
    z-index: 2;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: calc(100% - 180px);
    height: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.75);
  }
  section.front_header_bottom > .abs_h1_cont h1 {
    width: fit-content;
    width: -moz-fit-content;
  }
  section.front_services {
    padding: 0 0 100px 0;
    margin-top: 0;
    background-color: #e8e8e8;
  }
  section.front_services > .abs_right {
    display: none;
  }
  section.front_certificates .slider_cont {
    width: 600px;
  }
  section.front_certificates .slider_cont #certificates_slider {
    width: 440px;
    height: 180px;
  }
  section.front_certificates > p {
    max-width: 440px;
  }
}
@media (max-width: 800px) {
  section.front_about_and_gallery > div.left .text_box {
    width: 75%;
  }
  section.front_numbers > span {
    margin: 80px 0 0 40.5vw;
  }
}
@media (max-width: 750px) {
  section.front_header_bottom > .abs_top_decor {
    width: 210px;
    height: 150px;
  }
}
@media (max-width: 700px) {
  section.front_services {
    padding: 0 0 50px 0;
  }
  section.front_services > h2.square {
    width: 140px;
    height: 140px;
  }
  section.front_services .slider_cont {
    margin: 10px auto 0 auto;
    width: 96%;
    padding: 0 20px;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide > img {
    height: 36vw;
  }
  section.front_services .slider_cont img.nav {
    top: calc(50% - 16px);
    height: 32px;
  }
  section.front_certificates h2.square {
    width: 210px;
    letter-spacing: 3px;
    height: 170px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 77%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 77%, 0% 100%);
  }
  section.front_certificates .slider_cont {
    width: 96%;
  }
  section.front_certificates .slider_cont #certificates_slider {
    width: 77%;
    height: 29vw;
  }
  section.front_certificates .slider_cont > img {
    width: auto;
    height: 32px;
  }
  section.front_certificates > p {
    max-width: 77%;
  }
}
@media (max-width: 650px) {
  section.front_numbers {
    padding: 80px 0 100px 0;
    width: 300px;
  }
  section.front_numbers > .abs_bckg {
    font-size: 20.625em;
    height: 90%;
  }
  section.front_numbers .numbers_box > div {
    height: 50px;
  }
  section.front_numbers .numbers_box > div:nth-child(4) {
    width: 10px;
  }
  section.front_numbers > span {
    align-self: flex-end;
    margin: 60px 0 0 23px;
    letter-spacing: 8px;
    color: #c8c8c8;
  }
  section.front_numbers > strong {
    font-size: 2.5em;
    letter-spacing: 2px;
    margin-top: -105px;
  }
}
@media (max-width: 600px) {
  section.front_header_bottom {
    height: 400px;
  }
  section.front_header_bottom #front_header_slider,
  section.front_header_bottom #front_header_slider_small {
    width: calc(100% - 150px);
  }
  section.front_header_bottom #front_header_slider_small {
    width: 150px;
    height: 180px;
    padding-top: 30px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation {
    height: 30px;
    padding: 0 0 0 5px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation > img {
    width: 20px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation > img:nth-child(1) {
    margin-bottom: 5px;
  }
  section.front_header_bottom > .abs_h1_cont {
    width: calc(100% - 150px);
    padding: 10px;
  }
  section.front_header_bottom > .abs_h1_cont h1 {
    font-size: 1.5em;
    letter-spacing: 1px;
  }
  section.front_services {
    margin-top: 0;
  }
  section.front_services > .abs_right {
    height: 100%;
  }
}
@media (max-width: 500px) {
  section.front_header_bottom {
    height: 64vw;
  }
  section.front_header_bottom > .abs_top_decor {
    width: 160px;
    height: 100px;
  }
  section.front_header_bottom #front_header_slider_small {
    padding-top: 60px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation {
    height: 60px;
    padding: 0 10px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation > img {
    width: 30px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation > img:nth-child(1) {
    margin-bottom: 15px;
  }
  section.front_services > h2 {
    transform: rotate(0deg);
    box-shadow: 15px 30px 55px 0 rgba(0, 0, 0, 0.25);
  }
  section.front_about_and_gallery > div.left {
    padding: 40px 20px;
  }
  section.front_about_and_gallery > div.left .text_box {
    width: 100%;
  }
  section.front_about_and_gallery > div.right {
    height: 80vw;
  }
  section.front_about_and_gallery > div.right > a {
    width: 100%;
    height: 100%;
    padding: 20px;
    flex-direction: row;
    justify-content: center;
    background-color: rgba(232, 232, 232, 0.7);
  }
  section.front_about_and_gallery > div.right > a > img {
    width: 24px;
    margin: 0 0 0 20px;
  }
  section.front_about_and_gallery > div.right > a h2 {
    font-size: 1.25em;
    letter-spacing: 3px;
    writing-mode: unset;
    transform: rotate(0deg);
  }
  section.front_certificates .slider_cont #certificates_slider {
    height: 46vw;
  }
}
@media (max-width: 450px) {
  section.front_header_bottom {
    height: 58vw;
  }
  section.front_header_bottom #front_header_slider,
  section.front_header_bottom #front_header_slider_small {
    width: calc(100% - 100px);
  }
  section.front_header_bottom #front_header_slider_small {
    width: 100px;
    height: 160px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation {
    padding: 0 5px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation > img {
    width: 20px;
  }
  section.front_header_bottom #front_header_slider_small .abs_navigation > img:nth-child(1) {
    margin-bottom: 15px;
  }
  section.front_header_bottom > .abs_h1_cont {
    width: calc(100% - 100px);
  }
  section.front_header_bottom > .abs_h1_cont h1 {
    font-size: 0.875em;
  }
}
@media (max-width: 400px) {
  section.front_services {
    padding: 0 0 25px 0;
  }
  section.front_services .slider_cont {
    margin: 20px auto 0 auto;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box h2 {
    font-size: 1.125em;
    letter-spacing: 2px;
  }
  section.front_services .slider_cont #front_services_slider .swiper-slide .text_box p {
    font-size: 0.875em;
    letter-spacing: 1px;
  }
  section.front_services .slider_cont img.nav {
    top: calc(50% - 16px);
    height: 32px;
  }
}
@media (max-width: 360px) {
  section.front_header_bottom {
    height: 210px;
  }
  section.front_header_bottom #front_header_slider,
  section.front_header_bottom #front_header_slider_small {
    width: calc(100% - 80px);
  }
  section.front_header_bottom #front_header_slider_small {
    width: 80px;
    height: 140px;
  }
  section.front_header_bottom > .abs_h1_cont {
    width: calc(100% - 80px);
  }
}
section.services > .content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}

section.services > .content > .services_cont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10.1563vw;
  grid-row-gap: 60px;
}

section.services > .content > .services_cont .services_box {
  width: 340px;
}

section.services > .content > .services_cont .services_box .row {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

section.services > .content > .services_cont .services_box .row > span {
  width: 40px;
  justify-content: center;
  display: flex;
  font-size: 1.625em;
  color: #e5e5e5;
  font-weight: 700;
  padding-bottom: 13px;
  background-image: url("../img/pictogram.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

section.services > .content > .services_cont .services_box .row h2 {
  margin: 5px 0 0 20px;
  color: #000;
  text-transform: none;
  font-size: 1.125em;
  letter-spacing: 3px;
  text-align: left;
}

section.services > .content > .services_cont .services_box > p {
  margin-top: 15px;
  font-size: 0.875em;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media (max-width: 1700px) {
  section.services > .content > .services_cont {
    grid-column-gap: 8vw;
  }
  section.services > .content > .services_cont .services_box {
    width: 300px;
  }
}
@media (max-width: 1500px) {
  section.services > .content > .services_cont {
    grid-column-gap: 50px;
  }
  section.services > .content > .services_cont .services_box {
    width: 300px;
  }
}
@media (max-width: 1300px) {
  section.services > .content > .services_cont {
    grid-column-gap: 40px;
  }
  section.services > .content > .services_cont .services_box {
    width: 280px;
  }
}
@media (max-width: 1200px) {
  section.services > .content {
    flex-direction: column;
    align-items: center;
  }
  section.services > .content > .services_cont {
    margin-top: 40px;
  }
}
@media (max-width: 1000px) {
  section.services > .content > .services_cont {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
  }
  section.services > .content > .services_cont .services_box {
    width: 220px;
  }
  section.services > .content > .services_cont .services_box .row h2 {
    font-size: 1em;
    letter-spacing: 1px;
  }
}
@media (max-width: 800px) {
  section.services > .content > .services_cont {
    grid-template-columns: 1fr 1fr;
  }
  section.services > .content > .services_cont .services_box {
    width: 270px;
  }
}
@media (max-width: 650px) {
  section.services > .content > .services_cont .services_box {
    width: 210px;
  }
}
@media (max-width: 500px) {
  section.services > .content > .services_cont {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  section.services > .content > .services_cont .services_box {
    width: 70%;
  }
}
@media (max-width: 380px) {
  section.services > .content > .services_cont .services_box {
    width: 100%;
  }
}
section.gallery > .content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

section.gallery > .content .gallery_cont {
  margin-left: 200px;
  width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

section.gallery > .content .gallery_cont > a {
  display: block;
  width: 100%;
}

section.gallery > .content .gallery_cont > a:hover > .img_cont > img {
  opacity: 0.75;
  transform: scale(1.15);
}

section.gallery > .content .gallery_cont > a:hover > .img_cont .abs_tissue {
  opacity: 0.7;
  transform: rotate3d(0, 0, -1, 20deg);
}

section.gallery > .content .gallery_cont > a > .img_cont {
  width: 100%;
  height: 340px;
  overflow: hidden;
}

section.gallery > .content .gallery_cont > a > .img_cont > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.45s;
}

section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue {
  display: flex;
  justify-content: flex-end;
  padding: 42px 50% 0 0;
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 150%;
  height: 150px;
  transition: opacity 0.45s, transform 0.45s;
  transform: rotate3d(0, 0, 0, 20deg);
  transform-origin: 0 100%;
  background-color: #fff;
}

section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue > img {
  width: 30px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  transform: rotate(20deg);
}

section.gallery > .content .gallery_cont > a h2 {
  padding: 15px 0 0 40px;
  color: #000;
  font-size: 1.125em;
  letter-spacing: 3px;
  text-align: left;
}

section.gallery > .content .gallery_cont > a h2::before {
  content: "";
  position: absolute;
  height: 100%;
  max-height: 65px;
  width: 3px;
  left: 20px;
  top: -3px;
  background-color: #000;
}

section.gallery.entry > .content > .btn.back {
  position: absolute;
  right: 0;
  top: 0;
}

section.gallery.entry > .content .gallery_big_cont {
  margin-left: 200px;
  width: 980px;
}

section.gallery.entry > .content .gallery_big_cont .btn.back {
  display: none;
}

section.gallery.entry > .content .gallery_big_cont h2 {
  color: #000;
}

section.gallery.entry > .content .gallery_big_cont > p {
  margin-top: 25px;
  width: 100%;
  font-size: 0.875em;
}

section.gallery.entry > .content .gallery_big_cont .gallery_cont {
  margin-left: 0;
  margin-top: 35px;
  width: 100%;
}

section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue > img {
  width: 30px;
  height: 30px;
}

@media (max-width: 1500px) {
  section.gallery > .content .gallery_cont {
    margin-left: 100px;
  }
  section.gallery.entry > .content .gallery_big_cont {
    margin-left: 100px;
  }
}
@media (max-width: 1400px) {
  section.gallery > .content .gallery_cont {
    margin-left: 50px;
  }
  section.gallery.entry > .content .gallery_big_cont {
    margin-left: 50px;
  }
}
@media (max-width: 1300px) {
  section.gallery > .content .gallery_cont {
    margin-left: 200px;
    width: 700px;
    grid-column-gap: 30px;
  }
  section.gallery > .content .gallery_cont > a > .img_cont {
    height: 235px;
  }
  section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue {
    padding: 30px 40% 0 0;
  }
  section.gallery > .content .gallery_cont > a h2 {
    padding: 10px 0 0 30px;
    letter-spacing: 1px;
  }
  section.gallery > .content .gallery_cont > a h2::before {
    left: 15px;
  }
  section.gallery.entry > .content .gallery_big_cont {
    margin-left: 200px;
    width: 700px;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue {
    padding: 20px 36% 0 0;
  }
}
@media (max-width: 1200px) {
  section.gallery > .content {
    flex-direction: column;
    align-items: center;
  }
  section.gallery > .content .gallery_cont {
    margin: 40px auto 0 auto;
  }
  section.gallery.entry > .content > .btn.back {
    display: none;
  }
  section.gallery.entry > .content .gallery_big_cont {
    margin: 40px auto 0 auto;
  }
  section.gallery.entry > .content .gallery_big_cont .btn.back {
    display: flex;
    margin: 0 0 10px auto;
  }
}
@media (max-width: 800px) {
  section.gallery > .content .gallery_cont {
    width: 600px;
    grid-column-gap: 25px;
    grid-row-gap: 30px;
  }
  section.gallery > .content .gallery_cont > a > .img_cont {
    height: 200px;
  }
  section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue {
    padding: 25px 35% 0 0;
  }
  section.gallery > .content .gallery_cont > a h2 {
    padding: 10px 0 0 20px;
    font-size: 1em;
  }
  section.gallery > .content .gallery_cont > a h2::before {
    left: 10px;
  }
  section.gallery.entry > .content .gallery_big_cont {
    width: 600px;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue {
    padding: 15px 29% 0 0;
  }
}
@media (max-width: 650px) {
  section.gallery > .content .gallery_cont {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  section.gallery > .content .gallery_cont > a > .img_cont {
    height: 45vw;
  }
  section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue {
    padding: 35px 45% 0 0;
  }
  section.gallery.entry > .content .gallery_big_cont {
    width: 100%;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue {
    padding: 31px 43% 0 0;
  }
}
@media (max-width: 500px) {
  section.gallery > .content .gallery_cont {
    grid-column-gap: 15px;
    grid-row-gap: 25px;
  }
  section.gallery > .content .gallery_cont > a > .img_cont {
    height: 45vw;
  }
  section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue {
    padding: 25px 32% 0 0;
  }
  section.gallery.entry > .content .gallery_big_cont {
    width: 100%;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont {
    grid-row-gap: 15px;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue {
    padding: 20px 35% 0 0;
  }
}
@media (max-width: 400px) {
  section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue {
    padding: 20px 27% 0 0;
  }
  section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue > img {
    width: 20px;
    height: 15px;
  }
  section.gallery > .content .gallery_cont > a h2 {
    padding: 8px 0 0 16px;
    font-size: 0.875em;
  }
  section.gallery > .content .gallery_cont > a h2::before {
    left: 8px;
    width: 2px;
    max-height: 40px;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue {
    padding: 18px 30% 0 0;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue > img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 340px) {
  section.gallery > .content .gallery_cont > a > .img_cont .abs_tissue {
    padding: 16px 21% 0 0;
  }
  section.gallery.entry > .content .gallery_big_cont .gallery_cont > a > .img_cont .abs_tissue {
    padding: 16px 22% 0 0;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px);
    animation-timing-function: ease-in;
  }
  72%, 90%, 100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
}
section.references {
  min-height: auto;
}

section.references > .content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

section.references > .content > .references_cont {
  width: 980px;
  margin-left: 200px;
}

section.references > .content > .references_cont .header {
  width: 100%;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
  border-bottom: 1px solid #393939;
  justify-items: center;
  align-items: center;
}

section.references > .content > .references_cont .header > div {
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 700;
  color: #000;
}

section.references > .content > .references_cont .header > div:nth-child(1) {
  justify-self: baseline;
  color: #fff;
  font-size: 1.125em;
  grid-column-start: 1;
  grid-column-end: 3;
}

section.references > .content > .references_cont .header > div.filter {
  cursor: pointer;
  background-position: center;
  background-image: url("../img/svg/pictogram.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  transition: 0.4s;
}

section.references > .content > .references_cont .header > div.filter:hover,
section.references > .content > .references_cont .header > div.filter._active {
  background-color: #393939;
  color: #fff;
}

section.references > .content > .references_cont .header > div.filter.small {
  background-size: 40%;
}

section.references > .content > .references_cont .header > div.filter.medium {
  background-size: 60%;
}

section.references > .content > .references_cont .header > div.filter.large {
  background-size: 85%;
}

section.references > .content > .references_cont .references_grid {
  width: 100%;
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 40px;
}

section.references > .content > .references_cont .references_grid > .box > strong,
section.references > .content > .references_cont .references_grid > .box > span {
  display: block;
  width: 100%;
  color: #393939;
  font-size: 0.875em;
  padding-bottom: 6px;
  border-bottom: 1px solid #393939;
}

section.references > .content > .references_cont .references_grid > .box > span {
  margin-top: 7px;
  font-weight: 400;
  padding-bottom: 12px;
}

section.references > .content > .references_cont .references_grid > .box > .location,
section.references > .content > .references_cont .references_grid > .box > .size {
  margin-top: 10px;
  min-height: 18px;
  display: flex;
  align-items: center;
  padding-left: 25px;
  font-size: 0.75em;
  color: #393939;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 14px 18px;
  background-image: url("../img/svg/pin.svg");
}

section.references > .content > .references_cont .references_grid > .box > .size {
  background-position: left 2px;
  font-weight: 700;
  font-size: 0.875em;
  background-size: 20px 14px;
  background-image: url("../img/svg/pictogram_dark.svg");
}

section.references > .content > .references_cont .references_grid > .box > .size sup {
  top: -2px;
}

section.references > .content > .references_cont h2 {
  font-size: 1.5em;
  letter-spacing: 1px;
  color: #393939;
  text-align: left;
  text-transform: none;
  margin-top: 75px;
}

section.references > .content > .references_cont .map_cont {
  width: 100%;
  margin-top: -25px;
}

section.references > .content > .references_cont .map_cont.reached > img.pin {
  animation: 1.1s ease 0s 1 normal both running bounce-in-top;
}

section.references > .content > .references_cont .map_cont > img {
  display: block;
  width: 100%;
  height: auto;
}

section.references > .content > .references_cont .map_cont > img.pin {
  position: absolute;
  width: 32px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

section.references > .content > .references_cont .map_cont > img.pin.ba {
  left: 29px;
  bottom: 110px;
}

section.references > .content > .references_cont .map_cont > img.pin.kn {
  left: 195px;
  bottom: 10px;
}

section.references > .content > .references_cont .map_cont > img.pin.nz {
  left: 203px;
  bottom: 100px;
}

section.references > .content > .references_cont .map_cont > img.pin.tt {
  left: 106px;
  bottom: 165px;
}

section.references > .content > .references_cont .map_cont > img.pin.sc {
  left: 78px;
  bottom: 110px;
}

section.references > .content > .references_cont .map_cont > img.pin.to {
  left: 220px;
  bottom: 207px;
}

section.references > .content > .references_cont .map_cont > img.pin.my {
  left: 103px;
  bottom: 250px;
}

section.references > .content > .references_cont .map_cont > img.pin.st {
  left: 305px;
  bottom: 15px;
}

section.references > .content > .references_cont .map_cont > img.pin.ke {
  right: 205px;
  bottom: 245px;
}

@media (max-width: 1500px) {
  section.references > .content > .references_cont {
    margin-left: 100px;
  }
}
@media (max-width: 1400px) {
  section.references > .content > .references_cont {
    margin-left: 50px;
  }
}
@media (max-width: 1300px) {
  section.references > .content > .references_cont {
    width: 650px;
    margin-left: 200px;
  }
  section.references > .content > .references_cont .header {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
  }
  section.references > .content > .references_cont .header > div {
    font-size: 0.875em;
  }
  section.references > .content > .references_cont .header > div:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  section.references > .content > .references_cont .header > div.filter {
    padding-top: 18px;
    letter-spacing: 0;
  }
  section.references > .content > .references_cont .references_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  section.references > .content > .references_cont .map_cont {
    margin-top: 0;
  }
  section.references > .content > .references_cont .map_cont > img.pin {
    width: 21px;
    height: 26px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.ba {
    left: 19px;
    bottom: 73px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.kn {
    left: 129px;
    bottom: 7px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.nz {
    left: 134px;
    bottom: 67px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.tt {
    left: 70px;
    bottom: 109px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.sc {
    left: 51px;
    bottom: 73px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.to {
    left: 145px;
    bottom: 137px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.my {
    left: 68px;
    bottom: 165px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.st {
    left: 201px;
    bottom: 10px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.ke {
    right: 135px;
    bottom: 162px;
  }
}
@media (max-width: 1200px) {
  section.references > .content {
    flex-direction: column;
    align-items: center;
  }
  section.references > .content > .references_cont {
    margin: 40px auto 0 auto;
  }
}
@media (max-width: 750px) {
  section.references > .content > .references_cont {
    width: 400px;
  }
  section.references > .content > .references_cont .header {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    height: auto;
  }
  section.references > .content > .references_cont .header > div:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  section.references > .content > .references_cont .header > div.filter {
    height: 100px;
    padding-top: 20px;
  }
  section.references > .content > .references_cont .references_grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
  }
  section.references > .content > .references_cont h2 {
    margin-top: 60px;
  }
  section.references > .content > .references_cont .map_cont {
    margin-top: 15px;
  }
  section.references > .content > .references_cont .map_cont > img.pin {
    width: 13px;
    height: 16px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.ba {
    left: 12px;
    bottom: 45px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.kn {
    left: 80px;
    bottom: 4px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.nz {
    left: 83px;
    bottom: 42px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.tt {
    left: 43px;
    bottom: 68px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.sc {
    left: 32px;
    bottom: 45px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.to {
    left: 90px;
    bottom: 85px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.my {
    left: 42px;
    bottom: 102px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.st {
    left: 125px;
    bottom: 6px;
  }
  section.references > .content > .references_cont .map_cont > img.pin.ke {
    right: 84px;
    bottom: 100px;
  }
}
@media (max-width: 450px) {
  section.references > .content > .references_cont {
    width: 100%;
  }
  section.references > .content > .references_cont .header {
    grid-column-gap: 5px;
  }
  section.references > .content > .references_cont .references_grid {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  section.references > .content > .references_cont h2 {
    font-size: 1.2em;
  }
  section.references > .content > .references_cont .map_cont > img.pin {
    width: 2.889vw;
    height: 3.556vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.ba {
    left: 2.667vw;
    bottom: 10vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.kn {
    left: 17.778vw;
    bottom: 0.889vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.nz {
    left: 18.444vw;
    bottom: 9.333vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.tt {
    left: 9.556vw;
    bottom: 15.111vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.sc {
    left: 7.111vw;
    bottom: 10vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.to {
    left: 20vw;
    bottom: 18.889vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.my {
    left: 9.333vw;
    bottom: 22.667vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.st {
    left: 27.778vw;
    bottom: 1.333vw;
  }
  section.references > .content > .references_cont .map_cont > img.pin.ke {
    right: 18.667vw;
    bottom: 22.222vw;
  }
}
@media (max-width: 380px) {
  section.references > .content > .references_cont .header {
    grid-column-gap: 5px;
  }
  section.references > .content > .references_cont .header > div.filter {
    font-size: 0.8125em;
    font-weight: 500;
  }
}
section.blog {
  min-height: auto;
}

section.blog > .content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

section.blog > .content > .blogs_cont {
  min-height: 800px;
  width: 980px;
  margin-left: 200px;
}

section.blog > .content > .blogs_cont > .blog_short_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

section.blog > .content > .blogs_cont > .blog_short_box:not(:first-child) {
  margin-top: 40px;
}

section.blog > .content > .blogs_cont > .blog_short_box > a {
  display: block;
  width: 270px;
  height: 190px;
}

section.blog > .content > .blogs_cont > .blog_short_box > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

section.blog > .content > .blogs_cont > .blog_short_box .text_box {
  width: 680px;
  display: flex;
  flex-direction: column;
}

section.blog > .content > .blogs_cont > .blog_short_box .text_box h2 {
  font-size: 1.125em;
  letter-spacing: 3px;
  color: #000;
  text-transform: none;
  text-align: left;
}

section.blog > .content > .blogs_cont > .blog_short_box .text_box > span {
  display: block;
  font-size: 0.875em;
  letter-spacing: 2px;
  margin-top: 5px;
  color: #4a4a4a;
}

section.blog > .content > .blogs_cont > .blog_short_box .text_box > p {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid #000;
  color: #4a4a4a;
  font-size: 0.875em;
  margin: 20px 0;
}

section.blog > .content > .blogs_cont > .blog_short_box .text_box > a.img_mobil {
  display: none;
}

section.blog > .content > .blogs_cont > .blog_short_box .text_box > a.btn {
  margin: auto 0 0 auto;
  align-self: flex-end;
}

section.blog > .content > .blogs_cont > .pagination_cont {
  margin: 60px auto 0 auto;
}

section.blog.detail > .content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

section.blog.detail > .content > .blogs_cont > .top {
  width: 100%;
}

section.blog.detail > .content > .blogs_cont > .top h2 {
  width: auto;
  text-align: left;
  font-size: 1.125em;
  text-transform: none;
  color: #000;
}

section.blog.detail > .content > .blogs_cont > .top > span {
  display: block;
  font-size: 0.875em;
  letter-spacing: 2px;
  color: #4a4a4a;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  left: -40px;
  top: 0;
}

section.blog.detail > .content > .blogs_cont > .top > .line {
  width: 100%;
  height: 1px;
  background-color: #4a4a4a;
  margin: 35px 0 10px 0;
}

section.blog.detail > .content > .blogs_cont > .top > p {
  line-height: 1.5;
  font-size: 0.875em;
  letter-spacing: 2px;
}

section.blog.detail > .content > .blogs_cont > .top > p:not(:nth-child(5)) {
  margin-top: 25px;
}

section.blog.detail > .content > .blogs_cont > .top > img {
  display: block;
  float: left;
  width: 450px;
  height: 360px;
  margin-right: 15px;
  margin-bottom: 5px;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

section.blog.detail > .content > .blogs_cont .btn.btn-big > span {
  font-size: 16px;
}

section.blog.detail > .content > .blogs_cont .btn.back {
  margin: 20px 0 0 auto;
}

@media (max-width: 1500px) {
  section.blog > .content > .blogs_cont {
    margin-left: 100px;
  }
}
@media (max-width: 1400px) {
  section.blog > .content > .blogs_cont {
    margin-left: 50px;
  }
}
@media (max-width: 1350px) {
  section.blog > .content > .blogs_cont {
    width: 750px;
    margin: 0 auto;
  }
  section.blog > .content > .blogs_cont > .blog_short_box > a {
    width: 235px;
    height: 175px;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box {
    width: 495px;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box > p {
    padding-top: 10px;
    margin: 15px 0;
  }
  section.blog.detail > .content > .blogs_cont > .top > span {
    left: -30px;
  }
  section.blog.detail > .content > .blogs_cont > .top > img {
    width: 400px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  section.blog > .content {
    flex-direction: column;
  }
  section.blog > .content h1 {
    margin: 0 auto;
  }
  section.blog > .content > .blogs_cont {
    min-height: auto;
    margin-top: 40px;
  }
}
@media (max-width: 900px) {
  section.blog.detail > .content > .blogs_cont > .top > span {
    position: relative;
    left: auto;
    top: auto;
    writing-mode: initial;
    transform: rotate(0deg);
    margin-top: 5px;
  }
  section.blog.detail > .content > .blogs_cont > .top > .line {
    margin: 15px 0;
  }
}
@media (max-width: 850px) {
  section.blog > .content > .blogs_cont {
    width: 650px;
  }
  section.blog > .content > .blogs_cont > .blog_short_box > a {
    width: 190px;
    height: 140px;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box {
    width: 440px;
  }
}
@media (max-width: 750px) {
  section.blog > .content > .blogs_cont {
    width: 500px;
  }
  section.blog > .content > .blogs_cont > .blog_short_box > a {
    display: none;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box {
    width: 100%;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box > a.img_mobil {
    display: block;
    width: 75%;
    margin: 25px auto 0 auto;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box > a.img_mobil > img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box > a.btn {
    margin: 0 auto;
  }
  section.blog > .content > .blogs_cont > .blog_short_box .text_box > p {
    padding-top: 0;
    border: 0;
  }
  section.blog.detail > .content > .blogs_cont > .top > img {
    width: 260px;
    height: 200px;
  }
}
@media (max-width: 550px) {
  section.blog > .content > .blogs_cont {
    width: 100%;
  }
  section.blog > .content > .blogs_cont > .blog_short_box:not(:first-child) {
    margin-top: 60px;
  }
  section.blog > .content > .blogs_cont > .blog_short_box > .text_box > p {
    margin: 20px 0;
  }
  section.blog > .content > .blogs_cont > .blog_short_box > .text_box h2 {
    line-height: 1.4;
  }
}
@media (max-width: 450px) {
  section.blog.detail > .content > .blogs_cont > .top > img {
    float: none;
    margin: 15px auto;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 380px) {
  section.blog > .content > .blogs_cont > .blog_short_box .text_box > a.img_mobil {
    width: 100%;
  }
}
section.about_us {
  padding: 40px 0 0 0;
  min-height: auto;
}

section.about_us > .content {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  background-image: url("../img/about_us.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.about_us > .content h1 {
  position: absolute;
  left: 4.3vw;
  top: 50px;
  font-size: 14.375em;
  letter-spacing: 25px;
}

section.about_us > .content h1::after {
  display: none;
}

section.about_us > .content > .text_box {
  width: 680px;
  padding-bottom: 55px;
}

section.about_us > .content > .text_box p {
  color: #e8e8e8;
  letter-spacing: 3px;
}

section.about_us > .content > .text_box p:not(:first-child) {
  margin-top: 30px;
}

section.about_us > .content > .text_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 20px);
  width: 40px;
  height: 3px;
  background-color: #e8e8e8;
}

section.about_us > .content > .abs_rectangle {
  height: 245px;
  width: 24.4792vw;
  max-width: 470px;
  background-color: #c8c8c8;
  position: absolute;
  left: 0;
  bottom: 0;
}

section.about_us > .content > .abs_decor {
  position: absolute;
  bottom: -7.4vw;
  right: 0;
  width: 24.5833vw;
  max-width: 472px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

section.about_us > .front_references {
  margin-top: 60px;
}

@media (max-width: 1600px) {
  section.about_us > .content h1 {
    left: 20px;
    top: 50px;
    font-size: 10em;
    letter-spacing: 45px;
  }
  section.about_us > .content h1::after {
    display: none;
  }
  section.about_us > .content > .abs_rectangle {
    height: 330px;
    width: 260px;
  }
  section.about_us > .content > .abs_decor {
    bottom: -5vw;
    width: 16.5833vw;
  }
}
@media (max-width: 1400px) {
  section.about_us > .content > .text_box {
    width: 550px;
  }
  section.about_us > .content > .text_box p {
    letter-spacing: 1px;
  }
  section.about_us > .content > .abs_decor {
    bottom: -5.9vw;
    width: 19.5833vw;
  }
}
@media (max-width: 1200px) {
  section.about_us > .content {
    padding: 40px 0 60px 0;
    flex-direction: column;
    align-items: center;
  }
  section.about_us > .content h1 {
    position: relative;
    left: auto;
    top: auto;
  }
  section.about_us > .content > .text_box {
    margin-top: 40px;
  }
  section.about_us > .content > .abs_rectangle {
    display: none;
  }
}
@media (max-width: 1000px) {
  section.about_us > .content {
    padding: 40px 0;
  }
  section.about_us > .content > .text_box {
    padding-bottom: 35px;
  }
  section.about_us > .content > .abs_decor {
    bottom: -4.1vw;
    width: 13.5833vw;
  }
  section.about_us > .front_references {
    margin-top: 40px;
  }
}
@media (max-width: 750px) {
  section.about_us {
    padding: 20px 0 0 0;
  }
  section.about_us > .content > .text_box {
    width: 450px;
  }
  section.about_us > .content > .abs_decor {
    display: none;
  }
}
@media (max-width: 500px) {
  section.about_us {
    padding: 10px 0 0 0;
  }
  section.about_us > .content > .text_box {
    width: 90%;
  }
}
@media (max-width: 400px) {
  section.about_us > .content {
    padding-top: 20px;
  }
  section.about_us > .content > .text_box {
    margin-top: 20px;
  }
  section.about_us > .content > .text_box p:not(:first-child) {
    margin-top: 20px;
  }
}
section.contact {
  min-height: auto;
  padding: 40px 0;
}

section.contact > .content {
  width: 100%;
  display: flex;
}

section.contact > .content > .left {
  display: flex;
  justify-content: space-between;
  width: 60%;
  padding: 50px 40px 50px 6.25vw;
  background-color: #393939;
}

section.contact > .content > .left h1::after {
  display: none;
}

section.contact > .content > .left > div {
  max-width: 280px;
}

section.contact > .content > .left > div p,
section.contact > .content > .left > div strong,
section.contact > .content > .left > div a,
section.contact > .content > .left > div span {
  color: #e8e8e8;
  letter-spacing: 3px;
  font-size: 1.125em;
  display: block;
}

section.contact > .content > .left > div p:not(:first-child),
section.contact > .content > .left > div strong:not(:first-child),
section.contact > .content > .left > div a:not(:first-child),
section.contact > .content > .left > div span:not(:first-child) {
  margin-top: 20px;
}

section.contact > .content > .left > div > div:not(:first-child) {
  margin-top: 25px;
}

section.contact > .content > .left > div > div a:not(:first-child) {
  margin-top: 0;
}

section.contact > .content > .right {
  width: 40%;
  padding: 0 6.7708vw;
}

section.contact > .content > .right h2 {
  margin: 0 auto 20px auto;
  color: #000;
}

section.contact > .content .abs_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 430px;
  background-color: #c8c8c8;
  color: #393939;
  letter-spacing: 2px;
  font-size: 0.75em;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
}

section.contact #map {
  width: 100%;
  height: 640px;
  margin-top: 35px;
}

@media (max-width: 1700px) {
  section.contact > .content > .left {
    padding: 50px 40px;
  }
}
@media (max-width: 1500px) {
  section.contact > .content > .left {
    padding: 50px 20px;
  }
  section.contact > .content > .left > div {
    max-width: 210px;
  }
  section.contact > .content > .left > div p,
  section.contact > .content > .left > div strong,
  section.contact > .content > .left > div a,
  section.contact > .content > .left > div span {
    letter-spacing: 1px;
    font-size: 1em;
  }
  section.contact > .content > .right {
    padding: 0 40px;
  }
  section.contact #map {
    height: 500px;
  }
}
@media (max-width: 1200px) {
  section.contact > .content > .left {
    padding: 20px 20px 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 30px;
  }
  section.contact > .content > .left h1 {
    justify-self: center;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  section.contact > .content > .left > div {
    max-width: none;
  }
  section.contact > .content > .right {
    padding: 20px;
  }
  section.contact > .content .abs_bottom {
    height: 50px;
    width: 25%;
  }
  section.contact #map {
    height: 500px;
  }
}
@media (max-width: 900px) {
  section.contact > .content {
    flex-wrap: wrap;
  }
  section.contact > .content > .left {
    width: 100%;
    padding: 20px 40px;
  }
  section.contact > .content > .right {
    width: 100%;
    padding: 40px 15vw;
  }
  section.contact > .content .abs_bottom {
    left: auto;
    bottom: auto;
    position: relative;
    height: auto;
    width: auto;
    font-size: 0.875em;
  }
  section.contact #map {
    margin-top: 20px;
  }
}
@media (max-width: 750px) {
  section.contact {
    padding: 20px 0;
  }
  section.contact > .content > .left {
    padding: 20px;
  }
  section.contact > .content > .right {
    padding: 40px 10vw;
  }
}
@media (max-width: 500px) {
  section.contact {
    padding: 10px 0;
  }
  section.contact > .content > .left {
    padding: 20px 10px 0 10px;
    grid-template-columns: 1fr;
  }
  section.contact > .content > .left h1 {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  section.contact > .content > .left > div {
    padding-left: 50px;
  }
  section.contact > .content > .left > div:nth-child(3) {
    width: calc(100% + 20px);
    margin-left: -10px;
    background-color: #c8c8c8;
    padding: 30px 0 20px 60px;
  }
  section.contact > .content > .left > div:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    width: 1px;
    height: calc(100% - 20px);
    background-color: #393939;
  }
  section.contact > .content > .left > div:nth-child(3) p,
  section.contact > .content > .left > div:nth-child(3) strong,
  section.contact > .content > .left > div:nth-child(3) a,
  section.contact > .content > .left > div:nth-child(3) span {
    color: #393939;
  }
  section.contact > .content > .right {
    padding: 30px 0;
  }
  section.contact #map {
    height: 90vw;
  }
}
@media (max-width: 350px) {
  section.contact > .content > .left > div {
    padding-left: 30px;
  }
  section.contact > .content > .left > div:nth-child(3) {
    padding: 30px 0 20px 40px;
  }
  section.contact > .content > .left > div:nth-child(3)::before {
    left: 30px;
  }
}
section.page_404 {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.page_404 > strong {
  font-size: 140px;
}

section.page_404 > p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
}

section.page_404 > div {
  width: 700px;
  margin-top: 40px;
}

section.page_404 > div a {
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 800px) {
  section.page_404 {
    padding: 60px 40px;
  }
  section.page_404 > div {
    width: 100%;
  }
}
@media (max-width: 500px) {
  section.page_404 {
    padding: 40px 20px;
  }
  section.page_404 > strong {
    font-size: 80px;
  }
  section.page_404 > p {
    font-size: 16px;
  }
  section.page_404 > div {
    width: 100%;
  }
  section.page_404 > div p,
  section.page_404 > div a {
    font-size: 16px;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  height: 30px;
  text-decoration: none;
  background: transparent;
  padding: 0 40px;
  width: fit-content;
  width: -moz-fit-content;
  transition: 0.35s;
}

.btn:hover {
  background: #e8e8e8;
}

.btn:hover > span {
  color: #393939;
}

.btn > span {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #e8e8e8;
  letter-spacing: 2px;
}

.btn.dark {
  border: 1px solid #4a4a4a !important;
}

.btn.dark:hover {
  background: #4a4a4a !important;
}

.btn.dark:hover > span {
  color: #c8c8c8 !important;
}

.btn.dark > span {
  color: #4a4a4a !important;
}

.btn.dark.full {
  border: 1px solid #393939 !important;
  background-color: #393939;
}

.btn.dark.full:hover {
  background: #c8c8c8 !important;
}

.btn.dark.full:hover > span {
  color: #393939 !important;
}

.btn.dark.full > span {
  color: #fff !important;
  font-weight: 700;
}

.btn.big {
  height: 40px;
  padding: 0 60px;
}

.btn.back {
  border: 0;
  height: auto;
  padding: 0;
  font-size: 14px;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.btn.back:hover {
  background: transparent;
}

.btn.back:hover > img {
  transform: translateX(-8px);
}

.btn.back > img {
  display: block;
  width: 19px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 10px;
  transition: 0.3s;
}

.matrix-content {
  display: block;
  margin: 2.5em 0;
  /** HEADINGS **/
  /** BUTTONS **/
  /** GALLERY **/
  /** YT VIDEO **/
  /** CONTENT **/
  /** CONTENT WITH IMAGE **/
}

.matrix-content .content-empty {
  display: block;
  width: 100%;
  background: #eee;
  padding: 2em 1em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.matrix-content .content-empty p {
  color: #000;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 300;
}

.matrix-content h2,
.matrix-content h3 {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 700 !important;
  font-size: 1.125em;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.matrix-content h2 {
  color: #fff !important;
}

.matrix-content h3 {
  color: #000000 !important;
}

.matrix-content .btn {
  border: 1px solid #fff;
  margin: 15px 0;
}

.matrix-content .btn > span {
  color: #fff;
}

.matrix-content .btn.btn-medium {
  min-width: 33%;
  height: 40px;
}

.matrix-content .btn.btn-big {
  min-width: 50%;
  height: 50px;
}

.matrix-content .matrix-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-row-gap: 1px;
  grid-column-gap: 1px;
  margin: 2.5em 0;
}

.matrix-content .matrix-gallery a {
  display: block;
  width: 100%;
  height: 210px;
  position: relative;
  /** HOVER **/
}

.matrix-content .matrix-gallery a img {
  background-color: #dbdbdb;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 25;
  position: relative;
}

.matrix-content .matrix-gallery a span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 60;
  font-size: 2em;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.4);
}

.matrix-content .matrix-gallery a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 40;
  background: rgba(0, 0, 0, 0.25);
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s linear;
}

.matrix-content .matrix-gallery a::after {
  content: "";
  display: block;
  width: 2.5em;
  height: 2.5em;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 5em 0 0 -1.25em;
  background: url(../img/svg/zoom_white.svg) no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 55;
  transition: all 0.1s linear;
  transition-delay: 0.1s;
  opacity: 0;
  visibility: hidden;
}

.matrix-content .matrix-gallery a:not(._last):hover::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.matrix-content .matrix-gallery a:not(._last):hover::after {
  opacity: 1;
  visibility: visible;
  margin: -0.78125em 0 0 -0.78125em;
}

.matrix-content iframe {
  width: 100%;
  height: 450px;
  margin: 30px 0;
}

.matrix-content p {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  margin-top: 25px;
  line-height: 1.5;
}

.matrix-content .content-columns-2 {
  -moz-column-count: 2;
       column-count: 2;
}

.matrix-content .content-columns-3 {
  -moz-column-count: 3;
       column-count: 3;
}

.matrix-content .content-columns-2,
.matrix-content .content-columns-3 {
  margin-top: 25px;
}

.matrix-content .content-columns-2 p:first-child,
.matrix-content .content-columns-3 p:first-child {
  margin-top: 0;
}

.matrix-content .content-with-image {
  margin: 25px 0;
  /** IMAGES **/
}

.matrix-content .content-with-image p {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  font-size: 0.875em;
  margin-top: 25px;
  line-height: 1.5;
}

.matrix-content .content-with-image._imaged .with-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.matrix-content .content-with-image._imaged .with-image img {
  display: block;
  width: 50%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.matrix-content .content-with-image._imaged .with-image > div {
  width: 100%;
}

.matrix-content .content-with-image._imaged.position-right .text-content p:first-of-type {
  margin-top: 0;
}

.matrix-content .content-with-image._imaged.position-right img {
  float: right;
  margin: 0 0 1.25em 1.25em;
}

.matrix-content .content-with-image._imaged.position-left .text-content p:first-of-type {
  margin-top: 0;
}

.matrix-content .content-with-image._imaged.position-left img {
  float: left;
  margin: 0 1.25em 1.25em 0;
}

.matrix-content .content-with-image._imaged._full-width img {
  float: none;
  width: 100%;
  margin: 0 0 1.25em 0;
}

/** MEDIA **/
@media (max-width: 1350px) {
  .matrix-content .matrix-gallery a {
    height: 180px;
  }
}
@media (max-width: 850px) {
  .matrix-content iframe {
    height: 350px;
  }
}
@media (max-width: 750px) {
  .matrix-content .matrix-gallery a {
    height: 130px;
  }
}
@media (max-width: 650px) {
  .matrix-content .matrix-gallery a {
    height: 130px;
  }
  .matrix-content iframe {
    height: 50vw;
  }
}
@media (max-width: 550px) {
  .matrix-content .matrix-gallery {
    grid-template-columns: auto auto auto;
  }
  .matrix-content .matrix-gallery a {
    height: 8.25em;
  }
}
@media (max-width: 500px) {
  .matrix-content .content-columns-2,
  .matrix-content .content-columns-3 {
    -moz-column-count: 1;
         column-count: 1;
  }
  .matrix-content .btn.btn-small {
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .matrix-content iframe {
    height: 60vw;
  }
}
@media (max-width: 360px) {
  .matrix-content .matrix-gallery {
    grid-template-columns: auto auto;
  }
}

header {
  height: 120px;
}
@media (max-width: 1200px) {
  header {
    height: 80px;
  }
}
header ul {
  padding: 25px 0 0 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  align-self: flex-end;
  margin: 0 0 0 auto;
}
@media (max-width: 1200px) {
  header ul {
    position: fixed;
    visibility: hidden;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 120px 40px;
    background-color: #393939;
    z-index: 50;
    transform: translateX(100%);
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0.38, 0.52, 0.37, 1.27);
  }
}
header ul .contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: auto;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 12px;
  right: 30px;
}
@media (max-width: 1200px) {
  header ul .contacts {
    color: #fff;
  }
  header ul .contacts a {
    color: #fff;
  }
}
header ul .contacts::after {
  display: none;
}

.new-page .dark {
  color: #000;
}
.new-page h2 {
  margin: 0 0 24px 0;
  padding: 0 0 24px 0;
  border-bottom: 1px solid #000;
}
.new-page h3 {
  margin: 0 0 24px 0;
}
.new-page p {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.5em;
}
.new-page .text-image {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
  margin: 40px auto;
  width: 100%;
}
@media (max-width: 640px) {
  .new-page .text-image {
    flex-direction: column;
    gap: 20px;
    margin: 30px auto;
  }
}
.new-page .text-image:nth-child(2n+1) {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 640px) {
  .new-page .text-image:nth-child(2n+1) {
    flex-direction: column;
  }
}
.new-page img {
  width: 48%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.new-page img.large-img {
  width: 100%;
}
@media (max-width: 640px) {
  .new-page img {
    width: 100%;
  }
}
.new-page .column.w980 {
  max-width: 980px;
  margin: 0 0 0 calc(3% + 80px);
}
@media (max-width: 1200px) {
  .new-page .column.w980 {
    margin: 30px 0;
  }
}
.new-page .text-gray {
  text-align: center;
  background: #D5D5D5;
  padding: 24px;
}
.new-page .text-gray h3 {
  font-weight: bold;
  position: relative;
  letter-spacing: 4px;
  font-size: 32px;
  line-height: 1.25em;
  width: 100%;
  margin: 0 0 60px 0;
}
@media (max-width: 640px) {
  .new-page .text-gray h3 {
    font-size: 24px;
  }
}
.new-page .text-gray h3::after {
  position: absolute;
  bottom: -20px;
  height: 3px;
  width: 60px;
  background: #000000;
  content: " ";
  left: calc(50% - 30px);
}
.new-page .text-gray p {
  margin: 24px auto;
  font-size: 18px;
}
.new-page .text-gray p a {
  font-weight: bold;
}

.matrix-content h4 {
  margin: 0 0 18px 0;
  font-size: 18px;
}/*# sourceMappingURL=main.css.map */