@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: mainFont;
  src: url("../fonts/Nunito-Bold.ttf") format("truetype");
}
@font-face {
  font-family: mainBolderFont;
  src: url("../fonts/Nunito-Black.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}
:focus {
  outline: none;
}
body {
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: mainFont;
  font-weight: 400;
  font-style: normal;
  	overflow: hidden;
}

p {
  margin: 0;
  padding: 0 0 10px 0;
}

strong {
  font-family: mainBolderFont;
}
b {
  font-family: mainBolderFont;
}

.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.txt-bubble p {
  font-size: 19px;
  line-height: 25px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
}

#preload-holder {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

#stage-holder {
  position: relative;
  background: #666;
  height: 100vh;
  width: 100%;
}

#stage {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  overflow: hidden;
  width: 1112px;
  height: 794px;
  background: #444;
}

.sign-up {
  position: absolute;
  background: rgba(116, 69, 121, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.sign-up .sign-up__container {
  background: #744579;
  padding: 60px 75px 60px 75px;
  border: 3px solid #c0a3c2;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.sign-up .sign-up__container p {
  color: white;
  font-size: 22px;
}

.sign-up .sign-up__container .sign-up__container__form {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.sign-up .sign-up__container form input[type="text"] {
  margin: 15px 0 25px 0; 
  width: 350px;
  border: 2px solid #c0a3c2;
  border-radius: 10px;
  padding: 10px;
}

.sign-up__container .sign-up__container__error-msg {
  display: none;
  color: white;
  font-size: 15px;
  margin-bottom: 25px;
}

.sign-up__container .sign-up__container__sign-up-btn {
  border: 3px solid white;
  background: #926197;
  border-radius: 15px;
  padding: 8px 45px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.sign-up__container .sign-up__container__sign-up-btn:hover {
  background: white;
  border: 3px solid #926197;
  color: #926197;
}

#loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: #444;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

#loading .inner {
  text-align: center;
}
#loading p {
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  margin: 20px 0 0 0;
}

.div-hide {
  display: none;
  opacity: 0;
}

.hide {
  display: none;
}

.anim-hide {
  opacity: 0;
}

.screen-block {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.screen-block img {
  position: absolute;
}

.sub-screen {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.play-button {
  position: absolute;
  width: 116px;
  height: 116px;
  border-radius: 58px;
  border: 8px solid #fff;
  background-image: url("../images/btn-play.svg");
  background-size: cover;
  transition: background-color ease 0.5s;
  cursor: pointer;
}
.play-button.purple {
  background-color: #936298;
}
.play-button.purple:hover {
  background-color: #bb9cbe;
}
.play-button.orange {
  background-color: #ed5f00;
}
.play-button.orange:hover {
  background-color: #ef941d;
}
.play-button.blue {
  background-color: #0097ce;
}
.play-button.blue:hover {
  background-color: #81cbe6;
}

#screen1 {
  display: block;
  opacity: 1;
  background: url("../images/screen1-bg.png") 0 0 no-repeat;
  background-size: cover;
  z-index: 1;
}
#screen1 .title {
  top: 15px;
  left: 25px;
}
#screen1 .txt1 {
  position: absolute;
  width: 767px;
  bottom: 50px;
  left: 135px;
  color: #fff;
  text-align: center;
  font-size: 26px;
  line-height: 30px;
}
#screen1 .txt2 {
  position: absolute;
  width: 1050px;
  bottom: 0px;
  left: 31px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  line-height: 13px;
}

#screen1 .play-button {
  bottom: 45px;
  right: 35px;
}
#screen1 .bayer-logo {
  top: 35px;
  right: 35px;
}

#screen2 {
  background: url("../images/screen2-bg.png") 0 0 no-repeat;
  background-size: cover;
}
#screen2 .sub1 .txt1 {
  position: absolute;
  width: 500px;
  height: 210px;
  top: 240px;
  left: 315px;
  background: url("../images/screen2-txt1.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen2 .sub1 .txt1 .txt-inner {
  padding: 0 30px 0 75px;
}
#screen2 .play-button {
  bottom: 35px;
  right: 35px;
}

#screen2 .sub2 .txt1 {
  position: absolute;
  width: 520px;
  height: 280px;
  top: 240px;
  left: 305px;
  background: url("../images/screen2-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen2 .sub2 .txt1 .txt-inner {
  padding: 10px 20px 0 65px;
}

#screen2 .sub3 .txt1 {
  position: absolute;
  width: 520px;
  height: 315px;
  top: 240px;
  left: 305px;
  background: url("../images/screen2-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen2 .sub3 .txt1 .txt-inner {
  padding: 7px 30px 0 75px;
}
#screen2 .sub3 .door {
  position: absolute;
  top: 60px;
  left: 425px;
  width: 280px;
  height: 600px;
  cursor: pointer;
}
#screen2 .door-holder {
  position: absolute;
  top: 75px;
  left: 432px;
  width: 265px;
  height: 595px;
  overflow: hidden;
}
#screen2 .door-anim {
  position: absolute;
  top: -7px;
  left: 0;
  width: 270px;
  height: 600px;
  background: url("../images/screen2-door.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}
#screen2 .door-sign {
  position: absolute;
  top: 42px;
  left: 35px;
  width: 205px;
  height: 100px;
  background: url("../images/screen2-door-sign.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen2 .door-light {
  position: absolute;
  top: 75px;
  left: 435px;
  width: 622px;
  height: 722px;
  background: url("../images/screen2-door-light.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}

#screen3 {
  background: url("../images/screen3-bg.png") 0 0 no-repeat;
  background-size: cover;
}
#screen3 .sub1 .txt1 {
  position: absolute;
  width: 430px;
  height: 210px;
  top: 90px;
  left: 265px;
  background: url("../images/screen3-txt1.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen3 .sub1 .txt1 .txt-inner {
  padding: 0 30px 20px 30px;
}

#screen3 .btn-nxt {
  top: 100px;
  left: 100px;
  cursor: pointer;
}

#screen3 .btn-next-sub {
  bottom: 25px;
  right: 35px;
  cursor: pointer;
}

#screen3 .sub2 .txt1 {
  position: absolute;
  width: 550px;
  height: 350px;
  top: 50px;
  left: 265px;
  background: url("../images/screen3-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen3 .sub2 .txt1 .txt-inner {
  padding: 0 30px 80px 30px;
}
#screen3 .sub2 .btn-next-sub {
  top: 290px;
  left: 470px;
}

#screen3 .sub3 .txt1 {
  position: absolute;
  width: 550px;
  height: 370px;
  top: 50px;
  left: 265px;
  background: url("../images/screen3-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen3 .sub3 .txt1 .txt-inner {
  padding: 0 30px 80px 30px;
}
#screen3 .sub3 .btn-next {
  top: 295px;
  left: 470px;
  cursor: pointer;
}

#btn-briefcase {
  display: none;
  opacity: 0;
  position: absolute;
  bottom: 25px;
  right: 35px;
  width: 112px;
  height: 112px;
  background-image: url("../images/btn-briefcase.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 66px;
  transition: background-color ease 0.5s;
}
#btn-briefcase.blue {
  background-color: #0097ce;
}
#btn-briefcase.blue.enabled:hover {
  background-color: #81cbe6;
}
#btn-briefcase.orange {
  background-color: #ef941d;
}
#btn-briefcase.orange.enabled {
  background-color: #ed5f00;
}
#btn-briefcase.orange.enabled:hover {
  background-color: #ef941d;
}

#btn-briefcase.purple {
  background-color: #926197;
}
#btn-briefcase.purple.enabled:hover {
  background-color: #bb9cbe;
}

#btn-briefcase.enabled,
#btn-clipboard.enabled {
  cursor: pointer;
}

.orange-txt {
  color: #ed5f00;
}

.show {
  display: block !important;
}

#screen-briefcase {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/briefcase-bg.png") 0 0 no-repeat;
  background-size: cover;
  z-index: 5;
}

.btn-close-briefcase {
  position: absolute;
  bottom: 25px;
  right: 35px;
  cursor: pointer;
}

#btn-clipboard {
  display: none;
  opacity: 0;
  position: absolute;
  bottom: 25px;
  right: 163px;
  width: 112px;
  height: 112px;
  background-image: url("../images/btn-clipboard.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 66px;
  transition: background-color ease 0.5s;
}
#btn-clipboard.blue {
  background-color: #81cbe6;
}
#btn-clipboard.enabled {
  background-color: #0097ce;
}
#btn-clipboard.blue.enabled:hover {
  background-color: #81cbe6;
}
#btn-clipboard.orange {
  background-color: #ef941d;
}
#btn-clipboard.orange.enabled {
  background-color: #ed5f00;
}

#screen-clipboard {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/clipboard-bg.png") 0 0 no-repeat;
  background-size: cover;
  z-index: 20;
}
.btn-close-clipboard {
  position: absolute;
  bottom: 25px;
  right: 35px;
}
#screen-clipboard .clip-state1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/clipboard-state1.png") 0 0 no-repeat;
  background-size: cover;
}
#screen-clipboard .clip-state2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/clipboard-state2.png") 0 0 no-repeat;
  background-size: cover;
}
#screen-clipboard .clip-state3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/clipboard-state3.png") 0 0 no-repeat;
  background-size: cover;
}

#screen4 {
  background: url("../images/screen4-bg.png") 0 0 no-repeat;
  background-size: cover;
}
#screen4 .txt1 {
  position: absolute;
  width: 790px;
  height: 95px;
  top: 10px;
  left: 165px;
  background: url("../images/screen4-txt1.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen4 .txt1 .txt-inner {
  padding: 0 30px 0 30px;
}
#screen4 p {
  font-size: 30px;
  line-height: 34px;
  color: #926197;
  font-style: normal;
  padding: 0;
}

#screen4 .btn-next {
  bottom: 25px;
  right: 35px;
}

#case1-select {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 200px;
  left: 50px;
  width: 400px;
  height: 250px;
  background: rgba(169, 166, 166, 0);
  z-index: 5;
  cursor: pointer;
}
#case2-select {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 200px;
  left: 620px;
  width: 400px;
  height: 250px;
  background: rgba(169, 166, 166, 0);
  z-index: 5;
  cursor: pointer;
}
#case3-select {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 520px;
  left: 370px;
  width: 400px;
  height: 250px;
  background: rgba(169, 166, 166, 0);
  z-index: 5;
  cursor: pointer;
}
.btn-next.disable {
  cursor: default !important;
}
.btn-next-custom.disable {
  cursor: default !important;
}

.screen-block img.case1-solved,
.screen-block img.case2-solved,
.screen-block img.case3-solved {
  position: relative;
}

#screen5 {
  background: url("../images/screen5-bg.png") 0 0 no-repeat;
  background-size: cover;
}
#screen5 .img-patients {
  top: 172px;
  left: 358px;
}
#screen5 .img-doctor {
  top: 198px;
  left: 63px;
}
#screen5 .timer {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 240px;
  height: 90px;
  background: url("../images/screen5-timer.svg") 0 0 no-repeat;
  background-size: cover;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  padding: 20px 0 0 85px;
  color: #0097ce;
}

#screen5 .sub1 .txt1,
#screen5 .sub4 .txt1 {
  position: absolute;
  width: 260px;
  height: 235px;
  top: 30px;
  left: 230px;
  background: url("../images/screen5-txt1.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen5 .sub1 .txt1 .txt-inner {
  padding: 0 20px 40px 20px;
}
#screen5 .answers {
  position: absolute;
  width: 454px;
  bottom: 25px;
  left: 333px;
  color: #0097ce;
}
#screen5 .answers .btn {
  transition: all ease 0.3s;
}
#screen5 .answers .btn,
#screen5 .answers .btn:hover.disabled {
  border: 5px solid #0097ce;
  background: #fff;
  color: #0097ce;
}
#screen5 .answers .btn:hover,
#screen5 .answers .btn.chosen,
#screen5 .answers .btn.chosen:hover.disabled {
  background: #0097ce;
  color: #fff;
}

#screen5 .sub2 .txt1 {
  position: absolute;
  width: 265px;
  height: 172px;
  top: 270px;
  left: 110px;
  background: url("../images/screen5-sub2-txt1.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen5 .sub2 .txt1 .txt-inner {
  padding: 20px 70px 10px 20px;
}
#screen5 .sub2 .txt2,
#screen5 .sub3 .txt2 {
  position: absolute;
  width: 300px;
  height: 234px;
  top: 10px;
  left: 350px;
  background: url("../images/screen5-sub2-txt2.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen5 .sub2 .txt2 .txt-inner {
  padding: 28px 10px 70px 10px;
}
#screen5 .sub2 .txt3,
#screen5 .sub3 .txt3 {
  position: absolute;
  width: 300px;
  height: 280px;
  top: 270px;
  left: 630px;
  background: url("../images/screen5-sub2-txt3.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub2 .txt3 .txt-inner {
  padding: 70px 10px 10px 10px;
}
#screen5 .txt-add-to-clipboard {
  position: absolute;
  border: 5px solid #0097ce;
  width: 350px;
  bottom: 47px;
  right: 290px;
  cursor: none;
}
#screen5 .txt-add-to-clipboard:after {
  content: "";
  width: 20px;
  height: 5px;
  background: #0097ce;
  position: absolute;
  top: 50%;
  right: -20px;
}
#screen5 .sub3 .txt1 {
  position: absolute;
  width: 335px;
  height: 210px;
  top: 270px;
  left: 70px;
  background: url("../images/screen5-sub2-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub3 .txt1 .txt-inner {
  padding: 20px 75px 10px 15px;
}
#screen5 .sub3 .txt2 .txt-inner {
  padding: 0 15px 40px 15px;
}
#screen5 .sub3 .txt3 .txt-inner {
  padding: 70px 20px 0 20px;
}

#screen5 .txt-bubble .txt-inner {
  position: relative;
}
#screen5 .sub4 .txt-inner {
  padding: 0 10px 10px 10px;
}

#screen5 .sub4 .txt-bubble p {
  position: absolute;
  width: 100%;
  left: 0;
}
#screen5 .sub4 .txt-bubble p.question {
  top: 60px;
  padding: 0 25px;
}
#screen5 .sub4 .txt-bubble p.response1 {
  top: 25px;
  padding: 0 25px;
}

#screen5 .sub5 .btn-next-sub {
  top: 200px;
  left: 200px;
}
#screen5 .sub5 .txt1 {
  position: absolute;
  width: 260px;
  height: 235px;
  top: 30px;
  left: 230px;
  background: url("../images/screen5-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub5 .txt1 .txt-inner {
  padding: 15px 25px 0 25px;
}
#screen5 .sub5 .txt2 {
  position: absolute;
  width: 330px;
  height: 335px;
  top: 20px;
  left: 235px;
  background: url("../images/screen5-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub5 .txt2 .txt-inner {
  padding: 20px 25px 0 25px;
}
#screen5 .sub5 .txt3 {
  position: absolute;
  width: 330px;
  height: 370px;
  top: 20px;
  left: 235px;
  background: url("../images/screen5-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub5 .txt3 .txt-inner {
  padding: 20px 25px 0 25px;
}
#screen5 .sub5 .txt4 {
  position: absolute;
  width: 350px;
  height: 295px;
  top: 30px;
  left: 230px;
  background: url("../images/screen5-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub5 .txt4 .txt-inner {
  padding: 20px 25px 0 25px;
}

#screen5 .sub5 .btn-next-custom {
  cursor: pointer;
  top: 210px;
  left: 350px;
}

#screen5 .sub6 .txt1 {
  position: absolute;
  width: 320px;
  height: 290px;
  top: 30px;
  left: 230px;
  background: url("../images/screen5-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub6 .txt1 .txt-inner {
  padding: 20px 25px 0 25px;
}
#screen5 .sub6 .txt2 {
  position: absolute;
  width: 520px;
  height: 330px;
  top: 30px;
  left: 235px;
  background: url("../images/screen5-sub6-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub6 .txt2 .txt-inner {
  padding: 20px 15px 0 30px;
}
#screen5 .sub6 .txt3 {
  position: absolute;
  width: 475px;
  height: 350px;
  top: 10px;
  left: 235px;
  background: url("../images/screen5-sub6-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub6 .txt3 .txt-inner {
  padding: 20px 20px 0 30px;
}
#screen5 .sub6 .txt4 {
  position: absolute;
  width: 390px;
  height: 270px;
  top: 30px;
  left: 245px;
  background: url("../images/screen5-sub6-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub6 .txt4 .txt-inner {
  padding: 20px 25px 0 25px;
}
#screen5 .sub6 .popover {
  display: none;
  position: absolute;
  top: 65px;
  left: 530px;
  width: 300px;
  border-radius: 20px;
  background: #0097ce;
}
#screen5 .sub6 .popover .txt-inner {
  padding: 20px;
}
#screen5 .sub6 .popover .txt-inner p {
  color: #fff;
  padding: 0;
}
#screen5 .trigger-pop {
  color: #0097ce;
}
#screen5 .sub6 .btn-next-custom.rsp1 {
  top: 275px;
  left: 425px;
}
#screen5 .sub6 .btn-next-custom.rsp2 {
  top: 255px;
  left: 417px;
}
#screen5 .sub6 .btn-next-custom.rsp3 {
  top: 200px;
  left: 392px;
}

#screen5 .sub7 .txt1 {
  position: absolute;
  width: 555px;
  height: 360px;
  top: 30px;
  left: 250px;
  background: url("../images/screen5-sub7-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen5 .sub7 .txt-inner {
  padding: 40px 30px 10px 60px;
}
#screen5 .sub7 .popover {
  display: none;
  position: absolute;
  top: 135px;
  left: 785px;
  width: 300px;
  border-radius: 20px;
  background: #0097ce;
}
#screen5 .sub7 .popover .txt-inner {
  padding: 20px;
}
#screen5 .sub7 .popover .txt-inner p {
  padding: 0;
  color: #fff;
}
#screen5 .trigger-pop,
#screen5 .txt-blue {
  color: #0097ce;
}
#screen5 .sub7 .btn-next {
  cursor: pointer;
  top: 325px;
  left: 480px;
}

.btn {
  border: 5px solid #000;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  cursor: pointer;
}
.btn.chosen {
  background: #000;
  color: #fff;
}
.btn.disabled {
  cursor: default;
}

#screen6 {
  background: url("../images/screen6-bg.png") 0 0 no-repeat;
  background-size: cover;
}
#screen6 .img-doctor {
  top: 198px;
  left: 63px;
}
#screen6 .timer {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 240px;
  height: 90px;
  background: url("../images/screen6-timer.svg") 0 0 no-repeat;
  background-size: cover;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  padding: 20px 0 0 85px;
  color: #926197;
}

#screen6 .sub1 .txt1 {
  position: absolute;
  width: 265px;
  height: 215px;
  top: 30px;
  left: 235px;
  background: url("../images/screen5-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub1 .txt1 .txt-inner {
  padding: 30px 20px 0 20px;
}
#screen6 .answers {
  position: absolute;
  width: 454px;
  bottom: 25px;
  left: 333px;
  color: #926197;
}
#screen6 .answers .btn {
  transition: all ease 0.3s;
}
#screen6 .answers .btn,
#screen6 .answers .btn.disabled:hover {
  border: 5px solid #926197;
  background: #fff;
  color: #926197;
}
#screen6 .answers .btn:hover,
#screen6 .answers .btn.chosen,
#screen6 .answers .btn.chosen.disabled:hover {
  background: #926197;
  color: #fff;
}
#screen6 .answers .btn.submit {
  background: #926197;
  border: 5px solid #fff;
  color: #fff;
  width: 50%;
  margin: 10px auto 0 auto;
}
#screen6 .answers .btn.submit:hover {
  background: #bb9cbe;
}

#screen6 .sub2 .txt1 {
  position: absolute;
  width: 230px;
  height: 130px;
  top: 300px;
  left: 440px;
  background: url("../images/screen5-sub2-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub2 .txt1 .txt-inner {
  padding: 50px 65px 40px 20px;
}

#screen6 .sub3 .txt1 {
  position: absolute;
  width: 390px;
  height: 285px;
  top: 50px;
  left: 260px;
  background: url("../images/screen6-sub3-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub3 .txt1 .txt-inner {
  padding: 25px 40px 0 15px;
}
#screen6 .sub3 .btn-next-sub-custom {
  cursor: pointer;
  top: 240px;
  left: 385px;
}
#screen6 .callout {
  top: 133px;
  right: 50px;
}

#screen6 .sub4 .txt1 {
  position: absolute;
  width: 200px;
  height: 185px;
  top: 65px;
  left: 240px;
  background: url("../images/screen6-sub4-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub4 .txt1 .txt-inner {
  padding: 30px 25px 0 25px;
}
#screen6 .sub4 .txt2 {
  position: absolute;
  width: 320px;
  height: 275px;
  top: 30px;
  left: 230px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub4 .txt2 .txt-inner {
  padding: 30px 25px 0 25px;
}
#screen6 .sub4 .txt3 {
  position: absolute;
  width: 390px;
  height: 270px;
  top: 30px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub4 .txt3 .txt-inner {
  padding: 20px 20px 0 30px;
}
#screen6 .sub4 .txt4 {
  position: absolute;
  width: 390px;
  height: 270px;
  top: 30px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub4 .txt4 .txt-inner {
  padding: 20px 20px 0 30px;
}
#screen6 .sub4 .txt5 {
  position: absolute;
  width: 300px;
  height: 255px;
  top: 30px;
  left: 230px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub4 .txt5 .txt-inner {
  padding: 27px 20px 0 20px;
}

#screen6 .sub4 .btn-next-custom {
  cursor: pointer;
  top: 215px;
  left: 335px;
}

#screen6 .sub5 .txt1 {
  position: absolute;
  width: 235px;
  height: 195px;
  top: 65px;
  left: 240px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt1 .txt-inner {
  padding: 20px 20px 0 20px;
  position: relative;
}
#screen6 .sub5 .txt2 {
  position: absolute;
  width: 415px;
  height: 315px;
  top: 20px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt2 .txt-inner {
  padding: 15px 15px 0 25px;
  position: relative;
}
#screen6 .sub5 .txt3 {
  position: absolute;
  width: 410px;
  height: 315px;
  top: 20px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt3 .txt-inner {
  padding: 15px 15px 0 25px;
  position: relative;
}
#screen6 .sub5 .txt4 {
  position: absolute;
  width: 410px;
  height: 315px;
  top: 20px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt4 .txt-inner {
  padding: 15px 15px 0 25px;
  position: relative;
}
#screen6 .sub5 .txt5 {
  position: absolute;
  width: 345px;
  height: 295px;
  top: 20px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt5 .txt-inner {
  padding: 20px 25px 0 35px;
  position: relative;
}
#screen6 .sub5 .txt6 {
  position: absolute;
  width: 410px;
  height: 345px;
  top: 5px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt6 .txt-inner {
  padding: 15px 15px 0 25px;
  position: relative;
}
#screen6 .sub5 .txt7 {
  position: absolute;
  width: 410px;
  height: 345px;
  top: 5px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt7 .txt-inner {
  padding: 15px 15px 0 25px;
  position: relative;
}
#screen6 .sub5 .txt8 {
  position: absolute;
  width: 430px;
  height: 335px;
  top: 5px;
  left: 245px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub5 .txt8 .txt-inner {
  padding: 20px 20px 0 30px;
  position: relative;
}

#screen6 .sub5 .btn-next-custom {
  top: 235px;
  left: 395px;
}
#screen6 .sub5 .btn-next-custom.rsp1,
#screen6 .sub5 .btn-next-custom.rsp2,
#screen6 .sub5 .btn-next-custom.rsp3 {
  top: 235px;
  left: 395px;
}
#screen6 .sub5 .btn-next-custom.rsp4 {
  top: 210px;
  left: 365px;
}
#screen6 .sub5 .btn-next-custom.rsp5,
#screen6 .sub5 .btn-next-custom.rsp6 {
  top: 245px;
  left: 395px;
}

#screen6 .sub6 .txt1 {
  position: absolute;
  width: 555px;
  height: 360px;
  top: 30px;
  left: 250px;
  background: url(../images/screen5-sub7-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen6 .sub6 .txt1 .txt-inner {
  padding: 40px 30px 10px 60px;
}
#screen6 .sub6 .popover {
  display: none;
  position: absolute;
  top: 130px;
  left: 785px;
  width: 300px;
  border-radius: 20px;
  background: #926197;
}
#screen6 .sub6 .popover .txt-inner {
  padding: 20px;
}
#screen6 .sub6 .popover .txt-inner p {
  color: #fff;
}
#screen6 .trigger-pop,
#screen6 .txt-purple {
  color: #926197;
}
#screen6 .sub6 .btn-next {
  cursor: pointer;
  top: 325px;
  left: 475px;
}

#screen7 {
  background: url("../images/screen7-bg.png") 0 0 no-repeat;
  background-size: cover;
}
#screen7 .img-doctor {
  top: 198px;
  left: 63px;
}
#screen7 .img-couple {
  top: 188px;
  left: 422px;
}
#screen7 .timer {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 240px;
  height: 90px;
  background: url("../images/screen7-timer.svg") 0 0 no-repeat;
  background-size: cover;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  padding: 20px 0 0 85px;
  color: #ed5f00;
}

#screen7 .sub1 .txt1 {
  position: absolute;
  width: 385px;
  height: 295px;
  top: 50px;
  left: 80px;
  background: url("../images/screen7-sub1-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub1 .txt1 .txt-inner {
  padding: 20px 30px 40px 20px;
}
#screen7 .sub1 .btn-next-sub-custom {
  cursor: pointer;
  top: 240px;
  left: 202px;
}
#screen7 .answers {
  position: absolute;
  width: 454px;
  bottom: 25px;
  left: 333px;
  color: #ed5f00;
}
#screen7 .answers .btn {
  transition: all ease 0.3s;
}
#screen7 .answers .btn,
#screen7 .answers .btn.disabled:hover {
  border: 5px solid #ed5f00;
  background: #fff;
  color: #ed5f00;
}
#screen7 .answers .btn:hover,
#screen7 .answers .btn.chosen,
#screen7 .answers .btn.chosen.disabled:hover {
  background: #ed5f00;
  color: #fff;
}
#screen7 .answers .btn.submit {
  background: #ed5f00;
  border: 5px solid #fff;
  color: #fff;
  width: 50%;
  margin: 10px auto 0 auto;
}
#screen7 .answers .btn.submit:hover {
  background: #ef941d;
}

#screen7 .sub2 .txt1,
#screen7 .sub2 .txt2 {
  position: absolute;
  width: 200px;
  height: 185px;
  top: 65px;
  left: 240px;
  background: url("../images/screen6-sub4-bubble.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen7 .sub2 .txt1 .txt-inner,
#screen7 .sub2 .txt2 .txt-inner {
  padding: 15px 20px 0 20px;
}

#screen7 .sub2 .txt3 {
  position: absolute;
  width: 440px;
  height: 325px;
  top: 20px;
  left: 20px;
  background: url("../images/screen7-sub1-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub2 .txt3 .txt-inner {
  padding: 20px 30px 0 20px;
}

#screen7 .sub2 .txt4 {
  position: absolute;
  width: 310px;
  height: 195px;
  top: 110px;
  left: 160px;
  background: url("../images/screen7-sub2-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub2 .txt4 .txt-inner {
  padding: 20px 75px 0 20px;
}

#screen7 .sub2 .btn-next-custom {
  top: 240px;
  left: 202px;
}
#screen7 .sub2 .btn-next-custom.rsp1 {
  top: 250px;
  left: 175px;
}
#screen7 .sub2 .btn-next-custom.rsp2 {
  top: 240px;
  left: 225px;
}

#screen7 .sub3 .txt1 {
  position: absolute;
  width: 200px;
  height: 185px;
  top: 65px;
  left: 240px;
  background: url("../images/screen6-sub4-bubble.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen7 .sub3 .txt1 .txt-inner {
  padding: 15px 20px 0 20px;
}

#screen7 .sub4 .txt1 {
  position: absolute;
  width: 200px;
  height: 185px;
  top: 65px;
  left: 240px;
  background: url("../images/screen6-sub4-bubble.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen7 .sub4 .txt1 .txt-inner {
  padding: 15px 20px 0 20px;
}
#screen7 .sub4 .txt2 {
  position: absolute;
  width: 310px;
  height: 260px;
  top: 60px;
  left: 120px;
  background: url("../images/screen7-sub1-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub4 .txt2 .txt-inner {
  padding: 20px 30px 0 20px;
}
#screen7 .sub4 .txt3 {
  position: absolute;
  width: 310px;
  height: 210px;
  top: 90px;
  left: 160px;
  background: url("../images/screen7-sub2-bubble.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub4 .txt3 .txt-inner {
  padding: 20px 75px 0 20px;
}

#screen7 .sub4 .btn-next-custom {
  top: 240px;
  left: 202px;
}
#screen7 .sub4 .btn-next-custom.rsp1 {
  top: 225px;
  left: 210px;
}
#screen7 .sub4 .btn-next-custom.rsp2 {
  top: 240px;
  left: 225px;
}

#screen7 .sub5 .txt1 {
  position: absolute;
  width: 310px;
  height: 275px;
  top: 30px;
  left: 240px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub5 .txt1 .txt-inner {
  padding: 20px 20px 40px 20px;
}
#screen7 .sub5 .btn-next-sub-custom {
  top: 178px;
  left: 335px;
}

#screen7 .sub6 .txt1 {
  position: absolute;
  width: 180px;
  height: 170px;
  top: 85px;
  left: 240px;
  background: url("../images/screen6-sub4-bubble.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen7 .sub6 .txt1 .txt-inner {
  padding: 23px 15px 0 15px;
}
#screen7 .sub6 .txt2 {
  position: absolute;
  width: 310px;
  height: 235px;
  top: 30px;
  left: 240px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub6 .txt2 .txt-inner {
  padding: 20px 20px 40px 20px;
}
#screen7 .sub6 .txt3 {
  position: absolute;
  width: 200px;
  height: 185px;
  top: 65px;
  left: 240px;
  background: url("../images/screen6-sub4-bubble.svg") 0 0 no-repeat;
  background-size: cover;
}
#screen7 .sub6 .txt3 .txt-inner {
  padding: 25px 20px 0 20px;
}
#screen7 .sub6 .txt4 {
  position: absolute;
  width: 310px;
  height: 275px;
  top: 30px;
  left: 240px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub6 .txt4 .txt-inner {
  padding: 20px 20px 40px 20px;
}

#screen7 .sub6 .btn-next-custom {
  top: 130px;
  left: 280px;
}
#screen7 .sub6 .btn-next-custom.rsp3 {
  top: 175px;
  left: 335px;
}

#screen7 .sub7 .txt1 {
  position: absolute;
  width: 265px;
  height: 260px;
  top: 30px;
  left: 240px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub7 .txt1 .txt-inner {
  padding: 20px 20px 40px 20px;
}
#screen7 .sub7 .txt2 {
  position: absolute;
  width: 410px;
  height: 320px;
  top: 10px;
  left: 255px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub7 .txt2 .txt-inner {
  padding: 20px 15px 40px 27px;
}
#screen7 .sub7 .txt3 {
  position: absolute;
  width: 335px;
  height: 260px;
  top: 30px;
  left: 255px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub7 .txt3 .txt-inner {
  padding: 20px 15px 40px 27px;
}
#screen7 .sub7 .txt4 {
  position: absolute;
  width: 310px;
  height: 265px;
  top: 30px;
  left: 240px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub7 .txt4 .txt-inner {
  padding: 20px 20px 0 20px;
}

#screen7 .sub7 .btn-next-custom.rsp1 {
  top: 225px;
  left: 400px;
}
#screen7 .sub7 .btn-next-custom.rsp2 {
  top: 240px;
  left: 370px;
}

#screen7 .sub8 .txt1 {
  position: absolute;
  width: 245px;
  height: 325px;
  top: 20px;
  left: 240px;
  background: url(../images/screen5-txt1.svg) 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
#screen7 .sub8 .txt1 .txt-inner {
  padding: 20px 20px 40px 20px;
}
#screen7 .sub8 .txt2 {
  position: absolute;
  width: 410px;
  height: 350px;
  top: 10px;
  left: 255px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub8 .txt2 .txt-inner {
  padding: 20px 15px 40px 27px;
}
#screen7 .sub8 .txt3 {
  position: absolute;
  width: 410px;
  height: 435px;
  top: 10px;
  left: 255px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub8 .txt3 .txt-inner {
  padding: 20px 15px 40px 27px;
}
#screen7 .sub8 .txt4 {
  position: absolute;
  width: 410px;
  height: 435px;
  top: 10px;
  left: 255px;
  background: url(../images/screen5-sub6-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub8 .txt4 .txt-inner {
  padding: 20px 15px 40px 27px;
}

#screen7 .sub8 .popover {
  display: none;
  position: absolute;
  top: 70px;
  left: 470px;
  width: 300px;
  border-radius: 20px;
  background: #ed5f00;
  z-index: 2;
}
#screen7 .sub8 .popover .txt-inner {
  padding: 20px;
}
#screen7 .sub8 .popover .txt-inner p {
  color: #fff;
}
#screen7 .trigger-pop,
#screen7 .txt-orange {
  color: #ed5f00;
}

#screen7 .sub8 .btn-next-custom {
  top: 347px;
  left: 400px;
}
#screen7 .sub8 .btn-next-custom.rsp1 {
  top: 275px;
  left: 400px;
}
#screen7 .sub8 .btn-next-custom.rsp2 {
  top: 300px;
  left: 450px;
}

#screen7 .sub9 .txt1 {
  position: absolute;
  width: 500px;
  height: 330px;
  top: 30px;
  left: 250px;
  background: url(../images/screen5-sub7-bubble.svg) 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen7 .sub9 .txt1 .txt-inner {
  padding: 20px 20px 40px 50px;
}

#screen7 .sub9 .popover {
  display: none;
  position: absolute;
  top: 120px;
  left: 735px;
  width: 300px;
  border-radius: 20px;
  background: #ed5f00;
  z-index: 2;
}
#screen7 .sub9 .popover .txt-inner {
  padding: 20px;
}
#screen7 .sub9 .popover .txt-inner p {
  color: #fff;
}

#screen7 .sub9 .btn-next {
  top: 290px;
  left: 450px;
}

#screen8 {
  background: url("../images/screen8-bg.png") 0 0 no-repeat;
  background-size: cover;
}
#screen8 .btn-next {
  bottom: 25px;
  right: 35px;
}

#screen9 .sub1 {
  background: url("../images/screen9-bg-success.png") 0 0 no-repeat;
  background-size: cover;
}
#screen9 .sub1 .txt1 {
  position: absolute;
  width: 380px;
  height: 190px;
  top: 240px;
  left: 315px;
  background: url("../images/screen9-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen9 .sub1 .txt1 .txt-inner {
  padding: 15px 15px 0 60px;
}
#screen9 .time-box {
  position: absolute;
  width: 450px;
  left: 331px;
  bottom: 50px;
  border: 5px solid #926197;
  border-radius: 20px;
  background: #926197;
  text-align: center;
}
#screen9 .time-box .inner {
  background: #fff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 15px 40px;
}
#screen9 .time-box p.header {
  color: #fff;
  text-align: center;
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#screen9 .time-box p.time {
  color: #926197;
  text-align: center;
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  padding: 0 0 10px 0;
}
#screen9 .button-text {
  position: absolute;
  bottom: 35px;
  text-align: center;
  right: 35px;
}
#screen9 .button-text .play-button {
  position: relative;
  margin: 0 auto 10px auto;
  z-index: 88888;
}
#screen9 .button-text p {
  color: #fff;
  text-align: center;
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
}

#screen9 .socials {
  display: flex;
  justify-content: center;
  margin: 10px 0 0 0;
}
#screen9 a.facebook {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background-color: #926197;
  background-image: url("../images/share-fb.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  margin: 0 20px;
  transition: background-color ease 0.5s;
}
#screen9 a.facebook:hover {
  background-color: #bb9cbe;
  background-size: 40px auto;
}
#screen9 a.twitter {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background-color: #926197;
  background-image: url("../images/share-twitter.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 45px auto;
  margin: 0 20px;
  transition: background-color ease 0.5s;
}
#screen9 a.twitter:hover {
  background-color: #bb9cbe;
  background-size: 45px auto;
}

#screen9 .sub2 .txt1 {
  position: absolute;
  width: 380px;
  height: 170px;
  top: 240px;
  left: 315px;
  background: url("../images/screen9-txt1.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
#screen9 .sub2 .txt1 .txt-inner {
  padding: 15px 15px 0 60px;
}
#screen9 .sub2 .time-box {
  border: 5px solid #b5a8a3;
  background: #b5a8a3;
}
#screen9 .sub2 .time-box p.time {
  color: #856c60;
}

#screen9 .sub2 .play-button,
#screen9 .sub2 a.facebook,
#screen9 .sub2 a.twitter {
  background-color: #b5a8a3;
}
#screen9 .sub2 .play-button:hover,
#screen9 .sub2 a.facebook:hover,
#screen9 .sub2 a.twitter:hover {
  background-color: #d8ccc8;
}

#screen9 .sub2 {
  background: url("../images/screen9-bg-fail.png") 0 0 no-repeat;
  background-size: cover;
}

#language {
  background-image: url("../images/lang-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  display: flex;
  vertical-align: middle;
  background-position: center;
}

.language-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  vertical-align: middle;
  max-width: 90%;
  margin: auto;
  flex: 1;
}
.flaglink {
  flex: 1;
  margin: 0 20px;
}
.flaglink img {
  max-width: 100%;
  position: relative;
}

#privacy {
  background: #202a44;
  color: #a88eae;
  opacity: 1;
  display: block;
  max-width: 1200px;
  width: 95%;
  margin: auto;
  position: relative;
  padding: 50px 30px;
}
#privacy a {
  color: #e1d8e4;
}
