/*--------------------------------
01. Settings style
--------------------------------*/
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/century-gothic/CenturyGothic-Bold.eot");
  src: url("../fonts/century-gothic/CenturyGothic-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/century-gothic/CenturyGothic-Bold.woff2")
      format("woff2"),
    url("../fonts/century-gothic/CenturyGothic-Bold.woff")
      format("woff"),
    url("../fonts/century-gothic/CenturyGothic-Bold.ttf")
      format("truetype"),
    url("../fonts/century-gothic/CenturyGothic-Bold.svg#CenturyGothic-Bold")
      format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/century-gothic/CenturyGothic.eot");
  src: url("../fonts/century-gothic/CenturyGothic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/century-gothic/CenturyGothic.woff2") format("woff2"),
    url("../fonts/century-gothic/CenturyGothic.woff") format("woff"),
    url("../fonts/century-gothic/CenturyGothic.ttf")
      format("truetype"),
    url("../fonts/century-gothic/CenturyGothic.svg#CenturyGothic")
      format("svg");
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------
02. Base style
--------------------------------*/
body {
  background-color: #0b0a23;
  color: #fff;
  font-family: "Century Gothic", sans-serif;
}

h1 {
  font-weight: normal;
  font-size: 48px;
}
h2 {
  color: #09a1e4;
  font-size: 40px;
  font-weight: bold;
}
h3 {
  font-size: 36px;
  font-weight: bold;
}
h4 {
  font-size: 22px;
  height: 54px;
  font-weight: bold;
  margin-top: 15px;
}
h5 {
  font-size: 18px;
  font-weight: bold;
}
h6 {
  font-size: 14px;
  letter-spacing: 0.27em;
}

::selection {
  background-color: #043c54;
  color: #fff;
}

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

input:focus,
textarea:focus {
  outline: #09a1e4 solid 1px;
}
a {
  color: inherit;
}
a:hover {
  color: #09a1e4;
}

/*--------------------------------
03. Sections style
--------------------------------*/
.header__top__area {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__brand {
  text-align: center;
}
.header__brand .brand__img {
  -webkit-animation: brandImg 1s;
  -moz-animation: brandImg 1s;
  animation: brandImg 1s;
}
.header__brand .brand__img a img {
  width: 120px;
  height: 120px;
}
.header__brand .brand__text {
  -webkit-animation: brandText 1s;
  -moz-animation: brandText 1s;
  animation: brandText 1s;
}

@-webkit-keyframes brandImg {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes brandImg {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes brandText {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes brandText {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.about__img {
  margin: 0 auto 18px;
  width: 350px;
  height: auto;
  border-radius: 40px;
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .about__info {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .about__button {
    text-align: center;
  }
}
.skills__area {
  padding: 60px 0 0 0;
}

.skills__item {
  margin-bottom: 20px;
  border-radius: 40px;
  height: calc(100% - 30px);
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
}
.skills__item__img {
  margin-bottom: 15px;
  height: 90px;
}
.skills__item__img img {
  height: 100%;
}

.connect__area {
  padding: 60px 0 60px 0;
}
.connect__item {
  text-align: center;
}
.connect__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -60px;
}
.connect__list li {
  margin-left: 60px;
  margin-bottom: 30px;
  width: 30%;
}
.connect__list li a {
  display: block;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  color: #fff;
  transition: 0.3s;
}
.connect__list li a img {
  width: 64px;
  height: 64px;
}
.connect__list li a:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  .connect__list li:not(:first-child) {
    margin-left: 30px;
  }
  .connect__list li a {
    padding: 30px;
  }
}

.contact__area {
  padding: 60px 0 60px 0;
  background-color: rgba(255, 255, 255, 0.03);
}

.contact__form {
  text-align: center;
}

.contact__form .input__group__between {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact__form .input__group__between {
    grid-template-columns: auto;
  }
}

.contact__form .input__group input,
.contact__form .input__group textarea {
  margin-bottom: 30px;
  width: 100%;
  border: 1px solid #dbd7f4;
  border-radius: 4px;
  padding: 21px 24px 20px;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.005em;
  color: #fff;
}

.footer__area {
  background-color: #0b0a23;
  padding: 20px 0;
  text-align: center;
}
.footer__copyright a {
  text-decoration: none;
}

/*--------------------------------
04. Components style
--------------------------------*/
.section__title {
  margin-bottom: 41px;
  text-align: center;
}
.btn {
  padding: 20px 45px;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.27em;
  color: #043c54;
  transition: 0.3s;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn-connect {
  background: #5ac9f8;
  color: #043c54;
  border-radius: 63px;
  transition: 0.3s;
}
.btn-connect:hover {
  background: #5fadce;
  color: #fff;
}
.btn-submit {
  padding: 22px 40px 21px;
  background-color: #5ac9f8;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.27em;
  color: #043c54;
  transition: 0.3s;
}
.btn-submit:hover {
  background-color: #5fadce;
  color: #fff;
}
.btn-impressum {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
