/* Slider */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

input,
textarea {
  outline: 0;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.body {
  overflow-y: hidden;
}

.section {
  padding: 70px 0 20px 0;
}

.section__header {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.section__title {
  color: #7CFC00;
  font-size: 35px;
  margin-bottom: 30px;
  text-shadow: 8px 12px 3px rgba(0, 0, 0, 0.5);
  position: relative;
}

.section__title:after, .section__title:before {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #800080;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 50%;
}

.section__title:after {
  right: 0;
}

.section__title:before {
  left: 0;
}

.header {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header:after {
  content: "";
  width: 100%;
  min-height: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.header__mail {
  width: 200px;
  text-align: center;
  position: relative;
  position: absolute;
  right: 100px;
  top: 0;
  z-index: 10;
  transition: all .4s linear;
  -webkit-transition: all .4s linear;
  -moz-transition: all .4s linear;
  -ms-transition: all .4s linear;
  -o-transition: all .4s linear;
}

.header__mail:hover {
  -webkit-box-shadow: 0px 0px 13px 5px rgba(255, 2, 225, 0.6);
          box-shadow: 0px 0px 13px 5px rgba(255, 2, 225, 0.6);
}

.header__mail-active {
  animation: mail 2s linear forwards;
  -webkit-animation: mail 2s linear forwards;
}

.header__mail-title {
  color: #e2e0e0;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.3;
  text-transform: uppercase;
  border: 2px solid transparent;
  -o-border-image: -o-linear-gradient(45deg, red, green, blue);
     border-image: linear-gradient(45deg, red, green, blue);
  border-image-slice: 1;
  padding: 10px;
  position: relative;
}

.header__mail-title:hover {
  text-indent: -9999px;
}

.header__mail-title:before {
  content: "\f0e0";
  font-family: 'icomoon';
  font-size: 25px;
  cursor: pointer;
  color: yellowgreen;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -ms-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
}

.header__mail-title:hover:before {
  text-indent: 0;
  opacity: 1;
}

.header__mail-title:after {
  content: "";
  width: 3px;
  height: 80px;
  background-color: green;
  position: absolute;
  top: -80px;
  right: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 3;
}

.header__title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 35px;
  background: -o-repeating-linear-gradient(45deg, red, blue, yellow);
  background: repeating-linear-gradient(45deg, red, blue, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 31px red;
}

.header__intro {
  width: 160px;
  height: 160px;
  text-align: center;
  background: -o-linear-gradient(45deg, #8A2BE2 30%, #8B008B 70%);
  background: linear-gradient(45deg, #8A2BE2 30%, #8B008B 70%);
  padding: 10px 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  overflow: hidden;
  position: relative;
}

.header__intro:hover {
  width: 310px;
  height: 270px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.header__intro-img {
  margin-bottom: 10px;
}

.header__intro-img img {
  width: 140px;
  border: 3px solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.header__intro-content-text {
  color: #00FFFF;
  font-size: 21px;
  margin-bottom: 10px;
  transform: translateX(-400px);
  -webkit-transform: translateX(-400px);
  -moz-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  -o-transform: translateX(-400px);
  transition: all .4s ease-in;
  -webkit-transition: all .4s ease-in;
  -moz-transition: all .4s ease-in;
  -ms-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
}

.header__intro-content-text p {
  color: #fff;
  font-size: 17px;
  font-style: italic;
}

.header__intro-content-text:last-child {
  margin-bottom: 0;
}

.header__intro:hover .header__intro-content-text {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
}

.header__intro:hover .header__intro-content-text:nth-child(1) {
  -webkit-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
}

.header__intro:hover .header__intro-content-text:nth-child(2) {
  -webkit-transition-delay: .6s;
       -o-transition-delay: .6s;
          transition-delay: .6s;
}

.header__intro:hover .header__intro-content-text:nth-child(3) {
  -webkit-transition-delay: .8s;
       -o-transition-delay: .8s;
          transition-delay: .8s; 
}

.header__intro-social-vk,
.header__intro-social-git{
  width: 50px;
  height: 50px;
  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;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute; */
  left: 12px;
  top: -100px;
  z-index: 3;
  transition: all .4s linear;
  -webkit-transition: all .4s linear;
  -moz-transition: all .4s linear;
  -ms-transition: all .4s linear;
  -o-transition: all .4s linear;
}

.header__intro-social-git {
    right: 12px;
    top: -100px;
}

.header__intro-social-vk:hover,
.header__intro-social-git:hover{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.header__intro-social-icon {
  font-size: 25px;
  -webkit-transition: -webkit-transform .2s ease-in;
  transition: -webkit-transform .2s ease-in;
  transition: transform .2s ease-in;
  transition: transform .2s ease-in, -webkit-transform .2s ease-in;
  -webkit-transition: transform .2s ease-in;
  -moz-transition: transform .2s ease-in;
  -ms-transition: transform .2s ease-in;
  -o-transition: transform .2s ease-in;
}

.header__intro-social-icon svg {
    width: 30px;
    height: 30px;
}

.header__intro-social-icon:hover svg {
    fill: #00BFFF;
}

.header__intro-social-icon:hover {
  color: #00BFFF;
}

.header__intro:hover .header__intro-social-vk {
  top: 12px;
  left: 12px;
}

.header__intro:hover .header__intro-social-git {
  top: 12px;
  right: 12px;
}

@-webkit-keyframes mail {
  0% {
    top: 0;
  }
  50% {
    top: 100px;
  }
  85% {
    top: 120px;
  }
  100% {
    top: 75px;
  }
}

@keyframes mail {
  0% {
    top: 0;
  }
  50% {
    top: 100px;
  }
  85% {
    top: 120px;
  }
  100% {
    top: 75px;
  }
}

.intro {
  height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -o-linear-gradient(75deg, #800080, green);
  background: linear-gradient(15deg, #800080, green);
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.intro-active {
  position: fixed;
  background: -o-linear-gradient(75deg, #4B0082, #20B2AA) !important;
  background: linear-gradient(15deg, #4B0082, #20B2AA) !important;
  animation: menu .5s linear;
  -webkit-animation: menu .5s linear;
}

.intro__wrap {
  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;
  position: relative;
  z-index: 1000;
}

.intro__logo-img {
  width: 65px;
  height: 50px;
  -webkit-box-shadow: 0px 9px 10px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 9px 10px 5px rgba(0, 0, 0, 0.4);
}

.intro__icon {
  display: none;
}

.intro__burger {
  display: none;
  height: 20px;
  position: absolute;
  right: 14px;
  top: 6px;
  z-index: 5;
}

.intro__burger-btn {
  font-size: 0;
  width: 40px;
  height: 3px;
  background-color: #fff;
}

.intro__burger-btn:after, .intro__burger-btn:before {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  left: 0;
  background-color: #fff;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
}

.intro__burger-btn:after {
  top: 4px;
}

.intro__burger-btn:before {
  bottom: -3px;
}

.intro__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intro__nav-link {
  color: #00FF00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 55px;
  position: relative;
  transition: color .3s linear;
  -webkit-transition: color .3s linear;
  -moz-transition: color .3s linear;
  -ms-transition: color .3s linear;
  -o-transition: color .3s linear;
}

.intro__nav-link:before {
  content: "";
  width: 0;
  height: 3px;
  background: -o-linear-gradient(350deg, #FFD700, #20B2AA, #FF4500);
  background: linear-gradient(100deg, #FFD700, #20B2AA, #FF4500);
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width .3s linear;
  -webkit-transition: width .3s linear;
  -moz-transition: width .3s linear;
  -ms-transition: width .3s linear;
  -o-transition: width .3s linear;
}

.intro__nav-link:hover:before {
  width: 100%;
}

.intro__nav-link:hover {
  color: #fff;
}

@-webkit-keyframes menu {
  0% {
    height: 0;
  }
  50% {
    height: 120px;
  }
  100% {
    height: 60px;
  }
}

@keyframes menu {
  0% {
    height: 0;
  }
  50% {
    height: 120px;
  }
  100% {
    height: 60px;
  }
}

.projects__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 50px;
}

.projects__top-btn {
  width: 140px;
  height: 40px;
  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;
  color: #696969;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.5px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 10px 20px;
  -webkit-box-shadow: 6px 6px 10px 0px;
          box-shadow: 6px 6px 10px 0px;
  transition: background-color .6s, color .9s;
  -webkit-transition: background-color .6s, color .9s;
  -moz-transition: background-color .6s, color .9s;
  -ms-transition: background-color .6s, color .9s;
  -o-transition: background-color .6s, color .9s;
  cursor: pointer;
  position: relative;
}

.projects__top-btn:active {
  top: 2px;
}

.projects__top-btn:hover {
  background-color: #000;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.projects__top-btn:before {
  content: "";
  width: 110%;
  height: 130%;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  top: -5px;
  z-index: -1;
}

.projects__top-btn:hover:before {
  animation: fonbtn .9s infinite linear;
  -webkit-animation: fonbtn .9s infinite linear;
}

.projects__top-btn-active {
  color: #fff;
  background-color: #000;
}

.projects__sites-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}

.projects__sites-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  margin-bottom: 20px;
  padding: 0 20px;
  overflow: hidden;
}

.projects__sites-item {
  position: relative;
}

.projects__sites-item:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.801);
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  transform: translateY(-305px);
  -webkit-transform: translateY(-575px);
  -moz-transform: translateY(-575px);
  -ms-transform: translateY(-575px);
  -o-transform: translateY(-575px);
  -webkit-transition: -webkit-transform .5s ease-in;
  transition: -webkit-transform .5s ease-in;
  transition: transform .5s ease-in;
  transition: transform .5s ease-in, -webkit-transform .6s ease-in;
  -webkit-transition: transform .5s ease-in;
  -moz-transition: transform .5s ease-in;
  -ms-transition: transform .5s ease-in;
  -o-transition: transform .5s ease-in;
}

.projects__sites-item:hover:before {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

.projects__sites-img {
  max-width: 415px;
  height: 280px;
  object-fit: contain;
}

.projects__sites-img img {
  max-width: 100%;
}

.projects__sites-sait {
  margin-top: 20px;
}

.projects__sites-sait a {
  color: #fff;
  transition: color .3s linear;
  -webkit-transition: color .3s linear;
  -moz-transition: color .3s linear;
  -ms-transition: color .3s linear;
  -o-transition: color .3s linear;
}

.projects__sites-sait > a:hover {
  color: #00FA9A;
}

.projects__sites-link {
  position: absolute;
  right: 25px;
  bottom: 25px;
  z-index: 10;
  opacity: 0;
  transition: opacity .5s ease-in;
  -webkit-transition: opacity .5s ease-in;
  -moz-transition: opacity .5s ease-in;
  -ms-transition: opacity .5s ease-in;
  -o-transition: opacity .5s ease-in;
}

.projects__sites-item:hover .projects__sites-link {
  opacity: 1;
}

.projects__sites-item-link {
  display: inline-block;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color .3s linear;
  -webkit-transition: color .3s linear;
  -moz-transition: color .3s linear;
  -ms-transition: color .3s linear;
  -o-transition: color .3s linear;
}

.projects__sites-item-link:hover {
  color: #00FA9A;
}

.projects__sites-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: -15px;
  top: 20px;
}

.projects__sites-arrow span {
  display: block;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  margin: -17px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
  position: relative;
}

.projects__sites-arrow:nth-child(2) {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.projects__sites-arrow:nth-child(3) {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.projects__tabs {
  display: none;
}

.projects__tabs-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes arrow {
  0% {
    left: -15px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 0px;
    opacity: 0;
  }
}

@keyframes arrow {
  0% {
    left: -15px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 0px;
    opacity: 0;
  }
}

@-webkit-keyframes fonbtn {
  0% {
    background: linear-gradient(45deg, #00FF00, #FF00FF);
    filter: blur(2);
    -webkit-filter: blur(1.5px);
  }
  50% {
    background: linear-gradient(45deg, #800080, #ADFF2F);
    filter: blur(2);
    -webkit-filter: blur(1.5px);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  100% {
    background: linear-gradient(45deg, #BA55D3, #DAA520);
    filter: blur(2);
    -webkit-filter: blur(1.5px);
  }
}

@keyframes fonbtn {
  0% {
    background: -o-linear-gradient(45deg, #00FF00, #FF00FF);
    background: linear-gradient(45deg, #00FF00, #FF00FF);
    filter: blur(2);
    -webkit-filter: blur(1.5px);
  }
  50% {
    background: -o-linear-gradient(45deg, #800080, #ADFF2F);
    background: linear-gradient(45deg, #800080, #ADFF2F);
    filter: blur(2);
    -webkit-filter: blur(1.5px);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  100% {
    background: -o-linear-gradient(45deg, #BA55D3, #DAA520);
    background: linear-gradient(45deg, #BA55D3, #DAA520);
    filter: blur(2);
    -webkit-filter: blur(1.5px);
  }
}

.projects__app-link {
  color: #000;
  font-size: 30px;
  border: 1px solid #000;
  padding: 10px;
}

.footer {
  padding: 25px 0;
  background-color: #241b1b;
}

.footer__content {
  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;
}

.footer__content-text {
  color: #fff;
  text-align: center;
}

/* Modal */
.modal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.modal-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__overlow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal__text {
  display: none;
  color: red;
  margin-bottom: 5px;
  text-align: center;
}

.modal__text-error {
  display: block;
}

.modal__wrap {
  width: 100%;
  max-width: 300px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}

.modal__wrap:after {
  content: "";
  width: 310px;
  height: 103%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  animation: fon 2s infinite;
  -webkit-animation: fon 2s infinite .4s;
}

.modal__close {
  color: #fff;
  font-size: 50px;
  position: absolute;
  right: -35px;
  top: -15px;
  z-index: 5;
  cursor: pointer;
  transition: color .2s ease-in;
  -webkit-transition: color .2s ease-in;
  -moz-transition: color .2s ease-in;
  -ms-transition: color .2s ease-in;
  -o-transition: color .2s ease-in;
}

.modal__close:hover {
  color: red;
}

.modal__item {
  padding: 10px 20px;
}

.modal__text-error {
    color: red;
    font-size: 15px;
    text-align: center;
}

.modal__title {
  color: #1c2b2a;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  margin: 30px 0;
}

.modal__input {
  width: 100%;
  font-family: 'PT Sans', sans-serif;
  font-size: 17px;
  color: rgba(2, 2, 2, 0.829);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.modal__input:focus {
  border: 2px solid rgba(66, 93, 180, 0.63);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.modal__input::-webkit-input-placeholder {
  color: rgba(10, 10, 10, 0.829);
}

.modal__input::-moz-placeholder {
  color: rgba(10, 10, 10, 0.829);
}

.modal__input:-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.829);
}

.modal__input::-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.829);
}

.modal__input::placeholder {
  color: rgba(10, 10, 10, 0.829);
}

.modal__textarea {
  resize: none;
}

.modal__textarea:focus {
  height: 100px;
}

.modal__btn {
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: blue;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px 0;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.modal__btn:after {
  content: "\f178";
  font-family: 'icomoon';
  font-size: 30px;
  position: absolute;
  top: 48%;
  right: -100px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: right .4s linear;
  -webkit-transition: right .4s linear;
  -moz-transition: right .4s linear;
  -ms-transition: right .4s linear;
  -o-transition: right .4s linear;
}

.modal__btn:hover:after {
  right: 25px;
}

@-webkit-keyframes fon {
  0% {
    background: linear-gradient(45deg, #228B22, #20B2AA, #ADFF2F);
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  50% {
    background: linear-gradient(45deg, #FF00FF, #00008B, #00FA9A);
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  100% {
    background: linear-gradient(45deg, #FFD700, #8B0000, #9400D3);
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
}

@keyframes fon {
  0% {
    background: -o-linear-gradient(45deg, #228B22, #20B2AA, #ADFF2F);
    background: linear-gradient(45deg, #228B22, #20B2AA, #ADFF2F);
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  50% {
    background: -o-linear-gradient(45deg, #FF00FF, #00008B, #00FA9A);
    background: linear-gradient(45deg, #FF00FF, #00008B, #00FA9A);
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  100% {
    background: -o-linear-gradient(45deg, #FFD700, #8B0000, #9400D3);
    background: linear-gradient(45deg, #FFD700, #8B0000, #9400D3);
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
}

@media (max-width: 970px) {
  .projects__sites-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (max-width: 630px) {
  .intro {
    height: 50px;
  }
  .intro__logo-img {
    width: 50px;
    height: 35px;
  }
  .intro__burger {
    display: block;
  }
  .intro__burger-active {
    font-size: 0;
    width: 40px;
    height: 3px;
    background-color: transparent;
  }
  .intro__burger-active:after, .intro__burger-active:before {
    content: "";
    width: 40px;
    height: 3px;
    position: absolute;
    left: 0;
    background-color: #fff;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
  }
  .intro__burger-active:after {
    top: 12px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .intro__burger-active:before {
    bottom: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  .intro__nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -o-radial-gradient(#C0C0C0, #778899);
    background: radial-gradient(#C0C0C0, #778899);
    transform: translateX(-800px);
    -webkit-transform: translateX(-800px);
    -moz-transform: translateX(-800px);
    -ms-transform: translateX(-800px);
    -o-transform: translateX(-800px);
    -webkit-transition: -webkit-transform .5s linear;
    transition: -webkit-transform .5s linear;
    transition: transform .5s linear;
    transition: transform .5s linear, -webkit-transform .5s linear;
    -webkit-transition: transform .5s linear;
    -moz-transition: transform .5s linear;
    -ms-transition: transform .5s linear;
    -o-transition: transform .5s linear;
  }
  .intro__nav-active {
    z-index: -1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .intro__nav-link {
    display: block;
    font-size: 20px;
    margin-left: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 590px) {
  .header__mail {
    display: none;
  }
  .header__title {
    margin-bottom: 20px;
  }
  .header__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__content-text {
    text-align: center;
  }
  .header__content-right {
    margin-top: 30px;
  }
  .intro__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .intro__icon {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    z-index: -1;
  }
  .intro__icon span {
    color: #00FFFF;
    font-size: 30px;
  }
}

@media (max-width: 568px) {
  .projects__sites-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 450px) {
  .header__title {
    font-size: 36px;
  }
  .modal__wrap {
    width: 250px;
  }
  .modal__wrap:after {
    width: 260px;
  }
}

@media (max-width: 360px) {
  .section__title:after, .section__title:before {
    width: 50px;
  }
  .header__title {
    font-size: 31px;
  }
  .header__content-text {
    font-size: 21px;
  }
  .projects__top-btn {
    width: 120px;
    font-size: 14px;
  }
}
