@import url('https://fonts.googleapis.com/css2?family=BioRhyme:wght@200&family=Satisfy&display=swap');

body {
    font-family: 'BioRhyme', serif;
    line-height: 1.7;
    letter-spacing: -1px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

a {
    color: #D05A5E;
    text-decoration: none;
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}

main {
    transition: .35s;
    background-color: white;
    color: black;
}

.main-nav {
    width: 100%;
    height: 110px;
}

.main-nav span {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 20px;
}


.navbar {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    transition: .35s;
    background-color: white;
    color: black;
    width: 100%;
    height: 110px;
}

.navbar span {
    cursor: pointer;
}

.navbar span:after {
    content: "";
    position: absolute;
    bottom: 37px;
    left: 20px;
    width: 86px;
    height: 2px;
    background: black;
}

.navbar:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0px;
    right: 0px;
    height: 4px;
    background: #a0138e;
}

.stop-scroll {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.image-quote {
    overflow: hidden;
    display: flex;
    flex-wrap:wrap;  
}

.image-quote > div {
    width: 50%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-quote img {
    /* width: 100%; */
    width: 200px;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    /* content:url("./images/IMG_0106_thumb.jpg"); */
}

.quote-signed {
    font-family: 'Satisfy', cursive;
    font-size: 34px;
    font-weight: 100;
    width: 300px;
}


.quote {
    font-family: 'BioRhyme', serif;
    font-size: 60px;
    line-height: 60px;
    margin-top: 0;
    width: 300px;
}

.title {
    text-align: center;
}

/* .title:before {
    content: "";
    position: absolute;
    bottom: -45px;
    left: calc(50% - 105px);
    width: 32px;
    height: 2px;
    background: black;
}

.title:after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: calc(50% - 48px);
    width: 153px;
    height: 2px;
    background: black;
} */

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
}

.gallery-item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-item img {
    width: 200px;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    cursor: pointer;
}

.gallery-item img:hover {
    width: 250px;
}

.product {
    display: flex;
    flex-wrap:wrap;  
}

.product-description ul {
    list-style: none;
}

.product-description li::before {
    border-style: solid;
    border-width: 0.15em 0.15em 0 0;
    content: '';
    display: inline-block;
    height: 0.3em;
    position: relative;
    color: #d05b5e;
    top: 10px;
    vertical-align: top;
    width: 0.3em;
    left: -5px;
    transform: rotate(45deg);
}

.product > div {
    margin: 50px 5%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product .active {
    /* width: 100%; */
    width: 200px;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.product-images {
    height: 300px;
}

.product-images ul {
    display: flex;
    padding: 0;
    position: absolute;
    top: 460px;
}

.product-images li {
    list-style-type: none;
    cursor: pointer;
}

.image-item {
    margin: 0 5px;
}

.image-item img {
    height: 60px;
}

button {
    background: gray;
    color: white;
    border: none;
    border-radius: 0;
    padding: 1.25rem 2.25rem;
    text-transform: uppercase;
    cursor: pointer;
    margin: 20px;
    font-weight: bold;
}

#footer {
    margin: 20px;
}

@media only screen and (max-width: 600px){
    .gallery-item {   
        width: 100%!important;
    }

    /* .title:before {
        bottom: 66px;
    }

    .title:after {
        bottom: 66px;
    } */

    .quote {
        margin: 0;
    }

    .image-quote > div{   
        width: 100%;
        height: 300px;
    }

    .image-quote .active {
        width: 70%;
    }

    .product {
        margin: 50px 0;
    }

    .product > div{   
        width: 100%;
        margin: 0 5%;
    } 

    .product-images {
        height: 300px;
    } 

    ul {
        top: 470px;
    }

    .product-title {
        margin-top: 100px;
    }
}
