body{
/*  font-family: 'Nunito', sans-serif;*/
  font-family: "Oswald", Helvetica, Arial, sans-serif!important;
/*  padding: 50px;*/
}

.card{
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
  transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  padding: 14px 80px 18px 36px;
  cursor: pointer;
  opacity: 0.9; /* Set opacity value */
}

.card:hover{
     transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

/*.card h4{
  font-weight: 600;
}*/

.card img{
  position: absolute;
  top: 20px;
  right: 15px;
  max-height: 120px;
}

.card-1{
  background-image: url('../images/ionic-native-card.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 80px;
}

.card-2{
  background-image: url('../images/components-card.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 80px;
}

.card-3{
  background-image: url('../images/theming-card.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: 80px;
}

.card-4{
  padding-left: 0; /* Remove default left padding */
  margin-left: 0; /* Remove default left margin */
  padding-left: 2em;
  padding-right: 0.5em;
}


@media(max-width: 92%){
  .card{
    margin: 20px;
  }
} 


#row-one, #row-two, #row-three {
  display: flex;
  justify-content: center;
  margin: 0 20px;     /* Center the row */
  align-items: center;     /* Vertically center the content */
  padding: 0.5%;
}

#row-one2 {
  display: flex;
  justify-content: center;       
  margin: 0 20px;     /* Center the row */
}



.section-title {
  margin-top: 100px;
}

/*Another soft skills*/


/*Conocimientos de Informatica*/
@import url("https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.soft-skills {
  /*--color: rgba(30, 30, 30);
  --bgColor: rgb(215, 215, 215);*/
/*  min-height: 100vh;*/

  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 2rem;

  /*font-family: "Oxygen", sans-serif;
  color: var(--color);
  background: var(--bgColor);*/
}

h4, h5{
  text-align: center;
}

h6 {
  justify-content: center;
  color:#232323;
}

.skills {
/*  width: min(60rem, 90%);*/
  margin-inline: auto;

  display: flex;
  flex-wrap: wrap;
  gap: 2rem;

  list-style: none;
  counter-reset: cardnr;
  justify-content: center;
  height: 100%;
}

.skill-one {
  --frontColor: white;
  --width: 10em;
  --inlineP: 0.5rem;
  --borderR: 4rem;
  --arrowW: 2rem;
  --arrowH: 1.5rem;

  counter-increment: cardnr;
  width: calc(var(--width) - var(--inlineP) * 2);
  display: grid;
  grid-template:
    "icon" var(--borderR)
    "title"
    "descr" 1fr;
  margin-inline: var(--inlineP);
  margin-bottom: calc(var(--borderR));
  position: relative;
}
.skill-one .icon,
.skill-one .title,
.skill-one .descr {
  background: var(--frontColor);
  padding-inline: 1rem;
  padding-bottom: 1rem;
}
.skill-one .icon,
.skill-one .title {
  color: var(--accent-color);
  text-align: center;
  padding-bottom: 0.5rem;
}

.skill-one .title,
.skill-one .descr {
  filter: drop-shadow(0.125rem 0.125rem 0.075rem rgba(0, 0, 0, 0.25));
}
.skill-one .icon {
  grid-area: icon;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--borderR) 0 0 0;
  position: relative;
}

.skill-one .title {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: bold;
}

.skill-one .descr {
  grid-area: descr;
  font-size: 0.85rem;
  text-align: center;
}
.skill-one .descr::before {
  content: "";
  width: var(--arrowW);
  height: var(--arrowH);
  position: absolute;
  right: 1.5rem;
  top: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.skill-one::after {
  content: counter(cardnr, decimal-leading-zero);
  position: absolute;
  z-index: -1;

  left: calc(var(--inlineP) * -1);
  right: calc(var(--inlineP) * -1);
  top: var(--borderR);
  bottom: calc(var(--borderR) * -1);

  display: flex;
  align-items: flex-end;
  background: var(--accent-color);
  background-image: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.25),
    transparent 25% 75%,
    rgba(0, 0, 0, 0.25)
  );
  border-radius: 0 0 var(--borderR) 0;

  --pad: 1rem;
  padding: var(--pad);
  font-size: calc(var(--borderR) - var(--pad) * 2);
  color: white;
}
.skill-one::before {
  content: "";
  position: absolute;
  height: var(--borderR);
  top: calc(100% + var(--borderR) - 2px);
  left: calc(var(--inlineP) * -1);
  right: calc(var(--inlineP) * -1);
  border-radius: 0 var(--borderR) 0 0;

  background-image: linear-gradient(var(--accent-color), transparent 60%);
  opacity: 0.5;
  filter: blur(2px);
}

/*Another additional skills*/
h6{
  margin-top:0;
  text-align: left;
  line-height: 1.25;
  font-weight: 300;
  color:#87CEFA;
}
/*body {
    margin-top: 20px;
}*/
.timeline_area {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
      transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
/*  padding: 14px 80px 18px 36px;*/
  cursor: pointer;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.single-timeline-area {
    position: relative;
    z-index: 1;
    padding-left: 5%;
}
@media only screen and (max-width: 47%) {
    .single-timeline-area {
        padding-left: 100px;
    }
}
.single-timeline-area .timeline-date {
    position: absolute;
    width: 5%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 10px;
}
@media only screen and (max-width: 47%) {
    .single-timeline-area .timeline-date {
        width: 100px;
    }
}
.single-timeline-area .timeline-date::after {
    position: absolute;
    width: 3px;
    height: 100%;
    content: "";
    background-color: #ebebeb;
    top: 0;
    right: 30px;
    z-index: 1;
}
.single-timeline-area .timeline-date::before {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #f1c40f;
    content: "";
    top: 50%;
    right: 26px;
    z-index: 5;
    margin-top: -5.5px;
}
.single-timeline-area .timeline-date p {
    margin-bottom: 0;
    color: #020710;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}
.single-timeline-area .single-timeline-content {
    position: relative;
    z-index: 1;
    padding: 30px 30px 25px;
    border-radius: 6px;
    margin-bottom: 15px;
    margin-top: 15px;
    -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    border: 1px solid #ebebeb;
}
@media only screen and (max-width: 575px) {
    .single-timeline-area .single-timeline-content {
        padding: 20px;
    }
}
.single-timeline-area .single-timeline-content .timeline-icon {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 30px;
    height: 30px;
    background-color: #f1c40f;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    text-align: center;
    max-width: 30px;
    border-radius: 50%;
    margin-right: 15px;
    /* Add the following properties to create a fully circular icon */
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-timeline-area .single-timeline-content .timeline-icon i {
    color: #ffffff;
    line-height: 30px;
}
.single-timeline-area .single-timeline-content .timeline-text h6 {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}
.single-timeline-area .single-timeline-content .timeline-text p {
    font-size: 13px;
    margin-bottom: 0;
}
.single-timeline-area .single-timeline-content:hover .timeline-icon,
.single-timeline-area .single-timeline-content:focus .timeline-icon {
    background-color: #020710;
}
.single-timeline-area .single-timeline-content:hover .timeline-text h6,
.single-timeline-area .single-timeline-content:focus .timeline-text h6 {
    color: #3f43fd;
}




