/* Splash */

.splash {
    width: 100%;
}

/* About */

@media (min-width: 1000px) {
    .about__left {
        display: inline-block;
        vertical-align: top;
        width: 25%;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .about__right {
        display: inline-block;
        vertical-align: top;
        width: 40%;
        margin-left: 5%;
        margin-right: 10%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1000px) {

    .about__left {
        vertical-align: top;
        width: 80%;
        padding-left: 10%;
        margin-bottom: 40px;
    }

    .about__right {
        vertical-align: top;
        width: 80%;
        padding-left: 10%;
        margin-bottom: 40px;
    }
}

.about {
    margin-top: 70px;
    margin-bottom: 70px;
}

.about__title {
    font-size: 34px;
    line-height: 34px;
    border-bottom: 3px solid #fd0893;
    margin-bottom: 25px;
    padding-top: 6px;
    padding-bottom: 16px;
}

.about__text {
    margin-top: 14px;
    font-size: 16px;
}

.about__image {
    width: 100%;
    border-radius: 50%;
}

/* About Decoration */

@media (min-width: 1000px) {
    .about__decoration {
        position: absolute;
        top: 10px;
        right: 14px;
        width: 6%;
    }

    .about__decoration_2 {
        position: absolute;
        bottom: 10px;
        left: 14px;
        width: 6%;
    }

    .about__decorationImage {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .about__decoration {
        position: absolute;
        top: 6px;
        right: 10px;
        height: 50px;
    }

    .about__decoration_2 {
        position: absolute;
        bottom: 6px;
        left: 10px;
        height: 50px;
    }

    .about__decorationImage {
        height: 50px;
    }
}

/* Shop */

@media (min-width: 1000px) {
    .shop__box {
        display: inline-block;
        width: 50%;
        line-height: 0px;
        font-size: 0px;
        cursor: pointer;
    }
}

@media (max-width: 1000px) {
    .shop__box {
        width: 100%;
        line-height: 0px;
        font-size: 0px;
        cursor: pointer;
    }
}

.shop__box--etsy {
    background-color: #ff6801;
}

.shop__box--thoutful {
    background-color: #4461E3;
}

.shop__box--facebook {
    background-color: #1672E6;
}

.shop__box--instagram {
    background-color: #C1558B;
}

.shop__image {
    width: 70%;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Products */

@media (min-width: 1000px) {
    .products {
        width: 90%;
        margin: auto;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .product {
        display: inline-block;
        vertical-align: top;
        width: 23%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 40px;
        margin-bottom: 40px;
        cursor: pointer;
    }
}

@media (max-width: 1000px) {
    .products {
        width: 90%;
        margin: auto;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .product {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 50px;
        margin-bottom: 50px;
        cursor: pointer;
    }
}

.product__image {
    width: 100%;
    border-radius: 10px;
}

.product__title {
    font-size: 20px;
    margin-top: 10px;
}

.product__underline {
    width: 15%;
    height: 4px;
    margin-top: 10px;
    transition: width 0.5s;
}

.product__underline--orange {
    background-color: rgb(255, 104, 1);
}

.product__underline--purple {
    background-color: rgb(155,108,240);
}

.product__underline--blue {
    background-color: rgb(68,97,227);
}

.product__underline--yellow {
    background-color: #f7dd31;
}

.product__underline--red {
    background-color: rgb(254,0,148);
}

.product__underline--lightblue {
    background-color: rgb(0,223,249);
}

.product__underline--green {
    background-color: rgb(50,198,50);
}

.product:hover .product__underline {
    width: 100%;
}

.product:hover .product__title {
    font-weight: bold;
}

/* Reviews */

@media (min-width: 1000px) {
    .reviews {
        width: 80%;
        margin: auto;
        margin-top: 80px;
        margin-bottom: 80px;
        text-align: center;
    }

    .review {
        display: inline-block;
        vertical-align: top;
        width: 27%;
        margin-left: 3%;
        margin-right: 3%;
        background-color: white;
        border-radius: 10px;
    }

    .reviews__decoration {
        position: absolute;
        bottom: 10px;
        left: 1%;
        width: 8%;
    }

    .reviews__decorationImage {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .reviews {
        width: 90%;
        margin: auto;
        margin-top: 60px;
        margin-bottom: 60px;
        text-align: center;
    }

    .review {
        width: 90%;
        margin-left: 4%;
        margin-right: 4%;
        background-color: white;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .reviews__decoration {
        position: absolute;
        bottom: 10px;
        left: 5%;
    }

    .reviews__decorationImage {
        height: 40px;
    }
}

.reviews__title {
    font-size: 32px;
    text-align: left;
    margin-bottom: 70px;
}

.reviews__titleText {
    border-bottom: 3px solid #4461e3;
    padding-left: 6px;
    padding-right: 40px;
    padding-bottom: 10px;
}

.review__iconWrapper {
    position: absolute;
    top: 25px;
    left: 30px;
}

.review__icon {
    height: 30px;
}

.review__title {
    font-size: 24px;
    text-align: right;
    padding-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

.review__content {
    font-size: 16px;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

.review__date {
    font-size: 12px;
    text-align: left;
    padding-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

/* Arrows */

@media (min-width: 1000px) {
    .arrows {
        text-align: right;
        margin-top: 50px;
    }
}

@media (max-width: 1000px) {
    .arrows {
        text-align: center;
        margin-top: 50px;
    }
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    margin-right: 30px;
}

.arrow__image {
    height: 70px;
    cursor: pointer;
}

/* Social Media */

.social {
    width: 100%;
    text-align: center;
}

.social__title {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 40px;
}

.social__icon {
    display: inline-block;
    vertical-align: middle;
    max-height: 50px;
    margin-right: 20px;
    cursor: pointer;
}

.social__tag {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
}

.social__images {
    width: 100%;
    line-height: 0px;
}

@media (min-width: 1000px) {
    .socialTitle {
        font-size: 32px;
        line-height: 40px;
        width: 80%;
        margin: auto;
        margin-top: 80px;
    }

    .social__section {
        display: inline-block;
        vertical-align: top;
        width: 32%;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .social__image {
        display: inline-block;
        width: 20%;
    }

    .social__decoration {
        position: absolute;
        top: 10px;
        right: 1%;
        width: 8%;
    }

    .social__decorationImage {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .socialTitle {
        font-size: 32px;
        line-height: 40px;
        width: 80%;
        margin: auto;
        margin-top: 80px;
        text-align: center;
    }

    .social__section {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 70px;
        margin-bottom: 100px;
    }

    .social__image {
        display: inline-block;
        width: 50%;
    }

    .social__decoration {
        position: absolute;
        top: 10px;
        right: 5%;
    }

    .social__decorationImage {
        height: 40px;
    }
}

.social__image:hover {
    opacity: 0.8;
}

.social__underline {
    width: 40%;
    height: 4px;
    margin-top: 10px;
    transition: width 0.5s;
}

.social__underline--facebook {
    background-color: rgb(0,223,249);
}

.social__underline--instagram {
    background-color: rgb(254,0,148);
}

.social__underline--youtube {
    background-color: rgb(255,0,0);
}

.social__tag:hover .social__underline {
    width: 100%;
}

.social__tag:hover {
    font-weight: bold;
}