@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
body {
  margin: 0;
  padding: 0;
  background-image: url("/assets/img/bg.png");
  background-size: cover;
  background-position: unset;
  background-repeat: no-repeat;
  overflow-x: hidden;
  min-height: 100vh;
}

* {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: unset;
  color: black;
}

.container {
  width: 1280px;
  display: block;
  margin: auto;
}

nav .navbar {
  padding: 25px 0;
}
nav .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
nav .navbar .container a {
  display: block;
  text-decoration: unset;
  color: black;
}
nav .navbar .container a .back-area {
  display: flex;
  align-items: center;
}
nav .navbar .container a .back-area span {
  margin-left: 7px;
}
nav .navbar .container .nav-menu-area {
  display: flex;
  align-items: center;
}
nav .navbar .container .nav-menu-area a {
  margin-right: 20px;
  color: black;
}
nav .navbar .container .nav-menu-area a:last-child {
  margin-right: 0;
}
nav .navbar .container .nav-menu-area a.active {
  font-weight: bold;
  position: relative;
}
nav .navbar .container .nav-menu-area a.active:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: black;
}
nav .navbar .container .mobil-nav-toggle {
  display: none;
  align-items: center;
  cursor: pointer;
}
nav .navbar .container .mobil-nav-toggle span {
  margin-right: 7px;
}
nav .navbar .container .mobil-nav-toggle .svg-area {
  display: none;
}
nav .navbar .container .mobil-nav-toggle .svg-area.active {
  display: flex;
}
nav .navbar .mobil-nav-area {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: white;
  top: -100vh;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
nav .navbar .mobil-nav-area.active {
  top: 0;
}
nav .navbar .mobil-nav-area ul {
  width: 100%;
  list-style-type: none;
  padding: 0;
}
nav .navbar .mobil-nav-area ul li {
  width: 100%;
  text-align: center;
}
nav .navbar .mobil-nav-area ul li a {
  padding: 20px 0;
  margin: 10px 0;
  display: block;
  text-decoration: unset;
  width: 100%;
  color: black;
}
nav .navbar .mobil-nav-area ul li a.active, nav .navbar .mobil-nav-area ul li a:hover {
  background-image: linear-gradient(70deg, rgba(143, 0, 255, 0.3764705882), rgba(5, 0, 255, 0.3764705882));
  color: white;
}

.content-page {
  padding: 100px 0;
}
.content-page h1 {
  font-size: 64px;
  margin: 0;
}
.content-page .desc {
  margin-top: 80px;
}

.list {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}
.list a {
  display: flex;
  text-decoration: unset;
  color: black;
}
.list a span {
  margin-left: 7px;
}
.list a:hover span {
  font-weight: 500;
}

.press-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  text-decoration: unset;
  color: black;
  margin-bottom: 70px;
  transition: all 0.5s;
  cursor: pointer;
}
.press-list::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  background-image: linear-gradient(70deg, rgba(143, 0, 255, 0.3764705882), rgba(5, 0, 255, 0.3764705882));
  border-radius: 3px;
}
.press-list:hover {
  padding-left: 15px;
}
.press-list:hover::before {
  width: 5px;
}
.press-list .left-area {
  display: flex;
  align-items: center;
}
.press-list .img-area img {
  width: 100px;
}
.press-list .desc-area {
  margin-left: 30px;
}
.press-list .desc-area .title {
  font-weight: 600;
}
.press-list .desc-area .info {
  margin-top: 7px;
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contacts .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts .contact img {
  width: 140px;
  height: 140px;
}
.contacts .contact span {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.contact-list {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.contact-list img {
  width: 30px;
  height: 30px;
}
.contact-list span {
  margin-left: 30px;
}

@media (max-width: 1360px) {
  .container {
    width: 980px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: 700px;
  }
  .contacts .contact img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 760px) {
  .container {
    width: auto;
    padding: 0 24px;
  }
  nav .navbar .container .nav-menu-area {
    display: none;
  }
  nav .navbar .container .mobil-nav-toggle {
    display: flex;
  }
  .content-page h1 {
    font-size: 48px;
  }
  .contacts {
    flex-direction: column;
    align-items: center;
  }
  .contacts .contact {
    margin-bottom: 80px;
  }
  .contacts .contact img {
    width: 100px;
    height: 100px;
  }
}
@media (max-height: 700px) {
  body {
    min-height: 700px;
  }
}
#main .container {
  height: 100vh;
  position: relative;
}
#main .container .profile-area {
  width: 100%;
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  animation-name: moveProfile;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#main .container .profile-area .img-area {
  position: absolute;
  left: 100px;
  animation-name: moveImg;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#main .container .profile-area .img-area img {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  display: block;
}
#main .container .profile-area .desc {
  position: absolute;
  left: 600px;
  top: 0;
  animation-name: moveDesc;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#main .container .profile-area .desc h1 {
  width: 480px;
  font-size: 108px;
  font-weight: 700;
  margin: 0;
  animation-name: name;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#main .container .profile-area .desc h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  color: #b1b1b1;
  animation-name: title;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#main .container .menu {
  position: absolute;
  top: 50%;
  left: 140%;
  transform: translateY(-50%);
  animation-name: menu;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#main .container .menu ul {
  list-style-type: none;
}
#main .container .menu ul li {
  font-size: 30px;
  margin: 20px 0;
  transition: all 0.5s;
}
#main .container .menu ul li:hover {
  font-weight: bold;
  margin-left: 20px;
}
#main .container .menu ul li a {
  color: black;
  text-decoration: unset;
}

#about .desc img {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  width: 650px;
}

@keyframes moveImg {
  0% {
    left: 100px;
    top: 0;
  }
  100% {
    left: 0;
    top: 90px;
  }
}
@keyframes moveDesc {
  0% {
    left: 600px;
    top: 0;
  }
  100% {
    left: 0px;
    top: -90px;
  }
}
@keyframes name {
  0% {
    font-size: 108px;
    width: 480px;
  }
  100% {
    font-size: 64px;
    width: 800px;
  }
}
@keyframes title {
  0% {
    font-size: 48px;
  }
  100% {
    font-size: 32px;
  }
}
@keyframes menu {
  0% {
    left: 140%;
  }
  100% {
    left: 600px;
  }
}
@keyframes imgMobil {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 125px;
    height: 125px;
  }
}
@keyframes profileMobil {
  0% {
    margin-bottom: 0;
  }
  100% {
    margin-bottom: 250px;
  }
}
@keyframes menuMobil {
  0% {
    top: 100vh;
  }
  100% {
    top: 55vh;
  }
}
@media (max-width: 1360px) {
  #main .container .profile-area .img-area {
    left: 0;
  }
  #main .container .profile-area .desc {
    left: 500px;
  }
  #about .desc img {
    width: 550px;
  }
  @keyframes moveImg {
    0% {
      left: 0;
      top: 0;
    }
    100% {
      left: 0;
      top: 90px;
    }
  }
  @keyframes menu {
    0% {
      left: 140%;
    }
    100% {
      left: 550px;
    }
  }
  @keyframes moveDesc {
    0% {
      left: 500px;
      top: 0;
    }
    100% {
      left: 0px;
      top: -90px;
    }
  }
}
@media (max-width: 1050px) {
  #main .container .profile-area {
    height: 300px;
  }
  #main .container .profile-area .img-area img {
    width: 300px;
    height: 300px;
  }
  #main .container .profile-area .desc {
    left: 360px;
  }
  #main .container .profile-area .desc h1 {
    font-size: 74px;
  }
  #main .container .profile-area .desc h2 {
    font-size: 34px;
  }
  #main .container .menu ul li {
    font-size: 24px;
  }
  #about .desc img {
    width: 100%;
    margin-left: 0;
  }
  @keyframes name {
    0% {
      font-size: 74px;
      width: 480px;
    }
    100% {
      font-size: 56px;
      width: 800px;
    }
  }
  @keyframes menu {
    0% {
      left: 140%;
    }
    100% {
      left: 400px;
    }
  }
  @keyframes moveDesc {
    0% {
      left: 360px;
      top: 0;
    }
    100% {
      left: 0px;
      top: -90px;
    }
  }
}
@media (max-width: 760px) {
  body {
    background-position: right;
  }
  #main .container {
    display: flex;
    align-items: center;
  }
  #main .container .profile-area {
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation-name: profileMobil;
    animation-delay: 1s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }
  #main .container .profile-area .img-area {
    animation-name: none;
    position: unset;
    left: unset;
  }
  #main .container .profile-area .img-area img {
    animation-name: imgMobil;
    animation-delay: 1s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    width: 200px;
    height: 200px;
  }
  #main .container .profile-area .desc {
    position: unset;
    left: unset;
    animation-name: none;
    margin-top: 40px;
  }
  #main .container .profile-area .desc h1 {
    animation-name: none;
    width: auto;
    font-size: 36px;
    text-align: center;
  }
  #main .container .profile-area .desc h2 {
    animation-name: none;
    width: auto;
    font-size: 16px;
    text-align: center;
  }
  #main .container .menu {
    top: 100vh;
    width: 100%;
    transform: unset;
    left: 0;
    animation-name: menuMobil;
    animation-delay: 1s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }
  #main .container .menu ul {
    width: 100%;
    padding: 0;
  }
  #main .container .menu ul li {
    font-size: 16px;
    text-align: center;
  }
}/*# sourceMappingURL=index.css.map */