* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "AileronSemibold", serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@font-face {
  font-family: "ComicSansBoldItalic";
  src: url("../fonts/ComicSansBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "ComicSansBold";
  src: url("../fonts/ComicSansBold.ttf") format("truetype");
}

html {
  background: #111;
}

/* --------------- TOPBAR --------------- */

.topbar {
  /* background: #fff; */
  height: 76px;
  padding-bottom: 74px;
  width: 100%;
  /* border-bottom: 4px solid #ddd; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  color: #fff;
  box-shadow: 0px 140px 80px -80px #000 inset;
}

.topbar.white {
  background: #fff;
  box-shadow: none;
  padding-bottom: 0;
  border-bottom: 4px solid rgba(221, 221, 221);
  position: relative;
}

.topbar.white .topbar__menu-item {
  color: #000;
}

.topbar__logo {
  height: 100%;
  font-family: "AileronHeavy", serif;
  /* font-weight: 100; */
  padding: 0 30px;
  display: flex;
  align-items: center;
  font-size: 30px;
}

.topbar__logo a {
  line-height: 20px;
}

.topbar__logo img {
  padding-top: 7px;
  height: 38px;
}

.topbar__menu {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding-right: 10px;
}

.topbar__menu-item {
  font-family: "AileronBold", serif;
  font-weight: bolder;
  color: #fff;
  margin-right: 30px;
  font-size: 16px;
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.topbar__menu-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(100% + 2px);
  left: calc(50% - 20px);
  width: 40px;
  height: 2px;
  background: #00b2fe;
  transition: all 0.2s ease;
  transform: translateY(5px);
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}

.topbar__menu-item:hover.topbar__menu-item::before {
  transform: translateY(0px);
  opacity: 1;
}

.topbar__burger {
  display: none;
  height: 20px;
  width: 30px;
  padding: 27px;
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  background: none;
}

.topbar__burger .bar {
  height: 2px;
  width: 30px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.topbar__burger:hover .topbar__burger:last-child {
  background: #00b2fe;
}

.topbar__burger.activated .bar:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}
.topbar__burger.activated .bar:nth-child(2) {
  transform: scale(0);
}
.topbar__burger.activated .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}

/* --------------- HEADER --------------- */

header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  color: #19212c;
  position: relative;
}
header.fixed {
  height: 540px;
}

header .container {
  margin-top: 0;
}

.header__background {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

header .image.bottomright {
  position: absolute;
  right: 0;
  bottom: -50px;
}

/* --------------- SECTIONS --------------- */

section {
  width: 100%;
  background: #fff;
  color: #19212c;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  outline: none;
}

section.dark,
header.dark {
  background: #19212c;
  color: #fff;
}

section .container,
footer .container,
header .container {
  width: 100%;
  max-width: 1114px;
  padding: 50px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
}

section .container.clear,
footer .container.clear {
  padding: 0;
}

section .container.vPx0,
footer .container.vPx0,
header .container.vPx0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

section .container.vPx1,
footer .container.vPx1,
header .container.vPx1 {
  padding-top: 50px;
  padding-bottom: 50px;
}

section .container.vPx2,
footer .container.vPx2,
header .container.vPx2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

section .container.vPx3,
footer .container.vPx3,
header .container.vPx3 {
  padding-top: 150px;
  padding-bottom: 150px;
}

section .container.sPx4,
footer .container.sPx4,
header .container.sPx4 {
  padding-left: 80px;
  padding-right: 80px;
}

section .container.leftAlign,
footer .container.leftAlign,
header .container.leftAlign {
  align-items: flex-start;
}

/* --------------- HEADERS & TEXT BLOCKS --------------- */

h1 {
  font-family: "AileronBold", serif;
  font-size: 54px;
  margin-top: 25px;
  text-transform: uppercase;
  text-align: center;
}

header .container h1 {
  /* padding:0 10px; */
  margin: 20px 0 10px 0;
}

h1.regular {
  text-transform: none;
}

h1.yellow {
  color: #ffcc00;
}

h2 {
  font-size: 40px;
  font-family: "AileronBold", serif;
  margin-top: 40px;
  text-align: center;
  margin-bottom: 40px;
}

h2.nopadding {
  padding: 0;
  margin: 0;
}

h2.mrgBm10 {
  margin-bottom: -10px;
}

h3 {
  font-family: "AileronBold", serif;
  font-size: 24px;
}

p {
  font-size: 19px;
  margin: 0;
}

header .container p {
  font-family: "AileronThin", serif;
  padding: 0 0 30px 0;
}

.paragraphContainer {
  width: 815px;
  /* margin: ; */
}

.paragraphContainer.w100 {
  width: 100%;
}

.paragraphContainer.leftAlign p {
  text-align: left;
}

.paragraphContainer p {
  display: block;
  margin-bottom: 25px;
  text-align: center;
  font-family: "AileronLight", serif;
  line-height: 33px;
}

.paragraphContainer b {
  font-family: "AileronBold", serif;
}

.paragraphcontainer:last-child {
  margin-bottom: none;
}

/* --------------- WHAT IS COMMUNICATION SKILLS --------------- */

section.text .container {
  padding-top: 0;
  padding-bottom: 40px;
}

section.text .container h2 {
  margin-top: 10px;
}

section span.textblock {
  font-size: 20px;
  font-family: "AileronLight", serif;
  max-width: 850px;
  line-height: 36px;
  text-align: center;
  padding: 40px 60px;
  border-radius: 10px;
  /* background: #f8f8f8; */
  box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.07);
}

/* --------------- SOLO ELEMENTS --------------- */

.actionButton {
  height: 70px;
  width: 380px;
  border: 3px solid #00b2fe;
  border-radius: 3px;
  display: flex;
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  margin: 50px auto 100px auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.1s ease;
  cursor: pointer;
}

.actionButton:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.actionButton.arrow::before,
.actionButton.arrow::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 16px;
  background: #00b2fe;
  position: absolute;
  border-radius: 5px;
}

.actionButton.arrow::before {
  top: 95px;
  left: 185px;
  transform: rotate(45deg);
}

.actionButton.arrow::after {
  top: 95px;
  left: 195px;
  transform: rotate(-45deg);
}

hr {
  width: 100%;
  height: 0;
  background: none;
  border: none;
  border-bottom: 2px dashed rgb(205, 205, 205);
  margin: 50px 0;
}

hr.blue {
  height: 10px;
  border: none;
  border-radius: 5px;
  background: rgb(0, 181, 253);
}

h2 + hr.blue {
  margin-top: 10px;
}

hr.w50 {
  width: 50%;
}

section.dark hr {
  border-bottom: 2px dashed #fff;
}

.navigationButtons__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.navigationButtons__container a {
  width: 191px;
  height: 84px;
  background: url(../images/navbutton.png) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  text-transform: uppercase;
  color: #19212c;
  font-family: "AileronBold", serif;
  line-height: 30px;
  transition: 0.05s color ease;
}

.navigationButtons__container a:hover {
  color: rgb(0, 181, 253);
}

.navigationButtons__container a.blue {
  background: url(../images/navbutton_blue.png) no-repeat;
  color: #fff;
  width: 321px;
}

.navigationButtons__container a.blue:hover {
  color: #ddd;
}

.navigationButtons__container a.yellow {
  background: url(../images/navbutton_yellow.png) no-repeat;
  width: 321px;
}

.navigationButtons__container a.yellow:hover {
  color: #fff;
}

.container .sideIllustration {
  position: absolute;
}

.container .sideIllustration.left {
  bottom: 0;
  right: calc(100% - 100px);
}

.container .sideIllustration.right {
  bottom: 0;
  left: calc(100% - 100px);
}

/* --------------- LOGIN & REGISTER PAGE --------------- */

section.login {
  background: url(../images/login_bg.png) no-repeat;
  background-size: 100%;
  background-position: top;
  background-color: #00b3ff;
}

.login_subsection {
  width: 100%;
  /* background:  */
  box-shadow: 0px -450px 300px -300px #36c3ff inset;
  margin-bottom: 53px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 130px 0 140px 0;
}

.login_subsection .logo_big {
  margin-bottom: 45px;
}

.login_subsection h3 {
  font-size: 24px;
  font-family: "AileronBold", serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #fff;
}

.login_subsection form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login_subsection form input[type="text"],
.login_subsection form input[type="password"] {
  background: #fff;
  font-size: 24px;
  font-family: "AileronThin", serif;
  padding: 15px 20px;
  height: 20px;
  width: 410px;
  margin: 10px 0;
  border: none;
  outline: none;
  border-radius: 4px;
}

.login_subsection form input[type="submit"] {
  width: 281px;
  height: 74px;
  background: url(../images/login_signin.png) no-repeat;
  margin: 30px 0 40px 0;
  font-size: 30px;
  font-family: "AileronBold", serif;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
}

.login_subsection hr {
  width: 450px;
  height: 0;
  border-bottom: 2px dashed #fff;
  margin: 0;
}

.login_subsection i {
  font-family: "AileronThin", serif;
  margin: 30px 0 20px 0;
  font-size: 24px;
  color: #fff;
}

.login_subsection .bottom_btn {
  height: 54px;
  width: 164px;
  border: 3px solid #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-family: "AileronBold", serif;
  color: #fff;
  cursor: pointer;
}

.login_subsection .sideIllustration {
  position: absolute;
  bottom: -10px;
}

.login_subsection .sideIllustration.left {
  left: 0;
}

.login_subsection .sideIllustration.right {
  right: 0;
}

.login_subsection .white_container {
  padding: 40px 35px;
  width: 395px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.3);
}

.login_subsection .white_container h3 {
  font-size: 24px;
  color: #19212c;
  text-align: center;
  padding: 0;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}

.login_subsection .white_container hr {
  width: 395px;
  height: 0;
  border-bottom: 2px dashed #ccc;
  margin: 0;
}

.login_subsection .white_container span {
  font-size: 16px;
  font-family: "AileronBold", serif;
  color: #19212c;
  margin: 35px 0 15px 0;
}

.login_subsection .white_container .btn {
  width: 321px;
  height: 84px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-family: "AileronBold", serif;
  background-position: center;
  text-transform: uppercase;
}

.login_subsection .white_container .btn.blue {
  background: url(../images/signupbtnblue.png) no-repeat;
  color: #fff;
}

.login_subsection .white_container .btn.yellow {
  background: url(../images/signupbtnyellow.png) no-repeat;
  color: #19212c;
}

.login_subsection .white_container .btn:last-child {
  margin-bottom: 0;
}

/* --------------- QUEST LIST PAGE MODALS --------------- */

.modal_shadow {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 15;
  top: 0;
  left: 0;
  cursor: pointer;
}

.modal_shadow.hidden {
  display: none;
}

.modal {
  position: fixed;
  width: 455px;
  border: 5px solid #00b2fe;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  top: 300px;
  left: calc(50% - 232.5px);
  /* transform: translateX(-50%) translateY(-50%); */
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  z-index: 20;
}

.modal.hidden {
  display: none;
}

.modal button.x {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 20px;
  width: 20px;
  /* background: rgba(255,255,255,0.6); */
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.modal button.x:hover {
  opacity: 0.8;
}

.modal button.x:before,
.modal button.x:after {
  content: " ";
  width: 24px;
  height: 5px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 7.5px;
  left: -2px;
}

.modal button.x:before {
  transform: rotate(45deg);
}

.modal button.x:after {
  transform: rotate(-45deg);
}

.modal .header {
  background: #00b2fe;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 50px;
}

.modal .header h2 {
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  margin: 0;
}

.modal .header p {
  margin: 25px 0 0 0;
  font-family: "AileronLight", serif;
  font-size: 16px;
  text-align: center;
}

.modal .header .editable {
  font-size: 30px;
  margin-bottom: 15px;
  width: 200px;
  text-align: center;
  background: none;
  color: #fff;
  outline: none;
  border: none;
  font-family: "AileronBold", serif;
  text-transform: uppercase;
}

.modal .header .editable:focus {
  border-bottom: 2px solid #fff;
  margin-bottom: 13px;
}

.modal .header img.avatar {
  width: 190px;
  height: 190px;
  margin: -100px auto 10px auto;
  border: 5px solid #00b2fe;
  border-radius: 100px;
}

.modal hr {
  margin: 30px 0;
  border-color: #fff;
}

.modal b {
  font-size: 16px;
  font-family: "AileronBold", serif;
}

.modal .main {
  color: #19212c;
  padding: 30px 35px;
}

.modal .main .table {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}

.rating_container {
  margin: 0 5px;
}

.fa.rating {
  color: #ffcc00;
}

.modal .main .table p {
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
  font-family: "AileronLight", serif;
  font-size: 16px;
}

.modal .main .table p:last-of-type {
  border: none;
  padding-bottom: 0;
}

.modal .main .table p:first-of-type {
  padding-top: 0;
}

.modal .main .table p a {
  color: #00b2fe;
}

.modal .main a.button {
  width: 220px;
  height: 63px;
  background: url(../images/letsplay.png) no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #19212c;
  padding-top: 5px;
  font-family: "AileronBold", serif;
  margin: 30px auto 0 auto;
}

.modal .main a.button:hover {
  /* color: ; */
  transform: scale(1.03);
}

.modal .main a.button:active {
  transform: scale(1.01);
}

.modal .main button.blue {
  background: #00b2fe;
  width: 180px;
  height: 40px;
  border-radius: 3px;
  font-size: 18px;
  font-family: "AileronBold", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0 auto;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}

.modal .main button.blue:hover {
  background: #00a4ea;
}

.modal form {
  padding: 0px 35px 30px 35px;
  background: #00b2fe;
}

.modal form textarea,
.modal form input[type="text"] {
  background: #fff;
  color: #19212c;
  padding: 15px 20px;
  width: calc(100% - 40px);
  border: none;
  outline: none;
  font-size: 18px;
  font-family: "AileronLight", serif;
  margin-top: 10px;
  border-radius: 2px;
}

.modal form textarea::placeholder,
.modal form input[type="text"]::placeholder {
  color: #999;
}

.modal form textarea {
  resize: none;
}

.modal form input[type="submit"] {
  width: 281px;
  height: 74px;
  margin: 30px auto 0 auto;
  background: url(../images/modal_submit_btn.png) no-repeat;
  font-size: 30px;
  font-family: "AileronBold", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #19212c;
  text-transform: uppercase;
  outline: none;
  border: none;
  cursor: pointer;
}

.modal form input[type="submit"]:hover {
  transform: scale(0.98);
}

.modal form input[type="submit"]:active {
  transform: scale(0.95);
}

/* --------------- QUEST LIST --------------- */

.columns-container {
  width: 100%;
  max-width: 1114px;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  position: relative;
}

.column-main {
  width: 800px;
  margin: 0;
  padding: 0;
}

.column-main h1 {
  text-align: left;
  margin-bottom: 60px;
}

.column-main h1.quest {
  font-family: "ComicSansBold", serif;
  text-transform: none;
}

.column-main h3 {
  text-align: left;
  margin-top: 50px;
  margin-bottom: 60px;
  position: relative;
}

.column-main h3[underline]::after {
  content: " ";
  height: 10px;
  width: 60%;
  position: absolute;
  left: 0;
  top: 40px;
  background: #00b2fe;
  border-radius: 5px;
}

.column-main p {
  font-family: "AileronLight", serif;
  font-size: 18px;
  line-height: 26px;
  display: inline-block;
}

.column-main p img {
  border: 5px solid #19212c;
  border-radius: 3px;
}

.column-main p img.alignLeft {
  float: left;
  margin-right: 20px;
}

.column-main p b {
  font-family: "AileronBold", serif;
}

.tabs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0 0 30px 0;
  overflow: hidden;
}

.tabs a {
  width: 230px;
  height: 60px;
  border: 5px solid #00b2fe;
  background: #00b2fe;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "AileronBold", serif;
  margin-right: 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.tabs a.active {
  color: #19212c;
  background: none;
  height: 65px;
  border-bottom: none;
  position: relative;
}

.tabs a.active::before {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 100%;
  height: 5px;
  width: 1000px;
  background: #00b2fe;
}

.tabs a.active::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 100%;
  height: 5px;
  width: 1000px;
  background: #00b2fe;
}

.questTiles-lrg__container {
  display: flex;
  flex-direction: column;
}

.questTiles-lrg__container .tile {
  width: calc(100% - 10px);
  border: 5px solid #ccc;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  transition: 0.05s border ease;
  cursor: pointer;
}

.questTiles-lrg__container .tile:last-child {
  margin-bottom: 0;
}

.questTiles-lrg__container .tile:hover {
  border: 5px solid #19212c;
}

.questTiles-lrg__container .tile .main {
  width: 100%;
  background: #fff;
  display: flex;
}

.questTiles-lrg__container .tile .main .image {
  display: block;
  width: 177px;
  height: 144px;
  border: 3px solid #19212c;
  background: #ddd;
  margin: 25px 30px 25px 25px;
  border-radius: 3px;
}

.questTiles-lrg__container .tile .main .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.questTiles-lrg__container .tile .main .text {
  width: calc(100% - 270px);
  height: calc(100% - 50px);
  margin: 25px 0;
}

.questTiles-lrg__container .tile .main .text h3 {
  font-family: "ComicSansBold", serif;
  font-size: 20px;
  margin: 0 0 8px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ccc;
  line-height: 20px;
}

.questTiles-lrg__container .tile .main .text p {
  /* display: block; */
  font-size: 14px;
  font-family: "AileronLight", serif;
  color: #19212c;
  line-height: 18px;
}

.questTiles-lrg__container .tile .gray {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.questTiles-lrg__container .tile .gray .skilllist {
  display: flex;
  flex-wrap: wrap;
  padding: 23px 0 23px 25px;
}

/* flex-direction: column; */
.questTiles-lrg__container .tile .gray .skilllist h6 {
  font-size: 14px;
  font-family: "AileronBold", serif;
  line-height: 14px;
  padding: 0 0 7px 0;
  width: 100%;
}

.questTiles-lrg__container .tile .gray .skilllist .item {
  background: #00b2fe;
  height: 25px;
  padding: 0 15px;
  font-size: 12px;
  border-radius: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  font-family: "AileronBold", serif;
  margin-right: 5px;
}

.questTiles-lrg__container .tile .gray .playButton {
  width: 160px;
  height: 68px;
  background: url(../images/questlist_playbtn.png) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #19212c;
  margin-right: 30px;
}

.questTiles-lrg__container .tile .gray .playButton:hover {
  /* color: #fff; */
  transform: scale(0.95);
}

.questTiles-lrg__container .tile .gray .playButton:active {
  /* color: #fff; */
  transform: scale(0.94);
}

.questTask {
  width: calc(100% - 10px);
  background: #00b2fe;
  border: 5px solid #19212c;
  border-radius: 3px;
  /* padding:40px 52px; */
  padding: 0;
  margin-top: 73px;
  margin-bottom: 50px;
}

.questTask .main {
  width: calc(100% - 104px);
  padding: 40px 52px 35px 52px;
  background: #00b2fe;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.questTask .main h4 {
  font-family: "AileronBold", serif;
  font-size: 30px;
  line-height: 28px;
  padding-bottom: 20px;
  border-bottom: 2px dashed #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.questTask .main span {
  font-size: 18px;
  font-family: "AileronBold", serif;
  position: relative;
  margin: 7px 0;
  padding-left: 40px;
}

.questTask .main span:before {
  content: " ";
  width: 24px;
  height: 24px;
  background: url(../images/check1.png) no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
}

.questTask .main span[checked]:after {
  content: " ";
  width: 31px;
  height: 24px;
  background: url(../images/check2.png) no-repeat;
  position: absolute;
  top: -6px;
  left: -2px;
}

.questTask .main .length {
  position: absolute;
  width: 280px;
  height: 56px;
  padding-bottom: 10px;
  top: -5px;
  right: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background: url(../images/quest_task_length.png);
}

.questTask .note {
  background: #f5f5f5;
  padding: 20px 36px 20px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.questTask .note i {
  font-size: 16px;
  font-family: "AileronLight", serif;
  line-height: 26px;
  padding-bottom: 10px;
  max-width: 455px;
}

.questTask .note i b {
  font-family: "AileronBold", serif;
}

.questTask .note i a {
  color: inherit;
  text-decoration: underline;
  font-family: "AileronLight", serif;
}

.questTask .note i a:hover {
  text-decoration: none;
}

.questTask .note a.yellow_button {
  width: 215px;
  height: 117px;
  background: url(../images/quest_yellow_button.png) no-repeat;
  background-position: center;
  background-size: cover;
  color: #19212c;
  font-size: 60px;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "AileronBold", serif;
}

.column-side {
  width: 265px;
  margin: 0;
  padding: 0;
}

.column-side.h1 {
  padding-top: 161px;
}

.column-side .profileInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.column-side .profileInfo img {
  width: 190px;
  height: 190px;
  border: 5px solid #00b2fe;
  border-radius: 100px;
  background: #fff;
  margin-bottom: 10px;
}

.column-side .profileInfo h6 {
  font-family: "ComicSansBold", serif;
  font-size: 18px;
  margin-bottom: 30px;
}

.column-side .profileInfo .info {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.column-side .profileInfo .info .item {
  font-size: 18px;
  font-family: "AileronThin", serif;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.column-side .profileInfo .info .item b {
  font-family: "AileronBold", serif;
}

.column-side .profileInfo .info .item:last-child {
  border-bottom: none;
}

.column-side .invite {
  width: calc(100% - 50px);
  border: 5px solid #00b2fe;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  padding: 20px;
}

.column-side .invite h5 {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  /* margin: 0 0 15px 0; */
  padding: 0;
  font-family: "AileronBold", serif;
  margin: 0 4px 15px 4px;
}

.column-side .invite span {
  text-align: left;
  font-family: "AileronBold", serif;
  color: #00b2fe;
  font-size: 12px;
  width: 100%;
  padding: 0;
  margin: 0 4px 5px 4px;
}

.column-side .invite h6 {
  font-family: "AileronBold", serif;
  font-size: 18px;
  color: #19212c;
  width: 100%;
  margin: 0 4px 7px 4px;
}

.column-side .invite .btn-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.column-side .invite .btn-container a {
  height: 30px;
  width: 100px;
  background: #00b2fe;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-family: "AileronBold", serif;
  border-radius: 4px;
}

.column-side .invite .btn-container a.red {
  background: #ee325a;
}

.column-side .questList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border: 5px solid #ccc;
  border-radius: 4px;
  margin-top: 30px;
  padding: 0 5px;
}

.column-side .questList h5 {
  font-size: 18px;
  text-transform: uppercase;
  padding: 25px 0;
  font-family: "AileronBold", serif;
  border-bottom: 1px dashed #ccc;
  width: 100%;
  text-align: center;
}

.column-side .questList .user {
  border-bottom: 1px dashed #ccc;
  padding: 20px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.column-side .questList .user span {
  font-size: 14px;
  font-family: "AileronBold", serif;
}

.column-side .questList .user button {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  height: 30px;
  width: 100px;
  background: #00b2fe;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  font-family: "AileronBold", serif;
}

.column-side .questList .user button[inactive] {
  background: #f5f5f5;
  color: #999;
  cursor: default;
}

.column-side .questList .questList__item {
  border-bottom: 1px dashed #ccc;
  /* width: 100%; */
  padding: 20px 17px;
}

.column-side .questList .questList__item .header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}

.column-side .questList .questList__item .header .date {
  font-family: "AileronLight", serif;
  color: #777;
  font-size: 12px;
  line-height: 12px;
}

.column-side .questList .questList__item .header .tag {
  height: 16px;
  padding: 0 7px;
  border-radius: 3px;
  font-size: 12px;
  font-family: "AileronLight", serif;
  background: #777;
  color: #fff;
  margin-left: 10px;
}

.column-side .questList .questList__item .header .tag.blue {
  background: #00b2fe;
}

.column-side .questList .questList__item .header .tag.red {
  background: #ee325a;
}

.column-side .questList .questList__item .header .tag.orange {
  background: #ff9000;
}

.column-side .questList .questList__item .header .rating_container {
  margin-left: auto;
  font-size: 11px;
}

.column-side .questList .questList__item h6.questName {
  font-family: "AileronBold", serif;
  font-size: 18px;
  margin: 0 0 10px 0;
  padding: 0;
}

.column-side .questList .questList__item .info {
  display: flex;
  justify-content: space-between;
}

.column-side .questList .questList__item .info .item {
  width: 96px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 4px;
}

.column-side .questList .questList__item .info .item p {
  font-family: "AileronLight", serif;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.column-side .questList .questList__item .info .item span {
  font-family: "AileronBold", serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.column-side .questList .questList__item .info .item.btn {
  background: #f5f5f5;
  cursor: pointer;
}

.column-side .questList .questList__item .info .item.btn.active {
  border-color: #00b2fe;
}

.column-side .questList .questList__item .info .item.btn p,
.column-side .questList .questList__item .info .item.btn span {
  font-size: 12px;
}

.column-side .questList .questList__item .feedback {
  display: none;
  border-top: 1px solid #ccc;
  margin-top: 15px;
  position: relative;
}

.column-side .questList .questList__item .feedback.shown {
  display: block;
}

.column-side .questList .questList__item .feedback::before {
  content: " ";
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom: 8px solid #ccc;
  position: absolute;
  right: 42px;
  top: -17px;
}

.column-side .questList .questList__item .feedback::after {
  content: " ";
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  right: 42px;
  top: -16px;
}

.column-side .questList .questList__item .feedback span {
  font-family: "AileronLight", serif;
  font-size: 12px;
  color: #777;
  margin-top: 12px;
  display: block;
}

.column-side .questList .questList__item .feedback span b {
  color: #00b2fe;
  font-family: "AileronBold", serif;
}

.column-side .questList .questList__item .feedback p {
  font-family: "AileronLight", serif;
  font-size: 14px;
  margin-top: 3px;
}

.column-side .questList a {
  border: 2px solid #ccc;
  width: 96px;
  height: 26px;
  background: #f5f5f5;
  font-family: "AileronLight", serif;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  border-radius: 3px;
  color: #777;
}

.column-side .questList a:hover {
  color: #555;
}

/* --------------- GUIDE PAGE --------------- */

header .container.guidePage {
  padding: 65px 0;
}

header .container.guidePage h1 {
  padding: 0;
  margin: 0;
}

header .container.guidePage h2 {
  padding: 0;
  margin: 0;
  font-size: 30px;
  text-transform: uppercase;
}

.guideActions__container {
  padding: 20px 0 50px 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.guideActions__container .item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.guideActions__container .item {
  width: calc(100% - 80px);
  margin-left: 80px;
  padding: 0;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 2px dashed rgb(205, 205, 205);
}

.guideActions__container .item h3 {
  font-family: "AileronBold", serif;
  font-size: 24px;
  margin: 0 0 10px 0;
  position: relative;
}

.guideActions__container .item h3::before {
  content: " ";
  display: block;
  position: absolute;
  height: 30px;
  width: 10px;
  border-radius: 5px;
  background: #00b2fe;
  top: 0;
  right: calc(100% + 20px);
}

.guideActions__container .item p {
  display: block;
  margin-bottom: 25px;
  font-family: "AileronLight", serif;
  line-height: 28px;
  font-size: 19px;
  margin: 0;
}

.questTiles-md__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 40px 0 20px 0;
}

.questTiles-md__container .tile {
  border: 5px solid #ccc;
  width: 183px;
  height: 320px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  border-radius: 3px;
  margin-right: 20px;
  transition: 0.1s border ease;
}

.questTiles-md__container .tile:last-child {
  margin-right: 0;
}

.questTiles-md__container .tile:hover {
  border: 5px solid #19212c;
}

.questTiles-md__container .tile .image {
  width: calc(100% - 6px);
  border: 3px solid #19212c;
  background: #ddd;
  height: 144px;
  border-radius: 3px;
}

.questTiles-md__container .tile .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.questTiles-md__container .tile h4 {
  font-family: "ComicSansBold", serif;
  font-size: 18px;
  padding: 0;
  margin: 0;
  line-height: 20px;
  text-align: center;
  color: #19212c;
}

.questTiles-md__container .tile .skillList {
  width: 100%;
}

.questTiles-md__container .tile .skillList .item {
  background: #00b2fe;
  border-radius: 13px;
  height: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-family: "AileronBold", serif;
  margin-bottom: 5px;
  color: #fff;
}

/* --------------- DEMO PAGE --------------- */

section.demoHeader {
  background-color: rgb(241, 248, 255);
  background-image: url(../images/demobg2.png);
  background-size: cover;
  background-position: center;
}

section.demoHeader .container p {
  /* margin-top:5px; */
  text-align: center;
  font-size: 24px;
}

section.demoHeader .container h1 {
  margin-bottom: 0;
}

section.demoHeader .container hr {
  padding: 20px auto;
  margin: 15px 0;
}

/* section.demoHeader .container * + hr {
  margin-bottom: 0;
  padding-bottom: 0;
} */

/* section.demoHeader .container hr ~ *:first-of-type {
  margin-top: 0;
  padding-top: 0;
} */

.demoList__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 160px);
  padding: 0 80px;
}

.demoList__container p {
  color: #19212c;
  font-family: "AileronThin", serif;
  font-size: 18px;
  counter-increment: step-counter;
  position: relative;
  min-height: 38px;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.05s color ease;
  padding: 0 0 0 60px;
}

.demoList__container p::before {
  content: counter(step-counter);
  position: absolute;
  top: 0;
  left: 0;
  height: 38px;
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/guidelist_num.png) no-repeat;
  color: #fff;
  font-family: "AileronBold", serif;
}

/* --------------- GUIDES LIST --------------- */

.guideList__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
}

.guideList__container .list {
  width: calc(100% - 290px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.guideList__container .list a:last-child {
  margin: 0;
}

.guideList__container .list a {
  color: #19212c;
  font-family: "AileronBold", serif;
  font-size: 18px;
  counter-increment: step-counter;
  padding-left: 60px;
  position: relative;
  min-height: 38px;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.05s color ease;
}

.guideList__container .list a::before {
  content: counter(step-counter);
  position: absolute;
  top: 0;
  left: 0;
  height: 38px;
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/guidelist_num.png) no-repeat;
  color: #fff;
  font-family: "AileronBold", serif;
}

.guideList__container .list a:hover {
  color: rgb(0, 181, 253);
}

.guideList__container .image {
  max-height: 100%;
  width: 318px;
  position: relative;
  margin-right: -45px;
}

.guideList__container .image img {
  position: absolute;
  left: 0;
  top: -260px;
  cursor: pointer;
}

/* --------------- HOW IT WORKS --------------- */

.guideContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.guideContainer__step {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 100px;
  position: relative;
}

.guidecontainer__step:last-child {
  margin: 0;
}

.guideContainer__step.left {
  flex-direction: row-reverse;
}

.guideContainer__step .image img {
  max-height: 400px;
  max-width: 550px;
  min-height: 250px;
  min-width: 400px;
}

.guideContainer__step .text * {
  margin: 0;
}

.guideContainer__step .text {
  width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guideContainer__step .text h1 {
  font-size: 48px;
  text-align: left;
  display: block;
  width: 100%;
  line-height: 48px;
}

.guideContainer__step .text h1.play {
  width: calc(100% - 45px);
  height: 84px;
  display: flex;
  align-items: center;
  padding-left: 45px;
  background: url(../images/playButton.png) no-repeat;
}

.guideContainer__step .text hr {
  border: none;
  height: 10px;
  width: 100%;
  border-radius: 10px;
  background: #00b2fe;
  margin: 13px 0;
  margin-left: -2px;
}

.guideContainer__step .text p {
  font-family: "AileronThin", serif;
  font-size: 18px;
  text-align: left;
  display: block;
  width: 100%;
  line-height: 28px;
}

.guideContainer__step.right.arrow::after,
.guideContainer__step.left.arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
}

.guideContainer__step.right.arrow::after {
  width: 419px;
  height: 188px;
  top: 280px;
  left: 240px;
  background: url(../images/arrowLeft.png);
  /* background-color: yellow; */
  transform: rotate(10deg);
}

.guideContainer__step.left.arrow::after {
  width: 411px;
  height: 187px;
  top: 305px;
  left: 240px;
  background: url(../images/arrowRight.png);
  /* background-color: yellow; */
}

/* --------------- ISLAND --------------- */

@font-face {
  font-family: "ComicSansBoldItalic";
  src: url("../fonts/ComicSansBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "ComicSansBold";
  src: url("../fonts/ComicSansBold.ttf") format("truetype");
}

.container.island {
  width: 100%;
  max-width: 1167px;
  padding-bottom: 0px;
}

.container.island h2 {
  margin-bottom: 10px;
}

.container.island h3 {
  font-family: "ComicSansBoldItalic", serif;
  font-size: 72px;
  text-align: center;
  line-height: 72px;
  margin-bottom: 15px;
}

.container.tags h4 {
  font-size: 19px;
  margin-bottom: 15px;
  display: block;
  font-family: "AileronThin", serif;
  color: #888;
}

.container.hr {
  border-top: 2px dashed #ccc;
}

.container.tags {
  padding: 20px 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tags .item {
  height: 40px;
  border-radius: 20px;
  background: #fff;
  /* overflow: hidden; */
  display: inline-block;
  box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.15);
  margin-right: 30px;
  cursor: pointer;
  position: relative;
  /* z-index: 10; */
}

.tags .item:last-child {
  margin-right: 0;
  /* background: yellow; */
}

.tags .item b {
  background: #00b2fe;
  color: #fff;
  font-family: "AileronBold", serif;
  font-size: 17px;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 30px;
  border-radius: 20px;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.tags .item p {
  display: block;
  width: 280px;
  position: absolute;
  top: 60px;
  left: 0;
  /* z-index: 10; */
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  color: #444;
  font-family: "AileronThin", serif;
  font-size: 16px;
  line-height: 22px;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.15);
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease;
  transform: translateY(-10px);
}

.tags .item:last-child p {
  right: 0;
  left: auto;
}

.tags .item.unfold b {
  background: #0199da;
  /* box-shadow:0px 0px 0px 3px #0199da inset, 0px 0px 0px 4px #fff inset; */
}

.tags .item.unfold p {
  opacity: 1;
  z-index: 10;
  transform: translateY(0px);
}

.island_container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  padding: 0;
  /* max-height:1068px; */
  background: url(../images/islandBackground.png) no-repeat;
  background-position: center 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  flex-direction: column;
}

.island_container .demobtn {
  width: 211px;
  height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/playButton.png);
  background-size: cover;
  background-position: center;
  color: #19212c;
  font-size: 36px;
  /* margin-bottom: 20px; */
  line-height: 36px;
  /* padding: 24px 0; */
  font-family: "AileronBold", serif;
}

.island_container .demobtn:hover {
  transform: scale(0.95);
}

.island_container .demobtn:active {
  transform: scale(0.94);
}

@media only screen and (max-width: 1154px) and (min-width: 700px) {
  /* TABLETS */
  .island_container .demobtn {
    width: 168px;
    height: 67px;
    font-size: 24px;
  }
}

@media only screen and (max-width: 700px) {
  .island_container .demobtn {
    width: 147px;
    height: 58px;
    font-size: 20px;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1500px) {
  .island_container {
    background: none;
  }
}

.island_container .cornercomment.topleft {
  left: 220px;
  top: -200px;
}

@media only screen and (min-width: 1922px) {
  .island_container {
    box-shadow: 325px 0px 150px -150px #fff inset,
      -325px 0px 150px -150px #fff inset;
  }
}

.island_container img,
.island_container video {
  max-width: 90%;
}

.island_container img.frontLayer {
  position: absolute;
  top: 0;
  /* left: 0; */
}

/* --------------- PRICING --------------- */

.container.pricing h2 {
  margin-top: 50px;
  line-height: 40px;
}

.pricing__container {
  width: 100%;
  margin: 0 0 85px 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing__container.medium {
  flex-direction: row;
  gap: 40px;
}

.pricing__tile-big {
  width: calc(50% - 12px);
  border: 3px solid #00b2fe;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
  z-index: 5;
  background: #fff;
  margin-left: 12px;
}

.pricing__tile-big:first-child {
  margin-left: 0;
}

.pricing__tile-big:first-child::before,
.pricing__tile-big:first-child::after {
  display: none;
}

.pricing__tile-big::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 25px;
  border-top: 3px solid #00b2fe;
  border-bottom: 3px solid #00b2fe;
  left: -18px;
  z-index: 4;
}

.pricing__tile-big::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  left: -21px;
  z-index: 5;
}

.pricing__tile-big p {
  font-size: 28px;
  font-family: "AileronThin", serif;
  text-align: center;
}

.pricing__tile-big h3 {
  margin-top: 10px;
  font-size: 48px;
  font-family: "AileronBold", serif;
}

/* Medium tile */
.pricing__tile-medium {
  display: flex;
  flex-direction: column;
  /* width: 345px; */
  width: 100%;
  height: 200px;
  border: 3px solid #00b2fe;
  /* overflow:hidden; */
  border-radius: 4px;
  box-sizing: border-box;
}

.pricing__tile-medium .text {
  height: 85px;
  background: #00b2fe;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__tile-medium .text p {
  color: #fff;
  font-size: 28px;
  font-family: "AileronThin", serif;
  /* line-height: 28px; */
  margin-top: -4px;
  text-align: center;
}

.pricing__tile-medium .text small {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-family: "AileronThin", serif;
  text-align: center;
}

.pricing__tile-medium .price {
  height: 115px;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.pricing__tile-medium .price h3 {
  font-size: 48px;
}

.pricing__tile-medium .price h4 {
  font-size: 24px;
  padding: 5px 0 0 5px;
  font-family: "AileronBold", serif;
}

.pricing__tile-medium.pink {
  border-color: #ee325a;
  height: 210px;
  position: relative;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing__tile-medium.pink .text {
  height: 95px;
  background: #ee325a;
}

.pricing__tile-medium.pink .price {
  height: 125px;
}

.pricing__tile-medium.pink::after {
  content: "";
  display: inline-block;
  width: 92px;
  height: 89px;
  position: absolute;
  top: -30px;
  right: -30px;
  background: url(../images/priceBadge.png);
}

/* --------------- CONTACT US --------------- */

.feedback__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feedback__container .text {
  max-width: 450px;
}

.feedback__container .text:last-child {
  margin: 0;
}

.feedback__container .text h2 {
  text-align: left;
  color: #00b2fe;
  font-size: 48px;
  margin: 0 0 35px 0;
  line-height: 48px;
}

.feedback__container .text p {
  font-size: 28px;
  font-family: "AileronThin", serif;
  margin-top: 35px;
}

.feedback__container .form {
  width: 450px;
  padding: 0 50px;
  background: #00b2fe;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  margin-top: -16px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feedback__container .form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback__container .form img {
  margin-top: 66px;
  max-height: 90px;
}

.feedback__container .form h3 {
  font-size: 24px;
  line-height: 24px;
  margin: 30px 0;
  text-transform: uppercase;
  font-family: "AileronBold", serif;
}

.feedback__container .form input[type="text"],
.feedback__container .form textarea {
  width: calc(100% - 40px);
  display: block;
  padding: 10px 20px;
  font-size: 24px;
  font-family: "AileronThin", serif;
  border: none;
  background: #fff;
  border-radius: 5px;
  margin-top: 20px;
  outline: none;
  cursor: text;
}

.feedback__container .form textarea {
  height: 140px;
  text-align: left;
  resize: none;
}

.feedback__container .form input[type="submit"] {
  margin-top: 30px;
  border: 3px solid #fff;
  border-radius: 4px;
  font-size: 24px;
  font-family: "AileronBold", serif;
  height: 60px;
  width: 170px;
  color: #fff;
  background: none;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.1s ease;
}

.feedback__container .form input[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* --------------- CONTACT US --------------- */

footer {
  height: 300px;
  width: 100%;
  background: #111;
  color: #6b7684;
  display: flex;
  justify-content: center;
}

footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

footer .footer__logo h3 {
  font-family: "AileronHeavy", serif;
  font-size: 28px;
}

footer .footer__logo span {
  font-family: "AileronThin", serif;
  font-size: 12px;
  margin-top: 3px;
}

footer .footer__menu a {
  font-family: "AileronThin", serif;
  font-size: 14px;
  color: inherit;
  margin-left: 20px;
  transition: color 0.3s ease;
  cursor: pointer;
}

footer .footer__menu a:hover {
  color: #fff;
  cursor: pointer;
}

/* --------------- CORNER COMMENTS --------------- */

.cornercomment {
  position: absolute;
  max-width: 400px;
  max-height: 450px;
  display: inline-block;
}

@media only screen and (max-width: 1650px) {
  .cornercomment {
    display: none;
  }
}

.cornercomment.topleft {
  top: -240px;
  left: -240px;
}

.cornercomment.topright {
  top: -230px;
  right: -250px;
}

.cornercomment.bottomleft {
  bottom: -60px;
  left: -240px;
}

.cornercomment.bottomright {
  bottom: -60px;
  right: -240px;
}

/* --------------- ADAPTIVE (tablets) --------------- */

@media only screen and (max-width: 1154px) and (min-width: 700px) {
  header {
    height: 380px;
    overflow: hidden;
  }

  .topbar__logo img {
    height: 28px;
    padding-top: 4px;
  }

  .topbar__menu-item {
    font-size: 14px;
  }

  section .container,
  footer .container {
    padding: 40px 30px;
    width: calc(100% - 60px);
  }

  h1 {
    font-size: 42px;
    margin-top: 15px;
  }

  h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 40px;
  }

  hr {
    width: calc(100% - 30px);
    margin: 35px 0;
  }

  .actionButton {
    font-size: 24px;
    border-width: 2px;
    height: 60px;
    width: 320px;
    margin: 40px auto 70px auto;
  }

  .actionButton.arrow::before,
  .actionButton.arrow::after {
    width: 14px;
    height: 2px;
    top: 85px;
  }

  .actionButton.arrow::before {
    left: calc(50% - 11.3px);
  }

  .actionButton.arrow::after {
    left: calc(50% - 2.7px);
  }

  .paragraphContainer {
    width: calc(100% - 180px);
  }

  .guideContainer__step {
    justify-content: center;
    margin-bottom: 140px;
  }

  /* .guideContainer__step.left,
  .guideContainer__step.right {
    flex-direction: column-reverse;
  } */

  .guideContainer__step .text {
    width: 40%;
    padding: 0 25px;
  }

  .guideContainer__step .image {
    padding: 0 25px;
    /* max-width: ; */
  }

  .guideContainer__step .text h1 {
    font-size: 42px;
    line-height: 42px;
  }

  /* .guideContainer__step.left .text h1 {
    text-align: right;
  } */

  .guideContainer__step .text h1.play {
    height: 70px;
    background-size: auto 70px;
    padding-left: 35px;
    width: calc(100% - 35px);
  }

  .guideContainer__step .text hr {
    height: 7px;
    border-radius: 7px;
    margin: 15px 0;
  }

  .guideContainer__step .text p {
    font-size: 18px;
    line-height: 28px;
    font-family: "AileronLight", serif;
  }

  /* .guideContainer__step.left .text p {
    text-align: right;
  } */

  .guideContainer__step .image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .guideContainer__step .image img {
    max-height: 250px;
    max-width: calc(100% - 20px);
    min-width: 0px;
    min-height: 0px;
  }

  .guideContainer__step.right.arrow,
  .guideContainer__step.left.arrow {
    margin-bottom: 160px;
  }

  .guideContainer__step.left.arrow::after {
    width: 272.35px;
    height: 122.2px;
    left: 50%;
    top: auto;
    bottom: -145px;
    transform: translateX(-50%);
    /* background: url(../images/arrowLeft.png); */
    background-size: 272.35px 122.2px;
  }

  .guideContainer__step.right.arrow::after {
    width: 272.35px;
    height: 122.2px;
    left: 50%;
    top: auto;
    bottom: -145px;
    transform: translateX(-50%);
    /* background: url(../images/arrowRight.png); */
    background-size: 272.35px 122.2px;
  }

  section.howitworks .container {
    padding-bottom: 0;
  }

  section.text .container {
    padding-top: 0;
    padding-bottom: 130px;
  }

  section.text .container h2 {
    margin-top: 10px;
  }

  section span {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 60px;
    font-size: 18px;
    line-height: 32px;
    max-width: 700px;
  }

  .container.tags {
    padding: 20px 30px;
  }

  .container.tags h4 {
    font-size: 16px;
    font-family: "AileronRegular", serif;
    margin-bottom: 10px;
  }

  /* .tags {
  } */

  .tags .item {
    height: 35px;
    margin-right: 20px;
  }

  /* .tags .item:last-child {
  } */

  .tags .item b {
    font-size: 15px;
    height: 35px;
    border-radius: 17.5px;
    padding: 0 25px;
  }

  .tags .item p {
    top: 45px;
  }

  /* .tags .item:last-child p {
  } */

  .container.island {
    padding: 0;
  }

  .container.island h2 {
    margin-top: 0;
  }

  .container.island h3 {
    font-size: 42px;
    line-height: 42px;
  }

  /* .pricing__container {
    flex-direction: column;
  } */

  .pricing__tile-big {
    /* width:calc(100% - 4px); */
    border-width: 2px;
    /* margin:12px 0 0 0; */
    height: 170px;
  }

  .pricing__tile-big p {
    font-size: 24px;
    /* font-family: 'AileronLight', serif; */
  }

  .pricing__tile-big h3 {
    margin-top: 5px;
    font-size: 32px;
  }

  .pricing__tile-big::before {
    border-top: 2px solid #00b2fe;
    border-bottom: 2px solid #00b2fe;
  }

  .pricing__container.big {
    margin-bottom: 50px;
  }

  /* .pricing__container.medium{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-grow: 1;
  } */

  .pricing__tile-medium {
    height: 170px;
    /* margin: 0; */
    /* width:calc(50% - 10px); */
    border-width: 2px;
  }

  .pricing__tile-medium.pink {
    /* order: -1; */
    /* width:100%; */
    /* margin:0 0 10px 0; */
    height: 185px;
    margin: 0 20px;
  }

  .pricing__tile-medium.pink::after {
    right: -30px;
    top: -50px;
  }

  .pricing__tile-medium.pink .text p {
    font-size: 26px;
    /* font-family: 'AileronRegular', serif; */
  }

  .pricing__tile-medium .text p {
    font-size: 22px;
    font-family: "AileronThin", serif;
    text-align: center;
    line-height: 28px;
  }

  .pricing__tile-medium .text small {
    font-size: 16px;
    margin-top: -5px;
  }

  .pricing__tile-medium .price h3 {
    font-size: 42px;
    /* font-family: 'AileronRegular', serif; */
  }

  .pricing__tile-medium .price h4 {
    font-size: 18px;
    padding: 2px 0 0 0px;
    font-family: "AileronRegular", serif;
  }

  /* .feedback__container {
    flex-direction: column;
  } */

  .feedback__container .text {
    padding: 80px 0 100px 0;
  }

  .feedback__container .text h2 {
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  .feedback__container .text p {
    font-size: 22px;
    margin: 20px 0 0 0;
    padding-right: 20px;
  }

  .feedback__container .form {
    /* margin:0; */
    /* width: calc(100% - 40px); */
    padding: 0 30px 30px 30px;
  }

  /* .feedback__container .form img{
    margin-top:45px;
  } */

  .feedback__container .form h3 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .feedback__container .form input[type="text"],
  .feedback__container .form textarea {
    font-size: 20px;
  }

  .feedback__container .form input[type="submit"] {
    font-size: 20px;
    width: 150px;
    height: 50px;
    border-width: 2px;
  }

  footer .container {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .footer__menu a {
    margin: 0 10px;
    /* font-size: 18px; */
  }

  .footer__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
  }
}

/* --------------- ADAPTIVE (mobile) --------------- */

@media only screen and (max-width: 700px) {
  header {
    height: 370px;
    overflow: hidden;
  }

  .topbar__logo img {
    height: 28px;
    padding-top: 4px;
  }

  .topbar__menu {
    opacity: 0;
    z-index: -1;
    position: absolute;
    right: 15px;
    top: 75px;
    text-shadow: 0px 0px 30px #000;
    flex-direction: column;
    align-items: flex-end;
    transition: all 0.3s ease;
  }

  .topbar__menu.opened {
    opacity: 1;
    z-index: 5;
    transform: translateX(-15px);
  }

  .topbar__menu a {
    margin: 0 0 15px 0;
    z-index: -1;
  }

  .topbar__menu a::before {
    right: 0;
    left: auto;
  }

  .topbar__menu.opened a {
    z-index: 5;
  }

  .topbar__burger {
    display: flex;
  }

  section .container,
  footer .container {
    padding: 40px 15px;
    width: calc(100% - 30px);
  }

  h1 {
    font-size: 24px;
    margin-top: 15px;
  }

  h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 25px;
  }

  p {
    font-size: 16px;
  }

  hr {
    width: calc(100% - 30px);
    margin: 35px 0;
  }

  .actionButton {
    font-size: 18px;
    border-width: 2px;
    height: 50px;
    width: 250px;
    margin: 40px auto 70px auto;
  }

  .actionButton.arrow::before,
  .actionButton.arrow::after {
    width: 14px;
    height: 2px;
    top: 70px;
  }

  .actionButton.arrow::before {
    /* left: auto; */
    left: calc(50% - 11.3px);
  }

  .actionButton.arrow::after {
    left: calc(50% - 2.7px);
  }

  .paragraphContainer {
    width: calc(100% - 30px);
  }

  .guideContainer__step.left,
  .guideContainer__step.right {
    flex-direction: column-reverse;
  }

  .guideContainer__step .text {
    width: 100%;
  }

  .guideContainer__step .text h1 {
    font-size: 24px;
    line-height: 28px;
  }

  .guideContainer__step.left .text h1 {
    text-align: right;
  }

  .guideContainer__step .text h1.play {
    height: 50px;
    background-size: auto 50px;
    padding-left: 0;
    width: calc(100% - 35px);
    padding-right: 35px;
    background-position: right;
    display: flex;
    justify-content: flex-end;
  }

  .guideContainer__step .text hr {
    height: 7px;
    border-radius: 7px;
    margin: 10px 0;
  }

  .guideContainer__step .text p {
    font-size: 16px;
    line-height: 24px;
    font-family: "AileronLight", serif;
  }

  .guideContainer__step.left .text p {
    text-align: right;
  }

  .guideContainer__step .image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .guideContainer__step .image img {
    max-height: 250px;
    max-width: calc(100% - 20px);
    min-width: 0px;
    min-height: 0px;
  }

  .guideContainer__step.right.arrow,
  .guideContainer__step.left.arrow {
    margin-bottom: 160px;
  }

  .guideContainer__step.left.arrow::after {
    width: 209.5px;
    height: 94px;
    left: 50%;
    top: auto;
    bottom: -125px;
    transform: translateX(-50%);
    background: url(../images/arrowLeft.png);
    background-size: 209.5px 94px;
  }

  .guideContainer__step.right.arrow::after {
    width: 209.5px;
    height: 94px;
    left: 50%;
    top: auto;
    bottom: -125px;
    transform: translateX(-50%);
    background: url(../images/arrowRight.png);
    background-size: 209.5px 94px;
  }

  section.howitworks .container {
    padding-bottom: 0;
  }

  section.text .container {
    padding-top: 0;
    padding-bottom: 100px;
  }

  section.text .container h2 {
    margin-top: 10px;
  }

  section span {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    font-size: 16px;
    line-height: 28px;
  }

  .container.tags {
    padding: 20px 30px;
    box-sizing: border-box;
  }

  .container.tags h4 {
    font-size: 13px;
    font-family: "AileronRegular", serif;
    margin-bottom: 7px;
  }

  .tags {
    flex-direction: column;
  }

  .tags .item {
    height: 30px;
    margin: 5px;
  }

  .tags .item:last-child {
    margin: 5px;
  }

  .tags .item b {
    font-size: 14px;
    height: 30px;
    border-radius: 15px;
    padding: 0 25px;
    justify-content: center;
  }

  .tags .item p {
    /* top: 0; */
    /* position:  fixed; */
    left: 50%;
    /* bottom:0; */
    right: auto;
    top: 35px;
    padding: 20px;
    width: calc(100vw - 120px);
    max-width: 90vw;
    transform: translateX(-50%) translateY(-5px);
  }

  .tags .item:last-child p {
    left: 50%;
    right: auto;
  }

  .tags .item.unfold p {
    transform: translateX(-50%);
  }

  .container.island {
    padding: 0;
  }

  .container.island h2 {
    margin-top: 0;
  }

  .container.island h3 {
    font-size: 28px;
    line-height: 28px;
  }

  .pricing__container {
    flex-direction: column;
  }

  .pricing__tile-big {
    width: calc(100% - 4px);
    border-width: 2px;
    margin: 12px 0 0 0;
    height: 150px;
  }

  .pricing__tile-big p {
    font-size: 22px;
    font-family: "AileronLight", serif;
  }

  .pricing__tile-big h3 {
    margin-top: 5px;
    font-size: 26px;
  }

  .pricing__tile-big::before {
    width: 20px;
    height: 15px;
    border: none;
    border-left: 2px solid #00b2fe;
    border-right: 2px solid #00b2fe;
    top: -15px;
    left: calc(50% - 10px);
    /* background: #00b2fe; */
  }

  .pricing__tile-big::after {
    width: 20px;
    height: 25px;
    top: -23px;
    left: calc(50% - 8px);
    background: #fff;
  }

  .pricing__container.big {
    margin-bottom: 50px;
  }

  .pricing__container.medium {
    /* flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-grow: 1; */
    flex-direction: column;
    gap: 20px;
  }

  .pricing__tile-medium {
    height: 125px;
    margin: 0;
    /* width: calc(50% - 10px); */
    border-width: 2px;
  }

  .pricing__tile-medium.pink {
    order: -1;
    width: 100%;
    margin: 0 0 10px 0;
    height: 140px;
  }

  .pricing__tile-medium.pink::after {
    right: -7px;
    top: -10px;
    /* background-size: 64.4px 62.3px; */
    /* width: 62.3px; */
    /* height: 64.4px; */
  }

  .pricing__tile-medium.pink .text p {
    font-size: 22px;
    font-family: "AileronSemibold", serif;
  }

  .pricing__tile-medium .text p {
    font-size: 18px;
    font-family: "AileronRegular", serif;
  }

  .pricing__tile-medium .text small {
    font-size: 14px;
    margin-top: -5px;
  }

  .pricing__tile-medium .price h3 {
    font-size: 26px;
    font-family: "AileronRegular", serif;
  }

  .pricing__tile-medium .price h4 {
    font-size: 15px;
    padding: 2px 0 0 0px;
    font-family: "AileronLight", serif;
  }

  .feedback__container {
    flex-direction: column;
  }

  .feedback__container .text {
    padding: 80px 0 100px 0;
  }

  .feedback__container .text h2 {
    font-size: 22px;
    margin: 0 0 10px 0;
  }

  .feedback__container .text p {
    font-size: 18px;
    margin: 10px 0 0 0;
  }

  .feedback__container .form {
    margin: 0;
    width: calc(100% - 40px);
    padding: 0 20px 30px 20px;
  }

  .feedback__container .form img {
    margin-top: 45px;
  }

  .feedback__container .form h3 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
  }

  .feedback__container .form input[type="text"],
  .feedback__container .form textarea {
    font-size: 18px;
  }

  .feedback__container .form input[type="submit"] {
    font-size: 22px;
    width: 150px;
    height: 50px;
    border-width: 2px;
  }

  footer .container {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .footer__menu a {
    margin: 0 10px;
  }

  .footer__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
  }
}
