:root {
  --background: #FFF;
  --darken: #0E0F11;
  --primary: #DE0E0B;
  --secondary: #182337;
  --dark: #182337;
  --medium: #ADADAD;
  --light: #F5F5F5;
  --white: #FFF;
  --placeholder: #8c919b;
}

* {
  scrollbar-width: auto;
  scrollbar-color: var(--primary) var(--light);
}

*::-webkit-scrollbar {
  width: 6px;
  border-radius: 6px;
}

*::-webkit-scrollbar-track {
  background: var(--primary);
  border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 6px;
  border: 0px none var(--light);
}

html {
  scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

body {
  background: var(--background);
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.74;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  -webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
  position: relative;
  z-index: 2;
}

@media (min-width: 1600px) {
  .container {
      max-width: 1400px;
  }
}

::-moz-selection {
  background-color: var(--primary);
  color: var(--white);
}

::selection {
  background-color: var(--primary);
  color: var(--white);
}

section.temp-space {
  padding-top: 50px;
  padding-bottom: 50px;
}

.fl-row.temp-space {
	padding-top: 50px;
	padding-bottom: 50px;
}

.upper-footer {
  padding-top: 100px;
  padding-bottom: 100px;
}

body.home #page-spacer {
  height: 0 !important;
  display: none !important;
}

/* PARAGRAPH */

a {
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  display: inline-block;
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.text-underline {
  text-decoration: underline;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

button, button:hover, button:focus {
  background-color: transparent;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  cursor: pointer;
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

input, input:focus, input:hover, select, select:focus, select:hover, textarea, textarea:focus, textarea:hover {
  background-color: var(--white);
  border: none;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--medium);
  padding: 1em;
  color: var(--placeholder);
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  width: 100%;
  margin-bottom: 15px;
}

textarea {
  min-height: 250px;
}

::placeholder {
  color: var(--placeholder);
  font-weight: 400;
}

:-ms-input-placeholder {
  color: var(--placeholder);
  font-weight: 400;
}

::-ms-input-placeholder {
  color: var(--placeholder);
  font-weight: 400;
 }

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right[class*="button"], .align-right[class*="read-more"] {
  text-align: center;
  float: right;
}

.align-center[class*="button"], .align-center[class*="read-more"] {
  text-align: center;
  float: none;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  float:right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float:left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float:right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float:left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-normal {
  font-size: 1em;
}

.text-smaller {
  font-size: 0.9em;
  line-height: 1.4em;
}

.text-smallest {
  font-size: 0.8em;
  line-height: 1.4em;
}

.text-bigger {
  font-size: 1.1em;
  line-height: 1.4em;
}

.text-biggest {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

footer ul, header ul {
  list-style: none;
}

strong, b {
  font-weight: bold;
}

.invert {
  color: var(--white);
}

/* OTHER */

.break-after:after {
  content: '\A';
  white-space: pre;
}

.break-before:before {
  content: '\A';
  white-space: pre;
}

.va-middle {
  vertical-align: middle;
}

.va-top {
  vertical-align: top;
}

.va-bottom {
  vertical-align: bottom;
}

.no-border {
  border: none;
}

.inline-block {
  display: inline-block !important;
}

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.vertical-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.navbar-toggler {
  display: none;
}

.screen-reader-text {
  font-size: 0;
}

.invert .section-title {
  color: var(--white);
}

/* HEADINGS */

h1, .h1 {
  font-size: 4em;
  font-weight: 200;
  display: table;
  margin-bottom: 30px;
}

h2, .h2 {
  font-size: 3em;
  font-weight: 200;
  display: table;
  margin-bottom: 30px;
}

h3, .h3 {
  font-size: 2em;
  font-weight: 200;
  display: table;
  margin-bottom: 30px;
}

h4, .h4 {
  font-size: 1.7em;
  font-weight: 300;
  display: table;
  margin-bottom: 15px;
}

h5, .h5 {
  font-size: 1.25em;
  font-weight: 400;
  display: table;
  margin-bottom: 15px;
}

h6, .h6 {
  font-size: 1em;
  font-weight: 400;
  display: table;
  text-transform: uppercase;
  margin-bottom: 15px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: Kanit, sans-serif;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding-top: 30px;
  padding-bottom: 30px;
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

header > .nav-bar > .container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: static;
}

header .logo-light {
  display: none;
}

body.home header .logo-light {
  display: block;
}

body.home header .logo-dark {
  display: none;
}

header .main-nav {
  font-size: 1;
  color: var(--dark);
  margin-bottom: 0;
}

body.home header .main-nav {
  color: var(--white);
}

header .main-nav {
  display: flex;
  gap: 25px;
}

header .social-nav {
  color: var(--white);
  display: flex;
  gap: 10px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25em;
  margin-bottom: 0;
}

header.header-scrolled {
  background-color: var(--white);
  padding-top: 20px;
  padding-bottom: 20px;
}

header.header-scrolled .logo img {
  height: 30px;
}

body.home header.header-scrolled {
  background-color: var(--dark);
}

header .main-nav a {
  text-decoration: none;
  padding: 5px 0;
}

header .main-nav li.special a {
  padding: 5px 15px;
}

header .main-nav li {
  position: relative;
}

header .logo img {
  height: 30px;
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

header .main-nav li:before {
  width: 0;
  height: 3px;
  background-color: var(--dark);
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  transform-origin: center;
}

body.home header .main-nav li:before {
  background-color: var(--white);
}

header .main-nav li.special a {
  background-color: var(--primary);
  color: var(--white);
}

header .main-nav li.special:before {
  display: none;
}

header .main-nav li.special a:hover {
  background-color: var(--dark);
}

header .main-nav li:hover:before, header .main-nav li.active:before {
  width: 100%;
}

/* BUTTONS */

.secondary-button {
  color: var(--primary);
  padding-left: 90px;
  position: relative;
  font-size: 0.85em;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: table;
  text-transform: uppercase;
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.secondary-button:hover {
  color: var(--primary);
  padding-left: 90px;
}

.secondary-button:before {
  width: 80px;
  left: 0;
  top: 50%;
  height: 1px;
  position: absolute;
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  content: "";
  background-color: var(--primary);
}

.secondary-button:hover:before {
  width: 60px;
}

.primary-button {
  padding: 10px 30px;
  min-width: 200px;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: table;
  text-transform: uppercase;
  font-size: 0.85em;
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  text-align: center;
}

.primary-button:hover {
  background-color: var(--dark);
  color: var(--white);
  padding: 10px 30px;
}

/* SECTIONS */

/*section {
  padding-top: 100px;
  padding-bottom: 100px;*/
}

.section-title {
  display: block;
}

.section-title > span {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  display: block;
  text-transform: uppercase;
}

.section-title > span:before {
  width: 80px;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--primary);
  content: "";
  position: absolute;
}

/* MAIN TOP */

.home-top {
  min-height: 80vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.home-top .text {
  padding-top: 400px;
  color: var(--white);
  padding-bottom: 150px;
}

/* SECTION 1 */

.sign-photo-and-text {
  width: 100%;
  display: flex;
  gap: 30px;
}

.sign-photo-and-text .image {
  width: calc(45% - 30px);
  position: relative;
}

.sign-photo-and-text .image img:first-child {
  position: absolute;
  width: 130%;
  bottom: 20%;
  left: -30%;
  z-index: 0;
}

.sign-photo-and-text .image img:nth-child(2) {
  max-width: 70%;
  display: block;
  margin-left: auto;
  position: relative;
  margin-right: auto;
  z-index: 2;
  margin-bottom: 80px;
}

.sign-photo-and-text .text {
  width: 55%;
  position: relative;
}

/* SECTION 2 */

.offer-intro {
  width: 100%;
  position: relative;
}

.offer-intro .text {
  padding-right: 55%;
}

.offer-intro .image {
  position: absolute;
  width: 50vw;
  left: 50%;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.offer-intro .text .text-inside {
  display: block;
  padding-bottom: 60px;
  padding-top: 60px;
}

.offer-intro .text .button-bottom {
  width: 100%;
  padding: 60px 60px 60px 30px;
  position: relative;
}

.offer-intro .text .button-bottom:before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 120%;
  height: 100%;
  background-color: var(--primary);
  left: 0;
  top: 0;
  border-radius: 30px 0 0 0;
}

.offer-intro .text .button-bottom .primary-button {
  background-color: var(--white);
  color: var(--dark);
}

.offer-intro .text .button-bottom .primary-button:hover {
  background-color: var(--dark);
  color: var(--white);
}

.offert-intro-bottom {
  position: relative;
  width: 100%;
  padding-left: 320px;
}

.offert-intro-bottom:before {
  background-color: var(--dark);
  width: 100vw;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
}

.offer-carousel-container {
  width: 100%;
  padding: 30px;
  background-color: var(--dark);
  transform: translateY(-100px);
  position: relative;
  max-width: 900px;
}

.owl-carousel .owl-nav {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 30px;
}

.owl-carousel.offer-carousel .owl-nav {
    margin-bottom: -60px;
}

.owl-carousel .owl-nav button {
  background-size: contain;
  background-position: center;
  width: 90px;
  height: 20px;
  background-repeat: no-repeat;
}

.owl-carousel .owl-nav button.owl-prev {
  background-image: url(../img/arrow-left.svg);
}

.owl-carousel .owl-nav button.owl-next {
  background-image: url(../img/arrow-right.svg);
}

.offer-carousel .item .offer-block {
  width: 100%;
  display: block;
}

.offer-carousel .item .offer-block img {
  width: 100%;
  margin-bottom: 10px;
}

.offer-carousel .item .offer-block h3 {
  color: var(--white);
  display: block;
  margin-top: 30px;
  padding-top: 20px;
  position: relative;
  font-size: 1.75em;
}

.offer-carousel .item .offer-block h3:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  height: 1px;
  content: "";
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.offer-carousel .item .offer-block:hover h3:before {
  width: 70%;
}

/* SECTION */

.job-offers {
  width: 100%;
  display: flex;
  gap: 30px;
}

.job-offers .image {
  width: calc(45% - 30px);
  position: relative;
}

.job-offers .image img:first-child {
  position: absolute;
  width: 130%;
  bottom: 20%;
  left: -30%;
  z-index: 0;
}

.job-offers .image img:nth-child(2) {
  max-width: 90%;
  display: block;
  margin-left: auto;
  position: absolute;
  margin-right: auto;
  z-index: 2;
  height: auto;
  bottom: 0;
}

.job-offers .text {
  width: 55%;
  position: relative;
}

ul.dt-list {
  list-style: none;
  padding-left: 0;
}

ul.dt-list li {
  position: relative;
  padding-left: 50px;
}

ul.dt-list li:before {
  content: "";
  left: 0;
  top: 0.8em;
  height: 3px;
  background-color: var(--primary);
  position: absolute;
  width: 35px;
}

ul.dt-list li strong {
  color: var(--primary);
}

.job-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 600px;
}

.job-buttons .job-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SECTION FOOTER CONTACT */

.contact-module {
  width: 100%;
  display: flex;
  gap: 50px;
}

.contact-module .logo {
  margin-bottom: 40px;
  max-width: 70%;
}

.contact-module .text {
  width: calc(50% - 150px);
}

.contact-module .contact-data {
  width: calc(50% + 150px);
  padding: 50px;
  background-color: var(--dark);
  color: var(--white);
  max-width: 640px;
  margin-bottom: -200px;
}

.contact-module .contact-data .section-title span {
  color: var(--white);
}

.contact-module .contact-data .contact-phone, .contact-module .contact-data .contact-mail {
  width: 100%;
  display: block;
  background-color: var(--primary);
  text-decoration: none;
  font-size: 1.85em;
  font-weight: 700;
  padding-left: 110px;
  position: relative;
  height: 80px;
  line-height: 80px;
  margin-bottom: 15px;
}

.contact-module .contact-data .contact-phone:hover, .contact-module .contact-data .contact-mail:hover {
  background-color: var(--white);
  color: var(--dark);
}

.contact-module .contact-data .contact-phone:after, .contact-module .contact-data .contact-mail:after {
  width: 40px;
  top: 20px;
  left: 20px;
  height: 40px;
  position: absolute;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.contact-module .contact-data .contact-mail:last-child {
  margin-bottom: 0;
}

.contact-module .contact-data .contact-phone:after {
  background-image: url(../img/icon_phone.svg);
}

.contact-module .contact-data .contact-mail:after {
  background-image: url(../img/icon_envelope.svg);
}

.contact-module .contact-data .contact-phone:before, .contact-module .contact-data .contact-mail:before {
  background-color: var(--white);
  height: 100%;
  width: 80px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
}

/* FOOTER */

footer {
  color: var(--medium);
  padding-top: 50px;
  padding-bottom: 50px;
}

footer .social-media {
  display: flex;
  width: 30%;
  gap: 30px;
}

footer .copy {
  display: block;
  width: 30%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-nav {
  display: block;
  width: 100%;
}

.footer-nav ul {
  display: flex;
  gap: 20px;
  padding: 0;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--primary);
}

/* SECTION ABOUT */

.about-us-intro {
  width: 100%;
  display: flex;
  gap: 50px;
}

.about-us-intro .text {
  width: calc(50% - 50px);
}

.about-us-intro .image {
  width: 50%;
  position: relative;
  padding: 50px 30px;
  color: var(--white);
  min-height: 700px;
}

.about-us-intro .image:before {
  width:50vw;
  height: 100%;
  border-radius: 30px 0 0 0;
  background-color: var(--primary);
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  top: 0;
}

.about-us-intro .image img {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.about-us-intro h2 {
  max-width: 600px;
  display: block;
}

.scroll-down {
  height: 75px;
  padding-left: 40px;
  text-decoration: none;
  position: relative;
  margin-top: 50px;
}

.scroll-down:hover {
  padding-top: 10px;
  color: var(--primary);
}

.scroll-down:before {
  width: 22px;
  height: 75px;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background-image: url(../img/arrow-down.svg);
}

.image-section {
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-us-intro .scroll-down {
  margin-bottom: 30px;
}

/* SECTION OFFER */

.offer-items {
  display: flex;
  gap: 50px 40px;
  flex-wrap: wrap;
}

.offer-items .offer-item {
  width: calc(50% - 20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  padding-top: 30px;
  position: relative;
}

.offer-items .offer-item .text {
  display: block;
  width: 100%;
  flex-grow: 1;
}

.offer-items .offer-item .primary-button {
  align-self: flex-start;
  margin-top: 30px;
  background-color: var(--white);
  border: 1px solid var(--dark);
  color: var(--dark);
}

.offer-items .offer-item .primary-button:hover {
  color: var(--white);
  background-color: var(--dark);
}

.offer-items .offer-item:before {
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
  background-color: var(--light);
}

.offer-items .offer-item:after {
  width: 40%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  background-color: var(--primary);
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.offer-items .offer-item:hover:after {
  width: 60%;
}

.offer-items .offer-item h3 {
  font-weight: 300;
}

.job-icons {
  width: 100%;
  display: flex;
  gap: 50px 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.job-icons .job-icon {
  width: calc(16.6666% - 25px);
  flex-wrap: wrap;
  text-align: center;
}

.job-icons .job-icon img {
  width: 65px;
  height: 65px;
  display: block;
  margin: 0 auto 20px auto;
  -moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.job-icons .job-icon:hover img {
  transform: scale(1.1);
}

.locations-module {
  width: 100%;
  display: block;
  position: relative;
  color: var(--white);
  padding-bottom: 60px;
}

.locations-module:before {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 80%;
  top: 20%;
  position: absolute;
  z-index: -1;
  background-color: var(--dark);
  content: "";
}

.locations-module .image {
  display: block;
  position: relative;
  z-index: 2;
}

.locations-module .image img {
  max-width: 100%;
}

.locations-module .text {
  position: relative;
  z-index: 2;
}

.locations-module .text-columns {
  padding-top: 50px;
  margin-top: 60px;
  border-top: 1px solid var(--primary);
  display: flex;
  gap: 90px;
}

.locations-module .text-columns .text-column {
  width: calc(50% - 45px);
  position: relative;
}

.locations-module .text-columns .text-column:nth-child(2n + 2):before {
  height: 100%;
  position: absolute;
  left: -45px;
  z-index: 2;
  background-color: var(--primary);
  width: 1px;
  content: "";
}

.locations-module .text-columns .primary-button {
  align-self: flex-start;
  margin-top: 30px;
  background-color: var(--dark);
  border: 1px solid var(--white);
  color: var(--white);
}

.locations-module .text-columns .primary-button:hover {
  color: var(--dark);
  background-color: var(--white);
}

/* CONTACT */

.contact-columns {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.contact-columns .contact-column:first-child {
  width: 70%;
}

.contact-columns .contact-column:last-child {
  width: 70%;
}

form .send {
  margin-left: auto;
}

/* SUBPAGE */

.subpage-header {
  background-position: center;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}

.subpage-header:before {
  background-color: var(--dark);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 0.65;
  left: 0;
  top: 0;
  content: "";
}

.subpage-header h1 {
  font-weight: 500;
  color: var(--white);
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* PRICE FORM */

.price-ask-module {
  width: 100%;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.price-ask-module .price-ask-column {
  width: 50%;
  text-align: center;
  padding: 50px;
  color: var(--white);
}

.price-ask-module .price-ask-column h2 {
  width: 100%;
  display: block;
}

.price-ask-module .price-ask-column .primary-button {
  align-self: flex-start;
  margin-top: 30px;
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.price-ask-module .price-ask-column .primary-button:hover {
  color: var(--dark);
  background-color: var(--white);
}

.price-ask-module .price-ask-column:nth-child(4n + 1) {
  background-color: var(--primary);
}

.price-ask-module .price-ask-column:nth-child(4n + 2) {
  background-color: var(--dark);
}

.price-ask-module .price-ask-column:nth-child(4n + 3) {
  background-color: var(--dark);
}

.price-ask-module .price-ask-column:nth-child(4n + 4) {
  background-color: var(--primary);
}

/* SECTION */

.text-and-photo {
  display: block;
  width: 100%;
}

.text-and-photo .image {
  position: absolute;
  width: 50vw;
  left: 50%;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.text-and-photo .text {
  padding-right: 55%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.fl-row .fl-row-content {
  width: 100%;
  max-width: 1140px; /* np. jak container-xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1600px) {
  .fl-row .fl-row-content, .fl-row-fixed-width {
    max-width: 1400px;
  }
}

.fl-row .fl-row-content {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 980px) {
  header .navbar-toggler, header .navbar-toggler:hover, header .navbar-toggler:focus {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -8px;
    right: 15px;
    width: 24px;
    height: 21px;
    border-radius: 0;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border: none;
  }
  
  header, header.header-scrolled {
    background-color: var(--dark);
  }
  
  body.home header .logo-light {
    display: block;
  }
  
  body.home header .logo-dark {
    display: none;
  }
  
  header .logo-light {
    display: block;
  }
  
  header .logo-dark {
    display: none;
  }
  
  header.header-scrolled .logo-light {
    display: block;
  }
  
  header.header-scrolled .logo-dark {
    display: none;
  }

  header .navbar-toggler span {
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }

  header .navbar-toggler span:nth-child(2) {
    top: 7px;
    width: 11px;
  }

  header .navbar-toggler:hover span:nth-child(2) {
    width: 21px;
  }

  header .navbar-toggler span:nth-child(3) {
    top: 14px;
    width: 21px;
  }

  header .navbar-toggler.open span:nth-child(1) {
    width: 21px;
    transform: rotate(45deg);
    top: 0;
  }

  header .navbar-toggler.open span:nth-child(2) {
    width: 0;
  }

  header .navbar-toggler.open span:nth-child(3) {
    width: 21px;
    transform: rotate(-45deg);
    top: 0;
  }

  header .navbar-toggler.open {
    z-index: 1001;
    position: fixed;
    top: 35px;
    margin-top: 0;
  }
  
  header .main-nav a {
    color: var(--white);
  }

  header .navigations {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    z-index: 1000;
    right: -100%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-align: left;
    font-size: 1.25em;
  }
 
  header .navigations.open {
    right: 0;
  }
  
  header .main-nav li {
    width: 100%;
  }
  
  header .main-nav {
    flex-wrap: wrap;
  }

  header .main-nav.open {
    right: 0;
  }

  header .nav-bar {
    padding: 15px;
  }

  header .nav-bar.container {
    max-width: 100%;
  }

  header .nav-bar .main-nav {
    padding: 15px;
    margin-top: 50px;
  }

  header .nav-bar .main-nav ul {
    display: block;
  }

  header .nav-bar .main-nav ul li a {
    color: var(--primary);
  }

  header .nav-bar .main-nav ul li {
    margin-left: 0;
    margin-right: 0;
  }
  
  header .social-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-top: 40px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .sign-photo-and-text, .job-offers {
    flex-wrap: wrap;
  }
  
  .sign-photo-and-text .image, .sign-photo-and-text .text, .job-offers .image, .job-offers .text, .about-us-intro .text, .about-us-intro .image, .offer-items .offer-item, .price-ask-module .price-ask-column {
    width: 100%;
  }
  
  .offer-intro .image {
    display: none;
  }
  
  .offer-intro .text {
    padding-right: 0;
  }
  
  .offert-intro-bottom {
    padding-left: 0;
  }
  
  .contact-module .text {
    width: 100%;
  }
  
  .about-us-intro .image:before {
    width: 100vw;
  }
  
  .job-icons .job-icon {
    width: calc(25% - 25px);
  }
  
  .offer-carousel-container {
    transform: translateY(0);
    max-width: 100%;
  }
  
  .job-offers .image img:nth-child(2) {
    position: relative;
  }
  
  .contact-module .contact-data {
    width: 100%;
    max-width: 100%;
  }
  
  .margin-bottom {
    margin-bottom: 0;
  }
  
  .contact-module, .about-us-intro {
    flex-wrap: wrap;
  }
  
  .contact-module .contact-data .contact-phone:before, .contact-module .contact-data .contact-mail:before {
    width: 40px;
  }
  
  .contact-module .contact-data .contact-phone, .contact-module .contact-data .contact-mail {
    padding-left: 60px;
    line-height: 40px;
    height: 40px;
  }
  
  .contact-module .contact-data .contact-phone:after, .contact-module .contact-data .contact-mail:after {
    left: 10px;
    top: 0;
    width: 20px;
  }
  
  .contact-module .contact-data {
    margin-bottom: 0;
  }
  
  .contact-module .contact-data .contact-phone, .contact-module .contact-data .contact-mail {
    font-size: 1em;
  }
  
  footer .social-media, footer .copy {
    width: 100%;
  }
  
  .locations-module .text-columns .text-column:nth-child(2n + 2):before {
    display: none;
  }
  
  .locations-module:before {
    height: 90%;
    top: 10%;
  }
  
  .locations-module .text-columns {
    flex-wrap: wrap;
  }
  
  .locations-module .text-columns .text-column {
    width: 100%;
  }
}

@media (max-width: 640px) {
  
  .job-icons .job-icon {
    width: calc(50% - 25px);
  }
  
  header .logo img, header.header-scrolled .logo img {
    height: 20px;
  }
  
  .locations-module:before {
    height: 94%;
    top: 6%;
  }
}