/* Global styles */

* 
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* Theme styles */
:root 
{
    --primary-color: #403C40;
    --p-sh1: #878287;
    --p-sh2: #706A70;
    --p-sh3: #585358;
    --p-sh4: #342F34;
    --accent-color: #AF9252;
    --a-sh1: #D5CDAC;
    --a-sh2: #C1B180;
    --a-sh3: #90743E;
    --a-sh4: #6F562C;
    --neutral-color: #F9F6F1;
    --transparent: #af925200;
    --heading-font-type: 'Julius Sans One';
    --body-font: 'Merriweather-Regular';
    --box-shadow: 10px 10px 30px -1px rgba(0,0,0,0.75);
}

/* Heading styles */
h1,
h2,
h3,
h4,
h5 
{
    font-family: var(--heading-font-type) !important;
    color: var(--a-sh2) !important;
}


/* Body & alt text */
p 
{
    font-family: var(--body-font);
    color: var(--neutral-color);
    margin-bottom: 0 !important;
}

a 
{
    text-decoration: none !important;
    color: var(--a-sh2) !important;
}

body
{
    background-color: var(--primary-color) !important;
}

/* Header Styles */

header 
{
    display: flex;
    width: 100%;
    padding: 0 .5rem;
    justify-content: space-between;
    align-items: center;
    background-color: var(--p-sh4);
    z-index: 900;
    position: sticky;
    top: 0;
}

main 
{
    height: auto;
}

.container-fluid 
{
    padding: 0 !important;
}

.container 
{
    padding: 0 !important;
}

.margin-top 
{
    margin-top: 4rem;
}

.title 
{
    color: var(--neutral-color) !important;
    position: relative;
    top: 45%;
}

.title-2 
{
    color: var(--a-sh3) !important;
}

.sub-t 
{
    color: var(--p-sh1) !important;
    font-weight: bold;
}

.text-small 
{
    color: var(--a-sh1) !important;
    font-weight: bold;
    font-size: smaller;
}

.row 
{
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-items: center;
}

.image 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.margin 
{
    height: 6rem;
}

.shop-logo 
{
    width: 2.25rem;
}

/* footer styles */

footer 
{
    background-color: var(--p-sh4);
}

.linkContainer 
{
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    height: 3rem;
}

/* Map */

.map 
{
    display: block;
    width: 100%;
    height: 20vh;
    border-radius: 0.5rem;
}


.socialMediaContainer 
{
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.socialMediaIcon 
{
    width: 35px;
    height: 35px;
    stroke: var(--neutral-color);
    stroke-width: 2px;
    stroke-miterlimit: 10; 
    stroke-linecap: round;
}

/* Nav Menu */

.logoContainer 
{
    display: flex;
    justify-content: center;
    width: 25%;
    padding: .5rem;
}

.logo 
{
    width: 7rem;
}

.nav-bar 
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 50%;
    padding: .5rem;
}

.nav-link 
{
    font-family: var(--body-font);
    color: var(--neutral-color) !important;
    text-transform: uppercase;
}

.active-link 
{
    color: var(--accent-color)
}

/* Underline From Center */
.hvr-underline-from-center 
{
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: visible;
}

.hvr-underline-from-center:before 
{
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: var(--accent-color);
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before 
{
    left: 0;
    right: 0;
}

.active-link 
{
 color: var(--accent-color) !important;
}

/* Btn & Icon cart container */
.btnContainer 
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    width: 25%;
    padding: .5rem;
}

.btn-primary 
{
    background-color: var(--transparent) !important;
    border-color: var(--neutral-color) !important;
    font-family: var(--body-font) !important;
    text-transform: uppercase;
    font-size: 16px !important;
    cursor: pointer;
}

/* Popup container */
.popup 
{
    position: relative;
    display: inline-block;    
}

/* The actual popup */
.popup .popuptext 
{
    visibility: hidden;
    width: 160px;
    background-color: var(--neutral-color);
    color: var(--p-sh4);
    font-size: medium;
    text-transform: capitalize;
    text-align: center;
    border-radius: 6px;
    padding: .5rem;
    position: absolute;
    z-index: 5000;
    top: 140%;
    left: 50%;
    margin-left: -80px;
}

.popup .popuptext::after 
{
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent var(--neutral-color) transparent;
}


/* Toggle this class - show the popup */
.popup .show 
{
    visibility: visible;
    opacity: 1; /* Fade in */
    transition: opacity 1s ease-in-out;
}

/* Add this class to hide the popup */
.popup .hide 
{
    visibility: visible;
    opacity: 0; /* Fade out */
    transition: opacity 1s ease-in-out;
}

.iconContainer 
{
    display: flex;
    padding: .5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

/* mobile nav bar */
.burgerContainer 
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hamburger 
{
    position: relative;
    display: block;
    width: 2.5rem;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
}

.hamburger .bar, 
.hamburger::after, 
.hamburger::before 
{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--neutral-color);
    margin: 6px 0;
    transition: 0.4s;
}

/* animation */
.hamburger.is-active::before 
{
    transform: rotate(-45deg) translate(-8px, 3px);
}

.hamburger.is-active::after 
{
    transform: rotate(45deg) translate(-9px, -6px)!important;
}

.hamburger.is-active .bar 
{
    opacity: 0;
}

.mobile-nav 
{   top: 84px;
    right: -100%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    background-color: var(--primary-color);
    transition: right 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.mobile-nav.open 
{
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a 
{
   display: block;
   width: 100%;
   max-width: 200px;
   margin: 0 auto 16px;
   text-align: center;
   padding: 12px 16px;
   color: var(--accent-color);
   font-size: 1.25rem;
   height: 4rem;
}

/*  HOME SECTION */

#myVideo 
{
    object-fit: cover;
    width: 100%;
    height: 100vh;
    filter: grayscale(100%);
    opacity: 50%;

}

/***************************************************
 * Generated by SVG Artista on 5/13/2024, 6:35:20 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

.moto 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;

}

.st0 
{
    fill:none;
    stroke: var(--a-sh1);
    stroke-width:5;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.st1 
{
    fill:none;
    stroke: var(--a-sh1);
    stroke-width:5;
    stroke-linecap:round;
    stroke-miterlimit:10;
}


@keyframes animate-svg-stroke-1 
{
    0% 
    {
      stroke-dashoffset: 684.6115112304688px;
      stroke-dasharray: 684.6115112304688px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 684.6115112304688px;
    }
  }
  
.svg-elem-1 
{
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
                 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}
  
@keyframes animate-svg-stroke-2 
{
    0% 
    {
      stroke-dashoffset: 1150.2003173828125px;
      stroke-dasharray: 1150.2003173828125px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 1150.2003173828125px;
    }
}
  
.svg-elem-2 
{
    animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
                 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}
  
  
@keyframes animate-svg-stroke-3 
{
    0% 
    {
      stroke-dashoffset: 29.101367950439453px;
      stroke-dasharray: 29.101367950439453px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 29.101367950439453px;
    }
  }
  
@keyframes animate-svg-fill-3 
{
    0% 
    {
      fill: transparent;
    }
  
    100% 
    {
        fill: var(--a-sh1);
    }
}
  
.svg-elem-3 
{
    animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
                 animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}
  
@keyframes animate-svg-stroke-4 
{
    0% 
    {
      stroke-dashoffset: 128.9459228515625px;
      stroke-dasharray: 128.9459228515625px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 128.9459228515625px;
    }
}
  
.svg-elem-4 
{
    animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
                 animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}
  
@keyframes animate-svg-stroke-5 
{
    0% 
    {
      stroke-dashoffset: 1184.9178466796875px;
      stroke-dasharray: 1184.9178466796875px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 1184.9178466796875px;
    }
}
  
.svg-elem-5 
{
    animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
                 animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}
  
@keyframes animate-svg-stroke-6 
{
    0% 
    {
      stroke-dashoffset: 28.52303123474121px;
      stroke-dasharray: 28.52303123474121px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 28.52303123474121px;
    }
}
  
@keyframes animate-svg-fill-6 
{
    0% 
    {
      fill: transparent;
    }
  
    100% 
    {
        fill: var(--a-sh1);
    }
}
  
.svg-elem-6 
{
    animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
                 animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}
  
@keyframes animate-svg-stroke-7 
{
    0% 
    {
      stroke-dashoffset: 714.520751953125px;
      stroke-dasharray: 714.520751953125px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 714.520751953125px;
    }
  }
  
.svg-elem-7 
{
    animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
                 animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}
  
@keyframes animate-svg-stroke-8 
{
    0% 
    {
      stroke-dashoffset: 1304.6275634765625px;
      stroke-dasharray: 1304.6275634765625px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 1304.6275634765625px;
    }
}
  
.svg-elem-8 
{
    animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
                 animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}
  
@keyframes animate-svg-stroke-9 
{
    0% 
    {
      stroke-dashoffset: 132.5254669189453px;
      stroke-dasharray: 132.5254669189453px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 132.5254669189453px;
    }
}
  
.svg-elem-9 
{
    animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
                 animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}
  
@keyframes animate-svg-stroke-10 
{
    0% 
    {
      stroke-dashoffset: 29.025924682617188px;
      stroke-dasharray: 29.025924682617188px;
    }
  
    100% 
    {
      stroke-dashoffset: 0;
      stroke-dasharray: 29.025924682617188px;
    }
}
  
@keyframes animate-svg-fill-10 
{
    0% 
    {
      fill: transparent;
    }
  
    100% 
    {
      fill: var(--a-sh1);
    }
}
  
.svg-elem-10 
{
    animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
}

/* vectors styles */

.vector 
{
    z-index: -1;
    opacity: 20%;
    stroke: var(--p-sh1);
    stroke-width: 1px;
    stroke-miterlimit: 10; 
    stroke-linecap: round;
}

.v-1 
{
    position: absolute;
    left: 0;
    top: auto;
    width: 25%;
}

.v-2 
{
    position: absolute;
    width: 100%;
    opacity: 20%;
}

.v-3 
{
    position: absolute;
    right: 0;
    width: 35%;
    transform: translate(0, -14rem);
}

.v-4 
{
    width: 100%;
}

.v-5 
{
    position: absolute;
    left: 0;
    top: 15rem;
    width: 59%;
}

/* carousel styles */

.carousel-inner 
{
    width: 100%;
    height: -webkit-fill-available;
}

.overlay 
{
    height: -webkit-fill-available; ;
    width: 100%;
    background-color: #00000060;
    position: absolute;
    z-index: 1;
}

.carousel-item img 
{
    display: block;
    width: 100%;   
}

.carousel-control-next-icon, .carousel-control-prev-icon 
{
    width: 3rem !important;
    height: 3rem !important;
    background-size: 70% 100% !important;
    background-color: var(--accent-color);
    border-radius: 2rem;
}

/* cards styles */ 

.card 
{
    background-color: var(--transparent)!important;
    border-color: var(--neutral-color) !important;
}

.card-img-top 
{
    padding: 1rem;
    border-radius: 24px !important;
}

.card-title 
{
    color: var(--a-sh3) !important;
    font-family: var(--heading-font-type);
}

.card-event 
{
    width: 100%;
    height: 20rem;
    border: 1px solid var(--neutral-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center
}

.card-product 
{
    background-color: var(--transparent);
    border-radius: 1px solid var(--neutral-color);
    width: 100%;
}

.small-cap 
{
    color: var(--neutral-color);
}


/* ABOUT SECTION */

.intro 
{
    background-image: url(/img/vector/pastries.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 25rem;
    width: 100%;
}

.overlay-container 
{
    position: relative;
    width: 50%;
}
  
.overlay-2 
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: .5s ease;
}

  
.text 
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

/* grid styles */

.grid 
{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: repeat(3, 150px);
    gap: 1rem;
}

.item1
{
    grid-column: 1;
    grid-row: 2 / span 2;
    object-fit: contain;
}

.item1 img 
{
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.item2
{
    grid-column: 2;
    grid-row: 1 / span 3;
}

.item2 img
{
    border-radius: 6px;
}

.item3
{
    grid-column: 3;
    grid-row: 1 / span 2;
}

.item3 img {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

/* Shop Styles */

/* .grid-shop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 28vh);
    gap: 2rem;
}

.category-1{
    grid-column: 1;
    grid-row: 1 / span 2;
    cursor: pointer;
}

.category-2 {
    grid-column: 2;
    grid-row: 1;
    cursor: pointer;
}

.category-3 
{
    grid-column: 2;
    grid-row: 2;
    cursor: pointer;
}

.grid-overlay 
{
    position: relative;
    width: 100%;
}

.tag-item 
{
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.29);
    backdrop-filter: blur(14.100000381469727px);
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity:0;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--heading-font-type);
    padding: 20px;
    text-align: center;
    border-bottom-left-radius:.5rem;
    border-bottom-right-radius:.5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
} */


/* dividers */

hr 
{
    color: var(--neutral-color)!important;
}

.divider 
{
    background-image: url(/img/vector/bakery-goods.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 325px;
    width: 100%;
    background-position-y: bottom;
}

/* COURSES STYLES*/

.bg 
{
    background-image: url(/img/vector/kitchen-tools-2.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.parallax 
{
    height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

#baguette 
{
    background-image: url(/img/courses/baguette.jpg);
}

.text-overlay 
{
    height: 80vh;
    width: 100%;
    background-color: #00000090;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.text-container 
{
    width: 80%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.intro-3 
{
    background-image: url(/img/vector/calendar.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 200px;
    width: 100%;
    background-position-x: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg2
{
    background-image: url(/img/vector/grain-wheat.png);
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: auto;
}

.bg2-flipped 
{
    position: relative;
    z-index: 0;
}

.bg2-flipped::before
{   
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url(/img/vector/grain-wheat.png);
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;
    transform: scaleX(-1); 
    z-index: -1;
}

li 
{
    list-style: none;
    justify-content: flex-start;
    color: var(--neutral-color);
    font-family: var(--body-font);
}

/* Form Styles */

.form-label 
{
    color: var(--a-sh1);
}

.form-check-label 
{
    color: var(--neutral-color);
}

.form-check-input:checked  
{
    background-color: var(--accent-color)!important;
    border-color: var(--a-sh3)!important;
}

.form-check-input, .form-control:focus 
{
    border-color: var(--a-sh1)!important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(160, 155, 125, 0.25)!important;
}

.form-control 
{
    border-color: var(--p-sh1)!important;
    background: rgb(247, 247, 247)!important;
    box-shadow: rgba(28, 28, 28, 0.385) 0px 2px 5px 0px inset!important;
}


/* cookie script */

#cookiescript_badge, #cookiescript_injected 
{
    z-index: 20!important;
}


/* Modal styles */

.modal
{
    --bs-modal-bg: var(--primary-color)!important;
}

.row-gallery 
{
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.column 
{
    flex: 16.6%;
    max-width: 16.6%;
    padding: .5rem;
}

.product-gallery 
{
  vertical-align: middle;
  border-radius: .5rem;
  width: 100%;
  box-shadow: var(--box-shadow);
  margin-top: 1rem;
}


/* Contact 'styles */

.jumbotron
{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-items: center;
    z-index: 0;
}

.jumbotron::before 
{
    content: "";
    background-image: url(/img/about/crust-bakery-aberdeen-front.jpg);
    background-position-y:center;
    background-size: cover;
    position: absolute;
    inset: 0; 
    opacity: 0.50;
    z-index: -1;

} 

.glass 
{
    background: rgba(46, 45, 45, 0.158);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 6px;
}

/*  thank you page */
#thankyou 
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.form-success 
{
    border: 2px solid var(--neutral-color);
    border-radius: 6px;
}


.es-header-btn,.es-header-btn:active,.es-header-btn:focus {
    background-color: var(--accent-color)!important;
}







































  











/* screens up to 800px */


@media (min-width: 800px) 
{

    .mobile-nav 
    {
        display: none;
    }

    .hamburger 
    {
        display: none;
    }

    .nav-link:hover {
        transition: none;
    }

    .burgerContainer {
        display: none;
    }

    .col-lg-8 {
        width: 80% !important;
    }

    .card {
        transition: all 0.3s;
    }

    .card:hover {
        background-color: var(--a-sh2) !important;
        transform: scale(1.15);
        border-color: var(--a-sh2) !important;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.30); 
    }

    .card:hover .card-text 
    {
        color: var(--p-sh4);
    }
   
    .card:hover .small-cap
    {
        color: var(--p-sh4);
        font-weight: bold;
    }
    
    .btn-primary:hover 
    {
        background-color: var(--accent-color) !important;
        border-color: var(--accent-color) !important;
    }

    .socialMediaIcon 
    {
        transition: all 0.3s;
        cursor: pointer;
    }

    .socialMediaIcon:hover 
    {
        transform: scale(1.20);
        stroke: var(--accent-color);
    }

    /* When you mouse over the container, fade in the overlay title */
    .grid-overlay:hover .tag-item 
    {
        opacity: 1;
    }

}



/* screens below 800px */


@media screen and (max-width: 800px){

    header {
        padding: 0.5rem 1rem;
    }

    #myVideo {
        height: 100vh;
    }

    .logoContainer {
        padding: 0.5rem;
        width: 30%;
    }

    .btnContainer {
        width: 50%;
        justify-content: center;
    }

    .btn-primary {
        background-color: var(--accent-color) !important;
        border-color: var(--accent-color) !important;
    }

    .burgerContainer {
        width: 20%;
    }
    .nav-bar {
        display: none;
    }

    .logo {
        width: 80px;
    }

    .moto {
        width: 100%;
        padding: 0 1rem 
    }

    .col-10 {
        width: 100% !important;
    }

    .v-1 {
        top: auto;
        width: 90%;
    }

    .v-2 {
        opacity: 50%;
    }

    .v-3 {
        width: 40%;
        transform: translate(0, -2rem);
    }

    .v-5 {
        width: 100%;
        top: 7rem;
    }

    .intro {
        height: 200px;
        background-size: cover;
        background-position-x: center;
    }

    #mission {
        display: flex;
        flex-direction: column-reverse;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 200px);
        
    }

    .item1{
        grid-column: 1;
        grid-row: 2;

    }

    .item2{
        grid-column: 1 / span 2;
        grid-row: 1;

    }

    .item2 img 
    {
        border-radius: 0;
    }

    .item3{
        grid-column: 2;
        grid-row: 2;
    }

    .divider {
        height: 200px;
        background-size: cover;
    }

    .bg-x-1 {
        background-position-x: 8%;
    }

    .bg-x-2 {
        background-position-x: 12%;
    }

    .bg-x-3 {
        background-position-x: 40%;
    }

    .parallax {
        height: 60vh;
        background-attachment: scroll;
    }

    .text-overlay {
        height: 60vh;
    }

    
    .grid-shop {
        grid-template-columns: 1fr;
    }

    .category-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .category-2 {
        grid-column: 1;
        grid-row: 2;
    }


    .category-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .tag-item {
        opacity: 1;
    }
    
    .carousel-inner {
        width: 100%;
    }

    .carousel-item img {
        width: 200%;
        align-self: center;
        
    }

    .linkContainer {
        flex-wrap: wrap;
    }

    .column 
    {
        flex: 50%;
        max-width: 50%;
    }

    .bg2 
    {
        background-size: 15rem;
    }

    .bg2-flipped::before
    {
        display: none;
    }

    .jumbotron::before 
    {
        background-position-x: center;
    }

}










