@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto Mono', sans-serif;
  background-color: #28282F;
  color: #f0f0f0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #31313A;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}

.container .line {
  background-color: #28282F;
  position: fixed;
  z-index: 5;
}

.container .line.top {
  left: 0;
  top: 0;
  width: 100%;
  height: 15px;
}

.container .line.bottom {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 15px;
}

.container .line.left {
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
}

.container .line.right {
  left: auto;
  right: 0;
  top: 0;
  width: 15px;
  height: 100%;
}

main {
  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-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: .7s;
  transition: .7s;
}

main .main-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

main .main-text p {
  color: #a2a2a6;
  font-size: 13px;
  display: inline;
  font-weight: 400;
}

main .main-text h1.glitch {
  position: relative;
  text-transform: uppercase;
  font-size: 42px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: .04rem;
  margin-bottom: 10px;
}

main .main-text h1.glitch::before, main .main-text h1.glitch::after {
  color: #f0f0f0;
  content: "I'm Rafał Kucharski";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #31313A;
  overflow: hidden;
  top: 0;
}

main .main-text h1.glitch::before {
  left: 1px;
  text-shadow: -2px 0 orange;
  -webkit-animation-name: glitch-animation-1;
          animation-name: glitch-animation-1;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: reverse-alternate;
          animation-direction: reverse-alternate;
}

main .main-text h1.glitch::after {
  left: -1px;
  text-shadow: -2px 0 orange;
  -webkit-animation-name: glitch-animation-2;
          animation-name: glitch-animation-2;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: reverse-alternate;
          animation-direction: reverse-alternate;
}

@-webkit-keyframes glitch-animation-1 {
  0% {
    clip: rect(38px, 2000px, 71px, 0px);
  }
  5% {
    clip: rect(131px, 2000px, 75px, 0px);
  }
  10% {
    clip: rect(97px, 2000px, 127px, 0px);
  }
  15% {
    clip: rect(72px, 2000px, 67px, 0px);
  }
  20% {
    clip: rect(23px, 2000px, 75px, 0px);
  }
  25% {
    clip: rect(147px, 2000px, 79px, 0px);
  }
  30% {
    clip: rect(5px, 2000px, 70px, 0px);
  }
  35% {
    clip: rect(99px, 2000px, 48px, 0px);
  }
  40% {
    clip: rect(32px, 2000px, 145px, 0px);
  }
  45% {
    clip: rect(82px, 2000px, 50px, 0px);
  }
  50% {
    clip: rect(130px, 2000px, 59px, 0px);
  }
  55% {
    clip: rect(30px, 2000px, 56px, 0px);
  }
  60% {
    clip: rect(92px, 2000px, 102px, 0px);
  }
  65% {
    clip: rect(116px, 2000px, 129px, 0px);
  }
  70% {
    clip: rect(134px, 2000px, 135px, 0px);
  }
  75% {
    clip: rect(44px, 2000px, 53px, 0px);
  }
  80% {
    clip: rect(119px, 2000px, 63px, 0px);
  }
  85% {
    clip: rect(58px, 2000px, 34px, 0px);
  }
  90% {
    clip: rect(119px, 2000px, 52px, 0px);
  }
  95% {
    clip: rect(61px, 2000px, 53px, 0px);
  }
  100% {
    clip: rect(102px, 2000px, 125px, 0px);
  }
}

@keyframes glitch-animation-1 {
  0% {
    clip: rect(38px, 2000px, 71px, 0px);
  }
  5% {
    clip: rect(131px, 2000px, 75px, 0px);
  }
  10% {
    clip: rect(97px, 2000px, 127px, 0px);
  }
  15% {
    clip: rect(72px, 2000px, 67px, 0px);
  }
  20% {
    clip: rect(23px, 2000px, 75px, 0px);
  }
  25% {
    clip: rect(147px, 2000px, 79px, 0px);
  }
  30% {
    clip: rect(5px, 2000px, 70px, 0px);
  }
  35% {
    clip: rect(99px, 2000px, 48px, 0px);
  }
  40% {
    clip: rect(32px, 2000px, 145px, 0px);
  }
  45% {
    clip: rect(82px, 2000px, 50px, 0px);
  }
  50% {
    clip: rect(130px, 2000px, 59px, 0px);
  }
  55% {
    clip: rect(30px, 2000px, 56px, 0px);
  }
  60% {
    clip: rect(92px, 2000px, 102px, 0px);
  }
  65% {
    clip: rect(116px, 2000px, 129px, 0px);
  }
  70% {
    clip: rect(134px, 2000px, 135px, 0px);
  }
  75% {
    clip: rect(44px, 2000px, 53px, 0px);
  }
  80% {
    clip: rect(119px, 2000px, 63px, 0px);
  }
  85% {
    clip: rect(58px, 2000px, 34px, 0px);
  }
  90% {
    clip: rect(119px, 2000px, 52px, 0px);
  }
  95% {
    clip: rect(61px, 2000px, 53px, 0px);
  }
  100% {
    clip: rect(102px, 2000px, 125px, 0px);
  }
}

@-webkit-keyframes glitch-animation-2 {
  0% {
    clip: rect(89px, 2000px, 94px, 0px);
  }
  5% {
    clip: rect(99px, 2000px, 83px, 0px);
  }
  10% {
    clip: rect(21px, 2000px, 115px, 0px);
  }
  15% {
    clip: rect(100px, 2000px, 138px, 0px);
  }
  20% {
    clip: rect(132px, 2000px, 135px, 0px);
  }
  25% {
    clip: rect(115px, 2000px, 40px, 0px);
  }
  30% {
    clip: rect(32px, 2000px, 122px, 0px);
  }
  35% {
    clip: rect(34px, 2000px, 27px, 0px);
  }
  40% {
    clip: rect(117px, 2000px, 115px, 0px);
  }
  45% {
    clip: rect(130px, 2000px, 88px, 0px);
  }
  50% {
    clip: rect(103px, 2000px, 64px, 0px);
  }
  55% {
    clip: rect(62px, 2000px, 97px, 0px);
  }
  60% {
    clip: rect(46px, 2000px, 114px, 0px);
  }
  65% {
    clip: rect(10px, 2000px, 142px, 0px);
  }
  70% {
    clip: rect(101px, 2000px, 99px, 0px);
  }
  75% {
    clip: rect(47px, 2000px, 113px, 0px);
  }
  80% {
    clip: rect(107px, 2000px, 63px, 0px);
  }
  85% {
    clip: rect(87px, 2000px, 29px, 0px);
  }
  90% {
    clip: rect(142px, 2000px, 61px, 0px);
  }
  95% {
    clip: rect(38px, 2000px, 132px, 0px);
  }
  100% {
    clip: rect(92px, 2000px, 3px, 0px);
  }
}

@keyframes glitch-animation-2 {
  0% {
    clip: rect(89px, 2000px, 94px, 0px);
  }
  5% {
    clip: rect(99px, 2000px, 83px, 0px);
  }
  10% {
    clip: rect(21px, 2000px, 115px, 0px);
  }
  15% {
    clip: rect(100px, 2000px, 138px, 0px);
  }
  20% {
    clip: rect(132px, 2000px, 135px, 0px);
  }
  25% {
    clip: rect(115px, 2000px, 40px, 0px);
  }
  30% {
    clip: rect(32px, 2000px, 122px, 0px);
  }
  35% {
    clip: rect(34px, 2000px, 27px, 0px);
  }
  40% {
    clip: rect(117px, 2000px, 115px, 0px);
  }
  45% {
    clip: rect(130px, 2000px, 88px, 0px);
  }
  50% {
    clip: rect(103px, 2000px, 64px, 0px);
  }
  55% {
    clip: rect(62px, 2000px, 97px, 0px);
  }
  60% {
    clip: rect(46px, 2000px, 114px, 0px);
  }
  65% {
    clip: rect(10px, 2000px, 142px, 0px);
  }
  70% {
    clip: rect(101px, 2000px, 99px, 0px);
  }
  75% {
    clip: rect(47px, 2000px, 113px, 0px);
  }
  80% {
    clip: rect(107px, 2000px, 63px, 0px);
  }
  85% {
    clip: rect(87px, 2000px, 29px, 0px);
  }
  90% {
    clip: rect(142px, 2000px, 61px, 0px);
  }
  95% {
    clip: rect(38px, 2000px, 132px, 0px);
  }
  100% {
    clip: rect(92px, 2000px, 3px, 0px);
  }
}

.opacity {
  opacity: 0;
}

.contact-icons {
  position: fixed;
  bottom: 15px;
  left: 0;
  right: 0;
  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;
  -webkit-transition: color .3s ease-in-out, opacity .7s;
  transition: color .3s ease-in-out, opacity .7s;
  z-index: 2;
}

.contact-icons .icons {
  padding-bottom: 30px;
  padding-top: 15px;
  background-color: #31313A;
  width: 100%;
  text-align: center;
}

.contact-icons .icons a:first-child {
  margin-left: 0;
}

.contact-icons .icons a {
  margin-left: 15px;
  font-size: 15px;
  color: #f0f0f0;
  -webkit-transition: .2s;
  transition: .2s;
}

.contact-icons .icons a:hover {
  color: orange;
}

nav {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 35px;
  padding-left: 35px;
  background-color: #31313A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .7s;
  transition: .7s;
  z-index: 2;
}

nav .logo {
  cursor: pointer;
}

nav .logo a {
  color: #f0f0f0;
  text-decoration: none;
}

nav .logo a h2 {
  font-size: 1.1rem;
  letter-spacing: .01rem;
  font-weight: 400;
}

nav .logo a h2 span {
  color: orange;
  font-weight: 700;
}

nav .desktop-menu {
  display: none;
}

nav .desktop-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .desktop-menu ul li {
  list-style: none;
}

nav .desktop-menu ul li a {
  display: block;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 16px;
  padding: 0 20px;
  -webkit-transition: .2s;
  transition: .2s;
}

nav .desktop-menu ul li a.contact {
  padding-right: 0;
}

nav .desktop-menu ul li a:hover {
  color: orange;
}

.burger {
  display: block;
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 3px;
  margin-right: -10px;
}

.burger span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  margin: 0.05rem auto 0.55rem -0.8rem;
  text-indent: -999em;
  top: 50%;
  left: 50%;
  margin-top: -0.05rem;
  cursor: pointer;
}

.burger span, .burger span:before, .burger span:after {
  display: block;
  width: 1.6rem;
  height: 0.1rem;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.burger span:before, .burger span:after {
  position: absolute;
  content: "";
}

.burger span:before {
  top: -0.55rem;
}

.burger span:after {
  top: 0.55rem;
}

.burger:hover span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  margin: 0.05rem auto 0.55rem -0.8rem;
  text-indent: -999em;
  top: 50%;
  left: 50%;
  margin-top: -0.05rem;
  cursor: pointer;
}

.burger:hover span, .burger:hover span:before, .burger:hover span:after {
  display: block;
  width: 1.6rem;
  height: 0.1rem;
  background-color: orange;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.burger:hover span:before, .burger:hover span:after {
  position: absolute;
  content: "";
}

.burger:hover span:before {
  top: -0.55rem;
}

.burger:hover span:after {
  top: 0.55rem;
}

.burger4 input:checked + span:before, .burger4 input:checked + span:after {
  top: 0px;
  margin-top: -0.6rem;
}

.burger4 input:checked + span {
  -webkit-animation: menuCloseMiddle--base 0.5s forwards;
          animation: menuCloseMiddle--base 0.5s forwards;
}

.burger4 input:checked + span:before {
  -webkit-animation: menuCloseMiddle--before 0.5s forwards;
          animation: menuCloseMiddle--before 0.5s forwards;
}

.burger4 input:checked + span:after {
  -webkit-animation: menuCloseMiddle--after 0.5s forwards;
          animation: menuCloseMiddle--after 0.5s forwards;
}

@-webkit-keyframes menuCloseMiddle--base {
  0% {
    background-color: #31313a;
  }
  80% {
    background-color: #31313a;
  }
  100% {
    background-color: rgba(49, 49, 58, 0);
  }
}

@keyframes menuCloseMiddle--base {
  0% {
    background-color: #31313a;
  }
  80% {
    background-color: #31313a;
  }
  100% {
    background-color: rgba(49, 49, 58, 0);
  }
}

@-webkit-keyframes menuCloseMiddle--after {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  80% {
    -webkit-transform: translateY(0.55rem) rotate(0);
            transform: translateY(0.55rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.55rem) rotate(45deg);
            transform: translateY(0.55rem) rotate(45deg);
  }
}

@keyframes menuCloseMiddle--after {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  80% {
    -webkit-transform: translateY(0.55rem) rotate(0);
            transform: translateY(0.55rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.55rem) rotate(45deg);
            transform: translateY(0.55rem) rotate(45deg);
  }
}

@-webkit-keyframes menuCloseMiddle--before {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  80% {
    -webkit-transform: translateY(0.55rem) rotate(0);
            transform: translateY(0.55rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.55rem) rotate(-45deg);
            transform: translateY(0.55rem) rotate(-45deg);
  }
}

@keyframes menuCloseMiddle--before {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  80% {
    -webkit-transform: translateY(0.55rem) rotate(0);
            transform: translateY(0.55rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.55rem) rotate(-45deg);
            transform: translateY(0.55rem) rotate(-45deg);
  }
}

.hidden {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

.mobile-menu {
  height: 100%;
  display: none;
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
}

.mobile-menu ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-top: 80px;
}

.mobile-menu ul li a {
  display: block;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 13px;
  padding: 20px;
}

.display {
  display: block;
}

.contact-section {
  font-family: 'Roboto', sans-serif;
  margin-top: 145px;
  max-width: 900px;
  -webkit-transition: .7s;
  transition: .7s;
}

.contact-section .header {
  margin: 30px 35px;
  min-height: 100px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.contact-section .header h1 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-section .header .typing {
  margin-top: 18px;
}

.contact-section .header .typing p {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 18px;
  color: #a2a2a6;
  opacity: .8;
  display: inline;
}

.contact-section .contacts-info {
  margin-top: 120px;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.contact-section .contacts-info h2 {
  display: inline;
  font-family: 'Roboto Mono', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04rem;
  position: relative;
}

.contact-section .contacts-info h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #a2a2a6;
  opacity: .5;
}

.contact-section .contacts-info .info-container {
  font-family: 'Roboto Mono', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-section .contacts-info .info-container .info {
  margin-top: 45px;
}

.contact-section .contacts-info .info-container .info .tittle {
  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;
}

.contact-section .contacts-info .info-container .info .tittle .phone {
  font-size: 42px;
}

.contact-section .contacts-info .info-container .info .tittle i {
  font-size: 30px;
  color: orange;
}

.contact-section .contacts-info .info-container .info .tittle p {
  font-size: 13px;
  font-weight: 500;
  margin-left: 10px;
}

.contact-section .contacts-info .info-container .info .info-description {
  font-size: 13px;
  margin-top: 15px;
  color: #a2a2a6;
}

.contact-section .contacts-info .info-container .info .info-description.mail {
  color: orange;
}

.contact-section .contacts-info .info-container .info span.reverse {
  unicode-bidi: bidi-override;
  direction: rtl;
}

.contact-section .form-container {
  margin-top: 120px;
  margin-bottom: 120px;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.contact-section .form-container h2 {
  display: inline;
  font-family: 'Roboto Mono', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04rem;
  position: relative;
}

.contact-section .form-container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #a2a2a6;
  opacity: .5;
}

.contact-section .form-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 35px;
}

.contact-section .form-container form input, .contact-section .form-container form textarea {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 12px;
  margin-top: 30px;
  background-color: transparent;
  color: #f0f0f0;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #666;
  padding: 22px 0;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
  resize: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact-section .form-container form input:focus, .contact-section .form-container form textarea:focus {
  outline: none;
  border-bottom-color: orange;
}

.contact-section .form-container form input.active, .contact-section .form-container form textarea.active {
  border-bottom-color: red;
}

.contact-section .form-container form input.active::-webkit-input-placeholder, .contact-section .form-container form textarea.active::-webkit-input-placeholder {
  color: red;
}

.contact-section .form-container form input.active:-ms-input-placeholder, .contact-section .form-container form textarea.active:-ms-input-placeholder {
  color: red;
}

.contact-section .form-container form input.active::-ms-input-placeholder, .contact-section .form-container form textarea.active::-ms-input-placeholder {
  color: red;
}

.contact-section .form-container form input.active::placeholder, .contact-section .form-container form textarea.active::placeholder {
  color: red;
}

.contact-section .form-container form input:focus, .contact-section .form-container form textarea:focus {
  color: #f0f0f0;
}

.contact-section .form-container form ::-webkit-input-placeholder {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 12px;
  color: #999;
}

.contact-section .form-container form :-ms-input-placeholder {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 12px;
  color: #999;
}

.contact-section .form-container form ::-ms-input-placeholder {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 12px;
  color: #999;
}

.contact-section .form-container form ::placeholder {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 12px;
  color: #999;
}

.contact-section .form-container form input:focus::-webkit-input-placeholder, .contact-section .form-container form textarea:focus::-webkit-input-placeholder {
  color: #f0f0f0;
}

.contact-section .form-container form input:focus:-ms-input-placeholder, .contact-section .form-container form textarea:focus:-ms-input-placeholder {
  color: #f0f0f0;
}

.contact-section .form-container form input:focus::-ms-input-placeholder, .contact-section .form-container form textarea:focus::-ms-input-placeholder {
  color: #f0f0f0;
}

.contact-section .form-container form input:focus::placeholder, .contact-section .form-container form textarea:focus::placeholder {
  color: #f0f0f0;
}

.contact-section .form-container form button {
  font-family: 'Roboto Mono', sans-serif;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 30px;
  margin-bottom: 35px;
  padding: 12px 30px;
  background-color: orange;
  color: #f0f0f0;
  border: none;
}

.contact-section .form-container .warining {
  display: none;
  margin: 20px 41px 20px 41px;
  border: 2px orange solid;
}

.contact-section .form-container .warining p {
  font-size: 13px;
  font-family: 'Roboto Mono', sans-serif;
  color: #a2a2a6;
  padding: 3px 12px;
}

.contact-section .form-container .warining.active {
  display: block;
}

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  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;
  opacity: 1;
  -webkit-transition: .9s ease-in;
  transition: .9s ease-in;
}

.loader p {
  font-size: 13px;
  color: orange;
}

nav, main, .contact-icons, .contact-section {
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .container .line.top {
    height: 30px;
  }
  .container .line.bottom {
    height: 30px;
  }
  .container .line.left {
    width: 30px;
  }
  .container .line.right {
    width: 30px;
  }
}

@media screen and (min-height: 736px) {
  nav {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media screen and (min-height: 896px) {
  nav .logo a h2 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 601px) {
  nav .burger {
    margin-right: -7px;
  }
}

@media screen and (min-width: 768px) {
  nav {
    padding-top: 25px;
    padding-right: 50px;
    padding-left: 50px;
  }
  nav .logo {
    margin-bottom: 2px;
  }
  nav .logo a h2 {
    font-size: 1.3rem;
  }
  nav .burger-icon {
    display: none;
  }
  nav .desktop-menu {
    display: block;
  }
}

@media screen and (min-width: 768px) and (min-height: 1280px) {
  nav .logo a h2 {
    font-size: 1.4rem;
  }
  nav .desktop-menu ul li a {
    font-size: 17px;
  }
}

@media screen and (min-width: 960px) {
  nav {
    padding-top: 35px;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (min-width: 1280px) {
  nav {
    padding-top: 40px;
    padding-right: 65px;
    padding-left: 65px;
  }
}

@media screen and (min-width: 1440px) {
  nav {
    padding-top: 45px;
  }
  nav .logo a h2 {
    font-size: 1.4rem;
  }
  nav .desktop-menu ul li a {
    font-size: 17px;
  }
}

@media screen and (min-width: 1536px) {
  nav {
    padding-right: 70px;
    padding-left: 70px;
  }
}

@media screen and (min-width: 1600px) {
  nav .logo a h2 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1920px) {
  nav {
    padding-right: 75px;
    padding-left: 75px;
  }
  nav .logo {
    margin-left: -5px;
  }
  nav .logo a h2 {
    font-size: 1.7rem;
  }
  nav .desktop-menu ul li a {
    font-size: 19px;
  }
}

@media screen and (min-height: 800px) {
  .mobile-menu ul {
    padding-top: 90px;
  }
}

@media screen and (min-height: 780px) {
  .mobile-menu ul li a {
    font-size: 14px;
  }
}

@media screen and (min-height: 1250px) {
  .mobile-menu ul li a {
    font-size: 20px;
  }
}

@media screen and (min-width: 601px) {
  .mobile-menu {
    top: 25px;
  }
  .mobile-menu ul li a {
    font-size: 16px;
  }
}

@media screen and (min-width: 750px) {
  .mobile-menu ul li a {
    font-size: 18px;
  }
}

@media screen and (min-width: 601px) {
  main .main-text h1.glitch {
    font-size: 52px;
    margin-bottom: 12px;
  }
  main .main-text p {
    font-size: 15px;
  }
}

@media screen and (min-width: 960px) {
  main .main-text h1.glitch {
    font-size: 68px;
    margin-bottom: 14px;
  }
  main .main-text p {
    font-size: 15px;
  }
}

@media screen and (min-width: 1240px) {
  main .main-text h1.glitch {
    font-size: 70px;
    margin-top: 15px;
    margin-bottom: 16px;
  }
  main .main-text p {
    font-size: 16px;
  }
}

@media screen and (min-height: 736px) {
  .contact-icons .icons a {
    font-size: 17px;
    margin-left: 20px;
  }
}

@media screen and (min-height: 896px) {
  .contact-icons .icons a {
    font-size: 18px;
  }
}

@media screen and (min-height: 962px) {
  .contact-icons .icons a {
    font-size: 20px;
    margin-left: 25px;
  }
}

@media screen and (min-height: 1024px) {
  .contact-icons .icons a {
    font-size: 21px;
  }
}

@media screen and (min-width: 601px) {
  .contact-icons .icons a {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .contact-icons .icons a {
    font-size: 20px;
  }
}

@media screen and (min-width: 960px) {
  .contact-icons {
    bottom: 27px;
  }
}

@media screen and (min-width: 1240px) {
  .contact-icons .icons a {
    font-size: 21px;
    margin-left: 25px;
  }
}

@media screen and (min-width: 1536px) {
  .contact-icons .icons a {
    font-size: 22px;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1920px) {
  .contact-icons .icons a {
    font-size: 22px;
    margin-left: 30px;
  }
}

@media screen and (min-height: 800px) {
  .contact-section .contacts-info .info-container .info + .info {
    margin-top: 55px;
  }
}

@media screen and (min-height: 1080px) {
  .contact-section {
    width: 77%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 601px) {
  .contact-section {
    margin-top: 170px;
  }
}

@media screen and (min-width: 768px) {
  .contact-section {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .contact-section .contacts-info .info-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (min-width: 962px) {
  .contact-section {
    margin-top: 200px;
    width: 78%;
  }
  .contact-section .header h1 {
    font-size: 34px;
  }
  .contact-section .contacts-info {
    padding: 0 35px;
  }
  .contact-section .contacts-info .info-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1366px) {
  .contact-section {
    width: 73%;
  }
}

@media screen and (min-width: 1440px) {
  .contact-section {
    width: 70%;
  }
  .contact-section .contacts-info {
    margin-top: 160px;
  }
  .contact-section .form-container {
    margin-top: 160px;
  }
}

@media screen and (min-width: 1536px) {
  .contact-section {
    width: 66%;
  }
}
/*# sourceMappingURL=style.css.map */