/* Splash */

.splash {
    width: 100%;
    position: relative;
    height: 500px;
}

.splash--pink {
    background-color: #FF7FBF;
}

.splash--blue {
    background-color: #99D4FE;
}

.splash--green {
    background-color: #8cdc8c;
}

.splash--orange {
    background-color: #ffb559;
}

.splash--yellow {
    background-color: #f7dd31;
}

.splash__image {
    width: 100%;
}

.splash__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.splash__title {
    font-size: 70px;
    line-height: 70px;
    color: white;
}

@media (max-width: 1000px) {
    .splash__title--small {
        font-size: 60px;
    }
}

.splash__underline {
    width: 70%;
    height: 3px;
    background-color: white;
    margin: auto;
    margin-top: 10px;
}

.splash__decoration {
    position: absolute;
    bottom: 20px;
    width: 20%;
    max-height: 460px;
}

.splash__decoration--portrait {
    bottom: 20px;
    width: 10%;
}

.splash__decoration--left {
    left: 20px;
}

.splash__decoration--right {
    right: 20px;
}

/* Product */

.product {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
}

@media (min-width: 1000px) {
    .product__left {
        display: inline-block;
        vertical-align: top;
        position: relative;
        width: 35%;
        margin-left: 5%;
        margin-right: 10%;
        margin-top: 40px;
    }

    .product__right {
        display: inline-block;
        vertical-align: top;
        position: relative;
        width: 50%;
    }
}

@media (max-width: 1000px) {
    .product__left {
        position: relative;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }

    .product__right {
        position: relative;
        width: 90%;
        margin-left: 7%;
        margin-right: 3%;
        margin-top: 60px;
    }
}

.product__image__one {
    border-radius: 50%;
    outline: 10px solid white;
    width: 60%;
}

.product__image__two {
    border-radius: 50%;
    outline: 10px solid white;
    width: 40%;
    position: absolute;
    top: 0%;
    left: 50%;
}

.product__title {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 25px;
    padding-top: 6px;
    padding-bottom: 16px;
}

.product__title--pink {
    border-bottom: 3px solid #ff7fbf;
}

.product__title--yellow {
    border-bottom: 3px solid #f7dd31;
}

.product__title--blue {
    border-bottom: 3px solid #99D4FE;
}

.product__title--green {
    border-bottom: 3px solid #8cdc8c;
}

.product__title--orange {
    border-bottom: 3px solid #ffb559;
}

.product__text {
    margin-top: 14px;
    font-size: 18px;
}

/* Addition */

.addition {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
}

@media (min-width: 1000px) {
    .addition__left {
        display: inline-block;
        vertical-align: top;
        position: relative;
        width: 45%;
        margin-left: 5%;
    }

    .addition__right {
        display: inline-block;
        vertical-align: top;
        position: relative;
        width: 35%;
        margin-left: 5%;
        margin-right: 10%;
        margin-top: 40px;
       
    }
}

@media (max-width: 1000px) {
    .addition__left {
        position: relative;
        width: 90%;
        margin-left: 7%;
        margin-right: 3%;
        margin-top: 60px;
    }

    .addition__right {
        position: relative;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
}

.addition__image__one {
    outline: 10px solid white;
    width: 60%;
}

.addition__image__two {
    outline: 10px solid white;
    width: 40%;
    position: absolute;
    top: 40px;
    left: 50%;
}

.addition__title {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 25px;
    padding-top: 6px;
    padding-bottom: 16px;
}

.addition__title--pink {
    border-bottom: 3px solid #ff7fbf;
}

.addition__title--yellow {
    border-bottom: 3px solid #f7dd31;
}

.addition__title--blue {
    border-bottom: 3px solid #99D4FE;
}

.addition__title--green {
    border-bottom: 3px solid #8cdc8c;
}

.addition__title--orange {
    border-bottom: 3px solid #ffb559;
}

.addition__text {
    margin-top: 14px;
    font-size: 18px;
}

/* Points */

.points {
    width: 90%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.point {
    margin-top: 5px;
}

.point__circle {
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 4px;
    margin-right: 6px;
    border-radius: 20px;
    background-color: #ff7fbf;
}

.point__text {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    width: 90%;
}

.point__text--indented {
    margin-left: 13px;
}

/* Buttons */

.product__buttons {
    text-align: left;
    margin-top: 25px;
}

.product__button {
    display: inline-block;
    margin-right: 16px;
    border-radius: 4px;
    padding: 0px 14px;
    cursor: pointer;
    padding-top: 2px;
    color: black;
    background-color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
}

.product__button--pink {
    border: 2px solid #ff7fbf;
}

.product__button--yellow {
    border: 2px solid #f7dd31;
}

.product__button--blue {
    border: 2px solid #99D4FE;
}

.product__button--green {
    border: 2px solid #8cdc8c;
}

.product__button--orange {
    border: 2px solid #ffb559;
}

.product__button--pink:hover {
    background-color: #ff7fbf;
    border: 2px solid #ff7fbf;
    color: white;
}

.product__button--yellow:hover {
    background-color: #f7dd31;
    border: 2px solid #f7dd31;
    color: white;
}

.product__button--blue:hover {
    background-color: #99D4FE;
    border: 2px solid #99D4FE;
    color: white;
}

.product__button--green:hover {
    background-color: #8cdc8c;
    border: 2px solid #8cdc8c;
    color: white;
}

.product__button--orange:hover {
    background-color: #ffb559;
    border: 2px solid #ffb559;
    color: white;
}

/* Border */

.border {
    height: 6px;
    width: 100%;
    line-height: 0px;
}

.border--pink {
    background-color: #FF7FBF;
}

.border--yellow {
    background-color: #f7dd31;
}

.border--blue {
    background-color: #99D4FE;
}

.border--green {
    background-color: #8cdc8c;
}

.border--orange {
    background-color: #ffb559;
}