/* Authors : Flip Flap Game - Alita Studio - Metrix-Consult
Year : 2020
 */

/* ------------ ANIMATIONS ----------- */
@keyframes title-gotobottom {
    0% {
         transform: translate3d(0, -1170px, 0);
    }
    40% {
         transform: translate3d(0, -270px, 0);
    }
    60% {
         transform: translate3d(0, -300px, 0);
    }
    100% {
         transform: translate3d(0, -270px, 0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
        visibility: visible;
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(.9) rotate(15deg);
    }
    100% {
        transform: scale(1) rotate(-15deg);
        visibility: visible;
    }
}

@keyframes backInUpAndRotate {
    0% {
        opacity: 0;
        margin-top: 1000px;
        transform: translate3d(0, 1000px, 0) rotate(-15deg);
        visibility: visible;
    }
    50% {
        opacity: 1;
        margin-top: 0;
        transform: translate3d(0, 0, 0);

    }
    70% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1) rotate(-15deg);
        margin-top: 0;
        visibility: visible;
    }
}

@keyframes backInUp {
    0% {
        opacity: 0;
        margin-top: 1000px;
        transform: translate3d(0, 1000px, 0);
        visibility: visible;
    }
    50% {
        opacity: 1;
        transform: translate3d(0, 0, 0);

    }
    70% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1);
        visibility: visible;
    }
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, .95, 1);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes Visibility {
    0% {
        z-index: -1;
        opacity: 0;
    }
    100% {
        z-index: 10;
        opacity: 1;
    }
}

@keyframes FadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popUpBoxes {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(.9);
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* -------------  GENERAL ----------- */

body {
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    color: #ffffff;
}

h1, h2, h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.fs-220 {
    font-size: 220px;
}

.fs-90 {
    font-size: 90px;
}

.fs-62 {
    font-size: 62px;
}

.fs-50 {
    font-size: 50px;
}

.fs-40 {
    font-size: 40px;
}

p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 40px;
}

.cursive {
    font-family: 'Kalam', cursive;
    color: #ffffff;
    line-height: 46px;
    font-weight: 400;
    margin: 0;
}

.img-fit {
    width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding-inline-start: 0;

}

/* buttons */
.bg-orange {
    width: 100%;
    height: 100%;
    display: block;
    background: url("../img/buttons/baground-orange.png") no-repeat center;
    background-size: 100%;

}

.bg-purple {
    width: 100%;
    height: 100%;
    display: block;
    background: url("../img/buttons/baground-purple.png") no-repeat center;
    background-size: 100%;
}

.bg-green {
    width: 100%;
    height: 100%;
    display: block;
    background: url("../img/buttons/baground-green.png") no-repeat center;
    background-size: 100%;
}

.button {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;

}

.animation-rubberBand {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
}

.instruction {
    background: #ffffff;
    border-radius: 50px;
}

.button img {
    width: 100px;
    height: 100px;
    margin: auto;
}

.wrapper-inscription .button-top-left, .screen-connexion .button-top-left {
    width: 210px;
    height: 210px;
    display: block;
    position: absolute;
    z-index: 999;
}

.second-button {
    width: 210px;
    height: 210px;
    display: block;
    position: absolute;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}

.second-button a, .wrapper-inscription .button-top-left a, .screen-connexion .button-top-left a {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
}

.animation-rubberBand:hover, .second-button a:hover, .wrapper-inscription .button-top-left a:hover, .screen-connexion .button-top-left a:hover {
    animation-name: rubberBand;
}

.button-top-left {
    top: -100px;
    left: -100px;
    z-index: 999;
}

.button-bottom-right {
    bottom: -100px;
    right: -100px;
}

.button-top-right {
    top: -100px;
    right: -100px;
}

.button-top-left img {
    display: block;
    margin: 0;
    width: 70px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.button-bottom-right img {
    display: block;
    margin: 0;
    width: 60px;
    position: absolute;
    left: 40px;
    top: 40px;
}

.button-top-right h5 {
    display: block;
    margin: 0;
    position: absolute;
    left: 40px;
    bottom: 40px;
    transform: rotate(-15deg);
}


/* --------- SCREEN TITLE ----------- */

.screen-title {
    position: relative;
}

.bg-yellow {
    background: url("../img/title_main-bg_yellow.gif") no-repeat;
    background-size: 100%;
}

.main-screen {
    background-size: 100%;
    text-align: center;
    padding-top: 170px;
    position: relative;
}

.divider {
    fill: #6920a5;
    position: absolute;
    width: 100%;
    /*z-index: 1;*/
}

.divider svg {
    margin-top: -2px;
}

.screen-title .text-title {
    width: 1000px;
    margin: auto;
}

.screen-title .text-title h1 {
    visibility: hidden;
    animation-name: bounceIn;
    animation-duration: 1.2s;
    animation-delay: 1.3s;
    animation-fill-mode: forwards;

}

.screen-title .text-title p {
    visibility: hidden;
    margin-bottom: 90px;
    animation-name: backInUpAndRotate;
    animation-duration: 1s;
    animation-delay: 2.1s;
    animation-fill-mode: forwards;
}

.screen-title .button-animation {
    visibility: hidden;
    margin-top: 20px;
    z-index: 2;
    animation-name: backInUp;
    animation-duration: 1s;
    animation-delay: 3.5s;
    animation-fill-mode: forwards;
}

/*.second-animation-screen-title {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*}*/

/*.second-animation-screen-title-active {*/
/*    animation-name: title-gototop;*/
/*    animation-duration: 0.7s;*/
/*    animation-fill-mode: forwards;*/
/*    animation-delay: 1s;*/
/*}*/

.hide {
    animation-name: fadeOut;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

/* SCREEN TITLE INTRO */
.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1200px;
    height: 900px;
    margin: auto;
}

.intro .content {
    width: 1200px;
    height: 400px;
    text-align: center;
}

.intro .content p {
    margin-bottom: 50px;
}

.separator {
    display: block;
    width: 750px;
    height: 10px;
    background: url("../img/separator.png") no-repeat center;
    background-size: 100%;
    margin: 30px auto;

}


/* SCREEN TITLE SECOND PART */
.screen-title .second-screen {
    position: absolute;
    z-index: -1;
    width: 100%;
    text-align: center;
    height: 100%;
    top: 0;

}


.second-screen-active {
    /*animation-name: Visibility;*/
    /*animation-duration: 0.5s;*/
    /*animation-timing-function: ease-in;*/
    /*animation-fill-mode: forwards;*/
    /*animation-delay: 2s;*/
}

.screen-title .second-screen .header {
    padding: 10px 40px 30px;
}

.second-screen-active h2 {
    opacity: 0;
    animation-name: FadeInDown;
    animation-duration: 0.3s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

.second-screen-active p {
    opacity: 0;
    animation-name: FadeInDown;
    animation-duration: 0.3s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}

.screen-title .second-screen .content {
    margin: 0 300px 0 300px;

}

.box {
    width: 390px;
    height: 260px;
    float: left;
    position: relative;
    border-radius: 36% 64% 58% 42% / 50% 50% 50% 50%;
    border: 10px solid #ffd075;
    background-size: 100%;
    margin-bottom: 70px;
    display: inline-block;
}

.screen-title .second-screen a {
    color: #ffffff;
}

.box h4 {
    width: 280px;
    height: 120px;
    background: url("../img/btn-purple.png") no-repeat;
    background-size: 100%;
    position: absolute;
    top: 190px;
    left: 140px;
    line-height: 120px;
    margin: 0;
}

.box-top-left {
    background: url("../img/famille-super-heros.png") no-repeat center;
    margin-right: 100px;
    margin-left: 60px;
}

/*.second-screen-active .box-top-left{*/
/*    opacity: 0;*/
/*    animation-name: popUpBoxes;*/
/*    animation-duration: 0.5s;*/
/*    animation-fill-mode: forwards;*/
/*    animation-delay: 3.5s;*/
/*}*/
.box-bottom-left {
    background: url("../img/mamie.png") no-repeat center;
    margin-right: 100px;
    margin-left: 60px;
}

/*.second-screen-active .box-bottom-left{*/
/*    opacity: 0;*/
/*    animation-name: popUpBoxes;*/
/*    animation-duration: 0.5s;*/
/*    animation-fill-mode: forwards;*/
/*    animation-delay: 4.5s;*/
/*}*/
.box-top-right {
    background: url("../img/celibataire.png") no-repeat center;

}

/*.second-screen-active .box-top-right{*/
/*    opacity: 0;*/
/*    animation-name: popUpBoxes;*/
/*    animation-duration: 0.5s;*/
/*    animation-fill-mode: forwards;*/
/*    animation-delay: 4s;*/
/*}*/
.box-bottom-right {
    background: url("../img/couple.png") no-repeat center;

}

/*.second-screen-active .box-bottom-right{*/
/*    opacity: 0;*/
/*    animation-name: popUpBoxes;*/
/*    animation-duration: 0.5s;*/
/*    animation-fill-mode: forwards;*/
/*    animation-delay: 5s;*/
/*}*/


.complete-client {
    width: 80px;
    height: 80px;
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    background: url("../img/buttons/check.png") no-repeat center;
    background-size: 100%;
}

/* ------------ SCREEN CONNEXION ---------------- */


.screen-connexion {

}

.screen-connexion .main-screen {
    height: 560px;
    background-color: #6920a5;
}

.screen-connexion .main-screen {
    padding-top: 40px;
}

.screen-connexion h2, .screen-inscription h2 {
    margin: 0 0 10px 0;
}


.bubble-connexion input, .content-inscription input {
    display: block;
    padding: 14px;
    font-family: 'Work Sans', sans-serif;
    background: #ffffff;
    color: #777777;
    font-weight: 900;
    font-size: 28px;
    border: none;
    border-radius: 3px;
    text-align: center;
    margin: 14px auto;
    width: 500px;
}

.bubble-connexion input::placeholder, .content-inscription input::placeholder {
    color: #cfcfcf;
}

.bubble-connexion input:focus, .content-inscription input:focus {
    outline: none !important;
    box-shadow: 0 0 10px #673a96;
}

.footer-connexion {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

a.purple {
    font-family: 'Kalam', cursive;
    color: #673a96;
    font-size: 44px;
    font-weight: 600;
}

a.purple:hover {
    color: #4f1183;
}

.errorlist li {
    font-family: "Work Sans", serif;
    font-size: 24px;
    font-weight: 400;
}

/* Screen inscription */
.screen-inscription {
    position: relative;
    text-align: center;
}

.screen-inscription .divider {
    z-index: 0;
}

.screen-inscription h2 {
    position: absolute;
    z-index: 1;
    text-align: center;
    width: 100%;
    top: 20px;
}

.content-inscription {
    width: 900px;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100%;
    margin: auto;
    padding-top: 200px;

}

.content-inscription .button-submit {
    width: 160px;
    height: 160px;
    background: url("../img/button_validation-purple.png") no-repeat center;
    background-size: 100%;
    border: none;
    outline: none !important;
    margin-top: 30px;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
}

.footer-inscription {
    margin-top: 10px;
}

.footer-inscription p {
    color: #673a96;
    font-weight: 600;
}


/* screen save */
.screen-save {
    background-color: #6818ae;
}

.bubble-save {
    width: 1300px;
    margin: auto;
}

.bubble-save .text-title {
    background: url("../img/bubble-connexion.png") no-repeat center top;
    background-size: contain;
    width: 1200px;
    height: 375px;
    text-align: center;
    vertical-align: middle;
    margin: 60px auto;
    padding-top: 140px;
}

.bubble-save .text-title h1 {
    text-transform: none;
}

.bubble-save a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 47px;
    margin-left: 85px;
    color: white;
}

.bubble-save a p {
    font-family: 'Kalam', cursive;
}

.bubble-save .buttons-bg {
    margin-top: -160px;
    margin-left: 660px;
    margin-bottom: 60px;
}

.bubble-save .explanation {
    text-align: justify;
}


/* --------- SCREEN CLIENT TITLE ----------- */
.screen-client-title {
    background-repeat: no-repeat;

}

.screen-client-title .text-background {
    position: absolute;
    height: 900px;
    width: 960px;
    background: url("../img/title_young-man_text-background.png") no-repeat;
    background-size: cover;
    transform: translate3d(960px, 0, 0);
    transition: transform .4s ease-out .5s;
    top: 0;
    right: 0;
}

.screen-client-title .client {
    position: absolute;
    height: 100%;
    width: 792px;
    bottom: -900px;
    left: 10px;
    display: flex;
    align-items: flex-end;
}

.screen-client-title .client img {
    max-height: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.screen-client-title .text-client-title {
    padding-top: 300px;
    padding-left: 200px;
    width: 65%;
    text-align: center;

}

.screen-client-title .text-client-title h1 {
    font-size: 80px;
    transform: rotate(-15deg);
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

.screen-client-title .text-client-title p {
    font-size: 50px;
    transform: rotate(-15deg);
    margin-top: 20px;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

.screen-client-title .button-animation {
    margin-top: 100px;
    opacity: 0;
    animation-name: popUpBoxes;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: 4s;
}

/* --------- SCREEN MY PREFERENCES ----------- */

.screen-my-preferences {
    background-repeat: no-repeat;
}

.screen-my-preferences .text-background .content-intro {
    width: 650px;
    position: absolute;
    text-align: center;
    padding-top: 300px;
    padding-left: 150px;
}

/*.screen-my-preferences h2{*/
/*    opacity: 0;*/
/*    animation-name: fadeIn;*/
/*    animation-duration: 1s;*/
/*    animation-fill-mode: forwards;*/
/*    animation-delay: 2s;*/

/*}*/
.screen-my-preferences p {
    margin-top: 20px;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 3s;
}

.screen-my-preferences .content-game-left {
    width: 650px;
    position: absolute;
    text-align: center;
    padding-top: 70px;
    padding-left: 150px;
}

.screen-my-preferences .instruction {
    opacity: 0;
    width: 280px;
    padding: 12px 30px;
    margin: 0 0 10px 100px;
    position: relative;
    z-index: 10;
}

.screen-my-preferences .instruction:after {
    content: url("../img/instruction-arrow_right.png");
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: -1;
}

.screen-my-preferences .instruction p {
    color: #3aabb4;
    font-size: 30px;
    margin: 0;
    line-height: 30px;
}

.screen-my-preferences .text {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-align {
    display: block;
}

.screen-my-preferences .content-game-right {
    width: 650px;
    position: absolute;
    text-align: center;
    right: 195px;
    padding: 70px 50px 20px 70px;
}

.list li, .list .validation, .list .stack-item {
    padding: 22px;
    margin-bottom: 30px;
    font-family: 'Work Sans', sans-serif;
}

.list li:nth-child(4) {
    margin-bottom: 70px;
}

.list div.header {
    color: #ffffff;
    background: #ff9a31;
    font-weight: 600;
    font-size: 28px;
    border: none;
}

.list li.list-item {
    background: #ffffff;
    color: #696969;
    font-weight: 600;
    font-size: 28px;
}

/* texte déposé */
.list li.list-item.text-drop-custom {
    color: #777777;
    font-weight: 600;
    font-size: 28px;
}

.list div.validation {
    color: #ffffff;
    background: #ff9a31;
    font-weight: 900;
    font-size: 50px;
    text-transform: uppercase;
}

.list div.validation.disabled {
    background: #696969;
}

.content-game-right div.validation a {
    color: #ffffff;
    text-decoration: none;
}

/* --------- SCREEN HOW TO REACT----------- */

.screen-how-to-react {
    background-repeat: no-repeat;
}

.screen-how-to-react .client {
    width: 760px;
    height: 100%;
    margin-top: 110px;
    margin-left: 70px;

}


.screen-how-to-react .text-background .content-intro {
    width: 600px;
    position: absolute;
    text-align: center;
    padding-top: 300px;
    padding-left: 200px;
}

.screen-how-to-react h1 {
    font-size: 60px;

}

.screen-how-to-react p {
    margin-top: 20px;
}


.screen-how-to-react .content-game-left {
    width: 650px;
    text-align: center;
    padding-top: 70px;
    padding-left: 150px;


}

.screen-how-to-react .content-game-left .text {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.screen-how-to-react .instruction {
    width: 280px;
    padding: 12px 30px;
    margin: 100px 0 10px 100px;
    position: relative;
    z-index: 10;
}

.screen-how-to-react .instruction:after {
    content: url("../img/instruction-arrow_right.png");
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: -1;
    /*animation-name: arrow-gotoright ;*/
    /*animation-duration: 2s;*/
    /*animation-delay: 10s;*/
    /*animation-fill-mode: forwards;*/

}

.screen-how-to-react .instruction p {
    color: #f47b6f;
    font-size: 30px;
    margin: 0;
    line-height: 30px;
}

.screen-how-to-react .content-game-right {
    width: 700px;
    position: absolute;
    text-align: center;
    top: 0;
    right: 150px;
    padding: 70px 50px 0 0;
    /*animation-name: gotobottom2 ;*/
    /*animation-timing-function: cubic-bezier(0.1, -0.6, 0.2, 0);*/
    /*animation-duration: 2s;*/
    /*animation-delay: 9s;*/
    /*animation-fill-mode: forwards;*/

}

.list-quizz li {
    display: flex;
    height: 190px;
    vertical-align: middle;
    padding: 0 70px 0 70px;
    margin-bottom: 6px;
}

.list-quizz li p {
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: 28px;
    line-height: 28px;
    margin: auto;
}

.list-quizz li:first-child, .list-quizz li:nth-child(3) {
    background: url("../img/list-quizz_bg-1.png") no-repeat;
    background-size: 700px 190px;
}

.list-quizz li:nth-child(2), .list-quizz li:nth-child(4) {
    background: url("../img/list-quizz_bg-2.png") no-repeat;
    background-size: 700px 190px;
}


/* --------- SCREEN JUDGEMENT ----------- */

.screen-judgement {
    background-repeat: no-repeat;
}

.screen-judgement .text-background {
    background: url("../img/judgement_text-background.png") no-repeat;
    background-size: 100%;
}

.screen-judgement .text-background .content-intro {
    width: 600px;
    position: absolute;
    text-align: center;
    padding-top: 300px;
    padding-left: 200px;
}

.screen-judgement h1 {
    font-size: 60px;

}

.screen-judgement p {
    margin-top: 20px;

}

.buttons-judgment {
    margin-left: 50px;
}

.buttons-judgment .button {
    width: 120px;
    height: 120px;
    display: inline-block;
    margin-right: 12px;
    padding: 0 20px;

}

.screen-judgement .analyse-choice-active {
    animation-delay: 0.5s;
}

.screen-judgement .content-game-left {
    width: 650px;
    position: absolute;
    text-align: center;
    top: 110px;
    left: 0;
    padding-top: 100px;
    padding-left: 150px;

}

.screen-judgement .instruction {
    width: 320px;
    padding: 12px 30px;
    margin: 80px 0 10px 100px;
    position: relative;
    z-index: 10;
}

.screen-judgement .instruction:after {
    content: url("../img/instruction-arrow_right.png");
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: -1;
}

.screen-judgement .instruction p {
    color: #673a96;
    font-size: 32px;
    margin: 0;
    line-height: 30px;
}

.screen-judgement .content-game-right {
    width: 850px;
    position: absolute;
    text-align: center;
    padding: 70px 50px 0 0;

}

.screen-judgement .content-game-right .text {
    margin-top: 100px;
    margin-bottom: 50px;
    background: url("../img/judgement-game-background.png") no-repeat;
    height: 450px;
    background-size: 100%;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.screen-judgement .content-game-right .text-animation {
    animation-name: popUpBoxes;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

/* --------- SCREEN FEEDBACK ----------- */
.screen-feedback {
    background: url("../img/title_main-bg_yellow.gif") no-repeat;

}

.screen-feedback .text-background {
    height: 100%;
    width: 2053px;
    background: url("../img/feedback_text-background.gif") no-repeat;
    background-size: 100%;

    text-align: center;
}

/*.screen-feedback .client{*/
/*    height: 100%;*/
/*    width: 692px;*/
/*    margin-top: -750px;*/
/*    margin-left: 40px;*/
/*}*/
.screen-feedback .text-title {
    position: relative;
    top: 220px;
    left: 100px;
    width: 650px;

}

.screen-feedback .text-title h1 {
    font-size: 40px;

}

.screen-feedback .text-title p {
    margin-top: 20px;
}

.screen-feedback h3 {
    font-size: 34px;
    font-weight: 600;
}

.screen-feedback .separator {
    width: 650px;
}

.button-feedback {
    margin-top: 50px;
}

/* ------ SCORES ------ */
.screen-score {
    background: url("../img/score-bg.gif") no-repeat center;
    background-size: 100%;
    text-align: center;
}

.screen-score h2 {
    margin-top: 60px;
}

.cloud {
    height: 740px;
    width: 1400px;
    margin: auto;
}

.cloud-1 {
    background: url("../img/cloud-1.png") no-repeat center;
    background-size: 100%;
}

.cloud-2 {
    background: url("../img/cloud.png") no-repeat center;
    background-size: 100%;
}

.cloud-text {
    padding-top: 160px;
}

.cloud h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    color: #ff0000;
    text-transform: uppercase;
    margin: 10px;
}

.button-bottom {
    position: absolute;
    bottom: 60px;
    right: 80px;
}

.tag-cloud {
    padding-top: 100px;
}

.tag-cloud h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin: 10px;
}





