@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

a{
  text-decoration: none;
  color: #eeeeee;
  transition: all 0.3s ease;
}

a:hover{
  color: #F2613F !important;
}

body {
  background: #222831;
  padding: 20px;
  animation: fadeInAnimation ease 2s;
}

nav {
  display: flex;
  gap: 20px;
}

nav .logo {
  height: 64px;
  width: 64px;
  background: #31363F;
  border: 1px solid #242424;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .logo i {
  font-size: 26px;
  color: #F2613F;
}

nav .links {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 66px;
  background: #31363F;
  border: 1px solid #242424;
  border-radius: 48px;
}

nav .links a{
  font-size: 20px;
}

nav .links a.active{
  font-weight: bold;
  color: #F2613F;
}

.about{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 42px;
  background: #31363F;
  border: 1px solid #242424;
  border-radius: 14px;
  margin-top: 20px;
}

.about .left h3 {
  color: #eeeeee;
  font-size: 24px;
  font-weight: 400;
}

.about .left .info{
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about .left .info h2{
  font-size: 36px;
  color: #eeeeee;
  font-weight: 500;
}

.about .left .info p{
  font-size: 20px;
  color: #eeeeee;
}

.about .left .info .buttons{
  display: flex;
  gap: 14px;
}

.about .left .info .buttons button{
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .left .info .buttons button.send {
  color: #eeeeee;
  background: #F2613F;
  border: 1px solid #242424;
}

.about .left .info .buttons button.send:hover{
  background: #F97300;
}

.about .left .info .buttons button.email {
  color: #eeeeee;
  background: #222831;
  border: 1px solid #242424;
}

.about .left .info .buttons button.email:hover{
  background: #242424;
}

.about .right a.online, footer a.online{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #222831;
  border: 1px solid #242424;
  padding: 4px 15px;
  border-radius: 14px;
  font-size: 13px;
}

.about .right a.online i, footer a.online i{
  color: #F97300;
  font-size: 9px;
}

.about .right img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 8px solid #242424;
  object-fit: cover;
  margin-top: 70px;
}

.works {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.works .left {
  flex: 1;
  background: #31363F;
  padding: 60px 40px;
  border-radius: 14px;
  border: 1px solid #242424;
}

.works .left h3{
  color: #eeeeee;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.works .left h3 i{
  font-size: 8px;
}

.works .left .works-list{
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.works .left .works-list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.works .left .works-list .item .work-info h5{
  color: #eeeeee;
  font-size: 24px;
  font-weight: 500;
}

.works .left .works-list .item .work-info h5.active{
  color: #F97300;
}

.works .left .works-list .item .work-info p{
  margin-top: 12px;
  color: #eeeeee;
  font-size: 20px;
}

.works .left .works-list .item > p{
  font-size: 20px;
  color: #eeeeee;
}

.works .right{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 40% auto;
  gap: 20px;
}

.works .right .item:first-child{
  grid-column: span 2;
}

.works .right .item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background: #31363F;
  border: 1px solid #242424;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.works .right .item:hover a {
  color: #F97300;
}

.works .right .item a{
  font-size: 24px;
  font-weight: 500;
}

.works .right .item > p{
  color: #eeeeee;
  font-size: 17px;
  line-height: 26px;
}

.works .right .item:not(:first-child){
  gap: 14px;
}

.works .right .item:not(:first-child) a{
  font-size: 18px;
}

.works .right .item:not(:first-child) p{
  font-size: 15px;
}

footer{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #31363F;
  border: 1px solid #242424;
  padding: 45px;
  border-radius: 14px;
}

footer > a{
  font-size: 24px;
  font-weight: 500;
}

footer .socials{
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .socials a{
  font-size: 20px;
  font-weight: 500;
  color: #eeeeee;
}

@keyframes fadeInAnimation {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@media screen and (max-width: 1220px) {
  .about{
    padding: 60px 30px;
  }

  .works{
    flex-direction: column;
  }
  .works .left, .works .right .item, footer{
    padding: 40px 30px;
  }
  .works .right{
    grid-template-rows: auto auto;
  }
}

@media screen and (max-width: 992px) {
  nav .links{
    padding: 0 40px;
  }

  footer > a{
    font-size: 20px;
  }

  footer .socials a{
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  nav .links a{
    font-size: 16px;
  }

  .about{
    flex-direction: column-reverse;
    gap: 20px;
    padding: 30px;
  }

  .about .left .info{
    margin-top: 30px;
  }

  .about .right img{
    margin-top: 20px;
  }

  footer a.online {
    display: none;
  }
}

@media screen and (max-width: 405px) {
  .about .left .info h2{
    font-size: 30px;
  }

  .about .left .info p,
  .works .left .works-list .item .work-info p,
  .works .left .works-list .item > p{
    font-size: 16px;
  }

  .about .left .info .buttons button{
    font-size: 14px;
  }

  .works .left .works-list{
    margin-top: 40px;
  }

  .works .left .works-list .item .work-info h5{
    font-size: 20px;
  }

  .works .right .item > p,
  .works .right .item:not(:first-child) p{
    font-size: 13px;
  }

  footer a{
    display: inline-block;
  }

  footer {
    justify-content: center;
  }

  .logo-foot{
    display: none;
  }
}