/* RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font-size: 24px;
  font-family: museo-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* MAIN STYLES */

h1 {
  font-size: 36px;
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;

  margin: 100px 0;
}

h2 {
  font-size: 34px;
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 500;
  font-style: normal;

  margin: 80px 0;
}

h3 {
  font-size: 22px;
  font-family: museo-sans-rounded, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;

  margin: 10px 0;
}

h5 {
  font-size: 20px;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;

  margin: 10px 0;
}

p {
  font-size: 18px;
  font-family: museo-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: #404040;
  text-align: justify;
}

p.small,
h5.small {
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  h1 {
    margin: 50px 0 30px;
    font-size: 30px;
    line-height: 1.1;
  }

  h2 {
    margin: 50px 0;
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  p {
    font-size: 18px;
    line-height: 1.3;
  }

  p.small,
  h5.small {
    font-size: 16px;
  }
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.center-x {
  justify-content: center;
}

.center-y {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.column {
  flex-direction: column;
}

.container {
  width: 75vw;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1198.8px) {
  .container {
    width: 85vw;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: 95vw;
  }
}

/* MODULES */

/* NAV BAR */

#nav-bar {
  width: 100%;
  height: 100px;

  position: fixed;
  top: 0;
  z-index: 100;

  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  letter-spacing: 2px;

  transition: all 0.3s ease-in-out;
}

#nav-bar .logo {
  margin-left: 30px;
  height: 100px;
  width: 200px;
}

#nav-bar .logo img {
  object-fit: contain;
  width: 100%;
}

#nav-bar > ul {
  height: 100%;
}

#nav-bar > ul > li > a {
  padding: 10px 15px;
  position: relative;
  cursor: pointer;
  font-size: 20px;
}

#nav-bar > ul > li > a::after {
  content: "";
  display: block;

  height: 2px;
  width: calc(100% - 30px);
  background-color: white;
  transform: scale(0, 1);
  transition: all ease-in-out 0.2s;
  transform-origin: center;

  position: absolute;
  left: 15px;
  bottom: 5px;
}

#nav-bar.nav-white {
  background-color: white;
  color: #404040;
}

#nav-bar.nav-white > ul > li > a::after {
  background-color: #404040;
}

@media (min-width: 992px) {
  #nav-bar > ul > li > a:hover::after,
  #nav-bar > ul > li > a.nav-active::after {
    transform: scale(1);
  }
}

@media (max-width: 1920px) {
  #nav-bar {
    height: 100px;
  }

  #nav-bar .logo {
    height: 70px;
    width: 150px;
  }

  #nav-bar > ul {
    margin-right: 20px;
  }

  #nav-bar > ul > li > a {
    font-size: 15px;
    padding: 10px 12px;
  }
  #nav-bar > ul > li > a::after {
    width: calc(100% - 20px);
    left: 10px;
    height: 1.25px;
    bottom: 6px;
  }
}

@media (max-width: 991.8px) {
  #nav-bar .logo {
    width: 130px;
    margin-left: 7vw;
  }
}

@media (max-width: 575.98px) {
  #nav-bar .logo {
    padding-bottom: 8px;
    margin-left: 2.5vw;
  }
}

/* MOBILE MENU */

#mobile-menu {
  display: none;
  height: 100%;
}

@media (max-width: 1098.8px) {
  #nav-bar > ul {
    display: none;
  }

  #mobile-menu {
    display: block;
  }
}

/* HAMBURGER */

.hamburger {
  margin-top: 3px;
  width: 40px;
  height: 70px;
  margin-right: 7vw;
}

#hamburger-icon {
  width: 32px;
  height: 25px;
  position: relative;
  z-index: 120;
  margin: auto;
  top: 15px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#hamburger-icon span:nth-child(1) {
  top: 0px;
  background-color: white;
}

#hamburger-icon span:nth-child(2),
#hamburger-icon span:nth-child(3) {
  top: 10px;
  background-color: white;
}

#hamburger-icon span:nth-child(4) {
  top: 20px;
  background-color: white;
}

#nav-bar.nav-white #hamburger-icon span:nth-child(1),
#nav-bar.nav-white #hamburger-icon span:nth-child(2),
#nav-bar.nav-white #hamburger-icon span:nth-child(3),
#nav-bar.nav-white #hamburger-icon span:nth-child(4) {
  background-color: grey;
}

#hamburger-icon.open span:nth-child(1) {
  top: 13px;
  width: 0%;
  left: 50%;
}

#hamburger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #404040;
}

#hamburger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #404040;
}

#hamburger-icon.open span:nth-child(4) {
  top: 13px;
  width: 0%;
  left: 50%;
  background: #404040;
}

@media (max-width: 575.98px) {
  .hamburger {
    margin-right: 2vw;
  }
}

/* MOBILE MENU CONTAINER*/

#mobile-menu-container {
  background-color: white;
  width: 100vw;
  height: 100vh;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;

  display: none;
}

#mobile-menu-container > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 100%;
}

#mobile-menu-container > ul > li {
  cursor: pointer;
}

#mobile-menu-container > ul > li > a {
  font-size: 3vh;
  padding: 3vh 20px;
  display: block;
  color: #404040;
}

/* HERO IMAGE */

#hero-img {
  width: 100vw;
  height: 50vh;
  margin-top: 100px;
  position: relative;
}

#hero-img video {
  object-fit: cover;
  position: absolute;
  z-index: -10;
}

#hero-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (max-width: 1920px) {
  #hero-img {
    margin-top: 70px;
  }
}

@media (max-width: 991.8px) {
    #hero-img {
        height: 40vh;
    }
}

@media (max-width: 575.98px) {
  #hero-img {
    height: 30vh;
  }
}

/* NEWSLETTER */

#newsletter {
  height: auto;
  padding-left: 30px;
  margin: 80px auto;

  border-left: 10px solid #a0b4b4;

  background-color: white;
}

#newsletter h3,
#newsletter p {
  margin-bottom: 15px;
}

#newsletter-form,
#form-sent-notification {
  height: 100%;
}

#newsletter .input-container {
  width: 100%;
}

#newsletter .input-container div {
  width: 49%;
  margin-bottom: 18px;
}

#newsletter .input-container div input {
  border-radius: 10px;
  border: 1px grey solid;
  box-sizing: border-box;
  padding: 0 15px;
  height: 50px;
  width: 100%;
  box-shadow: none;

  font-size: 18px;
  font-family: museo-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
}

#newsletter .button {
  background-color: #529302;
  border: #529302 1px solid;
  color: white;
  margin: 0;
}

.form-error {
  background-color: rgb(223, 111, 111);
  color: white;
  border: 1px solid rgb(139, 47, 47);
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.form-hide {
  display: none;
}

@media (max-width: 991.8px) {
  #newsletter {
    height: auto;
    padding-left: 20px;
  }

  #newsletter-form h3 {
    margin-bottom: 10px;
  }

  #newsletter-form p {
    margin-bottom: 10px;
  }

  #newsletter .input-container div {
    width: 100%;
  }

  #newsletter .button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  #newsletter {
    padding-left: 0;
    border-left: none;
    margin: 50px auto 50px;
  }

  #newsletter .input-container div {
    margin: 5px 0;
  }

  #newsletter .button {
    margin-top: 5px;
  }
}

/* SECTION INTERLUDE */

.section-interlude {
  width: 100%;
  border-left: 10px #a0b4b4 solid;
  margin: 20px 0;
  padding-left: 30px;
  background-color: white;
  opacity: 0.8;
}

.section-interlude h3 {
  line-height: 1.5;
}

@media (max-width: 991.8px) {
  .section-interlude {
    padding-left: 20px;
  }
}

@media (max-width: 575.98px) {
  .section-interlude {
    padding-left: 0;
    border-left: none;
  }

  .section-interlude h3 {
    line-height: 1.3;
  }
}

/* CONTACT SECTION*/

#contact {
  background-color: #f7f7f7;
}

#contact p {
  font-size: 18px;
}

.contact-info {
  height: 500px;
}

#map {
  width: 55%;
  background-color: #f7f7f7;
  height: 100%;
}

.contact-details {
  width: 45%;
  height: 100%;
  max-width: 950px;
  padding: 30px 10vw 30px 40px;
}

.contact-details h4 {
  margin: 0;
}

.contact-details i {
  width: 30px;
  margin: 0 3px 0 1px;
  text-align: center;
}

.p-margin {
  margin-left: 34px;
}

.contact-group {
  margin-top: 20px;
}

.contact-subgroup {
  margin-top: 15px;
}

#autorship {
  width: 100%;
  height: 50px;
  padding: 0 30px;
  background-color: #4d4a4a;
}

#autorship h5 {
  color: #b6b3b3;
  font-size: 14px;
  display: block;
  margin: 0;
}

#autorship a {
  text-decoration: underline;
}

@media (min-width: 992px) {
  #autorship a:hover {
    color: white;
  }
}

@media (max-width: 1440px) {
  .contact-group {
    margin-top: 15px;
  }
}

@media (max-width: 1198.8px) {
  .contact-info {
    height: auto;
  }
  #map {
    width: 100%;
    height: 500px;
    margin-top: 50px;
  }
  .contact-details {
    width: 85%;
    height: auto;
    max-width: initial;
    padding: 40px 0 20px;
    margin: 0 auto;
  }

  .contact-group {
    margin-top: 10px;
  }

  .contact-subgroup {
    margin: 10px 0;
  }
}

@media (max-width: 991.98px) {
  #autorship {
    padding: 0 7vw;
  }

  #autorship h5 {
    font-size: 12px;
    margin-top: 2px;
  }
}

@media (max-width: 680px) {
  .contact-details {
    width: 95%;
  }

  .contact-details p {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .contact-group {
    margin-top: 20px;
  }

  .contact-subgroup {
    margin-top: 20px;
  }

  #autorship {
    justify-content: center;
    padding: 0;
    flex-direction: column;
  }
}

/* PARALLAX */

.parallax-window {
  width: 100%;
  height: 500px;
}

.parallax-window .container {
  height: 100%;
}

.parallax-item {
  width: 60%;
  height: auto;
}

@media (max-width: 991.8px) {
  .parallax-item {
    width: 100%;
  }
}

/* BUTTON */

.button {
  border: 1px solid #404040;
  border-radius: 10px;
  height: 50px;
  width: 220px;
  margin: 80px 0 100px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  font-size: 18px;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;

  transition: all 0.2s ease-in-out;

  z-index: 10;
}

.button.solid{
    background-color: #32B5AF;
    border: white;
    color: white;
}

.button::before {
  content: "";
  display: block;

  width: 100%;
  height: 100%;
  background-color: #32B5AF;
  position: absolute;
  z-index: -1;
  opacity: 0;

  transform: scale(0, 1);
  transition: all 0.2s ease-in-out;
  transform-origin: left;
}

@media (min-width: 992px) {
  .button:hover {
    color: white;
    border-color: #32B5AF;
  }

  .button:hover::before {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@media (max-width: 991.8px) {
  .button {
    margin: 30px 0 50px;
  }
}

@media (max-width: 575.98px) {
  .button {
    width: 100%;
    margin: 10px 0 30px;
  }
}

/* ABOUT US VIDEO */

#about-us-video {
  height: 600px;
  overflow: hidden;

  /* TODO: After blog del */
  margin-bottom: 100px;

  position: relative;
}

#about-us-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s all ease-in-out;
}

#about-us-video .video-play {
  width: 100%;
  height: 100%;

  position: absolute;
  left: 0;
  top: 0;

  transition: 0.8s all ease-in-out;
}

.video-play:hover {
  cursor: pointer !important;
}

#about-us-video .video-play > img {
  width: 130px;
  height: 130px;
}

@media (min-width: 992px) {
  #about-us-video:hover > img {
    transform: scale(1.1);
  }

  #about-us-video:hover .video-play {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

#video-modal {
  z-index: 150;
  height: auto;
  background-color: white;
}

.blocker {
  z-index: 150 !important;
}

@media (max-width: 991.8px) {
  #about-us-video {
    height: 410px;
  }
}

@media (max-width: 575.98px) {
  #about-us-video {
    height: 300px;
  }
}

/* BLOG */

.remove-top-margin {
  margin-top: -100px;
}

.add-bottom-margin {
  margin-bottom: 100px;
}

#blog .blog-container {
  width: 100%;
}

#blog .blog-item {
  width: 100%;
  margin-bottom: 10px;
}

#blog .blog-item-image {
  height: 200px;
  min-width: 200px;
  width: 200px;
  margin: 20px 20px 20px 0;
  overflow: hidden;
}

#blog .blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
  #blog .blog-item-image:hover img {
    transform: scale(1.1);
  }
}

#blog .blog-item-text {
  height: 200px;
}

#blog h5 {
  margin: 0;
}

#blog .button-group {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 40px;
}

#blog .button-group .button {
  position: absolute;
  top: 0;
  margin: 0;
}

#blog .button-group .button:nth-child(1) {
  left: 0;
}

#blog .button-group .button:nth-child(2) {
  right: 0;
}

@media (max-width: 991.8px) {
  #blog .blog-item {
    flex-direction: column;
    margin-bottom: 40px;
  }

  #blog .blog-item-image {
    min-width: initial;
    width: 100%;
    margin: 20px;
    height: 410px;
  }

  #blog .blog-item-text {
    height: auto;
    width: 100%;
  }

  #blog .blog-item-text h3,
  #blog .blog-item-text h5,
  #blog .blog-item-text p {
    margin: 8px 0;
  }

  #blog .button-group {
    margin-top: 20px;
  }
}

@media (max-width: 575.98px) {
  #blog .blog-item-image {
    height: 300px;
  }

  #blog .button-group {
    justify-content: space-between;
  }

  #blog .button-group .button {
    width: 49%;
  }
}

/* index.html */

#home-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
}

#home-hero video {
  object-fit: cover;
  position: absolute;
  z-index: -10;
}

#home-hero header {
  width: 85%;
  margin: 0 auto;
  height: 100%;
  z-index: 100;
  padding-right: 25vw;
}

#home-hero h1 {
  font-size: 60px;
  color: white;
  margin-bottom: 20px;
}

#home-hero p {
  font-size: 26px;
  color: white;
  text-align: left;
}

#home-hero .btn-group {
  margin: 25px 0;
  width: auto;
}

#home-hero .button {
  color: white;
  border-color: white;
  margin: 0 15px 0 0;
  font-size: 20px;
  height: 60px;
}

#home-hero .button::before {
  background-color: white;
}

@media (min-width: 992px) {
  #home-hero .button:hover {
    color: #404040;
    border-color: white;
  }
}

@media (max-width: 1198.8px) {
  #home-hero header {
    width: 85%;
  }
}

@media (max-width: 991.8px) {
  #home-hero header {
    padding-right: 0;
    padding-top: 70px;
  }

  #home-hero h1 {
    margin: 0 0 30px;
  }

  #home-hero p {
    margin: 0 0 30px;
  }

  #home-hero .btn-group {
    width: 100%;
    justify-content: space-between;
    margin-top: 0;
  }

  #home-hero .btn-group .button {
    width: 49%;
  }
}

@media (max-width: 575.98px) {
  #home-hero header {
    width: 95%;
  }

  #home-hero h1 {
    font-size: 30px;
    margin: 0 0 30px;
  }

  #home-hero p {
    margin: 0 0 30px;
    font-size: 18px;
  }

  #home-hero .btn-group {
    flex-direction: column;
  }

  #home-hero .btn-group .button {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    height: 50px;
  }
}

/* OUR BRANDS */

#home-our-brands .our-brands-logos-container {
  width: 100%;
  justify-content: space-between;
}

#home-our-brands .our-brands-logos-container > a {
  height: 65px;
}

.konopie-w-kuchni {
  transform: scale(1.3);
}

#home-our-brands .our-brands-logos-container > a > img {
  height: 100%;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
  #home-our-brands .our-brands-logos-container > a:hover > img {
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
  }
}

#home-our-brands .our-brands-selling {
  width: 100%;
}

#home-our-brands .our-brands-selling-element {
  width: 48%;
}

#home-our-brands .our-brands-selling-element-header {
  margin-bottom: 15px;
  height: 80px;
  width: 100%;
}

#home-our-brands .our-brands-selling-element-header-image {
  width: 35%;
}
#home-our-brands .our-brands-selling-element-header-image img {
  max-width: 100%;
  max-height: 100%;
}

#home-our-brands .our-brands-selling-element p {
  margin: 30px 0 40px;
}

#home-our-brands .button {
  margin-top: 20px;
}
@media (max-width: 1300px) {
  #home-our-brands .our-brands-logos-container > a {
    height: 55px;
  }
}

@media (max-width: 1198.8px) {
  #home-our-brands .our-brands-selling {
    justify-content: center;
  }
  #home-our-brands .our-brands-selling-element {
    width: 100%;
    margin: 40px 0;
  }
}

@media (max-width: 991.8px) {
  #home-our-brands {
    margin-bottom: 50px;
  }

  #home-our-brands .our-brands-logos-container {
    justify-content: center;
  }

  #home-our-brands .our-brands-logos-container > a {
    width: 50%;
    padding: 9%;
    height: 250px;
  }

  #home-our-brands .our-brands-logos-container > a > img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  .konopie-w-kuchni {
    transform: scale(1);
  }

  .konopie-w-kuchni img {
    height: 120px !important;
  }

  #home-our-brands .our-brands-selling-element {
    width: 100%;
    margin: 40px 0;
  }

  #home-our-brands .button {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  #home-our-brands .our-brands-logos-container > a {
    width: 60%;
    padding: 25px 0;
    height: 135px;
    margin: 10px 0;
  }

  #home-our-brands .our-brands-logos-container > a > img {
    height: 90%;
    width: 90%;
  }

  .konopie-w-kuchni {
    transform: scale(0.8);
  }

  #home-our-brands .our-brands-selling-element {
    justify-content: left;
  }

  #home-our-brands .our-brands-selling-element p {
    margin: 0 0 10px;
  }

  #home-our-brands .our-brands-selling-element-header {
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-bottom: 0;
  }

  #home-our-brands .our-brands-selling-element-header h2 {
    margin: 0;
  }

  #home-our-brands .our-brands-selling-element-header-image {
    /* margin-top: 20px; */
    width: 200px;
    height: 100px;
  }

  #home-our-brands .our-brands-selling-element-header-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}

/* OUR BRANDS CAROUSEL */

#home-our-brands .our-brands-carousel {
  height: 350px;
  width: 100%;
  margin: 100px 0;
}

#home-our-brands .carousel-item {
  width: 45%;
  height: 350px;
}

#home-our-brands .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-our-brands .arrow-left {
  height: 40px;
  width: 40px;
  margin: 10px;
}

#home-our-brands .arrow-left i {
  color: lightgrey;
}

#home-our-brands .arrow-right {
  height: 40px;
  width: 40px;
}

.slick-slide {
  margin: 0 10px;
}

@media (max-width: 991.8px) {
  #home-our-brands .our-brands-carousel {
    margin: 80px 0 50px;
  }

  .slick-slide {
    margin: 0 5px;
  }
}

/* PARALLAX 1 */

.parallax1 .section-interlude {
  padding: 50px;
}

.parallax1 .section-interlude h2 {
  margin: 0;
}

@media (max-width: 575.98px) {
  .parallax1 .section-interlude {
    padding: 20px 2vw;
    margin: 0;
    width: 100vw;
  }

  .parallax1 {
    margin-top: 0;
    height: 400px;
  }

  .parallax1 > .container {
    width: 100%;
  }
}

/* ABOUT US */

#home-about-us .about-us-text,
.about-us-image {
  height: 350px;
  width: 50%;
}

#home-about-us .about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-about-us .about-us-text {
  padding: 30px;
}

#home-about-us .about-us-text:nth-of-type(3) {
  text-align: right;
}

@media (max-width: 1198.8px) {
  #home-about-us .about-us-text {
    padding: 20px;
  }
}

@media (max-width: 991.8px) {
  #home-about-us {
    margin-bottom: 50px;
  }

  #home-about-us .about-us-text,
  #home-about-us .about-us-image {
    width: 100%;
  }

  #home-about-us .about-us-image {
    height: 400px;
  }

  #home-about-us .about-us-text {
    height: auto;
    margin: 30px 0 80px;
    padding: 0;
  }

  #home-about-us .about-us-text:nth-of-type(3) {
    text-align: inherit;
  }

  #home-about-us .about-us-container > div:nth-of-type(3) {
    order: 4;
  }

  #home-about-us .button {
    /* margin: 0 0 100px; */
  }
}

@media (max-width: 575.98px) {
  #home-about-us .about-us-image {
    height: 300px;
  }

  #home-about-us .about-us-text {
    margin: 30px 0 40px;
  }
}

/* PARALLAX 2 */

.parallax2 #newsletter {
  padding: 30px 40px 30px 30px;
  height: auto;
}

.parallax2 .parallax-item {
  width: 80%;
  max-width: 800px;
}

@media (max-width: 991.8px) {
  .parallax2 {
    height: 650px;
  }
  .parallax2 .parallax-item {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .parallax2 #newsletter {
    padding: 0;
    margin: 0;
  }

  .parallax2 {
    background-image: none !important;
    margin-top: 0;
    height: auto;
  }

  .parallax2 > .container {
    width: 100%;
    padding: 20px 2.5vw 40px;
    background-color: white;
  }
}

/* jakosc-i-proces-produkcji.html */

#quality-container {
  padding-bottom: 80px;
}

#quality-container .quality-text-section {
  margin-top: 100px;
}

#quality-container .quality-text-section i {
  font-size: 70px;
  color: #32b5af;
}

#quality-container .quality-text-section h2 {
  margin: 30px 0;
  text-align: center;
}

@media (max-width: 575.98px) {
  #quality-container {
    padding-bottom: 50px;
  }

  #quality-container .quality-text-section {
    margin-top: 80px;
  }

  #quality-container .quality-text-section i {
    font-size: 50px;
  }
  #quality-container .quality-text-section h2 {
    margin: 20px 0;
  }

  #quality-container h3 {
    margin: 30px 0;
  }
}

/* o-nas.html */

/* TODO: Newsletter */
#our-mission {
  margin-bottom: 100px;
}

#about-us {
  padding-bottom: 50px;
}

#about-us p {
  margin: 10px 0;
}

#our-story .story-container {
  position: relative;
  width: 100%;
}

#our-story .story-container::before {
  content: "";
  display: block;

  height: calc(100% - 80px);
  width: 2px;
  background-color: #cecece;
  left: 11px;
  position: absolute;
  top: 40px;
}

#our-story .story-item {
  position: relative;
  margin: 30px 0;
  width: 100%;
  align-items: flex-start;
}

#our-story .story-item::before {
  content: "";
  display: block;

  height: 20px;
  width: 20px;
  background-color: #32b5af;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 6px;
}

#our-story .story-item-year {
  width: 10%;
  margin-left: 30px;
}

#our-story .story-item-year p {
  font-weight: 500;
}

#our-story .story-item-text {
  width: 90%;
}

@media (max-width: 991.8px) {
  #our-story .story-item {
    flex-direction: column;
  }

  #our-story .story-item::before {
    top: 7px;
  }

  #our-story .story-item-year {
    justify-content: flex-start;
    margin-left: 40px;
  }

  #our-story .story-item-text {
    margin-left: 40px;
  }
}

@media (max-width: 575.98px) {
  #about-us {
    padding-bottom: 30px;
  }

  #about-us p {
    margin: 10px 0;
  }

  #our-story .story-item::before {
    top: 3px;
    left: 4px;
    height: 15px;
    width: 15px;
  }

  #our-story .story-item-year {
    margin-left: 30px;
  }

  #our-story .story-item-text {
    margin-left: 30px;
    padding-right: 3px;
    margin-top: 3px;
  }

  #our-story .story-item-text p {
    text-align: left;
  }
}

/* nasze-marki.html */

/* TODO: Newsletter */
#our-brands {
  margin-bottom: 100px;
}

#our-brands .our-brands-container {
  width: 100%;
}

#our-brands .our-brands-item {
  width: 100%;
  margin-bottom: 40px;
}

#our-brands .our-brands-item-image {
  width: 35%;
  height: 180px;

  transition: all 0.2s ease-in-out;
}

#our-brands .our-brands-item-image img {
  width: 75%;
  height: 100%;
  object-fit: contain;
}

#our-brands .our-brands-item-text {
  width: 65%;
}

#our-brands > p {
  margin-top: 80px;
}

@media (min-width: 992px) {
  #our-brands .our-brands-item-image:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 991.8px) {
  #our-brands .our-brands-item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }

  #our-brands .our-brands-item-image {
    width: 70%;
    margin-bottom: 0;
    height: 150px;
  }

  #our-brands .our-brands-item-text {
    width: 100%;
  }

  #our-brands > p {
    margin-top: 50px;
  }
}

@media (max-width: 575.98px) {
  #our-brands .our-brands-container {
    margin-top: 30px;
  }

  #our-brands .our-brands-item {
    margin-bottom: 50px;
    height: auto;
  }

  #our-brands .our-brands-item-image {
    width: 80%;
    height: 150px;
  }

  #our-brands .our-brands-item-image img {
    width: 100%;
  }

  #our-brands > p {
    margin-top: 15px;
  }
}

/* szkolenia.html */

/* TODO: Newsletter */
#courses {
  margin-bottom: 100px;
}

#courses .courses-item {
  margin-top: 100px;
}

#courses .course-contact {
  margin-top: 15px;
}
#courses h1 {
  margin: 100px 0 0;
}

#courses .courses-item h2 {
  margin: 0 0 40px 0;
}

#courses .courses-item h4 {
  margin: 30px 0;
}

#courses .course-details i {
  width: 40px;
  margin: 0 3px 0 1px;
  text-align: center;
}

#courses .course-details p {
  margin: 3px 0;
}

@media (max-width: 991.8px) {
  #courses .courses-item h4 {
    margin: 30px 0;
  }

  #courses .course-details {
    display: flex;
  }

  #courses .course-dates {
    width: 40%;
  }

  #courses .course-contact {
    margin-top: 0;
    width: 60%;
  }
}

@media (max-width: 575.98px) {
  #courses .courses-item {
    margin-top: 80px;
  }

  #courses .courses-item h4 {
    margin: 20px 0;
    font-size: 18px;
  }

  #courses .course-details {
    flex-direction: column;
  }

  #courses .course-dates {
    width: 100%;
  }

  #courses .course-contact {
    margin-top: 15px;
    width: 100%;
  }
}

/* blog-post.html */
#blog-post {
  margin: 120px auto 50px;
  width: 50vw;
  max-width: 1000px;
}

#blog-post .blog-post-image {
  width: 100%;
  height: 500px;
}

#blog-post .blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#blog-post h2 {
  margin: 25px 0 0;
}

#blog-post h5 {
  margin: 20px 0 25px;
}

#blog-post p {
  margin-top: 20px;
}

#blog-post .button {
  margin: 40px 0 0;
}

@media (max-width: 1440px) {
  #blog-post {
    width: 60vw;
  }

  #blog-post .blog-post-image {
    height: 450px;
  }
}

@media (max-width: 991.8px) {
  #blog-post {
    margin-top: 70px;
    width: 85vw;
  }

  #blog-post .blog-post-image {
    height: 400px;
  }
}

@media (max-width: 575.98px) {
  #blog-post {
    margin-top: 20px;
    width: 95vw;
  }

  #blog-post .blog-post-image {
    height: 300px;
  }
}

/* Video box */

.videoWrapper {
  position: relative;
  padding-bottom: 56.2%; /* 16:9 */
  /* padding-top: 25px; */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* SHOP PAGE */


#shop-page-content .section-title{
    text-align: center;
}
#shop-page-content .subtitle{
    text-align: center;
    max-width: 700px;
}
#shop-page-content p{
    margin: 15px 0;
}

#shop-page-content .list-item{
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 18px;
    color: #404040;
    position: relative
}

#shop-page-content .list-item::before{
    display: block;
    content: '';
    position: absolute;
    top: 8px;
    left: -15px;
    background-color: #32B5AF;
    border-radius: 50%;
    width: 5px;
    height: 5px;
}

#shop-page-content .button{
    margin: 40px 0 0;
}

#shop-page-content .heading-section{
    padding-top: 20px;
    padding-bottom: 120px;
}

#shop-page-content .text-side{
    width: 50%;
    background-color: #F9F9F9;
    padding-left: 12.5vw;
    padding-right: 120px;
    padding-top: 100px;
    padding-bottom: 100px;
}

#shop-page-content .text-side img{
    margin-bottom: 20px;
}



#shop-page-content .image-side{
    width: 50%;
}


#shop-page-content .image-side img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1198.8px) {
    #shop-page-content .text-side{
        padding-left: 7.5vw;
        padding-right: 50px;
    }
}

@media (max-width: 991.8px) {
    #shop-page-content .text-side{
        width: 100%;
    }

    #shop-page-content .image-side{
        width: 100%;
        max-height: 300px;
    }
}

@media (max-width: 575.98px) {
    #shop-page-content .heading-section{
        padding-top: 30px;
        padding-bottom: 80px;
    }

    #shop-page-content .text-side{
        width: 100%;
        padding-left: 2.5vw;
        padding-right: 2.5vw;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #shop-page-content .image-side{
        width: 100%;
    }
}

/* shop section */

#shop-page-content .shop-image-section .image-side{
    max-height: 700px;
}

#shop-page-content .shop-image-section .text-side img{
    height: 110px;
}

@media (max-width: 991.8px) {

    #shop-page-content .shop-image-section .image-side{
        max-height: 300px;
    }
}

@media (max-width: 575.98px) {
    #shop-page-content .shop-image-section .text-side img{
        height: 90px;
    }
}


/* cooperation section */

#shop-page-content .cooperation-image-section .image-side{
    width: 40%;
}

#shop-page-content .cooperation-image-section .text-side img{
    height: 70px;
}

#shop-page-content .cooperation-image-section .image-side img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

#shop-page-content .cooperation-image-section .text-side{
    width: 60%;
    padding-right: 12.5vw;
    padding-left: 120px;
}

@media (max-width: 1198.8px) {
    #shop-page-content .cooperation-image-section .text-side{
        padding-right: 7.5vw;
        padding-left: 50px;
    }
}

@media (max-width: 991.8px) {
    #shop-page-content .cooperation-image-section .text-side{
        width: 100%;
    }

    #shop-page-content .cooperation-image-section .image-side{
        width: 100%;
        max-height: 300px;
        order: 1
    }
}

@media (max-width: 575.98px) {

    #shop-page-content .cooperation-image-section .text-side{
        width: 100%;
        padding-left: 2.5vw;
        padding-right: 2.5vw;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #shop-page-content .cooperation-image-section .text-side img{
        height: 50px;
    }

    #shop-page-content .cooperation-image-section .image-side{
        width: 100%;
    }
}
