:root {
    /*font-family: 'Roboto', Arial, sans-serif;*/
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
}
body {
    margin: 0;
}

.cover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background-image: url('../images/cover.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
}

.cover-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-grow: 1;
}

.cover-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
}

.cover-primary {
    color: #fff;
    margin: 0;
    font-size: 72px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.8);
}

.cover-secondary {
    color: #fff;
    margin: 48px 0;
    font-size: 52px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.8);
}

.cover-third {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5em;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.8);
}

@keyframes arrow-bottom {
    0% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -moz-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        -webkit-transform: translateY(-7px);
        -o-transform: translateY(-7px);
        transform: translateY(-7px)
    }

    55% {
        -moz-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        -webkit-transform: translateY(-7px);
        -o-transform: translateY(-7px);
        transform: translateY(-7px)
    }

    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

.cover-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    animation: arrow-bottom 1.7s infinite ease;
    margin-bottom: 8px;
}

.cover-arrow-svg {
    cursor: pointer;
}

.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.products-title {
    display: flex;
    flex-direction: column;
    color: #2b3b54;
    font-size: 42px;
    line-height: 1.25;
    margin: 48px 0;
    font-weight: 600;
}

.product {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    opacity: 0;
    transform: scale(1);
    transition-duration: 0.5s;
    transition-delay: 0.16s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    margin: 0 0 96px 0;
}

.product.visible {
    opacity: 1;
    transform: scale(1);
}

.download {
    display: flex;
    flex-direction: row;
    margin-top: 24px;
    align-items: center;
}

.download > img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.product-image {
    display: flex;
    width: 450px;
    height: 450px;
    margin-top: 88px;
}

.product-image > img {
    width: inherit;
    height: inherit;
    box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.product-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: rgba(0,0,0,0.8);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}

.product-text.left {
    margin-right: 48px;
}

.product-text.right {
    margin-left: 48px;
}

.product-title {
    display: flex;
    flex-direction: column;
    color: #2b3b54;
    font-size: 36px;
    line-height: 1.25;
    margin: 0 0 36px 0;
    font-weight: 600;
}

p.product-info {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 8px 0;
    color: #2b3b54;
}

p.product-info.section {
    margin-top: 16px;
    font-weight: 600;
}

p.product-info.no-footer {
    margin-bottom: 0;
}

ul.product-info {
    color: #2b3b54;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding-left: 20px;
}

.reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 96px;
}

.reviews-title {
    display: flex;
    flex-direction: column;
    color: #2b3b54;
    font-size: 42px;
    line-height: 1.25;
    margin: 48px 0;
    font-weight: 600;
}

.reviews-content {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    max-width: 1200px;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 16px;
    border-radius: 4px;
    min-width: 300px;
}

.review-text {
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 25px;
    min-height: 200px;
    margin: 24px 0 0 0;
}

.review-card-user-detail {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.user-photo {
    display: flex;
    width: 48px;
    margin-right: 8px;
}

.user-photo > img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0;
}

.user-title-container {
    display: flex;
    flex-direction: column;
}

.feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 96px;
    background-color: rgba(0,0,0,.024);
}

.feedback-title {
    display: flex;
    flex-direction: column;
    color: #2b3b54;
    font-size: 42px;
    line-height: 1.25;
    margin: 48px 0;
    font-weight: 600;
}

.feedback-text {
    margin-right: 24px;
    margin-left: 24px;
}

.contact-item {
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon {
    margin-right: 12px;
}

.icon > svg {
    fill: #2b3b54;
}

.contact-note {
    display: flex;
    flex-direction: column;
}

.contact-item {
    margin-bottom: 12px;
}

.contact-title {
    font-weight: bold;
}

.contact-text > a {
    text-decoration: none;
    color: initial;
}

.contact-text > a:visited {
    text-decoration: none;
}

.contact-text > a:hover {
    color: #2b3b54;
}

.copyright {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    background-color: rgba(0,0,0,.024);
    padding-bottom: 12px;
    justify-content: center;
    color: gray;
}

@media screen and (max-width: 1200px) {
    .product {
        max-width: 960px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-text.left {
        margin-right: 24px;
        margin-left: 24px;
    }

    .product-text.right {
        margin-right: 24px;
        margin-left: 24px;
    }

    .product-image {
        margin-top: 24px;
        order: 2;
    }

    .reviews-content {
        flex-direction: column;
    }

    .review-card {
        margin-right: 24px;
        margin-left: 24px;
        max-width: 300px;
    }
}