* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  color: black;
  font-size: 16px;
  overflow-x: hidden;
}

.section-content,
.aside-content {
  height: calc(100vh - 120px);
  overflow-y: auto;
  box-sizing: border-box;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1rem 0;
  background-color: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.siteTitle {
  display: flex;
  align-items: center;
  gap: 30px;
}

#title-img {
  width: 60px;
  height: auto;
}

#title-text {
  font-size: 1.5rem;
  line-height: 1.2;
}

.burger {
  background: none;
  border: none;
  cursor: pointer;
}

.burger img {
  width: 60px;
  height: auto;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40vw;
  height: 100vh;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  padding: 5px;
  z-index: 998;
  background-color: white;
  display: flex;
  justify-content: center;
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
}

.nav-menu li {
  margin-bottom: 1rem;
  border: 3px solid black;
}

.nav-menu li:hover {
  border: 3px solid #00d4d4;
}

.nav-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  transition: color 0.2s ease;
  background-color: white;
}

.nav-menu a:hover {
  color: #00d4d4;
}

.lang-selected:hover {
  color: #00d4d4;
  cursor: pointer;
}

.menu-img {
  width: 40px;
  height: auto;
}

.li-title {
  display: none;
}

.nav-ul-li {
  border-radius: 5px;
  width: 94px;
  height: auto;
  padding: 3px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-lang-selector {
  position: relative;
  display: inline-block;
  font-size: 1rem;
}

.lang-selected {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s ease;
  border: 1px white solid;
  background-color: white;
}

#li-languages {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flag-icon {
  width: 24px;
  height: 16px;
}

.lang-options {
  display: none;
  position: absolute;
  top: -50%;
  right: 200%;
  transform: translateY(-50%);
  margin-right: 5px;
  background-color: white;
  border: 3px solid black;
  border-radius: 5px;
  z-index: 999;
  width: 90px;
  list-style: none;
  padding: 0;
}

.lang-options li {
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: none;
}

.layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
}

main section,
aside .aside-section {
  height: calc(100vh - 120px);
  min-height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
}

main section {
  scroll-margin-top: 100px;
}

main {
  padding-top: 80px;
  margin-top: 0;
  position: relative;
}

section img {
  width: 100px;
}

.div-aside-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 5px;
}

#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  gap: 15px;
}

.section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80%;
  gap: 15px;
}

.div1-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 100%;
  gap: 10px;
  padding: 5px;
}

.banner {
  width: 50px;
}

#banner-multiply {
  width: 25px;
}

#div-slogan-home {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden; 
}

.subtitules,
#slogan-home {
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.4;
  border: 3px black solid;
  border-radius: 5px;
  padding: 20px;
}

#slogan-home {
  width: 100%;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 3px #00d4d4 solid;
  border-radius: 5px;
}

.rightArrow {
  height: 20%;
  width: auto;
  object-fit: contain; 
}

#scroll-down {
  height: 128%;
  width: 32%;
}

.rightArrow.rotated {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

#div-aside-btn-home {
  flex: 0 0 20%;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  overflow: hidden;
}

#skills {
  display: flex;
  flex-direction: column;
  height: 100vh;
  box-sizing: border-box;
}

#div-skills {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: 20px;
  gap: 20px;
}

.vertical-carousel {
  height: 100%;
  width: 50%;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-type: y mandatory;
  border: 3px black solid;
  border-radius: 5px;
  padding: 5px;
  align-items: center;
}

.carousel-item {
  scroll-snap-align: start;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

#div-text-skills {
  flex: 1;
  height: 100%;
  width: 70%;
  border: 3px #00d4d4 solid;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  gap: 5px;
}

#skills-text-title {
  font-weight: bold;
}

#text-skills {
  max-width: 90%;
}

#text-skills2,
#text-skills3 {
  display: none;
}

#text-skillsi {
  display: none;
}

.text-icon {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 5px;
  word-break: break-word;
  display: none;
}

#div-aside-btn-skills {
  flex: 0 0 20%;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  overflow: hidden;
}

#div-exp {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80%;
  padding: 20px;
}

.div-exp-item {
  border: 3px #00d4d4 solid;
  border-radius: 5px;
  height: 20%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  width: 100%;
}

.div-exp-item img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

#div-exp-item-kynryl,
#div-exp-item-compragamer {
  border: 3px black solid;
}

.exp-text-item-years {
  white-space: pre-line;
  font-size: 14px;
  width: 20%;
}

.div-exp-item img {
  width: 30%;
}

.exp-text-item-company {
  width: 50%;
  text-align: center;
}

#aside-logo-ivlp{
  height: 100%;
  width: auto;
}

#aside-text-ivlp-title,
#aside-text-ort-title {
  font-weight: bold;
}

#aside-text-ivlp-title{
  font-size: 16px;
}

  #aside-text-ivlp-title,
  #aside-text-ivlp-years,
  #aside-text-ort-place,
  #aside-text-ivlp-place {
    display: block;
  }

  #aside-text-ort-title,
  #aside-text-ort-years {
  display: block;
  }

  /* WORKFLOW */

  #workflow{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

.div-workflow{
  height: 80%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#div-workflow-mobile{
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  gap: 5px;
}

#div-workflow-desktop{
  display: none;
}

.div-workflow-item{
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 50%;
  height: 75px;
  border: 3px black solid;
  border-radius: 5px;;
  padding: 5px;

}

#item-require{
  top:10px;
  left:10px;
}

#item-analisis{
  top: 90px;
  left: 50px;
}

#item-design{
  top: 170px;
  left: 90px;
}

#item-logo{
  border: none;
  top: 45px; 
  left: 200px;
}

#item-ux{
  top: 250px;
  left: 130px;
}

#item-coding{
  top: 330px;
  left: 130px;
}

#item-work{
  border: none;
  top: 300px; 
  left: 10px;
}

#img-item-work{
  border: none;
}

#item-testing{
  top: 410px; 
  left: 90px;
}

#item-deploy{
  top: 490px;
  left: 50px;
}

#item-manteining{
  top: 570px; 
  left: 10px
}

#item-evaluation{
  top: 650px; 
  left: 10px
}

#item-feedback{
  top: 730px; 
  left: 30px;
}

#item-done{
  border: none;
  top: 620px; 
  left: 200px;
}

#img-item-done{
  border: none;
}

#img-process{
  display: none;
}

.wf-item-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px; 
  font-size: 12px;
  width: 60%;
}

.wf-image{
  height: 60px;
  width: auto;
  padding: 5px;
  border: 3px #00d4d4 solid;
  border-radius: 5px;;
}

.wf-image-A{
  height: 100px;
  width: auto;
}



/* WORKFLOW ASIDE */

  #div-aside-btn-workflow{
    height: 20%;/
  }

  #aside-div-wf{
    height: 100%;
    width: 100%;
    text-align: center;
  }

.aside-div-wf-item{
display: flex; 
flex-direction: row;
align-items: center;
justify-content: center;
height: 25%;
padding: 10px;
}

.aside-div-wf-item-img{
  width: 50%;
  height: 100%;
  padding: 5px;

}

.aside-div-wf-item-img img{
 height: 60px;
 width: auto;
}

.aside-div-wf-item-text{
  display: none;
  width: 50%;  
  height: 100%;
  overflow: hidden;
  padding: 5px;
}


/* ABOUT ME */

#div-aboutme-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
  gap: 5px;
}

.div-aside-btn {
  flex: 0 0 16%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
  overflow: hidden;
}

.div-aboutme {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  gap: 20px;
  padding: 5px;
}

.div-aboutme-skill {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  gap: 5px;
  padding: 5px;
  border: 3px #00d4d4 solid;
  border-radius: 4px;
  height: 90%;
}

#div1-aboutme-first,
#div2-aboutme-second {
  border: 3px black solid;
  border-radius: 4px;
}

.div-aboutme-skill img {
  max-width: 60%;
  height: auto;
  object-fit: contain;
}

.div-aboutme-skill p {
  font-size: 0.8rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

#aboutme-skill1b,
#aboutme-skill2b,
#aboutme-skill3b,
#aboutme-skill4b {
  display: none;
}

#aboutme-photo {
  display: none;
  width: 100%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  margin: auto;
}

.div1 {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-left: 0;
  align-items: flex-start;
  gap: 20px;
  width: auto;
  height: 80%;
}

.div1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 20px;
  padding: 10px;
  border: 3px #00d4d4 solid;
  border-radius: 4px;
  width: 100%;
  height: 30%;
}

#link-github {
  border: 3px black solid;
  border-radius: 4px;
}

#aside-section-contact {
  text-align: center;
}

#downloadcv {
  text-decoration: none;
}

#img-contact-mail,
#img-contact-linkedIn,
#img-contact-github {
  width: 65px;
}

.div1 p {
  text-align: center;
  width: 100%;
}

.rightArrow {
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

aside {
  background-color: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  z-index: 998;
  flex-direction: column;
  display: none;
}

.aside-section {
  max-width: 100%;
  min-height: 100vh;
  height: auto;
  font-size: large;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
}

#aside-home-text-mail,
#aside-home-text-linkedIn {
  display: none;
}

[data-section="home"] .aside-content {
  padding-top: 50px;
}

#aside-content-home{
 justify-content: space-around;
}

#aside-content-skills-text {
  display: none;
  text-align: center;
  padding: 10px;
}

#aside-content-skills-title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

#aside-content-ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  text-align: center;
}

#aside-content-skills {
  justify-content: center;
}

#aside-skills-text-mail {
  text-align: center;
}

#aside-div-experience {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.aside-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aside-div-exp-item {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.aside-div-exp-item img {
  max-width: 80%;
  max-height: 50%;
  object-fit: contain;
  display: block;
}

.aside-div-exp-item-text {
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.aside-text {
  font-size: 0.8rem;
  line-height: 1.2;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.aside-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aside-div-exp-item p {
  display: none;
}

.aside-section[data-section="aboutMe"] {
  gap: 20px;
  overflow-y: auto;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  padding: 1rem;
  max-height: 100vh;
  overflow-y: auto;
}

.aside-section[data-section="aboutMe"] img {
  max-width: 70%;
  height: auto; 
  object-fit: contain;
  display: block;
  margin: 0 auto; 
}

#aside-div-aboutme {
  height: 50vh;
}

.aside-section[data-section="aboutMe"] h2 {
  text-align: center;
  font-size: 1.1rem;
}

#img-contact-github1, #img-contact-linkedIn1{
  display: none;
 }

aside {
  position: fixed;
  top: 100px;
  right: -100%;
  width: 50vw;
  height: calc(100vh - 100px);
  background-color: white;
  transition: right 0.3s ease;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  visibility: hidden;
}

aside.active {
  right: 0;
  visibility: visible;
}

.aside-section {
  display: none;
}

.aside-section.active {
  display: flex;
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 20px;
  border-top: 1px solid #ccc;
  font-weight: bold;
}

@media (min-width: 768px) {

  #title-text {
    font-size: 40px;
    line-height: 1.2;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    box-shadow: none;
    padding: 0;
    right: unset;
    display: flex;
    align-items: center;
  }

  .nav-menu ul {
    display: flex;
    gap: 5px;
    margin: 0;
  }

  .nav-menu li {
    margin-bottom: 0;
  }

  .burger {
    display: none;
  }

  .li-title {
    display: block;
  }

  .lang-options {
    display: none;
    position: absolute;
    top: 130%;
    left: -10%;
    right: 100%;
    transform: none;
    margin-top: 5px;
    margin-right: 0;
  }

  #home {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    gap: 15px;
  }

  .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 15px;
  }

  .div1-home {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20%;
    gap: 30px;
    order: 2;
  }

  .div2-home {
    order: 1;
  }

  .banner {
    width: 100px;
  }

  #banner-creativity {
    height: 125%;
    width: auto;
  }

  #banner-multiply {
    height: 50px;
    width: 50px;
  }

  #div-slogan-home {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
    gap: 10px;
  }

  .subtitules,
  #slogan-home {
    max-height: 100%;
    max-width: 70%;
    width: 70%;
    overflow: hidden;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.4;
  }

  #slogan-home {
    width: 100%;
    text-align: center;
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding: 0 1rem;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  #div-skills {
    height: 100%;
  }

  .vertical-carousel {
    height: 100%;
    width: 30%;
  }

  #div-text-skills {
    height: 100%;
    width: 50%;
    border: 3px #00d4d4 solid;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 5px;
  }

  #skills-text-title{
    font-size: 24px;
  }

  #text-skills3 {
    display: block;
  }

  #text-skillsi {
    display: block;
  }

  #aside-content-skills-text {
    display: block;
  }

  #div-exp {
    height: 100%;
  }

  .exp-text-item-company{
    font-size: 30px;
    font-weight: bold;
  }  

  .exp-text-item-years {
    text-align: center;
    font-size: 20px;
  }

  #workflow{
    height: 100%;
  }

  /* WORKFLOW */

  .div-workflow{
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  #div-workflow-mobile{
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    overflow: hidden;
    overflow-x: auto;
    overflow-y: auto;
    gap: 5px;
  }
  
  .div-workflow-item{
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    border: 3px black solid;
    border-radius: 5px;;
    padding: 5px;
  }
  
  #item-require{
    top:10px;
    left:20px;
  }
  
  #item-analisis{
    top: 50px;
    left: 220px;
  }
  
  #item-design{
    top: 90px;
    left: 420px;
  }
  
  #item-logo{
    top: 140px; 
    left: 25px;
  }
  
  #item-ux{
    top: 120px;
    left: 620px;
  }
  
  #item-coding{
    top: 250px;
    left: 20px;
  }
  
  #item-work{
    border: none;
    top: 270px; 
    left: 620px;
  }
  
  #item-testing{
    top: 300px; 
    left: 220px;
  }
  
  #item-deploy{
    top: 340px;
    left: 420px;
  }
  
  #item-manteining{
    top: 420px; 
    left: 620px
  }
  
  #item-evaluation{
    top: 480px; 
    left:120px;
  }
  
  #item-feedback{
    top: 600px; 
    left: 620px;
  }
  
  #item-done{
    border: none;
    top: 500px; 
    left: 400px;
  }


  
  .wf-item-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px; 
    font-size: 18px;
    width: 60%;
  }
  
  .wf-image{
    height: 75px;
    width: auto;
    padding: 5px;
    border: 3px #00d4d4 solid;
    border-radius: 5px;;
  }

  .wf-image-A{
    height: 130px;
    width: auto;
  }
  
 #div-workflow-desktop{
  display: block;
  height: 100%;
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
 }

 #img-process{
  width: 70px;
  display: flex;
  align-items: center;
  border: 1px red solid;
  border-radius: 0px;
 }


  .aside-div-wf-item-text{
    display: block;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


  #aboutme-skill1,
  #aboutme-skill2,
  #aboutme-skill3,
  #aboutme-skill4 {
    display: block;
    font-size: 22px;
    font-weight: bold;
  }

  #aboutme-skill1b,
  #aboutme-skill2b,
  #aboutme-skill3b,
  #aboutme-skill4b {
    display: block;
    font-size: 16px;
  } 

  #aboutme-photo {
    width: 50%;
  }

  #div1Contact{
    height:100%;
    display: flex;
  justify-content: center;
  }

  #div1Contact a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
  }
  
  #div1Contact a p {
    margin: 0;
    white-space: nowrap;
    width: 60%;
  }

  #div1Contact a img {
    width: 40%;
  }

  #img-contact-mail{
    max-height: 90%;
    width: auto;
    object-fit: contain;
  }

  #img-contact-github, #img-contact-linkedIn{
    display: none;
   }

   #img-contact-github1, #img-contact-linkedIn1{
    display: block;
   }

  #contact-text{
    font-size: 22px;
    font-weight: bold;
  }

  aside {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    box-shadow: none;
    right: unset;
    transition: none;
    margin-top: 80px;
  }

  .aside-section {
    display: flex !important;
    visibility: visible;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  }

  .div-aside-btn {
    display: none;
  }
  .rightArrow {
    display: none;
  }

  .aside-div-exp-item p {
    display: block;

  }

  #aside-text-ivlp-title, #aside-text-ivlp-years, #aside-text-ivlp-agency, #aside-text-ivlp-place {
    font-size: 18px;
  }

  .aside-div-wf-item-text{
    font-size: 20px;
    font-weight: bold;
  }

  #aside-contact-slogan{
    font-size: 26px;
  }

  .nav-ul-li.active {
    border-color: #00d4d4;
  }
}
