@import url("https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  height: 50vh;
  background: linear-gradient(to right, #4f2d62, #ac39ea);
}
.container nav {
  display: flex;
  justify-content: flex-end;
  font-family: "Roboto", sans-serif;
}
.container nav ul {
  margin-right: 40px;
  margin-top: 20px;
}
.container nav ul li {
  display: inline;
  list-style: none;
  margin-left: 30px;
}
.container nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .container nav ul li a {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .container nav ul li a {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .container nav {
    justify-content: center;
  }
  .container nav ul {
    margin-right: 20px;
    margin-top: 15px;
  }
  .container nav ul li {
    margin-left: 20px;
  }
}
@media (max-width: 480px) {
  .container nav ul {
    margin-right: 10px;
    margin-top: 10px;
  }
  .container nav ul li {
    margin-left: 15px;
  }
}

.frame-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
.frame-container .gradient {
  width: 72%;
  height: 76%;
  position: absolute;
  bottom: 74px;
  background: linear-gradient(to left, #88e9ec, #da78ee);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .frame-container .gradient {
    width: 85%;
    height: 50%;
    bottom: 10px;
  }
}
@media (max-width: 480px) {
  .frame-container .gradient {
    width: 90%;
    height: 30%;
    bottom: 10px;
  }
}
.frame-container header {
  width: 70%;
  height: 90%;
  margin-top: 3.7rem;
  background-image: url("https://cdn.pixabay.com/photo/2025/01/03/01/04/pattern-9307004_1280.jpg");
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .frame-container header {
    width: 80%;
    height: 85%;
  }
}
@media (max-width: 768px) {
  .frame-container header {
    width: 90%;
    height: 80%;
  }
}
@media (max-width: 480px) {
  .frame-container header {
    width: 95%;
    height: 75%;
  }
}
.frame-container header .social {
  height: 100%;
  width: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  margin-left: 10px;
  text-align: center;
}
.frame-container header .social .fa-brands {
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .frame-container header .social .fa-brands {
    font-size: 1rem;
  }
}
.frame-container header .social .line {
  margin: 0 auto;
  width: 4px;
  border-radius: 10px;
  height: 20%;
  background: #ae81bf;
  margin-bottom: 20px;
}
.frame-container header .social .img-pro {
  width: 300px;
  height: 300px;
  position: absolute;
  background: url("https://i.pinimg.com/280x280_RS/12/17/81/1217814059eb642f1d4ee3b9dd761582.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 35%;
}
@media (max-width: 768px) {
  .frame-container header .social .img-pro {
    width: 200px;
    height: 200px;
    margin-left: 30%;
  }
}
@media (max-width: 480px) {
  .frame-container header .social .img-pro {
    width: 150px;
    height: 150px;
    margin-left: 25%;
  }
}
.frame-container header h1 {
  margin-left: 50px;
  color: white;
  font-size: 8rem;
  font-family: Branden Raulner;
  font-weight: normal;
  transform: translateY(-60px);
}
@media (max-width: 1024px) {
  .frame-container header h1 {
    font-size: 15rem;
    margin-left: 15px;
  }
}
@media (max-width: 768px) {
  .frame-container header h1 {
    font-size: 10rem;
    margin-left: 10px;
    transform: translateY(-85px);
  }
}
@media (max-width: 480px) {
  .frame-container header h1 {
    font-size: 6rem;
    margin-left: 5px;
    transform: translateY(-50px);
  }
}

.about {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  font-family: "Roboto", sans-serif;
  margin-top: 10rem;
  padding: 3rem 5rem;
}
.about p {
  line-height: 1.7;
  color: #e8d4ef;
  width: 400px;
}
.about p span {
  padding: 5px;
  background: linear-gradient(to left, #88e9ec, #da78ee);
  border-radius: 100px;
}
@media (max-width: 1024px) {
  .about p {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .about p {
    width: 300px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about p {
    width: 90%;
    font-size: 0.9rem;
  }
}
.about .two {
  align-self: flex-end;
}
@media (max-width: 768px) {
  .about {
    padding: 2rem 3rem;
    margin-top: 5rem;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 1.5rem 2rem;
    margin-top: 3rem;
  }
}

.marquee {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.marquee span {
  display: inline-block;
  font-size: 5rem;
  font-weight: bold;
  color: rgba(174, 129, 191, 0.3921568627);
  animation: marquee 30s linear infinite;
}
@media (max-width: 1024px) {
  .marquee span {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .marquee span {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .marquee span {
    font-size: 2rem;
  }
}
.marquee:nth-child(2) span {
  animation: marquee-reverse 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.projects .title {
  margin-left: 50px;
  margin-top: 8rem;
  color: white;
  font-size: 8rem;
  font-family: Branden Raulner;
  font-weight: normal;
  transform: translateY(-50px);
}
.projects .title span {
  background: rgba(174, 129, 191, 0.3921568627);
}
@media (max-width: 1024px) {
  .projects .title {
    margin-left: 30px;
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .projects .title {
    margin-left: 20px;
    font-size: 4.5rem;
  }
}
@media (max-width: 480px) {
  .projects .title {
    margin-left: 10px;
    font-size: 3rem;
  }
}
.projects .images-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.projects .images-container img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 30px 10px;
}
.projects .img-one {
  transform: translateY(200px);
}
@media (max-width: 768px) {
  .projects .img-one {
    transform: translateY(100px);
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .projects .img-one {
    transform: translateY(50px);
    display: flex;
    flex-wrap: wrap;
  }
}
.projects .img-two {
  transform: translateY(150px);
}
@media (max-width: 768px) {
  .projects .img-two {
    transform: translateY(75px);
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .projects .img-two {
    transform: translateY(40px);
    display: flex;
    flex-wrap: wrap;
  }
}
.projects .img-three {
  transform: translateY(100px);
}
@media (max-width: 768px) {
  .projects .img-three {
    transform: translateY(50px);
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .projects .img-three {
    transform: translateY(20px);
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 680px) {
  .projects .img-one,
  .projects .img-two,
  .projects .img-three {
    margin-bottom: 6rem;
  }
}
.projects h1 {
  color: white;
  font-size: 4rem;
  font-family: Branden Raulner;
  font-weight: normal;
  transform: translateY(180px);
}
@media (max-width: 768px) {
  .projects h1 {
    font-size: 3rem;
    transform: translateY(120px);
    text-align: center;
  }
}
@media (max-width: 480px) {
  .projects h1 {
    font-size: 2rem;
    transform: translateY(60px);
    text-align: center;
  }
}

.clients {
  height: 100vh;
  margin-top: 15rem;
}
.clients h1 {
  text-align: right;
  margin-right: 4rem;
  margin-top: 8rem;
  color: white;
  font-size: 8rem;
  font-family: Branden Raulner;
  font-weight: normal;
  transform: translateY(-50px);
}
.clients h1 span {
  background: rgba(174, 129, 191, 0.3921568627);
}
@media (max-width: 768px) {
  .clients h1 {
    font-size: 5rem;
    margin-right: 2rem;
  }
}
@media (max-width: 480px) {
  .clients h1 {
    font-size: 3rem;
    margin-right: 1rem;
  }
}
.clients section.cards-container .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.clients section.cards-container .cards .card {
  background: #2b252e;
  padding: 40px;
  color: #fff;
  line-height: 1.5;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.clients section.cards-container .cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.clients section.cards-container .cards .card p {
  width: 200px;
  font-family: "Roboto", sans-serif;
  color: rgb(197, 197, 197);
}
@media (max-width: 768px) {
  .clients section.cards-container .cards .card p {
    width: 100%;
    text-align: center;
  }
}
.clients section.cards-container .cards .card .user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.clients section.cards-container .cards .card .user-info .user-img {
  margin-right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("https://cdn.pixabay.com/photo/2023/11/10/17/00/mountains-8379756_640.jpg") no-repeat center center;
  background-size: cover;
}
.clients section.cards-container .cards .card .user-info .user-img.user-img-two {
  background: url("https://cdn.pixabay.com/photo/2022/08/18/09/20/houses-7394390_640.jpg") no-repeat center center;
  background-size: cover;
}
.clients section.cards-container .cards .card .user-info .user-img.user-img-three {
  background: url("https://cdn.pixabay.com/photo/2018/05/30/00/24/thunderstorm-3440450_640.jpg") no-repeat center center;
  background-size: cover;
}

footer {
  background: linear-gradient(to left, #88e9ec, #da78ee);
  padding: 2rem 1rem;
  color: white;
  text-align: center;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}
footer .logo-container h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer .logo-container h1 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  footer .logo-container h1 {
    font-size: 1rem;
  }
}
footer .social-media {
  display: flex;
  gap: 1.5rem;
}
footer .social-media i {
  font-size: 2rem;
  color: white;
  transition: transform 0.3s, color 0.3s;
}
footer .social-media i:hover {
  transform: scale(1.2);
  color: #cb23f5;
}
@media (max-width: 768px) {
  footer .social-media i {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  footer .social-media i {
    font-size: 1.2rem;
  }
}

body {
  background: #211f22;
}/*# sourceMappingURL=style.css.map */