/* CSS Description Order */
/*
- font-size
- background-color
- color
- font-family
- padding
- margin
- position
- width/height

}
*/

body {
  background-color: #e6e6e6;
  min-height: 100vh;
  height: 100%;
  width: 100%;
}

/*
----- Font Families-----
*/

@font-face {
  font-family: Catamaran;
  font-weight: bold;
  font-style: normal;
  src: url(../fonts/Catamaran-Bold.ttf);
}

@font-face {
  font-family: Catamaran;
  font-weight: 300;
  font-style: normal;
  src: url(../fonts/Catamaran-Light.ttf);
}

@font-face {
  font-family: Catamaran;
  font-weight: 200;
  font-style: normal;
  src: url(../fonts/Catamaran-ExtraLight.ttf);
}

@font-face {
  font-family: Catamaran;
  font-weight: normal;
  font-style: normal;
  src: url(../fonts/Catamaran-Regular.ttf);
}

@font-face {
  font-family: Coolvetica;
  font-weight: normal;
  font-style: normal;
  src: url(../fonts/Coolvetica.ttf);
}

/*
----- Element Tags-----
*/
* {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24vw;
}

div {
  font-size: 18px;
}

.title {
  font-size: 48px;
  line-height: 48px;
}

.content {
  font-size: 18px;
  line-height: 36px;
}

a, a:hover, a:visited {
  text-decoration: none;
  color: inherit;
}

/*
----- Helpers -----
*/

.center-text {
  text-align: center;
}

.left-text{
  text-align: left;
}

.indent {
  text-indent: 1.5vw;
}

.catamaran {
  font-family: Catamaran;
  font-weight: normal;
  font-style: normal;
}

.catamaran-bold {
  font-family: Catamaran;
  font-weight: bold;
  font-style: normal;
}

.catamaran-light {
  font-family: Catamaran;
  font-weight: 300;
  font-style: normal;
}

.catamaran-extra-light {
  font-family: Catamaran;
  font-weight: 200;
  font-style: normal;
}

.coolvetica {
  font-family: Coolvetica;
  font-weight: normal;
  font-style: normal;
}

/*
----- Full Layout -----
 */

.full-layout {
  display: grid;
  grid-template-rows: auto 1fr;
}

/*
----- Header -----
*/
.website-header {
  height: 100px;
  width: 100vw;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.website-logo {
  height: inherit;
  display: grid;
  place-items: center;
}

.logo-image picture {
  max-width: 100%;
}

.nav-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav-container > div{
  margin: 25px;
}

.hover-border {
  height: 28px;
  line-height: 28px;
  width: 110px;
  border-radius: 15px;
  background-color: #ffffff;
  transition: 0.3s;
  text-align: center;
}

.hover-border:hover {
  background-color: black;
  color: white;
  box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, .5);
}

/*
----- Responsive Header -----
 */

#small-logo{
  width: 50px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #222222;
  margin: 5px;
  transition: none;
}

.hamburger:focus {
  outline: none;
}

.hamburger-nav-container {
  display: none;
  z-index: 999;
}

/*
---- Main Page ----
*/


.main-page-grid-layout {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 100px);
  background-color: #e6e6e6;
  display: grid;
  grid-template-columns: 1fr 3fr 3fr 1fr;
  grid-template-areas:
  ". carousel greeting .";
}

#main-page-wave {
  position: absolute;
  background-color: #e6e6e6;
  width: 110%;
  height: calc(100vh - 100px);
  z-index: 0;
}

.carousel-section {
  grid-area: carousel;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.mp-carousel-container {
  display: grid;
  place-items: center;
  min-width: 235px;
  min-height: 235px;
  width: 25vw;
  height: 25vw;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 148, 59, 0.50) 0%, rgba(102, 204, 255, 0.50) 100%);
  transition: 0.30s;
}

.mp-carousel-container.transparent {
  background: linear-gradient(90deg, rgba(0, 148, 59, 0.25) 0%, rgba(102, 204, 255, 0.25) 100%);
}

.mp-carousel-strip {
  min-width: 100%;
  min-height: 100%;
  width: 25vw;
  height: 25vw;
  display: flex;
}

.mp-carousel-slide {
  min-width: 100%;
  min-height: 25vw;
  display: grid;
  place-items: center;
}

.mp-carousel-photo {
  min-width: 207px;
  min-height: 207px;
  width: 21.25vw;
  height: 21.25vw;
  transition: 0.35s ease-in;
}

.arrow {
  min-width: 50px;
  min-height: 50px;
  width: 4vw;
  height: 4vw;
  margin: 3vw;
}

.arrow:hover {
  cursor: pointer;
  opacity: 0.9;
}

.arrow:hover path {
  fill: #2a4870;
}

.greeting {
  grid-area: greeting;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.greeting-line {
  font-size: 7vw;
  line-height: 7vw;
  opacity: 0;
  transform: translateY(100%);
}

/*
----- About Us -----
 */

.about-us-container {
  display: flex;
  flex-direction: column;
}

.about-us-container > div {
  display: flex;
  align-content: center;
  justify-content: space-evenly;
}

.ab-our-mission {
  background-color: #e6e6e6;
  padding: 100px;
  overflow: hidden;
  position: relative;
}

.ab-experience {
  background-color: #5264bf;
  color: #e6e6e6;
  padding: 20px;
}

.ab-quality {
  background-color: #e6e6e6;
  padding: 20px;
}

.ab-image {
  max-width: 450px;
  min-width: 200px;
  width: 32vw;
  object-fit: cover;
}

.ab-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  width: 24vw;
}

.ab-text-box * {
  margin: 15px;
}

#about-us-wave {
  position: absolute;
  bottom: 0;
  opacity: 0.75;
  width: 105vw;
  height: 40%;
  overflow: hidden;
}

.retailers {
  display: flex;
  flex-direction: column;
  padding: 50px;
  background-color: #ffffff;
}

.retailers-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.retailers-flex > img {
  min-width: 150px;
  width: 10%;
  margin: 30px;
}

/*
---- Products ----
*/

.products-container {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  background-color: #e6e6e6;
  padding: 40px;
}

.products-container > div {
  margin: auto;
}

.products-carousel {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.products-carousel > * {
  margin: 10px;
}

.products-carousel-container {
  display: grid;
  place-items: center;
  min-width: 210px;
  min-height: 270px;
  width: 27vw;
  height: 32vw;
  overflow: hidden;
}

.products-carousel-strip {
  min-width: 210px;
  min-height: 270px;
  width: 27vw;
  height: 32vw;
  display: flex;
  flex-direction: row;
}

.products-slide {
  min-width: 100%;
  min-height: 270px;
  width: 27vw;
  height: 32vw;
  display: flex;
  place-items: center;
}

.products-slide img {
  min-width: 216px;
  min-height: 270px;
  width: 27vw;
  height: 32vw;
  object-fit: cover;
}

.products-text-box {
  width: 50vw;
  display: flex;
  flex-direction: column;

}

.products-text-box > * {
  margin: 15px;
}

.product-description-text{
  margin: 5px;
}

.products-list {
  list-style: none;
  font-size: 18px;
  line-height: 36px;
}


.products-list li::before {
  content: ' ';
  display: inline-block;
  height: 1em;
  width: 1em;
  background-image: url(../img/products/ribbon-bullet.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

/*
----- Contact Us -----
 */

.contact-us-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
  background-color: #e6e6e6;
  overflow: hidden;
  z-index: 0;
}

#contact-us-wave{
  position: absolute;
  bottom: 0px;
  opacity: 0.35;
  width: 105vw;
  height: 30%;
  overflow: hidden;
}

/*
----- Media Queries -----
 */

@media screen and (max-width: 1024px) {
  .title {
    font-size: 28px;
    line-height: 28px;
    text-align: center;
  }

  .content {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1024px) {

  .website-header{
    justify-content: space-between;
    align-content: center;
  }

  .website-header > div{
    margin: 20px;
  }
  .main-page-grid-layout {
    display: flex;
    height: 600px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #e6e6e6;
  }

  .greeting-line {
    font-size: 64px;
    line-height: 64px;
  }
}

@media screen and (max-width: 1024px) {

  .nav-container {
    display: none;
  }

  body {
    overflow-x: hidden;
    background-color: #e6e6e6;
  }

  .hamburger {
    display: block;
  }

  .hamburger .line{
    transition: 0.5s ease-in;
  }

  .active .line-1{
    height: 3px;
    transform: rotateZ(-45deg) translate(-5px, 6px);
  }

  .active .line-2{
    opacity: 0;
  }

  .active .line-3{
    height: 3px;
    transform: rotateZ(45deg) translate(-5px, -6px);
  }

  .hamburger-nav-container {
    display: block;
    position: absolute;
    top: 100px;
    right: 0;
    width: 60%;
    height: calc(100vh - 100px);
    background-color: #f1f1f1;
    transform: translateX(100%);
    transition: 0.5s ease-in;
  }

  .hamburger-nav-container.active {
    transform: translateX(0%);
  }

  .nav-list{
    position: relative;
    top: 20%;
    left: 20%;
  }

  .nav-list li{
    width: 100%;
    padding: 5px;
    list-style: none;
    color: #505050;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: none;
  }

  .hamburger-nav-container a:active {
    background-color: #47547a;
    opacity: 0.75;
  }

  .link-icon{
    display: inline-block;
    height: 18px;
    width: 18px;
    fill: #3e3e3e;
  }
  #Capa_1{
    width: 19px;
    height: 19px;
  }
}


@media screen and (max-width: 1024px) {

  .about-us-container > div {
    display: flex;
    justify-content: center;
  }

  .ab-our-mission {
    background-color: #e6e6e6;
    padding: 10px;
    overflow: hidden;
    position: relative;
  }

  .ab-our-mission .title{
    font-size: 28px;
  }

  .ab-experience {
    flex-direction: column;
    align-items: center;
    background-color: #5264bf;
    color: #e6e6e6;
    padding: 10px;
  }

  .ab-quality {
    flex-direction: column-reverse;
    align-items: center;
    background-color: #e6e6e6;
    padding: 10px;
  }

  .ab-image {
    width: 60vw;
    object-fit: cover;
  }

  .ab-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95vw;
  }

  #about-us-wave {
    position: absolute;
    bottom: 0;
    opacity: 0.75;
    width: 100vw;
    height: 30%;
    overflow: hidden;
  }

  .retailers {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
  }

  .retailers > div{
    margin: 15px;
  }

  .retailers-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .retailers-flex > img {
    min-width: 100px;
    margin: 15px;
  }
}

@media screen and (max-width: 1024px){
  .products-container {
    padding: 10px;
  }

  .products-carousel {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .products-carousel > * {
    margin: 10px;
  }

  .products-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95vw;
  }

  .products-text-box * {
    text-align: center;
    margin: 15px;
  }

  .products-list {
    list-style: none;
    font-size: 15px;
  }

}

@media screen and (max-width: 768px){

  .contact-us-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #e6e6e6;
    overflow: hidden;
    z-index: 0;
    padding-top: 35%;
  }

  .contact-us-container .title{
    text-align: left;
  }

  #contact-us-wave{
    bottom: 15%;
  }
}
