* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
.containeruno {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(assets/Adobe.jpg);
  background-position: center;
  background-size: cover;
  padding-left: 8%;
  padding-right: 8%;
  box-sizing: border-box;
}
a{
    text-decoration: none;
    color: black;
    font-size: large;

}
.navbar {
  height: 12%;
  display: flex;
  align-items: center;
}
.logo {
  width: 50px;
  cursor: pointer;
}
nav {
  flex: 1;
  text-align: right;
  margin-right: 40px;
}

nav ul li {
  list-style: none;
  display: inline-flex;
  margin-left: 60px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
}
.row {
  display: flex;
  height: 88%;
  align-items: center;
}
.col {
  flex-basis: 50%;
}
.col h1 {
  color: #fff;
  font-size: 65px;
}
p {
  color: #fff;
  font-size: 15px;
  line-height: 15px;
}
button {
  width: 180px;
  color: #000;
  font-size: 12px;
  padding: 17px 0;
  background: #fff;
  border: 0;
  border-radius: 20px;
  outline: none;
  margin-top: 30px;
  cursor: pointer;
}
.cardfull {
  width: 200px;
  height: 250px!important;
  display: inline-block;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  margin: 10px 15px;
  background-image: url(assets/after-effects.png);
  background-position: center;
  background-size: cover;
  transition: transform 0.5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 15px 25px rgb(0, 0, 0, 0.5);
  transition: all 500ms ease ease-out;
}
.card2 {
  background-image: url(assets/animate.png);
}
.card3 {
  background-image: url(assets/dreamweaver.png);
}
.card4 {
  background-image: url(assets/illustrator.png);
}
.cardfull:hover {
  transform: translateY(-10px);
}

h5 {
  color: #fff;
  font-size: larger;
  margin-bottom: 120px;
  margin-top: 30px;
  transition: all ease-out 500ms;
}
.cardfull p {
  text-shadow: 0 0 5px #000;
  font-size: 15px;
  line-height: 1.5;
  width: 100%;
  max-width: 220px;
  margin: auto;
}
.capa {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.425);
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all ease-out 500ms;
}
.cardfull:hover > .capa {
  opacity: 1;
  visibility: visible;
  transition: all ease-out 500ms;
}
.cardfull:hover > .capa h5 {
  margin-top: 70px;
  margin-bottom: 15px;
  transition: all ease-out 500ms;
}
section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}
.cardu {
  position: relative;
  width: 350px;
  height: 190px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
  transition: all ease-out 500ms;
  max-width: 350px;
  margin-top: 15vh;
  margin-left: 2vh;
  margin-right: 5vh;
}

.cardu:hover {
  height: 450px;
  transition: all ease-out 500ms;
}
.img8x {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  width: 150px;
  height: 145px;
  background: #ffffff;
  border-radius: 35px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: all ease-out 500ms;
}
.cardu:hover .img8x {
  width: 200px;
  height: 200px;
  transition: all ease-out 500ms;
}
.img8x img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-out 500ms;
}
.cardu .content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  transition: all ease-out 500ms;
  margin-top: 15px;
}
.cardu .content .details {
  padding: 18px;
  text-align: center;
  width: 100%;
  transition: all ease-out 500ms;
  transform: translateY(200px);
}
.cardu:hover .content .details {
  transform: translateY(0px);
  transition: 0, 5s;
}
.cardu .content .details h2 {
  font-size: 1.5em;
  font-weight: 600;
  color: #555;
  line-height: 1.7em;
}
.cardu .content .details h2 span {
  font-size: 0.75em;
  font-weight: 500;
  opacity: 0.5;
}
.cardu .content .details .data {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.cardu .content .details .data h3 {
  font-size: 1em;
  color: #555;
  line-height: 1.7em;
  font-weight: 600;
}
.cardu .content .details .actionbtn {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cardu .content .details .actionbtn button {
  padding: 10px 30px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 500;
  background: rgba(89, 11, 192, 0.774);
  cursor: pointer;
}
.cardu .content .details .actionbtn button:nth-child(2) {
  border: 1px solid #999;
  color: #999;
  background: #fff;
}

.cards-container{
    display: flex;
    flex-grow: unset;
    flex-wrap: wrap;
    max-width: 200vh;
    flex-direction:column;

}

.foot-img3{
    height: 100%;
    width: 100%;
    background-color: #000;
}
.sps{
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 100%;
    height: 1vh ;
    background-color: #000;

}
/* @media (max-width: 1030px){
    .row{
        
        display: none;
    }
    .col{
        padding: 2rem;
    }
} */

@media (max-width:1030px) {
  .col h1{
    font-size:5.5vh;
    
  }
  .col p{
    font-size:2vh
  }
  .cardfull{
    display: none;
  }
  
}
@media (max-width:1030px) {

.details h2{
  font-size: large;
  margin-top: 50px;
}
  .row{
    flex-wrap: wrap;
    max-width: 100%;
  }

  .data{
    font-size: 1.8vh;
    font-weight: bolder;
  }
}