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

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font: 16px "Inconsolata", sans-serif;
  color: #2c2c54;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 96px 0;
}

.navigation a,
.btn {
  text-decoration: none;
  cursor: pointer;
}

.section-title {
  font-size: 48px;
  margin: 0 0 50px 0;
}

.btn {
  display: inline-block;
  min-width: 160px;
  margin: 24px auto 0 auto;
  padding: 16px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  border: solid 2px;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-position: 100% 0;
  background-size: 300%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-line-pack: center;
      align-content: center;
}

.navigation {
  background-color: #0097e6;
  padding: 12px 0;
}

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

.navigation div > ul > li {
  display: inline-block;
  margin-right: 36px;
  position: relative;
}

.navigation a {
  color: #ffffff;
}

.navigation a:hover {
  color: #33d9b2;
}

.navigation ul ul li {
  display: block;
  padding-top: 12px;
  margin-bottom: 12px;
}

.navigation li ul {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  background-color: #ffffff;
}

.navigation li:hover ul {
  display: block;
}

.navigation li li a {
  display: inline-block;
  color: #0097e6;
  padding: 0 24px;
}

.splash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 500px;
  background-color: #0097e6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.splash-inner {
  max-width: 70%;
  color: #ffffff;
}

.page-title {
  margin: 0;
  font-size: 72px;
  line-height: 1.2;
  word-spacing: -24px;
}

.page-title span {
  font-family: "Signika", sans-serif;
}

.page-subtitle {
  margin: 24px 0;
  font-size: 16px;
  font-weight: normal;
}

.btn-one {
  border-color: #ffffff;
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, transparent));
  background-image: linear-gradient(90deg, #ffffff 50%, transparent 50%);
}

.btn-one:hover {
  background-position: 0 100%;
  color: #0097e6;
}

.box-services {
  position: relative;
  min-width: 33.33333%;
  width: 308px;
  padding: 0 25px;
  margin: 25px 0;
}

.box-transparent {
  position: absolute;
  font: 144px "Signika", sans-serif;
  line-height: 1;
  color: #33d9b2;
  opacity: 0.2;
  z-index: -1;
  top: -20px;
  left: 60%;
}

.box-title {
  display: inline-block;
  font-size: 24px;
  margin: 0 0 12px 0;
  border: solid 4px;
  padding: 10px 15px;
}

.box-services p:first-of-type {
  font-weight: bold;
}

.box-services p {
  margin: 0;
  line-height: 1.7;
  text-align: justify;
}

.btn-two {
  border-color: #33d9b2;
  color: #33d9b2;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #33d9b2), color-stop(50%, transparent));
  background-image: linear-gradient(90deg, #33d9b2 50%, transparent 50%);
}

.btn-three {
  border-color: #ff5252;
  color: #ff5252;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #ff5252), color-stop(50%, transparent));
  background-image: linear-gradient(90deg, #ff5252 50%, transparent 50%);
}

.btn-for {
  border-color: #0097e6;
  color: #0097e6;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #0097e6), color-stop(50%, transparent));
  background-image: linear-gradient(90deg, #0097e6 50%, transparent 50%);
}

.btn-two:hover,
.btn-three:hover,
.btn-for:hover {
  background-position: 0 100%;
  color: #ffffff;
}

.box-work {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  min-height: 300px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 96px;
}

.work .image {
  position: relative;
  max-width: 250px;
  height: auto;
}

.work img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work .image::after {
  position: absolute;
  content: '';
  background-color: #33d9b2;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  opacity: 0.2;
}

.work .image:hover:after {
  top: 0;
  left: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.work .text {
  margin: 25px 25px;
  max-width: 250px;
}

.box-work .text p {
  margin: 0;
  line-height: 1.7;
}

.box-work .text p:last-of-type {
  font-weight: bold;
}

.btn-five {
  border: none;
  margin: 36px 0;
  padding: 0;
  text-align: left;
  color: #0097e6;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.btn-five:hover {
  color: #33d9b2;
}

.contact {
  background-color: #0097e6;
  color: #ffffff;
}

.contact form {
  -webkit-box-flex: 2;
      -ms-flex: 2 0 0px;
          flex: 2 0 0;
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
  display: block;
  width: 100%;
  margin: 25px auto;
  padding: 10px;
  color: #ffffff;
  font-family: "Inconsolata", sans-serif;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: solid 5px #ffffff;
  background-color: inherit;
  outline: none;
}

.contact form input::-webkit-input-placeholder,
.contact form textarea::-webkit-input-placeholder {
  color: inherit;
}

.contact form input:-ms-input-placeholder,
.contact form textarea:-ms-input-placeholder {
  color: inherit;
}

.contact form input::-ms-input-placeholder,
.contact form textarea::-ms-input-placeholder {
  color: inherit;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
  color: inherit;
}

.contact .info {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-left: 96px;
}

.contact .info * {
  margin: 10px;
}

.contact .info * br {
  display: block;
  content: "";
}

.social {
  text-align: center;
}

.social ul {
  margin: 48px auto;
  padding: 0;
  list-style: none;
}

.social ul li {
  display: inline-block;
}

.social ul li a {
  font-size: 0;
}

.social ul li a i {
  font-size: 32px;
  color: #ffffff;
  background-color: #ff5252;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  cursor: pointer;
  --fa-beat-scale: 1;
  --fa-animation-duration: 0;
}

.social ul li a i:hover {
  --fa-beat-scale: 1.1;
  --fa-animation-duration: 1.5s;
}

.social ul li a i.fa-discord:hover {
  background-color: #7289da;
}

.social ul li a i.fa-telegram:hover {
  background-image: linear-gradient(190deg, #404c57 0%, #22252b 100%);
}

.social ul li a i.fa-twitter:hover {
  background-color: #1DA1F2;
}

@media screen and (max-width: 768px) {
  .work .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  .contact .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .contact .row .info {
    margin: 50px auto 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .page-title {
    font-size: 48px;
    word-spacing: normal;
  }
  .work .box-work {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}
/*# sourceMappingURL=style.css.map */