* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "montserrat-regular";
  -webkit-transition: 0.32s cubic-bezier(0.03, 0.79, 0.43, 1.5);
  transition: 0.32s cubic-bezier(0.03, 0.79, 0.43, 1.5);
  color: #5e697b;
}

*::after, *::before {
  -webkit-transition: 0.42s cubic-bezier(0.03, 0.79, 0.43, 1.5);
  transition: 0.42s cubic-bezier(0.03, 0.79, 0.43, 1.5);
}

body {
  background: #f6f9ff;
}

#loader-cont {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  background: #f8fafc;
  -webkit-transition: 0.82s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.82s cubic-bezier(0.19, 1, 0.22, 1);
}

#loader-cont .effect-element {
  position: absolute;
  width: 2000px;
  height: 2000px;
  background: #f8fafc;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
}

#loader-cont .center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#loader-cont .center .box {
  position: relative;
  width: 100px;
  height: 100px;
  -webkit-transform: perspective(500px) rotate(30deg) skew(-30deg);
          transform: perspective(500px) rotate(30deg) skew(-30deg);
  -webkit-box-shadow: 50px 45px 15px rgba(0, 0, 0, 0.14);
          box-shadow: 50px 45px 15px rgba(0, 0, 0, 0.14);
  background: #eef3f7 url(../img/alphas.png);
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transition: 0.62s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.62s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: "Techna", BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #344052;
  animation: float 0.5s ease infinite alternate-reverse;
}

#loader-cont .center .box:hover {
  -webkit-transform: perspective(500px) rotate(30deg) skew(-30deg) translate(-30px, -30px);
          transform: perspective(500px) rotate(30deg) skew(-30deg) translate(-30px, -30px);
  -webkit-box-shadow: 105px 95px 50px rgba(0, 0, 0, 0.14);
          box-shadow: 105px 95px 50px rgba(0, 0, 0, 0.14);
}

#loader-cont .center .box:before {
  content: '';
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: skew(50deg) translate(-95%, 100px);
  transform: skew(50deg) translate(-95%, 100px);
  background: url(../img/wolff.png) #e2ebf3;
  background-size: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#loader-cont .center .box:after {
  content: attr(data-name);
  width: 100%;
  height: 48%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-90deg) skew(-40deg) translate(15px, 150%);
          transform: rotate(-90deg) skew(-40deg) translate(15px, 150%);
  background: #eaf0f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: perspective(500px) rotate(30deg) skew(-30deg);
            transform: perspective(500px) rotate(30deg) skew(-30deg);
    -webkit-box-shadow: 50px 45px 15px rgba(0, 0, 0, 0.14);
            box-shadow: 50px 45px 15px rgba(0, 0, 0, 0.14);
  }
  100% {
    -webkit-transform: perspective(500px) rotate(30deg) skew(-30deg) translate(-30px, -30px);
            transform: perspective(500px) rotate(30deg) skew(-30deg) translate(-30px, -30px);
    -webkit-box-shadow: 105px 95px 50px rgba(0, 0, 0, 0.14);
            box-shadow: 105px 95px 50px rgba(0, 0, 0, 0.14);
  }
}

@keyframes float {
  0% {
    -webkit-transform: perspective(500px) rotate(30deg) skew(-30deg);
            transform: perspective(500px) rotate(30deg) skew(-30deg);
    -webkit-box-shadow: 50px 45px 15px rgba(0, 0, 0, 0.14);
            box-shadow: 50px 45px 15px rgba(0, 0, 0, 0.14);
  }
  100% {
    -webkit-transform: perspective(500px) rotate(30deg) skew(-30deg) translate(-30px, -30px);
            transform: perspective(500px) rotate(30deg) skew(-30deg) translate(-30px, -30px);
    -webkit-box-shadow: 105px 95px 50px rgba(0, 0, 0, 0.14);
            box-shadow: 105px 95px 50px rgba(0, 0, 0, 0.14);
  }
}

.welcome-sect {
  height: 100vh;
  width: 100%;
  position: relative;
}

.welcome-sect .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 78%;
  text-align: center;
}

.welcome-sect .content h1 {
  margin: 1em 0;
}

.welcome-sect .button-cont {
  position: absolute;
  top: 78%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.welcome-sect .button-cont a button {
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 32px;
  background: #2771f3;
  border: none;
  color: #f8fafc;
  cursor: pointer;
  -webkit-transition: 0.68s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.68s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.welcome-sect .button-cont a button:hover {
  -webkit-transform: scale(1.12) translateY(-10%);
          transform: scale(1.12) translateY(-10%);
}

.welcome-sect .button-cont a button:active {
  -webkit-transform: scale(0.92) translateY(10%);
          transform: scale(0.92) translateY(10%);
}

.main {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.page-header {
  width: 100%;
  position: relative;
  height: 45%;
  top: 0;
  left: 0;
  background: linear-gradient(30deg, #2771f3, #3420e7);
}

.page-header svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-header svg circle {
  fill: rgba(232, 240, 254, 0);
  stroke: #f2f6ffff;
  stroke-width: 2px;
  -webkit-animation: rotate 10s infinite cubic-bezier(0.075, 0.82, 0.165, 1) alternate;
          animation: rotate 10s infinite cubic-bezier(0.075, 0.82, 0.165, 1) alternate;
}

.page-header svg rect {
  width: 20px;
  height: 20px;
  fill: rgba(232, 240, 254, 0);
  stroke: #f2f6ffff;
  stroke-width: 2px;
  -webkit-animation: rotate 10s infinite cubic-bezier(0.075, 0.82, 0.165, 1) 2s alternate;
          animation: rotate 10s infinite cubic-bezier(0.075, 0.82, 0.165, 1) 2s alternate;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

form {
  width: 80%;
  height: 80%;
  background: #f2f6ff;
  border-radius: 2%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 52px rgba(184, 192, 252, 0.43);
          box-shadow: 0 0 52px rgba(184, 192, 252, 0.43);
}

form .form {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

form .content-wrapper {
  padding: 0 2em;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translateY(var(--pos));
          transform: translateY(var(--pos));
}

form .sect-wrapper {
  position: relative;
  height: var(--h);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .form-sect {
  width: 100%;
  position: relative;
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}

form .form-sect .sect-head {
  margin: 1em 0;
  width: 100%;
}

form .form-sect .sect-head h2 {
  font-weight: 100;
}

form .form-sect.dept {
  font-size: 14px;
}

form .form-sect.level {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  form .form-sect.dept {
    font-size: unset;
  }
  form .form-sect.level {
    font-size: unset;
  }
}

@media screen and (min-width: 600px) {
  form {
    width: 500px;
    height: 400px;
  }
}

.form-cont {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 1em 0;
  overflow: hidden;
}

.form-cont input[type="text"], .form-cont input[type="email"], .form-cont input[type="tel"] {
  position: absolute;
  width: 100%;
  height: 50px;
  background: transparent;
  border: none;
  padding: 34px 0 6px 0;
  font-size: 16px;
  border-bottom: 2px solid #5e697b;
  outline: none;
  color: #5e697b;
}

.form-cont input[type="text"]:focus + label span, .form-cont input[type="text"]:valid + label span, .form-cont input[type="email"]:focus + label span, .form-cont input[type="email"]:valid + label span, .form-cont input[type="tel"]:focus + label span, .form-cont input[type="tel"]:valid + label span {
  top: 50%;
  left: 0;
  font-size: 12px;
  color: #2771f3;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}

.form-cont input[type="text"]:focus + label::after, .form-cont input[type="text"]:valid + label::after, .form-cont input[type="email"]:focus + label::after, .form-cont input[type="email"]:valid + label::after, .form-cont input[type="tel"]:focus + label::after, .form-cont input[type="tel"]:valid + label::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 100%;
}

.form-cont input[type="text"]:focus, .form-cont input[type="text"]:valid, .form-cont input[type="email"]:focus, .form-cont input[type="email"]:valid, .form-cont input[type="tel"]:focus, .form-cont input[type="tel"]:valid {
  border-bottom: 2px solid #f2f6ff;
}

.form-cont label.text {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #5e697b;
  pointer-events: none;
}

.form-cont label.text::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 10%;
  height: 100%;
  border-bottom: 2px solid #2771f3;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.form-cont label.text span {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, 4px);
          transform: translate(0, 4px);
}

.form-cont input[type="radio"] {
  display: none;
}

.form-cont.dept-options {
  height: 100%;
}

.form-cont label.radio {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-cont label.radio span {
  margin: 1em 0 1em 4em;
}

.form-cont label.radio:before {
  content: "";
  top: 50%;
  left: 2em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #2771f3;
  position: absolute;
}

.form-cont label.radio:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2em;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2771f3;
  opacity: 0;
}

.form-cont :checked + .radio:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.form-cont.levels {
  overflow: visible;
}

.form-cont.levels div {
  height: 100%;
  background: #dae7ff;
  border-radius: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.form-cont .lradio {
  margin: 0;
  position: relative;
}

.form-cont .lradio span {
  display: block;
  padding: 4em 0 0 0;
  position: relative;
}

.form-cont .lradio:before {
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #2771f3;
  position: absolute;
}

.form-cont .lradio:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2771f3;
  opacity: 0;
}

.form-cont :checked + .lradio:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.form-cont :checked + .lradio span {
  color: #2771f3;
}

.title {
  width: 60px;
}

.names {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.names div {
  float: left;
  width: 46%;
}

.infos .column {
  width: 50%;
  float: left;
}

.infos .column div {
  float: left;
  margin: 1em 2%;
}

.infos .column._1 .prev-work {
  width: 82%;
}

.infos .column._1 .prog-lang {
  width: 54%;
}

.infos .column._2 .prev-work-title {
  width: 86%;
}

.infos .column._2 .hobby {
  width: 62%;
}

.buttons button {
  padding: 12px;
  outline: none;
  background-color: #2771f3;
  color: #f2f6ff;
  border-radius: 8px;
  border: none;
}

.blinds {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}

.blue-shadow {
  -webkit-box-shadow: 0 6px 22px rgba(39, 114, 243, 0.582);
          box-shadow: 0 6px 22px rgba(39, 114, 243, 0.582);
}

.controls-cont {
  position: absolute;
  width: 80px;
  height: 35px;
  background: #2771f3;
  border-radius: 32px;
  top: 100%;
  left: 100%;
  -webkit-transform: translate(-75%, -150%);
          transform: translate(-75%, -150%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
}

.controls-cont:hover, .controls-cont:focus, .controls-cont:active {
  cursor: pointer;
}

.controls-cont button {
  width: calc(80px / 2);
  border: none;
  background: transparent;
  color: #f2f6ff;
  outline: none;
  position: relative;
}

.controls-cont button:nth-of-type(1) {
  border-radius: 32px 0 0 32px;
}

.controls-cont button:nth-of-type(2) {
  border-radius: 0 32px 32px 0;
}

.controls-cont button svg {
  width: 100%;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
}

.controls-cont button svg.prev {
  -webkit-transform: translate(-45%, -50%) scale(0.7) rotateY(180deg);
          transform: translate(-45%, -50%) scale(0.7) rotateY(180deg);
}

.controls-cont button svg.next {
  -webkit-transform: translate(-55%, -50%) scale(0.7) rotateY(0deg);
          transform: translate(-55%, -50%) scale(0.7) rotateY(0deg);
}

.controls-cont button svg polyline {
  -webkit-transform: scale(3);
          transform: scale(3);
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: #dae7ff;
}

.controls-cont button:active svg.prev {
  -webkit-transform: translate(-50%, -50%) scale(0.6) rotateY(180deg);
          transform: translate(-50%, -50%) scale(0.6) rotateY(180deg);
}

.controls-cont button:active svg.next {
  -webkit-transform: translate(-50%, -50%) scale(0.6) rotateY(0deg);
          transform: translate(-50%, -50%) scale(0.6) rotateY(0deg);
}

.controls-cont.submit {
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: none;
  transition: none;
  opacity: 0;
}

.controls-cont.submit:active {
  -webkit-transform: translate(-50%, 25px) scale(0.9);
          transform: translate(-50%, 25px) scale(0.9);
  -webkit-transition: 0.34s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.34s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.controls-cont.submit input {
  width: 100px;
  border: none;
  border-radius: 3em;
  background: #2771f3;
  color: #f2f6ff;
  outline: none;
}

.controls-cont.submit:hover input {
  opacity: 0.8;
}

@media screen and (min-width: 600px) {
  .controls-cont {
    width: 100px;
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
  }
  .controls-cont button {
    width: calc(100px / 2);
  }
  .controls-cont button svg.prev {
    -webkit-transform: translate(-50%, -50%) scale(0.7) rotateY(180deg);
            transform: translate(-50%, -50%) scale(0.7) rotateY(180deg);
  }
  .controls-cont button svg.next {
    -webkit-transform: translate(-50%, -50%) scale(0.7) rotateY(0deg);
            transform: translate(-50%, -50%) scale(0.7) rotateY(0deg);
  }
}

.section-indicator {
  width: 30px;
  min-height: 60px;
  background: #f6f9ff;
  border: 2px solid rgba(184, 192, 252, 0.23);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -80%) rotateZ(-90deg);
          transform: translate(-50%, -80%) rotateZ(-90deg);
  border-radius: 32px;
}

.section-indicator .indicator {
  width: 20px;
  height: 20px;
  background: #2771f3;
  opacity: 0.1;
  border-radius: 10px;
  margin: 6px auto;
  display: block;
  outline: none;
  border: none;
  -webkit-transition: 0.94s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.94s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.section-indicator .indicator:hover {
  opacity: 0.3 !important;
}

.section-indicator .indicator:focus {
  opacity: 0.5 !important;
}

@media screen and (min-width: 600px) {
  .section-indicator {
    top: 50%;
    left: 100%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
/*# sourceMappingURL=style.css.map */