:root {
  --red: #e52529;
  --grey: #24252a;
  --light-red: #ea0200;
}

html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  scroll-behavior: smooth;
  -webkit-transition: all ease-in 1s;
  -o-transition: all ease-in 1s;
  transition: all ease-in 1s;
}

#cover {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background: white;
  z-index: 9999;

  background-color: #fff;
}

#cover > .preloader {
    height: 200px;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.animatePreloader {
    animation-name: preload;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10px 20px;
  background-color: #fff;
  z-index: 999;
  border-bottom: 6px solid #f2f2f2;
}

.menu > a > .logo {
  display: inline-block;
  margin: 0;
}

.menu > a {
  color: var(--red);
  text-decoration: none;
  padding: 5px;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 700;
}

.menu > a:last-child {
  background-color: var(--light-red);
  color: #fff;
  padding: 10px;
}

.menu > a:hover {
  color: gray;
}

.slider {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.slider > img {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  display: none;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.slider > img:first-child {
    display: block;
}

.slider > .arrow {
    cursor: pointer;
    position: absolute;;
    display: block;
    top: 500px;
    height: 40px !important;
    width: auto !important;
    z-index: 0;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 20px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    border: 0;

    -webkit-animation-direction: alternate;

            animation-direction: alternate;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-duration: 1.3s;
            animation-duration: 1.3s;
    -webkit-animation-iteration-count: 4;
            animation-iteration-count: 4;
  }

.slider > .arrow:hover {
    -webkit-box-shadow: 14px 4px 30px -4px rgba(0,0,0,0.66);
            box-shadow: 14px 4px 30px -4px rgba(0,0,0,0.66);
}

.slider > .rightArrow {
    right: 20px;
    -webkit-animation-name: buttonEncouragementRight;
            animation-name: buttonEncouragementRight;
}

.slider > .leftArrow {
    left: 20px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-animation-name: buttonEncouragementLeft;
            animation-name: buttonEncouragementLeft;
}

.centeredAxisX{
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}

.imageCaption {
    top: 18vh;
    background-color: var(--light-red);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-shadow: 2px 2px 2px #000;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 5px;
    font-weight: 700;
    word-spacing: 10px;
}

.gallery {
  padding-top: 4%;
  padding-bottom: 4%;
  width: 100%;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.gallery > .elementWrapper {
	-webkit-box-flex: 1;
	   -ms-flex: 1 0 auto;
	      flex: 1 0 auto;
	max-width: 28%;
	margin: 9px;
	border: 1px solid transparent;
	padding: 20px;
	text-align: justify;
    display: grid;
    justify-content: stretch;
}

.gallery > .elementWrapper:hover {
  border-color: gray;
}

.gallery > .elementWrapper > img {
  cursor: pointer;
  border: 1px solid #fff;
  max-width: 100%;
  width: 100%;
  -webkit-transition: -webkit-transform ease-in .75s;
  transition: -webkit-transform ease-in .75s;
  -o-transition: transform ease-in .75s;
  transition: transform ease-in .75s;
  transition: transform ease-in .75s, -webkit-transform ease-in .75s;
}

.elementDescription {

}

.elementTitle {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 10px;
  padding-left: 0;
}

.gallery > .elementWrapper > a {
	padding: 20px;
	display: block;
	font-size: 1.6rem;
	text-decoration: none;
	text-align: center;
	border: 2px solid var(--light-red);
	color: var(--light-red);
	background-color: #fff;
	-webkit-transition: all ease-in .75s;
	-o-transition: all ease-in .75s;
	transition: all ease-in .75s;
	display: flex;
	align-items: center;
	align-self: flex-end;
	justify-content: center;
	height: 3vh;
}

.gallery > .elementWrapper > a:hover {
    cursor: pointer;
    border: 2px solid #fff;
    color: #fff;
    background-color: var(--light-red);
}

.jackParameters {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-collapse: collapse;
    display: block;
    margin: 30px auto;
    display: table;
}

.jackParameters > tbody > tr > td {
    border: 2px solid #000;
    padding: 10px;
}

.bar {
  background-color: var(--grey);
  width: 100%;
}

.barContent {
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

.logo, .barTitle {
  color: #fff;
  display: inline-block;
  margin: 2rem auto;
  padding: 2rem;
  vertical-align: middle;
  font-size: 1.7rem;
  word-spacing: 3px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.bar > .barContent > .logo {
  height: 50px;
}

.tile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 100%;
	padding-left: 50px;
	padding-right: 50px;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.tile > img {
	padding: 25px;
    max-width: 30%;
}

.tileTitle, .tableHeader {
	display: ruby-base;
	text-transform: uppercase;
	color: var(--light-red);
	font-size: 1.5rem;
	margin: 2rem;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	text-align: center;
	font-weight: 700;
}

.creamyBackground {
  background-color: #f3f3f3;
}

.tileDescription {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
	line-height: 1.5;
	width: 35%;
	padding: 20px;
}

.tableHeader {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.featuresTable {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
	width: 70%;
	margin: 20px auto;
  border-collapse: collapse;
}

.featuresTable > tbody > tr > td {
  text-align: center;
  border: 1px solid #000;
  padding: 25px;

}

.featuresTable > tbody > tr > td:first-child {
  font-weight: 700;
}

.barText {
  line-height: 2;
  padding: 5rem 20px;
  text-align: center;
  background-color: #e1e1e1;
  font-size: 1.7rem;
}

.contactTile {
	background-color: var(--red);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	color: #fff;
	padding: 10px;
}

.contactTile > section {
  width: 30%;
  padding: 3%;
  text-align: center;
}

.contactTile > section > img {
  margin-bottom: 1rem;
}

.contactTile > section > header {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.4rem;
}

.contactTile > section > p {
  line-height: 1.4;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer > section {
  width: 25%;
  padding: 20px;
}

.footer > section:first-child {
  margin-left: 10%;
}

.footer > section > h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer > section > a, .footer > section > p {
  font-size: .9rem;
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: .5rem;
}

.footer > section > a:hover {
  text-decoration: underline;
}

.footerGallery > img {
  max-width: 100%;
}

.newsletter {

}

.newsletter > h3 {
	display: block;
	background-color: var(--grey);
	color: #fff;
	padding: 20px;
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: bold;
	max-width: 92.5%;
    margin: 0;
    margin-top: -5px;
}

.newsletter > .newsletterBody {
  background-color: #d9d9d9;
  padding: 20px;
}

.newsletter input[type=email],
.newsletter input[type=submit] {
  padding: 12.5px;
  border: 0;
  font-size: 1rem;
  margin: 5px;
  background-color: transparent;
  border: 1px solid var(--grey);
}

.newsletter input[type=submit]:hover {
  cursor: pointer;
}

.bottomBar {
  padding: 20px;
}

.bottomBar, .bottomBar > a {
  text-decoration: none;
  text-align: center;
  background-color: #f2f2f2;
  color: #000;
}

/* Responsive Web Design - Media Query */

@media (min-width: 300px) and (max-width: 600px){

  html, body {
    font-size: 16px;
  }

  .slider > .arrow {
      top: 250px;
      height: 20px !important;
  }

}

@media (min-width: 600.0001px) and (max-width: 950px){

    .gallery > .elementWrapper {
  	-webkit-box-flex: 2;
  	    -ms-flex: 2 0 auto;
  	        flex: 2 0 auto;
    max-width: 65%;
  	border: 1px solid transparent;
  	padding: 15px;
  	text-align: justify;
  }

  .menu {
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px !important;
  }

  .menu > a {
    font-size: .95rem;
    line-height: 1;
    padding: 7.5px;
  }

  .logo {
  }

  .tile {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  }

  .barContent > .logo {
      padding-bottom: 0;
  }

  .logo, .barTitle {
  	margin: 1rem auto;
  	padding: 1rem;
  	font-size: 1.2rem;
  }

  .tileDescription {
    width: 90%;
  }

  .featuresTable {
    width: 95%;
  }

  .tableHeader {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .barText {
      font-size: 1.5rem;
      padding: 3rem 15px;
  }

  .contactTile > section {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .newsletter {
    display: none;
  }

  .tile > img {
  	-ms-flex-item-align: center;
  	    -ms-grid-row-align: center;
  	    align-self: center;
    max-width: 85%;
  }
}

@media (min-width: 950px) and (max-width: 1400px){
  .menu {
    padding: 10px 20px;
  }

  .gallery > .elementWrapper {
      max-width: 40%;
  }

  .menu > a {
    font-size: .9rem;
    padding-right: 4px;
    line-height: 1;
  }

  .menu > a > .logo {
      padding: 1rem;
  }

  .tile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .tileDescription {
      width: 75%;
  }

  .tile > img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    max-width: 50%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .slider > .arrow {
      top: 400px;
  }

  .jackParameters > tbody > tr > td {
      font-size: 0.85rem;
  }
}

@media (min-width: 1400.001px){
    .menu {
         height: 100px;
    }
}

/* Animations - keyframes */

@-webkit-keyframes buttonEncouragementRight
{
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.12);
                transform: scale(1.12);
    }
}

@keyframes buttonEncouragementRight
{
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.12);
                transform: scale(1.12);
    }
}

@-webkit-keyframes buttonEncouragementLeft
{
    0% {
        -webkit-transform: scale(1) rotate(180deg);
                transform: scale(1) rotate(180deg);
    }

    100% {
        -webkit-transform: scale(1.12) rotate(180deg);
                transform: scale(1.12) rotate(180deg);
    }
}

@keyframes buttonEncouragementLeft
{
    0% {
        -webkit-transform: scale(1) rotate(180deg);
                transform: scale(1) rotate(180deg);
    }

    100% {
        -webkit-transform: scale(1.12) rotate(180deg);
                transform: scale(1.12) rotate(180deg);
    }
}

@keyframes preload {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: 85%;
    }
}

/* Created by Igor Sosnowicz @ 2021 */
