@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */

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

::selection {
  background-color: #4b2c81;
  color: white;
}

[data-aos] {
  will-change: transform, opacity;
}

/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */


body {
  width: 100%;
  height: 100%;
  background: #080114;
  text-align: center;
  cursor: none;

  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;

  h1,
  h2 {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  p {
    line-height: 1.8rem;
  }

  a {
    cursor: none;
  }

  button {
    cursor: none;
  }


  /*---------------------------------------------------------------------------------*/
  /*---------------------------------------------------------------------------------*/
  /*CURSOR*/

  #cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 201;

    will-change: transform;
  }

  #custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 200;

    transform-origin: center;
    transition: transform 0.1s ease;
    will-change: transform;
  }

  /*---------------------------------------------------------------------------------*/
  /*---------------------------------------------------------------------------------*/

}

.no-scroll {
  position: fixed !important;
  overflow: hidden !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.no-scroll_mbn {
  overflow: hidden !important;
}


.glassmosfirms_blur {
  backdrop-filter: blur(4.6px);
  -webkit-backdrop-filter: blur(4.6px);
}

.glassmosfirms {
  background: linear-gradient(135deg, #8c73ef1c 0%, #d775fb3d 100%);
  border: 1px solid #505050;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 34%);
}




/*BTN HOVER*/

.hover_galaxy {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hover_galaxy::before {
  content: '';
  background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.hover_galaxy:hover::before {
  opacity: 1;
}


/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*LOAD*/

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #080114;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 9999;
  transition: opacity 1s ease;
  opacity: 0;
  pointer-events: none;
}

#cir01 {
  animation: rotate360 5s linear infinite;
  transform-origin: center;
}

#cir02 {
  animation: rotate360 12s linear infinite;
  transform-origin: center;
}

#cir03 {
  animation: rotate360 25s linear infinite;
  transform-origin: center;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



#loader.fade-in {
  opacity: 1;
  pointer-events: none;

  #center {
    opacity: 1;
    animation: show 0.5s ease-in-out;
  }

  #orblin01,
  #pla01 {
    opacity: 1;
    transform: scale(1);
    animation: fadeIn 1s ease-in-out;
    transform-origin: center;
  }

  #orblin02,
  #pla02 {
    opacity: 1;
    transform: scale(1);
    animation: fadeIn 1.5s ease-in-out;
    transform-origin: center;
  }

  #orblin03,
  #pla03 {
    opacity: 1;
    transform: scale(1);
    animation: fadeIn 2s ease-in-out;
    transform-origin: center;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  30% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    transform: scale(0);
  }

  85% {
    transform: scale(1.05);
  }
}


#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}


/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*PARALAX*/



.parallax-container {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  perspective: 1000px;
  overflow: hidden;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
}

.layer:nth-child(1) {
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  opacity: 0.7;
  transform-origin: center;
}




#prx_home {
  .layer:nth-child(1) {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #080114 85%),
      url('images/bg_fundo.webp');
  }
}

#prx_sec2 {
  .layer:nth-child(1) {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #080114 85%),
      url('images/bg_sec2.webp');
  }
}

#prx_sec3 {
  .layer:nth-child(1) {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #080114 85%),
      url('images/bg_sec3.webp');
  }
}

#prx_sec4 {
  .layer:nth-child(1) {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #080114 85%),
      url('images/bg_sec4.webp');
  }
}

#prx_sec5 {
  .layer:nth-child(1) {
    transform-origin: bottom;
    background-position: bottom;
    background-image:
      linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #080114 85%),
      url('images/bg_sec5.webp');
  }
}

#prx_sec5::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, #080114 100%);
  z-index: 10;
}

.vinheta_top::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #08011400 0%, #08011400 50%, #080114e6 80%, #080114 95%);
  z-index: 9999;
}

.vinheta_bottom::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #08011400 0%, #08011400 70%, #080114e6 85%, #080114 95%);
  z-index: 9999;
}


/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*NOME*/



.galaxy-text {
  font-weight: bold !important;
  background: linear-gradient(270deg, #aa8af5, #ffaee8, #85c2f8, #d1a9f6);
  background-size: 800% 800%;
  animation: galaxyMove 7s ease infinite;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-align: center !important;
}

@keyframes galaxyMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*BOTÃO_GALAXY*/



.galaxy-button {
  padding: 1rem 2rem;
  color: white;
  background: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.galaxy-button::before {
  content: '';
  background: linear-gradient(135deg, #3a1c71 0%, #d76d77 25%, #ffaf7b 50%, #d76d77 75%, #3a1c71 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  z-index: -1;
  transition: transform 0.3s ease-in-out;
}

.galaxy-button:hover::before {
  transform: translateX(-50%);
}



/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*NAVBAR*/

.btn_nav {
  position: relative;
  color: white;
  font-weight: bold;
  background: none;
  border: none;
  font-family: "Manrope", sans-serif;
  transition: all 0.5s ease;
}

.btn_nav::before,
.btn_nav.active::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #548bcf, #e87b86, #e1a37b);
  transition: 0.3s ease-in-out;
}

.btn_nav:hover::before,
.btn_nav.active::before {
  width: 100%;
}




.nav {
  position: fixed;
  height: auto;
  margin: 1rem 0;
  width: calc(100% - 2rem);
  max-width: 2000px;
  padding: 1rem 3rem;
  top: -50px;
  left: 50%;
  transform: translate(-50%, -50px);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease;

  span {
    font-weight: bold;
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.3rem;
  }

  #nav_buttons {
    display: flex;
    gap: 2rem;
  }

}

.nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 50px);
}


.menu-icon {
  position: fixed;
  opacity: 0;
  top: -60px;
  right: 2rem;
  width: 30px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  transition: all 1s ease;
  z-index: 10001;
}

.menu-icon.visible {
  opacity: 1;
  transform: translateY(calc(60px + 2rem));
}

.menu-icon span {
  height: 4px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-icon.open span:nth-child(1) {
  transform: translateY(10.8px) rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: translateY(-10.8px) rotate(-45deg);
}



/*NAVBAR MOBILE*/

.nav-mb {
  display: none;
  position: fixed;
  height: auto;
  margin: 1rem 0;
  width: calc(100% - 2rem);
  padding: 1rem;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 10001;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease;

  #nav_buttons_mb {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
}

.sel_mb {
  position: fixed !important;
  opacity: 0;
  top: -3rem;
  left: 2rem;
  display: none;
  transition: all 1s ease;
  z-index: 10001;
}
.nav-mb.visible + .sel_mb{
  opacity: 1;
  top: 2rem;
}


.nav-mb.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -20px);
}

#back_pop {
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #080114ea;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  transition: 0.5s ease;

  svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7rem;
    height: 7rem;
  }
}

#back_pop.visible {
  opacity: 1;
  width: 100%;
  height: 100%;
  background-color: #080114ea;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}


/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*nav-arrow*/

#nav-arrows {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.5s ease;
  z-index: 101;
}

.nav-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  transition: all 0.5s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.nav-arrow::before {
  content: '';
  background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.nav-arrow.ativo::before {
  opacity: 1;
}

/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*langSelect*/

.langSelect {
  position: relative;
  width: 100px;
  color: #fff;
  font-size: 14px;
  user-select: none;
}

.langSelect .selected {
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1;
}

.langSelect .options {
  position: absolute;
  list-style: none;
  top: 100%;
  left: 0;
  width: 100%;
  background: #222;
  border: 1px solid #444;
  border-radius: 8px;
  margin-top: 4px;
  display: block;
  opacity: 0;
  transition: 0.3s ease;
  transform: translateY(-10px);
  z-index: 0;
  visibility: hidden;
  pointer-events: none;
}

.langSelect .options.active {
  transform: translateY(0);
  opacity: 1;

  visibility: visible;
  pointer-events: auto;
}

.langSelect .options li {
  padding: 8px 12px;
}

.langSelect .options li:hover {
  background: #333;
}



/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*CONTEUDO*/

main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

#content_bv {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: 100%;
  position: absolute;
  justify-content: center;
}


section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.sec_cont {
  padding: 8rem 6rem 5rem;
  margin: 0 3rem;
  gap: 3rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;

  .title {

    display: flex;
    flex-direction: column-reverse;
    align-items: center;

    h1 {
      margin-bottom: 0;
      padding-top: 0.7rem;
      /*
    border-bottom: 1px solid white;
    */
      font-size: 2rem !important;
    }

    .title_dt {
      display: flex;
      align-items: center;
      gap: 1rem;

      svg {
        height: 1.5rem;
        width: 1.5rem;
      }

      div {
        width: 3rem;
        height: 1px;
        background-color: white;
      }
    }

  }

  .cont_wraper {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
}

#sec2 {
  display: flex;

  #content_sec2 {
    text-align: left;

    p {
      text-align: justify;
    }

    #cont_dth_sec2 {
      #abl {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;

        span {
          min-width: 13rem;
          text-align: center;
          padding: 1rem 2rem;
        }
      }
    }
  }

  aside:nth-child(2) {
    position: relative;
    background-image: url(images/bg_sec2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    .parallax-container {
      height: 100%;
    }
  }

  aside:nth-child(2)::after {
    content: "";
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(8, 1, 20, 0.432) 15%, rgba(8, 1, 20, 0.678) 25%, rgba(8, 1, 20, 0.892) 45%, #080114 65%);
    z-index: 1;
  }
}

#sec3 {
  display: flex;

  #content_sec3 {
    #exp_list {
      display: flex;
      flex-direction: column;

      .exp {
        display: flex;

        .exp_head {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-end;
          padding: 2rem;
          flex: 1;
          font-size: 1.3rem;
          font-weight: bold;
        }

        .exp_det {
          flex: 3;
          text-align: left;
          padding: 2rem;
          border-left: 1px solid white;

          .span_cont {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
          }

          h2 {
            margin: 0 0 1rem;
          }

          p {
            margin-top: 2rem;
          }
        }
      }
    }
  }

}

#sec4 {
  display: flex;
  justify-content: flex-end;

  #content_sec4 {
    gap: 5rem;

    .proj_list {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(2, minmax(0, 1fr));

      .proj {
        padding: 2rem;
        text-align: left;

        a {
          color: #9874ff;
        }

        .proj_img {
          width: 100%;
          height: 7rem;
          position: relative;
          overflow: hidden;
          margin-bottom: 1rem;
          border-radius: 8px;

          img {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
          }
        }

        .proj_ref {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          margin-top: 1rem;

          .ref {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3rem 0;

            a {
              position: relative;
              text-decoration: none;
              color: white;
            }

            a::before {
              content: '';
              position: absolute;
              width: 100%;
              height: 2px;
              border-radius: 2px;
              left: 50%;
              top: 110%;
              transform: translateX(-50%);
              background: linear-gradient(135deg, #548bcf, #e87b86, #e1a37b);
              transition: 0.3s ease-in-out;
            }
          }
        }

        .tecno_proj {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
          margin-top: 3rem;

          .tecno_p {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;

            .span_cont {
              padding: 0.5rem 1rem;
              font-size: 0.8rem;
              border-radius: 4px;
            }
          }
        }
      }
    }
  }
}

#sec5 {
  display: flex;

  #content_sec5 {
    padding-bottom: 0px;

    .cont_wraper {
      height: 100%;
      justify-content: space-between;

      h3 {
        font-weight: normal;
        font-size: 1.2rem;
      }
    }

    #social {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;

      a {
        position: relative;
        width: 4rem;
        height: 4rem;
        padding: 0.7rem;

        svg {
          width: 100%;
          height: 100%;

          path {
            fill: white;
          }
        }
      }
    }

    footer {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      color: rgba(255, 255, 255, 0.482);
      padding: 2rem;
    }
  }
}


/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------*/

/*MOBILE*/

@media (hover: hover) and (pointer: fine) {
  .nav-arrow:hover::before {
    opacity: 1;
  }
}


@media (hover: none) and (pointer: coarse) {

  #custom-cursor,
  #cursor-dot {
    display: none;
  }
}

@media (max-width: 1200px) {
  main {
    gap: 0rem !important;
  }

  .sec_cont {
    padding: 8rem 0 5rem;
    margin: 0 2rem !important;

    .cont_wraper {
      padding: 0 !important;
    }
  }

  .proj_list {
    grid-template-columns: none !important;
  }

  #prx_sec5 {
    .layer:nth-child(1) {
      transform-origin: bottom;
      background-position: bottom;
      background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #080114 85%),
        url('images/bg_sec5_mb.webp') !important;
    }
  }

  #prx_sec5::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%, #080114 100%) !important;
  }
}

@media (max-width: 800px) {

  .sec_cont .title h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.3rem !important;
  }

  .vinheta::before {
    background-image: linear-gradient(to top, #08011400 0%, #08011400 70%, #080114d0 80%, #080114 95%) !important;
  }


  .nav {
    padding: 1rem;

    #nav_buttons, .langSelect {
      display: none !important;
    }
  }

  .nav-mb {
    display: flex;
  }

  .sel_mb{
    display: block;
  }

  .menu-icon {
    display: flex !important;
  }

  #cont_dth_sec2 #abl {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center !important;
    align-items: center !important;

    span {
      min-width: inherit !important;
      padding: 1rem !important;
      font-size: 0.9rem !important;
    }
  }

  .exp {
    flex-direction: column;

    .exp_head {
      border-right: 1px solid white;
    }

    .exp_det {
      padding: 2rem 2rem 2rem 0 !important;
      border-right: 1px solid white;
      border-left: none !important;
    }
  }

  .proj {
    padding: 1rem !important;
  }


  #sec5 h3 {
    font-size: 1rem !important;
  }

  #social a {
    width: 3rem !important;
    height: 3rem !important;
  }

  footer {
    padding: 1rem !important;
    font-size: 0.7rem;
    gap: 0.3rem !important;
  }


}