/* --general------*/

@keyframes carousel {
  0% {transform: translateX(5%)}
  50% {transform: translateX(-115%)}
  100% {transform: translateX(5%)}
}
@keyframes carousel2 {
  0% {transform: translateX(5%)}
  50% {transform: translateX(-800%)}
  100% {transform: translateX(5%)}
}
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Montserrat:wght@100;200;300;400;500;600&display=swap');

:root{ 
  --button: rgb(213, 29, 142);
  --yellow:rgb(242, 213, 177);
  --screen:rgb(253, 247, 251);
  --butttonh: rgb(171, 21, 113);
  --green:#00D2AA;
  --transition: all 0.5s ease-in-out;
}
html{
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body{
  overflow-x: hidden;
  height: 100vh;
}
.fixed-position {
  position: fixed;
}
a{
  text-decoration: none;
  color: black;
}
li{
  list-style-type: none;
}
*{
  font-family: 'Abril Fatface', cursive;
  /* font-family: 'Montserrat', sans-serif; */
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul{
  list-style-type: symbols(-);
}

/* ---------- pop up -------------- */
.popup_wrap{
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999999900000;
  background-color: rgba(90, 91, 95, 0.7);
}
.popup{
  position: relative;
  margin-left: 55%;
  transform: translateX(-50%);
  z-index: 9990909090909;
}
.popup_button{
  position: absolute;
  top: 77.3%;
  left: 2.4%;
  width: 100%;
}
.confirm{
  background-color: #00D2AA;
  cursor: pointer;
  padding-left: 18.7%;
  padding-right: 23.7%;
  padding-top: 3%;
  padding-bottom: 3%;
  width: 15.5vw;
  border-radius: 45px;
}
.confirm a{
  color: white;
  font-size:2.1rem;
}

/* -------------navbar ------------- */
.wrapper{
  /* display: none; */
  position: fixed;
  top: 0;
  /*left: -100%;*/
  right: -100%;
  height: 100%;
  width: 100%;
  background: #1A1A1A;
  transition: all 0.6s ease-in-out;
}
#active:checked ~ .wrapper{
  right:0;
  z-index: 100;
  display: block;
}
.menu-btn{
  position: absolute;
  z-index: 110;
  right: 17%;
  top: 4.5%;
  height: 50px;
  width: 60px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.menu-btn span,
.menu-btn:before,
.menu-btn:after{
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 30%;
    width: 60%;
    border-bottom: 3px solid white;
    border-radius: 30px;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-btn:before{
  transform: translateY(-10px);
  width: 75%;
}
.menu-btn:after{
  transform: translateY(10px);
  width: 85%;
}

.close {
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: background .6s;
}

/* closing animation */
#active:checked + .menu-btn span {
    transform: scaleX(0);
}
#active:checked + .menu-btn:before {
    transform: rotate(45deg);
    width: 50%;
  border-color: #fff;
}
#active:checked + .menu-btn:after {
    transform: rotate(-45deg);
    width: 50%;
  border-color: #fff;
}
.wrapper ul{
  position: absolute;
  top: 70%;
  left: 55%;
  height: 90%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  z-index: 12;
}
.wrapper ul li{
  height: 10%;
  margin: 15px 0;
}
.wrapper ul li a{
  text-decoration: none;
  font-size: 48px;
  font-weight: 100;
  padding: 25px 40px;
  color: #fff;
  border-radius: 50px;
  /* position: absolute; */
  position:relative;
  line-height: 50px;
  margin: 5px 30px;
  opacity: 0;
  transition: all 0.3s ease;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wrapper ul li a:after{
  position: absolute;
  content: "";
  background: #d5188c;
  -webkit-box-shadow: 0px 0px 62px -13px rgba(213, 24, 140, 1);
  -moz-box-shadow: 0px 0px 62px -13px rgba(213, 24, 140, 1);
  box-shadow: 0px 0px 62px -13px rgba(213, 24, 140, 1);
   /* background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0); */
  /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  border-radius: 50px;
  transform: scaleY(0);
  z-index: -1;
  transition: transform 0.3s ease;
}
.wrapper ul li a:hover:after{
  transform: scaleY(1);
}
.wrapper ul li a:hover{
  color: white;
}
input[type="checkbox"]{
  display: none;
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  text-align: center;
  width: 100%;
  color: #202020;
}
.content .title{
  font-size: 40px;
  font-weight: 700;
}
.content p{
  font-size: 35px;
  font-weight: 600;
}

#active:checked ~ .wrapper ul li a{
  opacity: 1;
}
.wrapper ul li a{
  transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateX(100px);
}
#active:checked ~ .wrapper ul li a{
    transform: none;
    transition-timing-function: ease, cubic-bezier(.1,1.3,.3,1); /* easeOutBackを緩めた感じ */
   transition-delay: .6s;
  transform: translateX(-100px);
}

/* ------header----- */
.header{
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  justify-content: stretch;
  position: relative;
  background-color: #FDF7FB;
  width: 100%;
  overflow-x: hidden;
  MAX-WIDTH: 100VW;
}
.header_content{
  display: flex;
  flex-wrap: wrap;
}
.person{
  /* position: absolute; */
  margin-top: -59rem;
  width: 100%;
  transform: translateX(102px);
  margin-bottom: -0.3%;
}
.navbar{
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  padding-left: 16%;
  padding-right: 16%;
}
.topnav {
  background-color: #333;
  background: rgba(76, 175, 80, 0);
  display: block;
}
.topnav #myLinks {
  display: none;
}
.topnav a {
  color: white;
  padding-bottom: 16px;
  padding-top: 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}
.topnav a.icon {
  /* background: black; */
  display: block;
  position: absolute;
  z-index: 10;
  width: 59px;
  height: 22px;
  right: 0;
  margin-right: 18%;
  margin-top:  4%;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(assets/ikony/Group\ 866.png);
}
.topnav_img{
  margin-top: 2rem;
  z-index: 110;
  position: relative;
}

.topnav_img_mobile {
  display: none;
  z-index: 110;
  position: relative;
}

.wrapper_img{
  bottom: 0;
  z-index: 11;
}
.wrapper_img > img{
  width: 100%;
  bottom: 0px;
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
}
/* .topnav a:hover {
  background-color: black;
  color: white;
} */
/* .active {
  color: white;
} */

/* ---- center container ----- */
.central-container{
  background-color:rgba(0, 0, 0, 0);;
  padding-top: 5vh;
  width: 560px;
  margin-top: 3%;
  margin-left: 16%;
  display: block;
  position: relative;
  z-index: 9;
  margin-bottom: 16%;
}
.central-container h1{
  color: black;
  font-size: 32px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: 100;
}
.central-container span{
  color: rgb(213, 29, 142);
}

.center_button{
  background-color: var(--button);
  border: none;
  color: white!important;
  padding: 20px 80px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 35px;
  font-size: 18px;
}
.center_button:hover{
  background-color: var(--butttonh);
  cursor: pointer;
}
.center_button > a > i{
  color: white;
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  font-style: normal;
}


.ball{
  position: absolute;
  display: block;
  margin-left: -8rem;
  margin-top: -16%;
  z-index: 1;
  width: 20%;
}
.mainball{
  position: absolute;
  left: 0;
  margin-top: 28%;
}

/* ----main---- */
.main{
  text-align: center;
  padding: 5.5rem 1.5rem;
  border-radius: 4px;
  background-color:white;
  position: relative;
  width: 100%;
}
.main_container{
  width: 100%;
}
.main_title{
  position: relative;
  width: 100%;
}
.main_title h2{
  position: absolute;
  margin-top: 0.5%;margin-left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 100;
}
.title_img{
  z-index: 0;
  margin-top: -3px;
}
/* ---- star slider ---- */

#gallery{
  height: 400px;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.slider_container {
  height: 320px;
  width: 1200px;
  padding-left: 16%;
  padding-right: 16%;
  margin-top: 1rem;
  position: relative;
  margin: auto;
  
}
.star_slides{
  width: 100%;
  padding-top: 1rem;
  
}
.star_item{
  text-align: center;
  display: inline-block;
  padding: 3rem;
  padding-top: 0;
  
}
.star_item h2{
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.star_item p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  text-align: center;
  line-height: 1.6;
}
.star_item img{
  vertical-align: middle;
  margin-bottom: 1rem;
}
.next{
  background-image: url(assets/ikony/Group\ 904.png);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  margin-right: 15rem;
}
.prev{
  background-image: url(assets/ikony/Group\ 904.png);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  margin-left: 15rem;
}
.prev , .next{
  top: 0!important;
  margin-top: 7rem!important;
}
.prev:hover{
  background-image: url(assets/ikony/Group\ 903.png);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.next:hover {
  background-image: url(assets/ikony/Group\ 903.png);
  transform: rotate(0deg);
}

.swiper-button-next::after {
  content: none!important;
  display: block;
}

.swiper-button-prev::after {
  content: none!important;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
}

.swiper-button-prev {
  width: 50px!important;
  height: 50px!important;
  background-repeat: no-repeat;
}

.swiper-button-next {
  width: 50px!important;
  height: 50px!important;
  background-repeat: no-repeat;
}

/* -------- pink box ------- */
.mailing{
  background-color: var(--button);
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.balpink{
  position: absolute;
  right: 0;
  margin-top: 22rem;
}
.balpink2{
  position: absolute;
  right: 0;
  margin-right: 5rem;
  margin-top: 22rem;
}

.mail_left{
  padding-left: 16%;
  padding-top: 3%;
  float: left;
  width: 50%;
  color: #fff;
}
.mail_left h2 {
  font-weight: 100;
  font-size: 3rem;
}
.mail_left p{
  font-family: 'Montserrat', sans-serif; 
  font-weight: 100;
  padding-top: 1.5rem;
}
.mail_button span{
  color:white;
  display: none;
  position: absolute;
  margin-top: -1rem;
}
button[type=submit]{
  background-color: var(--green);
  border: none;
  color: white;
  padding: 20px 45px;
  text-decoration: none;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 35px;
  font-family: 'Montserrat', sans-serif; 
  font-size: 19px;
  font-weight: 300;
}
input[type=text]{
  width: 70%;
  font-family: 'Montserrat', sans-serif; 
  padding-bottom: 1rem;
  margin: 2rem 1rem 1rem 0rem;
  margin-right: 4rem;
  background-color: var(--button);
  border: none;
  border-bottom: 1px solid white;
  box-sizing: border-box;
  outline: none;
  color: white;
  font-size: 16px;
  font-weight: 400;
}
input[type=text]::placeholder{
  color:#CBCBCB;
  font-size: 1rem;
  font-weight: 400;
}
.mail_right{
  margin: auto auto -0.3%;
  position: relative;
  z-index: 10;  
}

.tablet {
  position: relative;
  z-index: 1;
  width: 100%;
}

.krata{
 position: absolute; 
 margin-left: 30%;
 z-index: 0;
 width: 61%;
}


/* ----------- sponsors -------- */
.sponsor{
  background: #1A1A1A;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  -webkit-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  -moz-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  color: #fff;
  /* overflow-x: hidden; */
  height: auto;
  text-align: center;
}
.sponsor_title{
  background-image: url();
  font-size: 1.4rem;
  line-height: 10px;
  position: relative;
  z-index: 2;
  padding-top: 87px;
  margin: auto;
}
.sponsor_title h2{
  font-weight: 100;
  line-height: 10px;
  margin-bottom: 2%;
}
.sponsor img{
  position: absolute;
  left: 0;
  
}
.sponsor_img{
  z-index: 1;
  padding-top: 3.2%;
  height: auto;
  margin-left: 48.5%;
  transform: translateX(-20%);
}

.round_middle{
  left: 0;
  margin-left: 16%;
  width: 67%;
}
.round_left{
  left: 0;
  width: 30%;
}
.round_right{
  margin-left: 70%;
  width: 30%;
}

.sponsor_content{
  font-family: 'Montserrat', sans-serif;
  padding-top: 1%;
  margin:auto;
}
.spon_logo{
  margin-top: 2.6%;
  height: 130px;
  display: block;
}
.logo_img{
  margin-top: 0.2%;
  width: 14.5%;
  margin-left: 42%;
}

/* --- black & white box-- */
.boxes{
  height: auto;
  background-color: white;
}
.white_box{
  background-color: white;
  display: flex;
  height: auto;
  width: 100%;  
  margin-bottom: 3rem;
}
.woman_mobile{
  width: 80%;
}
.money1{
  position: absolute;
  z-index: 10;
  width: 15%;
  margin-top: -3rem;
  margin-left: 5rem ;
}
.money2{
  position: absolute;
  z-index: 10;
  right: 0;
  margin-right: 10rem;
  top:0;
  width: 15%;
}
.money3{
  position: absolute;
  z-index: 10;
  margin-left: -30%;
  margin-top: 60%;
  width: 20%;
}
.white_box_left{
  padding-left: 16%;
  width: 50%;
  padding-top: 18%;
  font-size: 1.8rem;
}
.white_box_left h2{
  font-weight: 100;
  font-size: 48px;
}
.white_box_left span{
  color: var(--button);
}
.white_box_right{
  width: 50%;
  margin-top: 5%;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  padding-bottom: 5%;
}
.black_box_right h2{
  font-weight: 100;
}
.black_box{
  background-color: #1A1A1A;
  color:white;
  /* display: flex; */
  display: none;
  height: auto;
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.black_box_left{
  width: 50%;
  float: left; 
  margin-bottom: -1%;
}
/* ----- images in blac kox left ---- */
.black_box1{
  margin-left: 16rem;
  margin-top: 2.7rem;       /* zdjęcie osoby */
  z-index: 2;
  position: relative;
}
.black_box2{
  position: absolute;
  left: 0;
  margin-left:16rem;        /* duze kolo */
  margin-top: 5rem;
  z-index: 1;
}
.black_box3{
  position: absolute;
  left: 0;
  z-index: 0;
  margin-left: 13rem;
  margin-top: 9rem;
}
.black_box4{
  position: absolute;
  left: 0;
  z-index: 2;
  margin-top: 11rem;
  margin-left: 45rem;
}
.black_box5{
  position: absolute;
  left: 0;
  z-index: 2;
  margin-top: 29rem;
  margin-left: 13rem;
}
/* end images */
.black_box_right{
  width: 50%;
  margin: auto;
}
.black_box h2{
  margin-top: 9rem;
  margin-left: 5%;
  font-size: 72px;
}
.black_box_right_img{
  position: absolute;
  margin-left: 44rem;
  width: 15%;
}

/* slider in black box */
.black_slider{
  width: auto;
  height:270px;
  margin: 50px;
  position: relative;
}
.black_slider_item{
  display: none;
  width: 445px;
  height: 150px;
  text-align: center;
  color: #fff;
}
.black_slider_item span{
  color: var(--button);
}
.black_slider_item > h3, p{
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 15px;
}
.w-3center{
  display: flex;
}
.left, .right, .badge {
  cursor:pointer;
  margin-top: 90px;
}
.left{
  float: left;
  width: 2%;
}
.left:hover{
  color: rgb(131, 44, 44);
}
.right{
  float: right;
  margin-right:95%;
  margin-left: 5px;
}
.black_slider_item h3{
  font-size: 1.7rem;
  font-weight: 100;
  font-family: 'Abril Fatface'
}

/* ---------------------  motivation ad ------------------- */
.motivation{
  background-color: white;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  -webkit-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  -moz-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  color: black;
  height: auto;
}
.motivation_round img{
  position: absolute;
  left: 0;
}
.motivation_txt{
  z-index: 1;
  position: relative;
  height: auto;
  /* background-color: #FDF7FB; */
  /* background-image: url(assets/ikony/Group\ 849.png);
  background-repeat: no-repeat; */
  background-size: auto;
  
}
.motivationH2{
  padding: 7.5% 5% 7.5%;
  font-weight: 100;
  font-size: 48px;
}
.motivation span{
  color: var(--button);
}
.motivation_logo{
  margin: 0;
  width: 100%;
  overflow: hidden;
  height: auto;
  position: relative;
}
.motiv_logo {
  width: auto;
  animation-name: carousel;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.logo{
  margin: auto;
  margin-left: 60px;
  margin-right: 60px;
}
.motivation_back {
  position: absolute;
  z-index: 0;
  padding: 0 0;
  left: 0;
  width: 100%;
}
.motiv_logo{
  width: 100%;
}
/* ---------------------- calendar & profits ----------------*/
.calendar{ 
  color: #fff;
  position: relative;
}
.cal_bck_gnd{
  position: absolute;
  z-index: 0;
  width: 100%;
  overflow-x: hidden;
}
.calendar_title{
  /* background: linear-gradient(90deg, rgba(209,0,141,1), rgba(236,119,135,1)); */
  /* background-image: url(assets/ikony/Scroll\ Group\ 8.png); */
  /* background-repeat: no-repeat; */
  text-align: left;
  padding-left: 16%;
  padding-right: 16%;
  position: relative;
  z-index: 1;
  /* overflow-x: hidden; */
}
/* decoration on right side div */
.calendar_hash{
  position: absolute;
  right: 0;
  margin-top: 35rem;
}
.calendar_ball{
  position: absolute;
  right: 0;
  top: 0px;
  margin-top: 5rem;
}
.calendar_balline{
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 0;
  margin-top: 5rem;
}
.calendar_smlbl{
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 0;
  margin-top: 1rem;
  margin-right: 3rem;
}
.calendar_smline{
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 0;
  margin-top: 2rem;
  margin-right: 5rem;
}
/* end of decoration  */
.calendar_title h2{
  padding-top: 3.5rem;
  font-size: 2.6rem;
  letter-spacing: 1px;
  font-weight: 100;
}
.calendar_title span{
  color: #FFC87F;
}
.calendar_years_slider{ 
  width: 100%;
  margin-top: 2rem;
  height: 390px;
}
.calendar_text {
  display: none;
}
.calendar_years{
  height: 50px;
  display: inline-block;
  
}
.buttons{
  font-size: 20px;
  background-color: rgba(105, 33, 81, 0);
  border-style: none;
  margin: 10px;
  cursor:pointer;
  color: #D657B1;
  border-bottom: 1px #fff;
  font-family: 'Montserrat', sans-serif;
}
.on, .buttons:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.button1{
  margin-left: 0;
}
/* awards */
.award{
  display: inline-block;
  margin-right: 2.5rem;
  height: 120px;
  border-bottom:  1px solid #fff;
  font-family: 'Montserrat', sans-serif;
}
#awards1 {
  display: flex;
}
.award h2{
  padding-top: 1rem;
  font-size: 1.5rem;
}
.award p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
}
.award-column{
  display: flex;
  flex-direction: column;
  width: calc(33% - 2.5rem);
  margin-right: 2.5rem;
}

/* profits */
.profits{
  color: black;
  display: flex;
  background-color:#FDF7FB;
  z-index: -1;
  width: 100%;
  overflow: hidden;
  padding-top: 5%;
}
.profits_left{
  margin-top: 5.1rem;
  float: left;
  width: 50%;
 
}
.profits_left img{
  width: 100%;
  margin-left: 50px;
  margin-bottom: -1%;
}

.profits_right{
  float: right;
  width: 50%;
  margin-top: 6rem;
}
.profits_title{
  margin-top: 8rem;
  background: none;
  font-size: 1.8rem;
  position: relative;
}
.profits_title p{
  position: absolute;
  margin-top: 20px;
  margin-left: 33px;
}
.profits_title img{
  left: 0px;
  top: 0px;
  z-index: -1;
}
.profits_txt{
  margin-top: 20px;
  
  width: 500px;
}
.profits_txt ul li{
  padding: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 5px;
  padding-left: 15px;
}
.profits_txt ul{
  list-style-image: url(assets/ikony/Group\ 925.png);
  margin-left:55px
}

/* ------ mail questionnaire----- */
.questionnaire{
  display: flex;
  padding-left: 16%;
  padding-right: 16%;
  padding-top: 3.5rem;
  margin-bottom: 1rem;
  width: 100%;
}
/* left side */
.question_left{
  float: left;
  width: 50%;
  padding-right: 15%;
  text-decoration: none;
  line-height: normal;
}
.question_text{
  margin-top: 100px;
}
.question_left p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 15px;
}
.question_title_text{
  position: relative;
  z-index: 1;
} 
.question_title_text h2{
  font-size: 72px;
  margin-top: -117px;
  letter-spacing: 3px;
  color: black;
  font-weight: 100;
}
.question_title-img{
  z-index: -1;
  margin-left: -21%;
  margin-top: 5%;
  width: 180px;
}
.question_text_list li{
  font-family: 'Montserrat', sans-serif;
  list-style-type: none ;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 100;
}
#error_name{
  color:black;
  display: none;
  position: absolute;
}
#error_mail2{
  color:black;
  display: none;
  position: absolute;
}
.span{
  background-color: red;
  background-image: linear-gradient(90deg ,#DD3F8A,#F8A483);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

/* right side */
.question_right{
  float: right;
  width: 50%;
}
.question_right-form{
  padding-top: 6rem;
  height: 700px;
}
.question_right input{
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: none;
  box-sizing: border-box;
  border-bottom: 2px solid #CBCBCB;
  font-family: 'Montserrat', sans-serif;
  padding-top: 6%;
  font-size: 18px;
  color: #CBCBCB;
}
.question_right input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #CBCBCB;
  font-size: 1rem;
  opacity: 1; /* Firefox */
}
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #CBCBCB;
}

input::-ms-input-placeholder { /* Microsoft Edge */
  color: #CBCBCB;
}

textarea{
  resize: none;
  border: none;
  background-color: #fff;
  margin: 8px 0;
  padding-left: 3%;
  display: inline-block;
  border: none;
  box-sizing: border-box;
  border-bottom: 2px solid #CBCBCB;
  font-family: 'Montserrat', sans-serif;
  padding-top: 6%;
  width: 100%;
}
textarea::placeholder{
  color: #CBCBCB;
  font-size: 18px;
  
}
.question_right input[name=comment]{
  height: 300px;
}
.question_right input[type="checkbox"]{
  height: 27px;
  width: 27px;
  margin-right: 2%;
  padding-top: 0%;
}
.questionnaire input[type=button]{
  background-color: var(--button);
  border: none;
  color: white;
  padding: 16px 32px;
  width: 150px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 30px;
  float: right;
  margin-top: 6%;
}
.name_check::placeholder{
  color: #00D2AA;
}


/* ----- footer ------ */
.footer{
  display: flex;
  height: 300px;
  padding-left: 16%;
  padding-right: 16%;
  font-family: 'Montserrat', sans-serif;
}
.footer_container{
  position: relative;
}
.foot-ball{
  position: absolute;
  left: 0;
  margin-left: 50%;
  transform: translateX(-50%);
}
.foot-line{
  margin-top: 1.5rem;
  width: 100%;
  padding-bottom: 50px;
}
.scrollup{
  text-decoration: none;
  top: 0;
	display: absolute;
  z-index: 99;
  border-radius: 100px;
}
.left_foot{
  float: left;
  width: 50%;
}
.foot-logo{
  margin-bottom: 2rem;
}
.right_foot{
  float: right;
  width: 50%;
  text-align: right;
}
.right_foot p{
  padding-top: 60px;
  font-weight: 100;
}
.popup img{
 width: 100%;
}

/* ----------------- media ------------------ */

 @media screen and (max-width: 2560px){
  .cal_prof{
    height: 886px;
    width: 100%;
  }
}

@media screen and (min-width: 1921px){
  .person{
    transform: translateX(199px);
  }
  .black_box h2 {
    margin-left: 4%;
  }
  .question_title-img {
    margin-left: -20%;
    margin-top: 4%;
  }
}
@media screen and (min-width: 2120px){
  .person{
    transform: translateX(438px);
  }
  .right{
    margin-right: 95%;
  }
  .wrapper ul {
    left: 53.5%;
  }
  .question_title-img {
    margin-left: -17%;
  }
}
@media screen and (min-width: 2361px){
  .person{
    transform: translateX(636px);
  }
  .question_title-img {
    margin-left: -15%;
  }
}


@media screen and (max-width: 1872px){
  .next{
    margin-right: 5%;
  }
  .prev{
    margin-left: 5%;
  }
}

@media screen and (max-width: 1603px){
  .black_box1 {
  margin-left: 15%;
  }
  .black_box2 {
    margin-left: 7%;
  }
  .black_box3 {
    margin-left: 5%;
  }
  .black_box4 {
    margin-left: 40%;
  }
  .black_box5 {
    margin-left: 4%;
  }
  .central-container {
    margin-bottom: 4%;
    width: 525px;
  }
  .mail_left{
    padding-left: 12%;
  }
  .mainball {
    margin-top: 33rem;
  }
  .white_box_left {
    padding-left: 10rem;
    padding-top: 12%;
  }
  .confirm {
    width: 20.5vw;
  }
  .black_box h2 {
    margin-left: 7%;
  }
  .question_title_text h2{
    font-size: 62px;
    margin-top: -100px;
  }
  .question_title-img{
    margin-left: -26%;
    margin-top: 7%;
    width: 170px;
  }
  .sponsor_title {
    padding-top: 73px
  }
}

@media screen and (max-width: 1442px){
  .award-column{
    margin-right: 1.5rem;
  }
}

@media screen and (max-width: 1366px){
  
  .navbar{
    padding-left: 10%;
  }
  .topnav a.icon {
    margin-right: 18%;
  }
  .central-container{
    width: 480px;
    margin-top: 8rem;
    margin-left: 9rem;
  }
  .ball{
    margin-top: -14%;
    margin-left: -16%;
  }
  .balpink {
    margin-top: 39rem;
  }
  .balpink2 {
    margin-top: 38rem;
    margin-left: 15rem;
  }
  .next{
    margin-right: 2%;
  }
  .prev{
    margin-left: 4rem;
  }
  .mail_left{
    width: 750px;
  }
  .sponsor_logo{
    margin-top: 1rem;
  }
  .white_box_left{
    padding-left: 13rem;
    padding-top: 12%;  
    font-size: 1.5rem;
  }
  .profits{
    padding-top: 7%;
  }
  .money3{
    margin-left: -29%;
    margin-top: 55%;
  }
  .black_box2{
    margin-left: 7%;
    width: 40%;
  }
  .black_box3{
    margin-left: 5%;
    width: 10%;
  }
  .black_box4{
    margin-left: 35rem;
    width: 10%;
  }
  .black_box5{
    margin-left: 1.5rem;
    width: 10%;
  }
  .motivation_txt{
    font-size: 1.5rem;
  }
  .black_box_right_img{
    width: 15%;
    margin-left: 38%;
  }
  .award{
    width: 248px;
    margin-right: 5rem;
  }
  .profits_title{
    margin-top: 2rem;
  }
  .question_left {
    padding-right: 3rem;
  }
  .popup{
    margin-left: 40%;
  }
  .popup img{
    width: 137%;
  }
  .confirm {
    padding-left: 20.7%;
    padding-right: 29.7%;
    padding-top: 4%;
    padding-bottom: 3%;
    width: 31.5vw;
    border-radius: 45px;
  }
  .confirm a {
    font-size: 2.1rem;
  } 
  .question_title-img{
    margin-left: -23%;
  }
}

@media screen and (max-width: 1331px){
  .calendar_title {
    padding-left: 12%;
  }
  .mail_left{
    margin: auto;
  }
  .mail_right{
    margin: auto auto -0.5%;
  }
  .woman_mobile {
    width: 110%;
    margin-top: 10%;
  }
  .white_box_left {
    padding-top: 11rem;
  }
  .money3{
    margin-top: -18%;
    margin-left: 36%;
    width: 25%;
  }
}

@media screen and (max-width: 1260px){
  .central-container{
    margin-top: 4rem;
    margin-left: 7rem;
  }
  .slider_container {
    width: 634px;
  }
  .balpink2 {
    margin-right: 4rem;
  }
  .mainball{
    margin-left: 0rem;
  }
  .woman_mobile {
    width: 107%;
  }
  .white_box_left {
    padding-left: 11rem;
    padding-top: 16rem;
    font-size: 1.4rem;
  }
  .black_box_right_img {
    margin-top: -5rem;
    width: 20%;
  }
  .black_box h2 {
    margin-top: 6rem;
  }
  .black_box1 {
    width: 75.6%;
  }
  .black_box4{
    width: 9%;
    margin-left: 41%;
  }
  .black_box5{
    margin-top: 38%;
    margin-left: 3%;
  }
  .black_box h2 {
    margin-top: 3rem;
    font-size: 2.8rem;
  }
  .left, .right, .badge {
    margin-top: 140px;
  }
  .award{
    margin-right: 3rem;
  }
  .white_box_left {
    padding-left: 10rem;
    padding-top: 9rem;
    padding-bottom: 2rem;
  }
  .calendar_hash {
    margin-top: 32rem;
  }
  .profits_right{
    margin: auto;
    margin-top: 5%;
  }
  .round_middle {
    margin-top: 14%;
  }
  .black_box h2 {
    margin-left: 10%;
  }
  .right{
    margin-right: 92%;
  }
  .sponsor_title {
    padding-top: 67px;
  }
}

@media screen and (max-width: 1124px){
  .navbar{
    padding-left: 5%;
    background-color: #1A1A1A;
    z-index: 10000;
    position: relative;
  }
  .topnav_img{
    display: none;
  }
  .topnav_img_mobile{
    display: block;
    padding-top: 1rem;
  }
  .menu-btn{
    right: 15%;
    top:25%;
  }
  .calendar_title {
    padding-left: 5%;
    padding-right: 11%;
  }
  .award-column{
    display: flex;
  }
  .topnav a.icon {
    margin-right: 16%;
  }
  .central-container {
    width: 339px;
    margin-bottom: 2%;
    padding-top: 4rem;
    margin-left: 4.5rem;
  }
  .sponsor_img {
    padding-top: 47px;
    transform: translate(-37%, -11%);
  }
  .sponsor_title {
    padding-top: 60px;
  }
  .sponsor_content {
    padding-top: 5%;
  }
  .profits{
    padding-top: 14%;
    padding-top: 7%;
  }
  .white_box_left h2 {
    font-size: 41px;
  }
  .question_title_text h2{
    font-size: 55px;
  }
  .question_title-img{
    margin-left: -35%;
  }
}


@media screen and (max-width: 998px){
  .topnav a {
    padding: 13px 29px;
  }
  .central-container {
    padding-top: 0rem;
  }
  .central-container{
    margin-left: 4rem;
  }
  .topnav_img{
    width: 47%;
  }
  .profits_left {
    margin-top: 11.1rem; 
  }
  .profits_txt {
    width: 366px;
  }
  .menu-btn {
    right: 7%;
  }
  .wrapper ul {
    left: 62%;
  }
  .white_box{
    flex-direction: column;
  }
  .white_box_left {
    padding-left: 0;
    margin:auto;
    width: 75%;
  }
  .white_box_left h2 {
    font-size: 44px;
  }
  .white_box_right{
    width: 60%;
    margin-top: 1rem;
    padding: 0%;
    margin: auto;
  }
  .money3 {
    margin-top: -26%;
    margin-left: 55%;
    width: 32%;
  }
  .black_slider {
    width: 460px;
    height: 273px;
    margin: 0;
    margin-top: 50px;
  }
  .left, .right, .badge {
    margin-top: 110px;
  }
  .black_box h2 {
    margin-left: 0;
  }
  .black_box{flex-direction: column-reverse;}
  .black_box_left{
    margin: auto;
    margin-bottom: -1%;
  }
  .prev {
    margin-left: 2rem;
  }
  .next {
    margin-right: 2rem;
  }
  .black_box2 {
    margin-left: 32%;
  }
  .black_box3 {
    margin-left: 29%;
  }
  .black_box4 {
    margin-left: 66%;
    margin-top: 9rem;
  }
  .black_box5 {
    margin-left: 28%;
  }
  .calendar_awards {
    overflow-x: scroll;
    width: 85%;
    margin: auto;
    scroll-snap-type: x mandatory;
  }
  .award-column {
    margin-right: 10.5rem;
  }
  .calendar_text {
    height: 423px;
    /* overflow: hidden; */
  }
  .calendar_text::-webkit-scrollbar{
    display: none;
  }
  .question_title_text h2{
    font-size: 45px;
    margin-top: -74px;
  }
  .question_title-img{
    margin-left: -9vw;
    width: 140px;
  }
  .question_right-form {
    margin-top: 50%;
  }
}
@media screen and (max-width: 862px){
  .question_text {
    margin-top: 140px;
  }
  .question_title{
   margin-left: 50%;
   transform: translateX(-50%);
   width: 100%;
  }
}

@media screen and (max-width: 768px){
  .topnav_img{
    display: none;
  }
  .topnav_img_mobile {
    display: block;
    width: 55%;
  }
  .wrapper ul {
    left: 65%;
  }
  .topnav a {
    padding: 2% 12%;
  }
  .person {
    transform: translateX(-42%);
    margin-bottom: -1%;
    width: 192%;
    margin-top: 0rem;
  }
  .topnav a.icon {
    margin-right: 5%;
  }
  .topnav_img {
    width: 50%;
  }
  .central-container {
    margin-left: 15%;
    width: 518px;
    margin-top: 2rem;
  }
  .main {
    padding: 2.5rem 1.5rem;
  }
  .mainball {
    margin-top: 26rem;
  }
  .sponsor_img {
    transform: translate(-37%, -11%);
  }
  .sponsor_title {
    height: 135px;
  }
  .spon_logo {
    margin-top: 7%;
  }
  .round_middle {
    margin-left: 7rem;
  }
  .motivationH2{
    font-size: 1.4rem;
  }
  .white_box_left h2 {
    font-size: 38px;
  }
  .woman_mobile{
    margin: auto;
    padding: 0;
  }
  .money2{
    margin-right: 2rem;
    margin-top: 2rem;
  }
  .money3 {
    margin-left: 60%;
    width: 30%;
    margin-top: -26%;
  }
  .black_box {
    height: auto;
    z-index: 2;
    flex-direction: column;
  }
  .black_box2{
    margin-top: 3%;
    margin-left: 29%;
  }
  .black_box3 {
    margin-left: 28%;
    margin-top: 2rem;
  }
  .black_box4 {
    margin-left: 61%;
    margin-top: 6%;
  }
  .black_box5{
    margin-top: 31%;
    margin-left: 26%;
  }
  .black_box h2 {
    margin-top: 2rem;
    font-size: 2.7rem;
  }
  .black_box_left {
    display: block;
    float: none;
    order: 2;
    display: block;
    float: none;
    margin-top: 8%;
  }
  .right{
    margin-right: 90%;
  }
  .slider_container {
    width: 100%
  }
  .black_box_right_img {
    width: 24%;
    margin-left: 61%;
  }
  .black_box_right{
    width: 75%;
    height: auto;
  }
  .calendar_hash {
    margin-top: 134%;
    width: 20%;
  }
  .black_slider {
    width: 445px;
    height: auto;
    margin: auto;
  }
  .black_slider_item {
    width: 345px;
    height: 188px;
  }
  .black_box1{
    margin-top: 0;
    margin-left: 11%;
  }
  .motivation_txt {
    font-size: 1rem;
  }
  .motivationH2{
    padding: 2rem 2rem;
  }
  .calendar_title h2 {
    padding-top: 1rem;
    font-size: 2rem;
  }
  .calendar_title > h2 {
    width: 66vw;
  }
  .calendar_text{
    height: 463px;
  }
  .calendar_awards{
    overflow-x: scroll;
    width: 55%;
    margin: auto;
    scroll-snap-type: x mandatory;
  }
  .award-column{
    width: 285px;
    display: flex;
    scroll-snap-align: center;
  }
  .award{
    width: 39vw;
    margin-right: 2rem;
    height: 170px;
  }
  .profits {
    height: 435px;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    margin: auto;
    flex-direction: column-reverse;
    margin-top: 80px;
  }
  .profits_left {
    margin-top: 5%;
    padding-left: 0rem;
    margin-left: 1rem;
    margin-bottom: -1%;
  }
  .profits_left img {
    width: 150%;
    margin-left: 15%;
  }
  .profits_title {
    font-size: 1.4rem;
  }
  .profits_title p {
    margin-left: 10%;
  }
  .profits_txt {
    margin-top: 20px;
  }
  .profits_right {
    margin: 14% auto auto;
  }
  .questionnaire{
    padding-top: 0.5rem;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-wrap: wrap;
    height: auto;
  }
  .question_title_text{
    text-align: center;
  }
  .question_left{
    width: 100%;
    padding-right: 0;
  }
  .question_right-form {
    margin-top: 25%;
    padding-top: 0rem;
  }
  .question_right {
    float: right;
    width: 100%;
  }
  
  .footer {
    display: flex;
    height: 300px;
    padding-left: 10%;
    padding-right: 10%;
  }
  .confirm a {
    font-size: 1.5rem;
  } 
  .buttons {
    font-size: 16px;
  }
  .calendar_title h2 {
    padding-top: 2rem;
    font-size: 1.7rem;
  }
  .center_button {
    position: absolute;
    margin-left: 17%;
    margin-top: 85vh;
    transform: translateY(50%);
  }
  .sponsor_content {
    padding-top: 5%;
  }
  .question_title-img{
    margin-left: -85vw;
  }
  .logo img{
    height: 60px;
  }
  .logo{
    height: 85px;
  }
  .motiv_logo{
    height: 85px;
  }
} 
@media screen and (max-width: 600px){
  .central-container {
    margin-left: 12%;
  }
  .sponsor_content {
    padding-top: 2%;
    margin: auto;
    width: 350px;
  }
  .black_box_right_img {
    width: 25%;
    margin-left: 74%;
    margin-top: -3%;
  }
  .calendar_years {
    width: 50vw;
  } 
  .button5{
    margin-left: 0;
  }
  .mainball {
    margin-top: 24rem;
  }
  .wrapper ul li a {
    font-size: 40px;
  }
  .center_button {
    position: absolute;
    margin-left: 12%;
    margin-top: 80%;
    transform: translateY(100%);
  }
}

@media screen and (max-width: 560px){
  .menu-btn{
    top: 15%;
  }
  .person {
    margin-top: -5rem;
  }
  .central-container {
    width: 365px;
    font-size: 1.2rem;
  }
  .balpink, .balpink2{
    display: none;
  }
  .calendar_awards {
    width: 69%;
  }
  .award {
    width: 53vw;
  }
  .calendar_years {
    width: 57vw;
  } 
  .calendar_ball, .calendar_balline{
    width: 20%;
  }
  .calendar_smlbl, .calendar_smline{
    width: 22%;
    margin-top: 4rem;
    margin-right: 1rem;
  }
  .calendar_smline{
    margin-top: 3rem;
  }
  .main_title h2{
    font-size: 1.6rem;
    margin-top: 2%;
  }
  .question_text {
    margin-top: 90px;
  }
  .profits_txt {
    width: 320px;
  }
  .profits_right{
    margin-left: 14%;
  }
}

@media screen and (max-width: 450px){
  .header {
    height: auto;
  }
  .navbar {
    height: 72px;
  }
  .person {
    margin-top: -4rem;
  }
  .topnav_img {
    margin-top: 1rem;
    width: 40%;
  }
  .topnav a {
    padding: 0px 0px;
  }
  .topnav a.icon {
    margin-right: 19%;
    width: 11%;
    margin-top: 6%;
  }
  .central-container {
    margin-bottom: 10%;
    margin: 10%;
  }
  .center_button{
    margin-left: 5%;
    -webkit-box-shadow: 0px 0px 62px -13px rgba(213, 24, 140, 1);
    -moz-box-shadow: 0px 0px 62px -13px rgba(213, 24, 140, 1);
    box-shadow: 0px 0px 62px -13px rgba(213, 24, 140, 1);
  }
  .central-container h1 {
    font-size: 1.4rem;
  }
  .mainball {
    margin-top: 29rem;
    position: absolute;
    z-index: 5;
    width: 13%;
  }
  .slider_container {
    width:  315px;
  }
  .black_slider {
    width: 320px;
  }
  .prev {
    margin-left: 0rem;
  }
  .next {
    margin-right: 0rem;
  }
  .balpink{
    width: 38%;
  }
  .balpink2{
    width: 18%;
  }
  .mailing{
    flex-wrap: wrap;
    height: auto;
  }
  input[type="button"] {
    margin: 0px 30px;
  }
  .tablet{
    width: 80%;
  }
  .krata {
    margin-left: 160px;
    width: 39%;
  }
  .mail_left{
    width: 100%;
  }
  .mail_left h2 {
    font-size: 1.6rem;
  }
  .mail_right {
    margin: auto auto -1.5%;
  }
  .sponsor_title {
    font-size: 1rem;
    padding-left: 0rem;
  }
  .sponsor_content {
    width: 300px;
  }
  .sponsor_content p{
    font-size: 0.8rem;
  }
  .logo_img {
    margin-left: 30%;
    width: 37% !important;
  }
  .motivation_logo {
    height: auto;
    overflow-x: scroll;
  }
  .motiv_logo {
    width: auto;
    animation-name: carousel2;
    animation-duration: 80s;
  }
  .white_box_left {
    padding-top: 4rem;
    font-size: 0.7rem;
  }
  .white_box_right {
    padding-left: 0px;
    padding-right: 1rem;
    margin-bottom: 10%;
    margin-top: 10%;
  }
  .left, .right, .badge {
    margin-top: -110px;
  }
  
  .black_box h2 {
    font-size: 2rem;
  }
  .black_box_right_img {
    margin-left: 19rem;
  }
  .black_slider_item {
    height: 475px;
    margin: auto;
    margin-top: 5%;
    width: 259px;
  }
  .black_wrap{
    margin-bottom: -1%;
  }
  .black_box1 {
    margin-left: 0;
    width: 110%;
  }
  .black_box2 {
    margin-top: -67%;
    margin-left: 21%;
    width: 61%;
  }
  .black_box3 {
    margin-left: 25%;
    margin-top: -63%;
    width: 12%;
  }
  .black_box4 {
    margin-left: 72%;
    margin-top: -58%;
    width: 12%;
  }
  .black_box5 {
    margin-top: -24%;
    margin-left: 21%;
    width: 12%;
  }
  .calendar_title h2 {
    font-size: 1.5rem;
    margin-right: 3rem;
  }
  .calendar_title {
    padding-left: 10%;
    padding-right: 10%;
  }
  .calendar_hash {
    margin-top: 45rem;
    width: 22%;
  }
  .calendar_awards{
    width: 90%;
  }
  .calendar_years {
    width: 71vw;
  } 
  .award {
    width: 61vw;
  }
  .profits{
    display: flex;
    flex-wrap: wrap;
    height: auto;
    margin: auto;
    flex-direction: row;
    padding-left: 10%;
  }
  .profits_left{
    order: 2;
    margin-top: 0;
  }
  .profits_right{
    order: 1;
    margin-left: 3rem;
    width: 300px;
  }
  .profits_txt {
    width: 270px;
  }
  .profits_left img {
    width: 148%;
    margin-left: 15%;
  }
  .profits_title {
    margin-top: 4rem;
  }
  .questionnaire {
    padding-top: 0rem;
  }
  .question_right-form {
    padding-top: 2rem;
  }
  .question_right {
    float: right;
  }
  .footer{
    height: auto;
  }
  .footer_container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .left_foot {
    width: 100%;
    margin-top: 5rem; 
  }
  .right_foot{
    width: 100%;
    margin-top: 2rem;
  }
  .confirm a {
    font-size: 1rem;
  } 
  .black_box_right {
    height: 500px;
  }
  .white_box_left h2 {
    font-size: 34px;
  }
  .wrapper ul {
    left: 78%;
  }
  .award > h2{
    font-size: 1rem;
  }
  .award > p{
    font-size: 0.5rem;
  }
  .main_title h2{
    font-size: 1.1rem;
    margin-top: 4.5%;
  }
  .title_img{
    width: 20%;
  }
  .question_text {
    margin-top: 90px;
  }
}

@media screen and (max-width: 390px) {
  .menu-btn {
    right: 2%;
  }
  .topnav_img_mobile {
    width: 70%;
    margin-top: 0;
    padding: 1rem
  }
  .center_button {
    margin-left: 5%;
    padding: 20px 59px;
  }
  .profits{
    padding-left: 8%;
  }
  .white_box_left h2 {
    font-size: 31px;
  }
  .profits_right {
    margin-left: 1rem;
  }
  .calendar_years {
    width: 69vw;
  }
  .award{
    height: 122px;
  }
  .calendar_text {
    height: 414px;
  }
  .person {
    margin-top: -3rem;
  }
}