/*@font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf");
}
@font-face {
  font-family: "Muli-SemiBold";
  src: url("../fonts/muli/Muli-SemiBold.ttf");
}
@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/muli/Muli-Bold.ttf");
}*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  color: #666;
  font-size: 13px;
  margin: 0;
}
input, textarea, select, button {
  font-family: "Lato", sans-serif;
  color: #333;
  font-size: 13px;
}
p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0;
}
img {
  max-width: 100%;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}
a:hover {
  text-decoration: none;
}
:focus {
  outline: none;
}
.wrapper {
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.inner {
  min-width: 850px;
  margin: auto;
  padding-top: 68px;
  padding-bottom: 48px;
  background: url("../images/registration-form-2.jpg");
}
.inner h3 {
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Lato", sans-serif;
  text-align: center;
  margin-bottom: 32px;
  color: #333;
  letter-spacing: 2px;
	font-weight: 500;
}
form {
  /*width: 50%;*/
  width: 100%;
  padding-left: 45px;
}
.form-group {
  display: flex;
}
.form-group .form-wrapper {
  width: 50%;
}
.form-group .form-wrapper:first-child {
  margin-right: 20px;
}
.form-wrapper {
  margin-bottom: 17px;
}
.form-wrapper label {
  margin-bottom: 9px;
  display: block;
	text-align: left;
  margin-left: 1%;
}
.form-control {
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  font-family: "Lato", sans-serif;
	font-weight: 700;
  background: none;
}
.form-control:focus {
  border: 1px solid #ae3c33;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-left: 20px;
}
select option[value=""][disabled] {
  display: none;
}
button {
  border: none;
  width: 152px;
  height: 40px;
  margin: auto;
  margin-top: 29px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ae3c33;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
	font-weight: 600;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f11a09;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
button:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.checkbox {
  position: relative;
}
.checkbox label {
  padding-left: 22px;
  cursor: pointer;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 12px;
  width: 13px;
  border-radius: 2px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
  font-family: "Lato", sans-serif;
  color: #000;
  font-size: 10px;
  font-weight: bolder;
}
.checkmark:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  content: '\f26b';
}
@media (max-width: 991px) {
  .inner {
    min-width: 768px;
  }
}
@media (max-width: 767px) {
  .inner {
    min-width: auto;
    background: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  form {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.contly * {
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  text-align: center;
}
.contly {
  margin: 50px auto;
  max-width: 1000px;
  webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 45%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 45%);
  border-radius: 100px;
  padding: 10px; /* background-color: #f4f3f3; */
}
.contly div {
  text-align: center;
  /*padding: 0px 70px;*/
}
.contly div h1 {
  color: #e83186;
  font-size: 27px;
  margin-top: 15px;
}
.contly input {
  text-align: left;
	padding-left: 10px;
}
.spac100 {
  height: 50px;
}
.spac20 {
  height: 20px;
}
.contly h2 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold; /* margin-top: 50px; */
}
.contly h3 {
  font-weight: normal;
}
.contly h4 {
  font-size: 18px;
  font-weight: normal;
}
.contly h5 {
  font-size: 15px;
  text-decoration: underline;
}
.contly p {
  margin-top: 10px;
}
.rowy {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 30px auto;
}
.blocky {
  padding: 20px 15px !important;
  border: #e83186 2px solid;
  border-radius: 25px;
  /*width: 50%;*/
	width: 65%;
  margin: auto;
}
.rose {
  color: #e83186;
}
.contly a, .contly .g-button {
  background-color: #e83186;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  padding: 0px 15px;
  text-transform: uppercase;
  display: block;
  margin: 50px auto 5px;
  width: 300px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 25%);
}

.daty {
  text-transform: uppercase;
  font-size: 20px;
  color: black;
}
.greeny {
  color: #00843e;
}
@media only screen and (max-width: 1000px) {
  .rowy {
    flex-direction: column;
  }
  .contly img {
    width: 100%;
  }
  .contly div {
    padding: 0px 10%;
  }
  .contly {
    border-radius: 40px;
    padding: 0px;
  }
	.contly {
  margin: 50% 10%;
		}
  .contly div h1 {
    font-size: 20px;
  }
  .contly div h3 {
    font-size: 15px;
  }
  .spac100 {
    height: 30px;
  }
  .contly h2 {
    font-size: 18px;
  }
  .contly h4, .contly h5 {
    font-size: 14px;
  }
  .contly p {
    font-size: 13px;
  }
  .contly a, .contly .g-button {
    font-size: 15px;
    width: 70%;
  }
  .blocky {
    width: 100%;
  }
  .daty {
    font-size: 15px;
  }
  .dn {
    display: none;
  }
}
.c-btn {
  border: none;
  width: 22em;
  height: 5em;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #e83186;
  cursor: pointer;
  transition: all 450ms ease-in-out;
}

.sparkle {
  fill: #FFF;
  transition: all 800ms ease;
}

.text {
  font-weight: 600;
  color: #FFF;
  font-size: medium;
}

.c-btn:hover {
  background: linear-gradient(0deg,#A47CF3,#683FEA);
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
  inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
  0px 0px 0px 4px rgba(255, 255, 255, 0.2),
  0px 0px 180px 0px #9917FF;
  transform: translateY(-2px);
}

.c-btn:hover .text {
  color: white;
}

.c-btn:hover .sparkle {
  fill: white;
  transform: scale(1.2);
} 
.p-relative {
	position: relative;
}
.z-3 {
	z-index: 3;
} 
#projectionScreen {
	overflow:hidden;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	visibility:hidden;
	opacity:0;
	position: relative;
	/*top: 70%;*/
  /*left: 20%;*/
	}
.projection{
	text-align: center;
}
#follow {
	position:absolute;
	bottom:16px;
	right:16px;
	z-index: 1000;
	font-size: 48px;
	color: #444;
	}
/*# sourceMappingURL=style.css.map */