/* UTILITIES */

.comingsoon {
  color: #d12626;
}


@font-face {
  font-family: 'Ambidexter';
  src: url(fonts/ambidexter/Ambidexter_Regular.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: black;
  opacity: 0;
}
.skip-to-main-content-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  color:white;
}

body {
  font-family: 'Abril Fatface';
  background-color: #fbe2ed;
  letter-spacing: 1px;
}

h2 {
  font-size: 20px;
  color: white;
  bottom: -10px;
  font-family: 'Monserrat', sans-serif;
}

h3 {
  font-size: 1em;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  padding: 0;
}



/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.logo-mobile {
  display: none;
}
#nav {
  margin-top: 3%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: black;
}

.nav-links {
  padding-bottom: 0;
}

.nav-links a {
  color: #d12626;
}

/* LOGO */

/* .logo {
  font-size: 32px;
} */

/* NAVBAR MENU */

.menu {
  display: table;
  gap: 1em;
  font-size: 25px;
}

.menu ul {
  display: contents;
}

.menu li:hover {
  background-color: #F6AE1F;
  border-radius: 3px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 14px;
  display: table-cell;
  vertical-align: middle;
}

/* DROPDOWN MENU */

.more {
  position: relative;
}

.dropdown {
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;

  width: 8em;

  text-align: center;
}

.dropdown li:hover {
  background-color: #F6AE1F;
}

.more:hover .dropdown {
  display: block;
}

/*RESPONSIVE NAVBAR MENU STARTS*/

/* CHECKBOX HACK */

input[type=checkbox]{
    display: none;
} 
    
    /*HAMBURGER MENU*/
    
.hamburger {
    display: none;
    font-size: 25px;
    user-select: none;
    text-align: center;
}
    
    /* APPLYING MEDIA QUERIES */
@media (max-width: 600px) {
    
    .menu {     
      display: none;    
      background-color:rgb(249, 220, 225);    
      right: 0;    
      left: 0;    
      text-align: center;    
    }

    .menu img {
      display: none;
    }

    .menu li {
      display: block;
      
    }
    .menu li:hover {
    display: inline-block;
    background-color:#F6AE1F;
    transition: 0.3s ease;
    }
    
    .menu li + li {
    margin-top: 12px;
    }

    #logo-li {
      display: none;
    }
    
    input[type=checkbox]:checked ~ .menu{
    display: block;
    }
    
    .hamburger {
      display: contents;
      padding-top: 37px;
      color:#d12626;
    }
    
    .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
    }
    
    .dropdown li:hover {
    background-color: #F6AE1F;
    }

    .navbar {
      padding: 0;
      display: contents;
    }

    .hamburger img {
      width: 40px;
    }

}


/*---------------------------------------
  LANDING              
-----------------------------------------*/

.l2 {
  display: none;
}

.landing img {
  width: 100%;
}

@media (max-width: 700px) {
  .l1 {
    display: none;
  }

  .l2 {
    display: block;
  }
}


/*---------------------------------------
  HIGHLIGHTS              
-----------------------------------------*/


/* Float four columns side by side */
.column {
  float: left;
  width: 33.33333%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards */
.card {
  text-align: center;
  background-color: transparent;
  border: none;
  justify-content: end;
}

.card img {
  max-width: 100%;
  object-fit:cover;
}

.card h2 {
  position: absolute;
  width: 100%;
  font-family: 'abril fatface', serif;
}

#highlights {
  padding: 1.5%;
  padding-top: 0;
  background-color: #eb3c8b;
}

.column-gloss h2 {
  color: #d12626;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
#about {
  background-color: white;

}
.about-wrap {
  display: inline-block;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.about-wrap { 
  overflow:hidden;
}

.about-wrap div {
   min-height: 300px;
}
.about1 {
  background-color: white;
  float:left; 
  width:50%;
  max-width: 100%;
  padding: 3%;
}

.about1 h2 {
  color: #d12626;
  font-family: 'Abril Fatface';
  font-size: 27px;
}

.about1 p {
  font-family: 'Monserrat';
}

.about2 { 
  overflow:hidden;
  border: 0;
}

.about2 img {
  width: 100%;
}

@media screen and (max-width: 815px) {
  .about1 { 
    float: none;
    margin-right:0;
    width:auto;
      }
    
  .about2 {
    padding: 3%;
    text-align: center;
  }

  .about2 img {
    width: 75%;
  }
  
}

/*---------------------------------------
  FIND US              
-----------------------------------------*/
#findus {
  background-color: white;

}
.wrap-find {
  display: inline-block;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.wrap-find { 
  overflow:hidden;
}

/* .wrap-find div {
   min-height: 300px;
} */
.find1 {
  background-color: white;
  float:right; 
  width:50%;
  padding: 3%;
}

.find1 h2 {
  color: #d12626;
  font-family: 'Abril Fatface';
  font-size: 27px;
}

.find1 p {
  font-family: 'Monserrat';
}

.find1 ul {
  text-align: center;
}

.find2 { 
  border: 0;
  width: 50%;
}

.find2 img {
  width: 100%;
}

@media screen and (max-width: 815px) {
  .find1 { 
    float: none;
    margin-right:0;
    width:auto;
      }
  .find2 {
    padding: 3%;
    width: 100%;
    text-align: center;
  }
  
  .find2 img {
    width: 75%;
  }
}


/* Accent */
.accent img {
  width: 100%;
}

/* products */
.main {
  margin: 3%;
}

.main h2 {
  color: #d12626;
  font-family: 'Abril Fatface';
  text-align: center;
  font-size: 37px;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

.card-prod {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
  #products .card_content {
    padding: 1rem;
    background: linear-gradient(to bottom left, #f07ba8 40%, #ee9323 100%);
    height: 100%;
  }
  .card_title {
    color: #d12626;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: lowercase;
    margin: 0px;
    padding: 2%;
  }

  .card_text {
    color: black;
    font-size: 0.975rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;    
    font-weight: 400;
  }



  /* footer */
  .footer-distributed {
    background-color: white;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font-family: 'Abril Fatface' 16px sans-serif;
    padding: 45px 50px;
  }

  #mission p {
    font-family: 'Monserrat';
  }

  #mission img {
    margin-bottom: 50px;
  }
  
  .footer-distributed .footer-left p {
    color: black;
    font-size: 14px;
    margin: 0;
    text-align: center;
    font-weight: 900;
  }
  /* Footer links */
  
  .footer-distributed p.footer-links {
    font-size: 18px;
    font-weight: bold;
    color: #d12626;
    margin: 0 0 10px;
    padding: 0;
    transition: ease .25s;
  }
  
  .footer-distributed p.footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
    transition: ease .25s;
  }
  
  .footer-distributed .footer-links a:before {
    content: "·";
    font-size: 20px;
    left: 0;
    color: #d12626;
    display: inline-block;
    padding-right: 5px;
  }
  
  .footer-distributed .footer-links .link-1:before {
    content: none;
  }
 
  .footer-distributed .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 45%;
  }
  

  .contact a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 2px;
    font-size: 20px;
    color: black;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition:all .25s;
  }
  
  .footer-distributed .footer-right a:hover{transform:scale(1.1); -webkit-transform:scale(1.1);}
  
  .footer-distributed p.footer-links a:hover{text-decoration:underline;}

  .contact p {
    font-family: 'Monserrat';
    width: 75%;
  }
  
  /* Media Queries */
  
  @media (max-width: 600px) {
    .footer-distributed .footer-left, .footer-distributed .footer-right {
      text-align: center;
    }
    .footer-distributed .footer-right {
      float: none;
      margin: 0 auto 20px;
    }
    .footer-distributed .footer-left p.footer-links {
      line-height: 1.8;
    }
  }

  .accent2 {
    width: 100%;
    position: absolute;
  }

  #top {
    padding-bottom: 5%;
  }
  .top {
    text-decoration: none;
    color: #d12626;
    margin-bottom: 3%;
  }

  .pl {
    color: black;
  }


  /* general responsive queries */
  @media screen and (max-width: 600px) {
    h2 {
      font-size: 48px;
    }

    .l1 {
      width: 600px;
      height: auto;
    }
  }

  @media screen and (max-width: 430px) {
    h2 {
      font-size: 35px;
    }

    .l1, .l2 {
      width: 430px;
      height: auto;
    }
  }

  @media screen and (max-width:455px) {
    #mission img {
      width: 100%;
      height: auto;
    }
    
  }

  @media screen and (min-width: 740px) and (max-width:1023px) {
    h2 {
      font-size: 26px;
    }
  }
  @media screen and (min-width: 1023px) and (max-width:1223px) {
    h2 {
      font-size: 35px;
    }
  }



  @media screen and (min-width: 815px){
    .l1 {
      width: 815px;
      height: auto;
    }
    .card img {
      min-width: 246px;
      height: auto;
    }
  }

  @media screen and (min-width: 1224px) {
    .menu {
      font-size: 37px;
    }

    h2 {
      font-size: 43px;
    }

    .about1 h2, .find1 h2 {
      font-size: 40px;
    }

    .main h2 {
      font-size: 50px;;
    }
    .l1 {
      width: 1224px;
      height: auto;
    }

    .card img {
      min-width: 379px;
      height: auto;
    }

  }

  @media screen and (min-width: 2000px) {
    .menu {
      font-size: 54px;
    }

    .logo {
      width: 150px;
    }
    .l1 {
      width: 2000px;
      height: auto;
    }

    .card img {
      min-width: 629px;
      height: auto;
    }
  }



