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

h1, h2, h3, h4, h5, h6, p, i, a {
  font-family: Montserrat, sans-serif;
  color: white;
}

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

li {
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
  background-color: #06000c;
}

html {
  background-image: radial-gradient(circle 800px at 1% 3%, #44148a 0%, #1d0933 30%, rgba(6, 0, 12, 0) 100%), radial-gradient(closest-corner circle at 92% 25%, #44148a 0%, #1d0933 30%, rgba(6, 0, 12, 0) 100%), radial-gradient(circle 25rem at 40% 80%, #37136d 0%, #1d0933 30%, #000000 100%);
  background-attachment: fixed;
}

.eye {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  background: #CCC;
}

.eye:after { /*pupil*/
  position: absolute;
  bottom: 17px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  content: " ";
}

.primary-button {
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
}
.primary-button i {
  color: #000000;
  margin-inline-end: 0.5rem;
}
.primary-button:hover {
  background-color: #6550ad;
  color: white !important;
  transition: all 1s ease;
}
.primary-button:hover i {
  transition: all 1s ease;
  color: #ffffff;
}

.big-button {
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000000;
  background-color: #ffffff;
}
.big-button i {
  margin-inline-end: 0.5rem;
}
.big-button:hover {
  background-color: #6550ad;
  color: white !important;
  transition: all 0.2s ease;
}

@media (min-width: 1000px) {
  .big-button {
    padding: 2rem 3rem;
    border-radius: 5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    background-color: #ffffff;
  }
  .big-button i {
    margin-inline-end: 0.5rem;
  }
  .big-button:hover {
    background-color: #6550ad;
    color: white !important;
    transition: all 0.2s ease;
  }
}
.section {
  border-block-start: 1px solid #37343a;
  background-color: rgba(0, 0, 0, 0.6039215686);
}
.section .container {
  max-width: 1280px;
  margin: auto;
  padding: 3rem 1rem;
}
.section .container .heading {
  color: #ffffff;
  font-size: 1.5rem;
  margin-block-end: 3rem;
}

@media (min-width: 768px) {
  .section .container {
    max-width: 720px;
    padding: 3rem 1rem;
  }
  .section .container .heading {
    color: #ffffff;
    padding-right: 0rem;
    margin-block-end: 2rem;
  }
}
@media (min-width: 1024px) {
  .section .container {
    max-width: 1280px;
    padding: 3rem 1rem;
  }
  .section .container .heading {
    color: #ffffff;
    padding-right: 0rem;
    margin-block-end: 2rem;
  }
}
@media (min-width: 1400px) {
  .section .container {
    max-width: 1400px;
    padding: 5rem 1rem;
  }
  .section .container .heading {
    color: #ffffff;
    padding-right: 0rem;
  }
}
.header-section {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 98;
  background-color: transparent;
}
.header-section .navbar {
  justify-content: center;
}
.header-section .navbar .navbar-container {
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-section .navbar .navbar-container .pagename a h1 {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
}
.header-section .navbar .navbar-container .menu {
  display: none;
}
.header-section .navbar .navbar-container .menu-cta {
  display: none;
}
.header-menu-sticky {
  display: none;
}

@media (min-width: 768px) {
  .header-section {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 98;
    background-color: transparent;
  }
  .header-section .navbar {
    justify-content: center;
  }
  .header-section .navbar .navbar-container {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-section .navbar .navbar-container .pagename a h1 {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
  }
  .header-section .navbar .navbar-container .menu {
    display: none;
  }
  .header-section .navbar .navbar-container .menu-cta {
    display: none;
  }
  .header-menu-sticky {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header-section {
    position: fixed;
  }
  .header-section .navbar {
    padding: 2.5rem 1.5rem;
    margin: auto;
  }
  .header-section .navbar .navbar-container {
    padding: 0 1rem;
    justify-content: space-between;
  }
  .header-section .navbar .navbar-container .pagename a {
    text-decoration: none;
  }
  .header-section .navbar .navbar-container .pagename a h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
    color: white;
  }
  .header-section .navbar .navbar-container .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .header-section .navbar .navbar-container .menu a {
    text-decoration: none;
    color: white;
    margin: 0 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
  }
  .header-section .navbar .navbar-container .menu a:hover {
    color: #9f8bdf;
  }
  .header-section .navbar .navbar-container .menu-cta {
    display: inline-block;
  }
  .header-section .navbar .navbar-container .menu-cta .button-cta {
    border: 1px solid white;
    padding: 0.75rem 2.2rem;
    border-radius: 5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    color: black;
    background-color: white;
  }
  .header-section .navbar .navbar-container .menu-cta .button-cta:hover {
    background-color: transparent;
    border: 1px solid white;
    color: white !important;
  }
  .header-menu-sticky {
    display: block;
    transition: all 0.2s;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.205);
    z-index: 99;
  }
}
.navbar-mobile {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem 1rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100 !important;
  background-color: #000000;
  border-block-start: 1px solid #37343a;
}
.navbar-mobile a {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.navbar-mobile a i {
  font-size: 1.5rem;
  font-weight: 300;
  padding-bottom: 0.5rem;
  color: #ffffff;
}
.navbar-mobile a p {
  font-size: 0.7rem;
  color: #ffffff;
}

@media (min-width: 1000px) {
  .navbar-mobile {
    display: none;
  }
}
.pagehero-section .pagehero-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  min-height: 70vh;
}
.pagehero-section .pagehero-container .pagehero-container-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  order: 2;
}
.pagehero-section .pagehero-container .pagehero-container-child h1 {
  font-size: 2rem;
  color: white;
  padding-top: 3rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.pagehero-section .pagehero-container .pagehero-container-child h2 {
  font-size: 0.9rem;
  color: white;
  text-align: left;
  font-weight: 400;
  text-align: center;
  margin-block-end: 2rem;
}
.pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50rem;
  background-color: #6550ad;
}
.pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons a i {
  font-size: 1.2rem;
  color: #ffffff;
}
.pagehero-section .pagehero-container .pagehero-container-img {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.pagehero-section .pagehero-container .pagehero-container-img img {
  width: 280px;
}

@media (min-width: 768px) {
  .pagehero-section {
    min-height: 100vh;
  }
  .pagehero-section .pagehero-container {
    margin: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 1rem;
    justify-content: center;
  }
  .pagehero-section .pagehero-container .pagehero-container-child {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .pagehero-section .pagehero-container .pagehero-container-child h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
  }
  .pagehero-section .pagehero-container .pagehero-container-child h2 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  .pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50rem;
    background-color: #6550ad;
  }
  .pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons a i {
    font-size: 1.5rem;
    color: #ffffff;
  }
  .pagehero-section .pagehero-container .pagehero-container-img {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .pagehero-section .pagehero-container .pagehero-container-img img {
    width: 550px;
  }
}
@media (min-width: 1024px) {
  .pagehero-section .pagehero-container {
    margin: auto;
    grid-template-columns: 1fr 55%;
    grid-template-rows: auto;
    padding: 0 1rem;
    justify-content: center;
  }
  .pagehero-section .pagehero-container .pagehero-container-child {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .pagehero-section .pagehero-container .pagehero-container-child h1 {
    font-size: 4.2rem;
    color: white;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 700;
  }
  .pagehero-section .pagehero-container .pagehero-container-child h2 {
    font-size: 1.5rem;
    color: white;
    text-align: left;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50rem;
    background-color: #6550ad;
  }
  .pagehero-section .pagehero-container .pagehero-container-child .pagehero-container-icons a i {
    font-size: 1.2rem;
    color: #ffffff;
  }
  .pagehero-section .pagehero-container .pagehero-container-img {
    order: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
  }
  .pagehero-section .pagehero-container .pagehero-container-img img {
    width: 90%;
  }
}
.footer-section .footer-container {
  padding: 0 1rem;
}
.footer-section .footer-container .footer-container-box {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer-section .footer-container .footer-container-box img {
  width: 15rem;
  margin-block-end: 2rem;
}
.footer-section .footer-container .footer-container-box h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-block-end: 2rem;
  font-weight: 500;
  text-align: center;
}
.footer-section .footer-container .footer-container-box a {
  text-align: center;
  margin-block-end: 2.5rem;
}
.footer-section .footer-container .footer-container-box p {
  color: #ffffff;
  padding: 0 1rem;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.6;
}
.footer-section .footer-container .footer-container-box p a {
  font-weight: 600;
  margin-inline-start: 0.5rem;
  color: #ffffff;
  text-align: center;
}

.footer-bottom-section .footer-bottom-container {
  padding: 0;
  padding-bottom: 4.5rem;
}
.footer-bottom-section .footer-bottom-container .footer-container-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .footer-section .footer-container {
    padding: 0 1rem;
  }
  .footer-section .footer-container .footer-container-box {
    padding: 7rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-section .footer-container .footer-container-box img {
    width: 15rem;
    margin-block-end: 2rem;
  }
  .footer-section .footer-container .footer-container-box h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-block-end: 2rem;
    font-weight: 500;
    text-align: center;
  }
  .footer-section .footer-container .footer-container-box a {
    margin-block-end: 2.5rem;
  }
  .footer-section .footer-container .footer-container-box p {
    color: #ffffff;
  }
  .footer-section .footer-container .footer-container-box p a {
    font-weight: 600;
    margin-inline-start: 0.5rem;
  }
  .footer-bottom-section .footer-bottom-container {
    padding-bottom: 5rem;
  }
  .footer-bottom-section .footer-bottom-container .footer-container-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
  }
  .footer-bottom-section .footer-bottom-container .footer-container-social a i {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-section .footer-container {
    padding: 0 1rem;
  }
  .footer-section .footer-container .footer-container-box {
    padding: 7rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-section .footer-container .footer-container-box img {
    width: 15rem;
    margin-block-end: 2rem;
  }
  .footer-section .footer-container .footer-container-box h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-block-end: 2rem;
    font-weight: 500;
    text-align: center;
  }
  .footer-section .footer-container .footer-container-box a {
    margin-block-end: 2.5rem;
  }
  .footer-section .footer-container .footer-container-box p {
    color: #ffffff;
  }
  .footer-section .footer-container .footer-container-box p a {
    font-weight: 600;
    margin-inline-start: 0.5rem;
  }
  .footer-bottom-section .footer-bottom-container {
    padding: 0;
  }
  .footer-bottom-section .footer-bottom-container .footer-container-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
  }
}
.project-section .project-container {
  min-height: auto;
  display: flex;
  align-items: center;
}
.project-section .project-container .project-container-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}
.project-section .project-container .project-container-box .project-container-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-section .project-container .project-container-box .project-container-img figure {
  position: relative;
}
.project-section .project-container .project-container-box .project-container-img figure .project-number-left {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #000000;
}
.project-section .project-container .project-container-box .project-container-img figure .project-number-left p {
  font-size: 1.5rem;
  font-weight: 500;
}
.project-section .project-container .project-container-box .project-container-img figure .project-number-right {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #000000;
}
.project-section .project-container .project-container-box .project-container-img figure .project-number-right p {
  font-size: 1.5rem;
  font-weight: 500;
}
.project-section .project-container .project-container-box .project-container-img figure img {
  width: 100%;
}
.project-section .project-container .project-container-box .project-container-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.project-section .project-container .project-container-box .project-container-text .project-container-text-description {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  color: #ffffff;
  font-size: 0.85rem;
  padding-bottom: 3rem;
}
.project-section .project-container .project-container-box .project-container-text .project-container-text-main h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  margin-block-end: 2rem;
}
.project-section .project-container .project-container-box .project-container-text .project-container-text-main .project-container-text-skills {
  display: flex;
  margin-block-end: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-section .project-container .project-container-box .project-container-text .project-container-text-main .project-container-text-skills p {
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  border: 1px solid #ffffff;
}
.project-section .project-container .project-container-box .project-container-text .project-container-text-main p {
  color: #ffffff;
  line-height: 1.6;
}
.project-section .project-container .project-container-box .project-container-text .project-container-text-main p a {
  font-weight: 600;
  text-decoration: underline;
}
.project-section .project-container .project-container-box .orden1 {
  order: none;
}
.project-section .project-container .project-container-box .orden2 {
  order: none;
}

@media (min-width: 768px) {
  .project-section .project-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .project-section .project-container .project-container-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .project-section .project-container .project-container-box .project-container-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .project-section .project-container .project-container-box .project-container-img figure {
    position: relative;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-left {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #000000;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-left p {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-right {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #000000;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-right p {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .project-section .project-container .project-container-box .project-container-img figure img {
    width: 100%;
  }
  .project-section .project-container .project-container-box .project-container-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-description {
    display: flex;
    justify-content: flex-start;
    gap: 5rem;
    color: #ffffff;
    font-size: 0.85rem;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-block-end: 2rem;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main .project-container-text-skills {
    display: flex;
    margin-block-end: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main .project-container-text-skills p {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    border: 1px solid #ffffff;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main p {
    color: #ffffff;
    line-height: 1.6;
  }
}
@media (min-width: 1024px) {
  .project-section .project-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .project-section .project-container .project-container-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .project-section .project-container .project-container-box .project-container-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .project-section .project-container .project-container-box .project-container-img figure {
    position: relative;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-left {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #000000;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-left p {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-right {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #000000;
  }
  .project-section .project-container .project-container-box .project-container-img figure .project-number-right p {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .project-section .project-container .project-container-box .project-container-img figure img {
    width: 100%;
  }
  .project-section .project-container .project-container-box .project-container-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-description {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    color: #ffffff;
    font-size: 0.85rem;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    margin-block-end: 2rem;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main .project-container-text-skills {
    display: flex;
    margin-block-end: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main .project-container-text-skills p {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    border: 1px solid #ffffff;
  }
  .project-section .project-container .project-container-box .project-container-text .project-container-text-main p {
    color: #ffffff;
    line-height: 1.6;
  }
  .project-section .project-container .project-container-box .orden1 {
    order: 1;
  }
  .project-section .project-container .project-container-box .orden2 {
    order: 2;
  }
}
.skills-section .skills-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skills-section .skills-container .skills-container-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: start;
  gap: 1rem;
}
.skills-section .skills-container .skills-container-box .skills-container-maintext h2 {
  font-size: 0.85rem;
  margin-block-end: 2rem;
  text-transform: uppercase;
  font-weight: 400;
}
.skills-section .skills-container .skills-container-box .skills-container-maintext h3 {
  font-size: 2rem;
  margin-block-end: 2rem;
}
.skills-section .skills-container .skills-container-box .skills-container-maintext p {
  font-size: 1rem;
  margin-block-end: 2rem;
  line-height: 1.6;
}
.skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 0;
}
.skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item:not(:last-child) {
  border-bottom: 1px solid #37343a;
}
.skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-icon img {
  height: 45px;
}
.skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-tittle {
  width: 50%;
}
.skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-tittle h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
.skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-description {
  width: 40%;
}
.skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-description P {
  font-weight: 500;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .skills-section .skills-container {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .skills-section .skills-container .skills-container-box {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .skills-section .skills-container .skills-container-box .skills-container-maintext h2 {
    font-size: 0.85rem;
    margin-block-end: 2rem;
    text-transform: uppercase;
    font-weight: 400;
  }
  .skills-section .skills-container .skills-container-box .skills-container-maintext h3 {
    font-size: 3rem;
    margin-block-end: 2rem;
  }
  .skills-section .skills-container .skills-container-box .skills-container-maintext p {
    font-size: 1rem;
    margin-block-end: 2rem;
    line-height: 1.6;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 1rem 0;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item:not(:last-child) {
    border-bottom: 1px solid #37343a;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-icon img {
    height: 55px;
    margin-inline-start: 1rem;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-tittle {
    width: 90%;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-tittle h4 {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-description P {
    font-weight: 500;
    font-size: 0.85rem;
  }
}
@media (min-width: 1024px) {
  .skills-section .skills-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .skills-section .skills-container .skills-container-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 3rem;
  }
  .skills-section .skills-container .skills-container-box .skills-container-maintext h2 {
    font-size: 0.85rem;
    margin-block-end: 2rem;
    text-transform: uppercase;
    font-weight: 400;
  }
  .skills-section .skills-container .skills-container-box .skills-container-maintext h3 {
    font-size: 3rem;
    margin-block-end: 2rem;
  }
  .skills-section .skills-container .skills-container-box .skills-container-maintext p {
    font-size: 0.85rem;
    margin-block-end: 2rem;
    line-height: 1.6;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 1rem 0;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item:not(:last-child) {
    border-bottom: 1px solid #37343a;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-icon img {
    height: 55px;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-tittle {
    width: 50%;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-tittle h4 {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .skills-section .skills-container .skills-container-box .skills-container-list .skills-container-item .skills-description P {
    font-weight: 500;
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=style.css.map */