*{
  margin:0px;
  padding:0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color:#231f20;
  background: #fff;
  font-size:16px;
  margin: 0px;
}

h1,h2,h3,h4{
   font-family: 'Poppins', sans-serif;
   letter-spacing: .5px;
}

h1{
  margin: 0 0 40px;
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1.25em;
}

h2{
  color: #22aae2;
  font-weight: 300;
  margin:0 0 20px;
  text-transform: uppercase;
}

h3{
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 1.33em;
}

p{
  margin: 0 0 20px;
  line-height: 1.5em;
}

a{
  text-decoration: none;
  transition: .4s;
  color: inherit;
}

.subpage-content p a{
  border-bottom: 1px solid #f394be;
}

.subpage-content p a:hover{
  color: #f394be;
}

ul, ol{
  padding-left:40px;
}

ul li, ol li{
  margin-bottom: 5px;
}

h1.no-margin{
  margin-bottom: 0px !important;
}

.subpage-content{
  padding-top: 40px !important;
}

/*SUBFOOTER UNIVERSAL STYLES*/

#sub-footer{
  background: #231f20;
  color: #fff;
  font-size: .9em;
  text-align: center;
  padding:30px 20px;
}

#sub-footer a{
  border-bottom: 1px solid #f394be;
  font-weight: bold;
}

#sub-footer a:hover{
  color: #f394be;
}

/*FOOTER DROPDOWN*/

#footerDropdownContent{
    display: none;
    flex-direction: column;
    margin-top:10px;
    border-top: 2px solid #231f20;
    padding:10px 0 0px 5px;
  }
#footerDropdownContent.show {
    display: flex;
  }

  #footerDropdownContent a{
    margin-bottom: 10px;
    font-weight: normal;
  }

  #footerDropdownContent a:last-of-type{
    margin-bottom: 0px;
  }

   #footerDropdownContent {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }


@media (min-width: 1100px) {

  .container {
    width:1100px;
    margin:0 auto;
  }

  .content{
    padding: 80px 0;
  }

  /*** HEADER DESKTOP STYLES ***/

  #navContainer{
    width: 100%;
    transition: .2s;
    position: fixed;
    margin-top:40px;
    top: 0;
    min-height: fit-content;
    z-index: 1000;
    padding: 6px 0 7px;
  }

  #navContainer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #navContainer img{
    width: 180px;
    height: auto;
  }

  #nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding:20px 40px;
    border-radius: 10px;
    width: 760px;
    box-shadow: 0px 8px 16px 4px rgba(0,0,0,0.25);
  }

  .topnav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px;
  }

  .topnav a{
    color: #231f20;
    padding: 10px 4px;
    font-weight: bold;
  }

  .topnav a:hover{
    color: #f394be;
  }

  #nav-contact{
    display: flex;
    align-items: center;
  }

  .nav-social{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-social i{
    margin:0 5px;
    font-size: 1.25em;
    transition: .4s;
    font-weight: bold;
  }

  .nav-social i:hover{
    color: #f394be;
  }

  .nav-phone{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #231f20;
    margin-left:20px;
  }

  .nav-phone p{
    margin-bottom: 0px;
  }

  .nav-phone span{
    font-size: 1.15em;
    font-weight: bold;
  }

  .nav-phone i{
    padding:10px 13px;
    font-size: 1.5em;
    margin-right:10px;
    border-radius: 50%;
    color: #231f20;
    background: #22aae2;
    transition: .4s;
    margin-right: 10px;
  }

  .nav-phone a:hover{
    color: #f394be;
  }

  #myTopnav a.icon{
    display: none;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .hidden {
    display: none;
    position: absolute;
    z-index: 1;
    padding: 10px 0;
    box-shadow: 0px 8px 16px 1px rgba(0,0,0,0.2);
    background: rgb(255, 255, 255, 1);
    border-radius: 10px;
    margin-top:5px;
  }

  .hidden a {
/*    color: white;*/
    padding: 4px 16px;
    text-decoration: none;
    display: block;
/*    background: #22aae2;*/
    border-bottom: none;
    font-size: .9em;
    width: 140px;
    transition: .4s;
    font-size: .95;
  }

  .hidden a:hover{
/*    background-color: #fff;*/
    color: #f394be;
    border-bottom: none;
    display: block;
    opacity: 1;
  }

  /*.hidden-long a{
    width: 170px;
  }*/

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

  .dropbtn{
    cursor: default;
  }

  a.dropbtn:hover{
    color:#f394be;
  }

  .hidden:hover{
      opacity: 1;
  }

  .hidden {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

  /***HERO DEKSTOP STYLES***/

  #homepage-hero{
    background: url('images/homepage-hero.jpg') no-repeat 67% 50%;
    background-size: cover;
    height: 700px;
    margin-top: 0px;
    padding-bottom: 140px;
    color: #e6e3df;
  }

  #homepage-hero .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-top:20px;
  }

  #homepage-hero h1{
    font-size: 4em;
    color: #fff;
    font-weight: 900;
    line-height: 1.2em;
    margin: 20px 0 40px;
  }

  #hero-text{
    width: 540px;
  }

  .title-line{
    display: flex;
    align-items: center;
  }

  #homepage-hero h2{
    text-transform: uppercase;
    color: white;
    margin-bottom: 0px;
    font-weight: bold;
  }

  .short-pink-line{
    background: #f394be;
    height: 4px;
    width: 50px;
    margin-right:16px;
  }

  #homepage-hero p{
    color: #231f20;
  }

  #hero-links a{
    padding:10px 20px;
    margin-right:10px;
    border-radius: 35px;
    display: inline-block;
    width: 150px;
    text-align: center;
    font-weight: bold;
    color: #231f20;
  }

  #hero-links a:first-of-type{
    background: #f394be;
/*    color: white;*/
    border:3px solid #f394be;
  }

  #hero-links a:last-of-type{
    color: #f394be;
    border:3px solid #231f20;
    background: #231f20;
  }

  #hero-links a:first-of-type:hover{
    background: white;
    border:3px solid white;
    color: #f394be;
  }

  #hero-links a:last-of-type:hover{
    background: #fff;
    border:3px solid #fff;
    color: #231f20;
  }

  /*MAIN BODY DESKTOP*/

  #dip-it{
    padding-top: 20px;
  }

  #dip-it .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dip-it{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 320px;
  }

  .dip-it img {
    width: 95px;
    height: auto;
  }

  .dip-it-text{
    margin-left:40px;
    font-weight: bold;
  }

  .dip-it-text img{
    height: 75px;
    width: auto;
    margin-bottom: 10px;
  }

  #about-home .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #about-home-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 450px;
  }

  #about-home-text h4{
    color: #22aae2;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 1.2em;
  }

  #about-home-text h1{
    font-weight: 900;
    font-size: 3em;
    margin-bottom: 10px;
  }

  .about-checkmark{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    font-weight: 600
  }

  .about-checkmark p{
    width: 50%;
    display: flex;
    align-items: center;
  }

  .about-checkmark i{
    color: #f394be;
    font-size: 2.2em;
    margin-right:8px;
  }

  .about-img{
    width: 540px;
  }

  .square-border{
    border-radius: 10px;
    height: 460px;
    width: 450px;
    border:15px solid #f394be;
    position: absolute;
    z-index: 1;
  }

  .about-img img{
    width: 500px;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 5px;
    margin-top:40px;
    margin-left:40px;
  }

  /*FOOTER DESKTOP*/

  footer{
    padding: 200px 20px 60px;
    background: url(images/footer-background.webp) no-repeat top center;
    background-size: cover;
  }

  footer .container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-col{
    max-width: 300px;
    min-width: 100px;
    margin:0 80px;
  }

  .footer-col a{
    font-weight: 600;
  }

  .footer-col a:hover{
    color: white;
  }

  .footer-col img{
    margin-bottom: 20px;
    width: 200px;
    height: auto;
  }

  .footer-social {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-social p{
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-social a{
    margin: 0 10px;
    color: white;
    font-size: 1.5em;
  }

  .footer-social a:hover{
    color: #f394be;
  }

  .footer-col h3{
    margin-bottom: 5px;
  }

  .short-white-border{
    width: 60px;
    height: 5px;
    border-radius: 5px;
    background: white;
    margin-bottom: 20px;
  }

  #footer-contact p{
    display: flex;
    align-items: center;
    line-height: 1.33em;
  }

  #footer-contact i{
    color: white;
    font-size: 1.25em;
    margin-right: 10px;
  }

  /*SUBPAGE DESKTOP*/

  .subpage-hero{
    background: url(images/subpage-hero.jpg) no-repeat bottom center;
    background-size: cover;
    height: 340px;
    padding-bottom: 180px;
  }

  .subpage-hero .container{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top:40px;
    height: 100%;
  }

  .subpage-hero h1{
    margin-bottom: 0px;
    color: white;
  }

  /*MENU DESKTOP STYLES*/

  .flavors-container{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top:60px;
  }

  .flavors-container:first-of-type{
    padding-top:60px;
    border-top:1px solid #f394be;
  }

  .flavors-container h1{
    width: 100%;
    text-align: center;
    color: #22aae2;
    margin-bottom: 60px;
  }

  .flavor{
    width: 45%;
    margin: 0 0 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid lightgray;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flavor img{
    width: 150px;
    height: auto;
  }

  .flavor span{
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.25em;
  }
  
  .flavors-container h2{
    margin:20px 0 80px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    color: #f394be;
    border-bottom: 1px solid #f394be;
  }

  .flavor p{
    font-size: .9em;
  }

  .combo-container img{
    margin-right: 30px;
  }

  .flavors-container .flavor:last-of-type{
    padding-bottom: 0px;
    border-bottom: none;
    margin-bottom: 0px;
  }

  /*CONTACT DESKTOP*/

  #contact-content .container{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #contact-content iframe{
    width: 400px;
    height: 250px;
    border:1px solid lightgray;
    margin-left:100px;
  }

  .contact-text a{
    border-bottom: 1px solid #f394be;
  }
  .contact-text a:hover{
    color: #f394be;
  }


}

@media (max-width: 1090px) {

  .container {
    width: 100%;
    margin:0 auto;
  }

  .content{
    padding: 60px 20px;
  }

  /***** HEADER MOBILE STYLES *****/

  #nav-contact{
    display: none;
  }

  .nav-phone{
    display: none;
  }

  #navContainer{
    width: 100%;
    background-color: #231f20 !important;
    transition: 0.4s;
    position: fixed;
    top: 0;
    z-index: 100;
    margin-top:0px !important;
/*    border-bottom: 1px solid gray;*/
  }

  #nav{
    padding:0px 10px 0;
    height: fit-content;
  }

  #navContainer img{
    width: 180px;
    height: auto;
    margin: 10px 0 6px 20px;
  }

  /* Links inside the navbar */
  .topnav a { 
    float: left;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  /* Add a background color to navbar links on hover */
  .topnav a:hover{
    background-color: #f394be;
    color:#fff;
  }

  /* When the screen is less than 1099 pixels wide, hide all links. 
  Show the link that should open and close the topnav (.icon) */
  .topnav a{
    display:none;
  }

  .topnav a.icon {
    display: block;
    position: absolute;
    font-size: 28px;
    top: 4px;
    right: 0;
    float: right;
    margin: 0px 10px 10px 0;
    color: #f394be;
    transition: unset;
  }

  .topnav a.icon:hover{
    background-color:transparent;
  }

   /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. 
  This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  .topnav.responsive {
    position: relative; 
    clear:both;
    padding-bottom: 20px;
  }
    .topnav.responsive a.icon {
      position: absolute;
      right: -10px;
      top: -73px;
      border-bottom:none;
      transition: unset;
    }

    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      border-bottom:1px solid #413A3B;
      padding:8px 16px;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      text-align: left;
    }

    /* DROPDOWN MENU */

    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      text-align: left;
    }

    /* Dropdown Content */
    .hidden{
      display: none;
      margin: 10px 0;
    }

    .hidden a{
      margin-left: 25px !important;
      font-size: .9em;
      border-bottom: none !important;
      color: #f394be;
    }

    /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
    .show {display:block;}

     .topnav.responsive,
    .hidden {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }


  /*** HERO MOBILE STYLES ***/

  #homepage-hero{
    background: url('images/homepage-mobile-hero.jpg') no-repeat center;
    background-size: cover;
    height: 500px;
    margin-top:83px;
    padding-bottom: 100px;
    color: #fff;
  }

  #homepage-hero .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #hero-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 450px;
    width: 100%;
  }

  #homepage-hero h1{
    font-size: 3.2em;
    color: #fff;
    font-weight: 900;
    line-height: 1.2em;
    margin: 20px 0 40px;
  }

  .title-line{
    display: flex;
    align-items: center;
  }

  #homepage-hero h2{
    text-transform: uppercase;
    color: #231f20;
    margin-bottom: 0px;
    font-weight: bold;
  }

  .short-pink-line{
    background: #f394be;
    height: 4px;
    width: 50px;
    margin-right:16px;
  }

  #homepage-hero p{
    color: #231f20;
  }

  #hero-links{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-top:20px;
  }

  #hero-links a{
    padding:10px 20px;
    margin:0 5px;
    border-radius: 35px;
    display: inline-block;
    width: 110px;
    text-align: center;
    font-weight: bold;
    color: #231f20;
  }

  #hero-links a:first-of-type{
    background: #f394be;
/*    color: white;*/
    border:3px solid #f394be;
  }

  #hero-links a:last-of-type{
    color: #f394be;
    background: #231f20;
    border:3px solid #231f20;
  }

  #hero-links a:first-of-type:hover{
    background: white;
    border:3px solid white;
    color: #f394be;
  }

  #hero-links a:last-of-type:hover{
    background: #fff;
    border:3px solid #fff;
    color: #f394be;
  }

  /*MAIN BODY MOBILE*/

  #dip-it .container{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }

  .dip-it{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 300px;
    margin:0 5px 20px;
  }

  .dip-it img {
    width: 55px;
    height: auto;
  }

  .dip-it-text{
    margin-left:40px;
  }

  .dip-it-text img{
    height: 30px;
    width: auto;
  }

  #about-home{
    padding-top:20px;
  }

  #about-home .container{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
  }

  #about-home-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 380px;
  }

  #about-home-text h4{
    color: #22aae2;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 1.2em;
  }

  #about-home-text h1{
    font-weight: 900;
    font-size: 3em;
    margin-bottom: 10px;
  }

  .about-checkmark{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    font-weight: 600;
  }

  .about-checkmark p{
    width: 50%;
    display: flex;
    align-items: center;
  }

  .about-checkmark i{
    color: #f394be;
    font-size: 2.2em;
    margin-right:8px;
  }

  .about-img{
    max-width: 320px;
    margin: 40px 0 20px;
  }

  .square-border{
    border-radius: 10px;
    height: 280px;
    width: 280px;
    border:10px solid #f394be;
    position: absolute;
    z-index: 1;
  }

  .about-img img{
    width: 300px;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 5px;
    margin-top:20px;
    margin-left:20px;
  } 

  /*FOOTER MOBILE*/

  footer{
    padding: 130px 20px 60px;
    background: url(images/footer-background-mobile.webp) no-repeat top right;
    background-size: cover;
    margin-top:-30px;
  }

  footer .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col{
    width: 100%;
    border-bottom: 1px solid #231f20;
    padding-bottom: 40px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col:nth-of-type(2),
  .footer-col:nth-of-type(3){
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-col:last-of-type{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  .footer-col a{
    font-weight: 600;
    margin:0 15px;
  }

  .footer-col a:hover{
    color: white;
  }

  .footer-col img{
    margin-bottom: 20px;
    width: 200px;
    height: auto;
  }

  .footer-social {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-social p{
    width: 100%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .footer-social a{
    margin-right: 10px;
    color: white;
    font-size: 1.5em;
  }

  .footer-social a:hover{
    color: #f394be;
  }

  .footer-col h3{
    width: 100%;
    text-align: center;
    color: white;
  }

  .short-white-border{
    display: none;
  }

  #footer-contact p{
    display: flex;
    align-items: center;
    line-height: 1.33em;
  }

  #footer-contact i{
    color: white;
    font-size: 1.25em;
    margin-right: 10px;
  }

  /*SUBPAGE MOBILE*/

  .subpage-hero{
    background: url(images/subpage-hero.webp) no-repeat bottom center;
    background-size: cover;
    height: 250px;
    margin-top:83px;
    padding-bottom: 100px;
/*    color: #fff;*/
  }

  .subpage-hero .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .subpage-hero h1{
    margin-bottom: 0px;
  }

  /*MENU MOBILE STYLES*/

  .flavors-container{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top:60px;
  }

  .flavors-container:first-of-type{
    padding-top:60px;
    border-top:1px solid #f394be;
  }

  .flavors-container:last-of-type{
    margin-top:20px;
  }

  .flavors-container h1{
    width: 100%;
    text-align: center;
    color: #22aae2;
    margin-bottom: 60px;
  }

  .flavor{
    width: 100%;
    max-width: 360px;
    margin: 0 0 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid lightgray;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .flavor img{
    width: 150px;
    height: auto;
    margin-bottom: 20px;
  }

  .flavor span{
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
  }
  
  .flavors-container h2{
    margin:20px 0 80px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    color: #f394be;
    border-bottom: 1px solid #f394be;
  }

  .flavor p{
    font-size: .9em;
  }

  .combo-container img{
    margin-right: 30px;
  }

  .flavors-container .flavor:last-of-type{
    padding-bottom: 0px;
    border-bottom: none;
    margin-bottom: 0px;
  }

  /*CONTACT MOBILE*/

  #contact-content .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #contact-content iframe{
    max-width: 400px;
    width: 100%;
    height: 250px;
    border:1px solid lightgray;
    margin-bottom: 40px;
  }

  .contact-text {
    border-bottom: 1px solid lightgray;
    padding-bottom:40px;
    margin-bottom: 60px;
    width: 100%;
    text-align: center;
  }

  .contact-text a{
    border-bottom: 1px solid #f394be;
  }
  .contact-text a:hover{
    color: #f394be;
  }


}