/*
Theme Name: MACOSOLUTIONS
Theme URI: https://domain.tld
Author: like machines
Author URI: https://domain.tld
Version: 0.1
*/
@font-face {
  font-family: "Dosis";
  src: url("assets/font/Dosis-Regular.woff2") format("woff2"), url("assets/font/Dosis-Regular.woff") format("woff"), url("assets/font/Dosis-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Dosis";
  src: url("assets/font/Dosis-SemiBold.woff2") format("woff2"), url("assets/font/Dosis-SemiBold.woff") format("woff"), url("assets/font/Dosis-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
html {
  font-family: "Dosis";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  background-color: #3C3C3C;
  scroll-behavior: smooth;
}

h1 {
  font-size: 128px;
  line-height: 128px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 992px), screen and (max-height: 860px) {
  h1 {
    font-size: 96px;
    line-height: 104px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 56px;
    line-height: 64px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  h1 {
    font-size: 56px;
    line-height: 64px;
  }
}

h2 {
  font-size: 64px;
  line-height: 80px;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  margin: 0;
}
@media (max-width: 992px) {
  h2 {
    font-size: 48px;
    line-height: 64px;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}

h3 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

p {
  font-size: 24px;
  line-height: 48px;
  margin: 0;
}
@media (max-width: 992px), (orientation: landscape) {
  p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  p {
    font-size: 18px;
    line-height: 24px;
  }
}

.button {
  display: block;
  text-align: center;
  color: white;
  font-size: 24px;
  line-height: 64px;
  text-decoration: none;
  width: 188px;
  height: 64px;
  background: red;
  box-shadow: 0px 0px 0px #fff;
  border-radius: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button:hover {
  box-shadow: 0px 0px 8px #fff;
}
@media (max-width: 576px) {
  .button {
    font-size: 18px;
    line-height: 56px;
    height: 56px;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 152px;
  }
}

.fancybox__content {
  max-width: 100vw;
}
.fancybox__content h2 {
  -webkit-hyphens: auto;
          hyphens: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.placeholder {
  padding: 60px;
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.placeholder #logo {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 56px;
}
.placeholder p {
  display: block;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 992px) {
  .placeholder p {
    margin-bottom: 80px;
  }
}
.placeholder span {
  position: absolute;
  right: 150px;
  bottom: 60px;
  font-size: 20px;
  line-height: 20px;
}
.placeholder .gear {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 60px;
  height: auto;
  animation: spin 2s linear;
  animation-iteration-count: infinite;
}

#header {
  position: absolute;
  padding: 0px 96px;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 992px) {
  #header {
    padding: 0 15px;
  }
}
#header #logo {
  display: inline-block;
  height: 160px;
  width: auto;
  margin-top: 64px;
}
@media (max-width: 992px) {
  #header #logo {
    margin-top: 32px;
  }
}
@media (max-width: 576px) {
  #header #logo {
    margin-top: 15px;
    height: 88px;
  }
}
#header #navigation {
  display: inline-block;
  vertical-align: top;
  margin: 64px 0 0 64px;
  padding: 0;
}
@media (max-width: 992px) {
  #header #navigation {
    margin: 0;
    position: absolute;
    right: 15px;
    top: 168px;
  }
}
@media (max-width: 576px) {
  #header #navigation {
    position: relative;
    top: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
#header #navigation li {
  display: inline-block;
  margin-left: 30px;
}
@media (max-width: 576px) {
  #header #navigation li {
    margin-left: 0;
  }
}
#header #navigation li a {
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}
#header #navigation li a:hover {
  color: red;
}
@media (max-width: 576px) {
  #header #navigation li a {
    font-size: 16px;
    line-height: 16px;
  }
}
#header .button {
  position: absolute;
  top: 92px;
  right: 96px;
}
@media (max-width: 992px) {
  #header .button {
    top: 64px;
    right: 15px;
  }
}
@media (max-width: 576px) {
  #header .button {
    top: 44px;
  }
}
#header .languageswitch {
  position: absolute;
  top: 64px;
  right: 96px;
}
@media (max-width: 992px) {
  #header .languageswitch {
    top: 32px;
    right: 15px;
  }
}
@media (max-width: 576px) {
  #header .languageswitch {
    top: 10px;
  }
}
#header .languageswitch ul {
  margin: 0;
  padding: 0;
}
#header .languageswitch ul li {
  list-style: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  margin-right: 8px;
  color: red;
}
#header .languageswitch ul li.not-active a {
  text-decoration: none;
  color: #fff;
}

.hero {
  height: 128vh;
  width: 100%;
  background-image: url(assets/img/maco-poland-logo.png);
  background-position: 60vw -120px;
  background-repeat: no-repeat;
  background-size: 948px;
}
@media (max-width: 992px) {
  .hero {
    background-position: 56vw 66vh;
    background-size: 40vw;
    height: 110vh;
  }
}
@media (max-width: 576px) {
  .hero {
    background-position: 48vw 56vh;
    background-size: 50vw;
    height: 100vh;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero {
    height: 160vh;
    background-position: 64vw 30vh;
  }
}
.hero .col {
  height: 128vh;
  display: block;
  position: relative;
}
@media (max-width: 992px) {
  .hero .col {
    height: 110vh;
  }
}
@media (max-width: 576px) {
  .hero .col {
    height: 100vh;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero .col {
    height: 160vh;
  }
}
.hero .col h1 {
  margin: 33vh 0 24px;
}
@media (max-width: 992px) {
  .hero .col h1 {
    margin: 35vh 0 0;
  }
}
@media (max-width: 575.98px) {
  .hero .col h1 {
    margin-top: 27vh;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero .col h1 {
    margin-top: 32vh;
  }
}
.hero .col h2 {
  margin-bottom: 48px;
  text-transform: none;
}
@media (max-width: 992px) {
  .hero .col h2 {
    margin: 16px 0 24px;
  }
}

.about {
  padding-bottom: 144px;
}
.about h2 {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .about h2 {
    margin-bottom: 32px;
  }
}
.about p {
  padding-left: 56px;
}
.about img {
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .about img {
    padding: 24px 0 0 56px;
  }
}

.services h2 {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  .services h2 {
    margin-bottom: 48px;
  }
}
.services .services__list {
  padding: 0;
}
.services .services__list li {
  border-top: 1px solid #868686;
  list-style: none;
  position: relative;
  min-height: 100px;
}
.services .services__list li:last-of-type {
  border-bottom: 1px solid #868686;
}
.services .services__list li svg {
  display: inline-block;
}
@media (max-width: 992px) {
  .services .services__list li svg {
    position: absolute;
  }
}
@media (max-width: 576px) {
  .services .services__list li svg {
    width: 64px;
    height: auto;
  }
}
.services .services__list li h3 {
  display: inline-block;
  min-width: 600px;
  margin: 20px 48px 0;
  vertical-align: top;
}
@media (max-width: 992px) {
  .services .services__list li h3 {
    min-width: unset;
    margin: 20px 0 0 128px;
  }
}
@media (max-width: 576px) {
  .services .services__list li h3 {
    margin: 0 0 0 72px;
    line-height: 64px;
  }
}
.services .services__list li p {
  display: inline-block;
  vertical-align: top;
  margin-top: 44px;
}
@media (max-width: 992px) {
  .services .services__list li p {
    display: block;
    margin: 0 0 0 128px;
  }
}
@media (max-width: 576px) {
  .services .services__list li p {
    margin: 0 0 16px 72px;
  }
}

.facts h2 {
  text-align: center;
  margin: 200px 0 100px;
}
@media (max-width: 576px) {
  .facts h2 {
    margin: 80px 0 48px;
  }
}
.facts .facts__flag {
  width: 100%;
  position: relative;
}
.facts .facts__flag svg {
  width: 80%;
  height: auto;
}
.facts .facts__flag .facts__flag__img {
  position: absolute;
  right: 0;
  top: 3vw;
  height: 30vw;
  width: 80%;
  background-color: #868686;
  border-radius: 24px;
}
@media (max-width: 992px) {
  .facts .facts__flag .facts__flag__img {
    height: 48vw;
  }
}
@media (max-width: 576px) {
  .facts .facts__flag .facts__flag__img {
    height: 45vw;
    border-radius: 8px;
  }
}
.facts p {
  -moz-columns: 2;
       columns: 2;
  margin-top: 96px;
}
@media (max-width: 992px) {
  .facts p {
    -moz-columns: 1;
         columns: 1;
    margin-top: 64px;
  }
}
@media (max-width: 576px) {
  .facts p {
    margin-top: 48px;
  }
}

.industrys__headline {
  text-align: center;
  margin: 256px 0 128px;
}
@media (max-width: 992px) {
  .industrys__headline {
    margin: 128px 0 64px;
  }
}

.industrys {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .industrys {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
@media (max-width: 576px) {
  .industrys .industry {
    margin-bottom: 24px;
  }
}
.industrys .industry__dot {
  width: 178px;
  height: 178px;
  background: red;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .industrys .industry__dot {
    width: 128px;
    height: 128px;
  }
}
@media (max-width: 576px) {
  .industrys .industry__dot {
    width: 104px;
    height: 104px;
    margin: 0 24px;
  }
}
.industrys .industry__dot svg {
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .industrys .industry__dot svg {
    width: 48px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .industrys .industry__dot svg {
    width: 32px;
  }
}
.industrys .industry__dot:hover svg {
  transform: scale(1.3);
}
.industrys span {
  display: block;
  text-align: center;
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 24px;
}

.location h2, .location img, .location a {
  display: block;
}
.location h2 {
  text-align: center;
  margin: 256px 0 32px;
}
@media (max-width: 992px) {
  .location h2 {
    margin: 156px 0 64px;
  }
}
.location img {
  width: 100%;
  height: auto;
}
.location a {
  text-align: center;
  margin: 32px 0 128px;
  font-size: 32px;
  text-decoration: none;
  color: white;
}
@media (max-width: 576px) {
  .location a {
    font-size: 24px;
  }
}

#footer {
  border-top: 1px solid red;
  padding: 104px 0;
  color: #fff;
}
@media (max-width: 992px) {
  #footer {
    padding: 64px 0;
  }
}
@media (max-width: 575.98px) {
  #footer {
    padding: 32px 0;
  }
}
#footer .footer__logo {
  width: 215px;
  height: auto;
}
@media (max-width: 992px) {
  #footer .footer__logo {
    width: 160px;
    margin: 32px 0 0 15px;
  }
}
@media (max-width: 575.98px) {
  #footer .footer__logo {
    margin: 0 0 24px;
  }
}
#footer .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
#footer .wpcf7 .wpcf7-form-control-wrap input:not([type=checkbox]):not([type=submit]):not([type=radio]), #footer .wpcf7 .wpcf7-form-control-wrap select {
  font-family: "Dosis";
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  color: #000;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 16px 16px 8px;
  background-color: #F5F5F5;
  background-image: url(assets/img/inputactive.svg);
  background-position: 110% 0px !important;
  background-size: 2px auto !important;
  background-repeat: no-repeat !important;
  width: 100%;
  margin: 8px 0;
  transition: all 0.15s ease;
}
@media (max-width: 575.98px) {
  #footer .wpcf7 .wpcf7-form-control-wrap input:not([type=checkbox]):not([type=submit]):not([type=radio]), #footer .wpcf7 .wpcf7-form-control-wrap select {
    padding: 12px 16px;
    border-radius: 8px;
  }
}
#footer .wpcf7 input:not([type=checkbox]):not([type=submit]):not([type=radio]), #footer .wpcf7 textarea, #footer .wpcf7 select {
  outline: none;
  position: relative;
}
#footer .wpcf7 input:not([type=checkbox]):not([type=submit]):not([type=radio])::-webkit-input-placeholder, #footer .wpcf7 textarea::-webkit-input-placeholder, #footer .wpcf7 select::-webkit-input-placeholder {
  color: #3C3C3C;
}
#footer .wpcf7 input:focus:not(.wpcf7-submit):not([type=checkbox]):not([type=submit]):not([type=radio]), #footer .wpcf7 textarea:focus, #footer .wpcf7 select:focus {
  border: 1px solid red;
  background-position: 96% 5px !important;
}
#footer .wpcf7 .screen-reader-response {
  display: none;
}
#footer .wpcf7 .wpcf7-not-valid-tip {
  color: red;
  display: block;
  margin-bottom: 8px;
}
#footer .wpcf7 .wpcf7-response-output {
  text-align: center;
  color: red;
  margin-top: 16px;
}
#footer .wpcf7 .sent .container-fluid {
  display: none;
}
#footer .wpcf7 .sent .wpcf7-response-output {
  margin: 0;
  color: red;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  border: 0;
  padding: 0 0 32px;
}
#footer .wpcf7 .required {
  display: block;
  margin: 16px 0;
  font-size: 12px;
}
@media (max-width: 575.98px) {
  #footer .wpcf7 .required {
    margin: 0;
  }
}
#footer .wpcf7 .wpcf7-acceptance {
  display: block;
  margin-top: 20px;
  position: relative;
}
#footer .wpcf7 .wpcf7-acceptance input {
  width: 15px;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 0;
}
#footer .wpcf7 .wpcf7-acceptance .acceptance__text {
  margin: 0 0 16px 24px;
  display: block;
  font-size: 10px;
  line-height: 12px;
}
@media (max-width: 575.98px) {
  #footer .wpcf7 .wpcf7-acceptance .acceptance__text {
    margin: 24px;
  }
}
#footer .wpcf7 .wpcf7-acceptance .acceptance__text a {
  color: red;
}
#footer .wpcf7 .captcha-image {
  padding: 0;
  border: 0;
  text-align: left;
  font-size: 12px;
  line-height: 16px;
}
@media (max-width: 991px) {
  #footer .wpcf7 .captcha-image {
    margin-top: 20px;
  }
}
#footer .wpcf7 .captcha-image .cf7ic_instructions {
  margin-bottom: 16px;
}
#footer .wpcf7 .captcha-image .cf7ic_instructions span {
  color: red;
}
#footer .wpcf7 .captcha-image svg {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none !important;
}
#footer .wpcf7 .captcha-image input:checked + svg path {
  fill: red;
}
#footer .wpcf7 .wpcf7-submit {
  float: right;
  width: 200px;
  display: block;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  padding: 16px 24px;
  border: 0;
  margin: 0;
  color: white;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 57px;
  background: red;
}
#footer .wpcf7 .wpcf7-submit:hover {
  box-shadow: 0px 0px 9px white;
}
@media (max-width: 575.98px) {
  #footer .wpcf7 .wpcf7-submit {
    font-size: 18px;
    line-height: 18px;
    padding: 16px 24px;
    margin-bottom: 32px;
    float: unset;
  }
}
@media (max-width: 575.98px) {
  #footer .wpcf7 .col-sm-6 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#footer .legal {
  position: relative;
}
#footer .legal .legal__links {
  position: absolute;
  bottom: -8px;
  right: 15px;
}
@media (max-width: 992px) {
  #footer .legal .legal__links {
    right: 32px;
  }
}
@media (max-width: 576px) {
  #footer .legal .legal__links {
    position: initial;
  }
}
#footer .legal .legal__links a, #footer .legal .legal__links span {
  display: block;
  text-align: right;
  font-size: 20px;
  line-height: 40px;
}
@media (max-width: 576px) {
  #footer .legal .legal__links a, #footer .legal .legal__links span {
    text-align: left;
    font-size: 16px;
  }
}
#footer .legal .legal__links a {
  cursor: pointer;
}
#footer .legal .legal__links span span {
  font-size: 12px;
  line-height: 12px;
}

.wpml-ls-statics-footer {
  display: none;
}/*# sourceMappingURL=style.css.map */