*,
:after,
:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.body {
  background-color: #FF9A8B;
  background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 150vh;
  margin: -20px 0 50px;

}


.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.header__logo {
  position: relative;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  font-weight: 600;
  height: 48px;
  line-height: 48px;
}

.nav-bar {
  position: relative;
}

.menu {
  position: relative;
  display: flex;
  list-style: none;
}

.menu__link {
  font-size: 18px;
  text-decoration: none;
  background: linear-gradient(to bottom,
      #ff5f6d 0%, #e95662 100%);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 40px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  font-weight: 600;
  border-bottom: 0.5px solid #ff5967;
  -webkit-box-shadow: inset 0 0 0.9px 2px #d14853,
    inset 0px 2px 0.9px 2px #ff5967;
  box-shadow: inset 0 0 0.9px 2px #d14853,
    inset 0px 2px 0.9px 2px #ff5967;
  display: inline-block;
  margin-right: 20px;
}

.header__btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 20px;
}



.text {
  fill: none;
  font-size: 5rem;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-dasharray: 70 330;
  stroke-dashoffset: 0;
  -webkit-animation: stroke 6s infinite linear;
  animation: stroke 6s infinite linear;
  
}

.text:nth-child(5n+1) {
  stroke: #ffffff;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.text:nth-child(5n+2) {
  stroke: #ffffff;
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}

.text:nth-child(5n+3) {
  stroke: #E9F1DF;
  -webkit-animation-delay: -3.6s;
  animation-delay: -3.6s;
}

.text:nth-child(5n+4) {
  stroke: #ffffff;
  -webkit-animation-delay: -4.8s;
  animation-delay: -4.8s;
}

.text:nth-child(5n+5) {
  stroke: #ffffff;
  -webkit-animation-delay: -6s;
  animation-delay: -6s;
}

@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: -400;
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: -400;
  }
}






.list-social {
  position: absolute;
  bottom: 40px;
  left: 100px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.list-social__item {
  list-style: none;
  display: inline-block;
  margin-right: 1.0rem;
}

.list-social__link {
  display: block;
  line-height: 40px;
  position: relative;
  font-size: 20px;
  background: #fff;
  height: 40px;
  width: 40px;
  transition: all 200ms;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.24);
}

.list-social__link:after {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -4px;
  left: -4px;
  content: '';
  display: block;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  background: #ff5f6d;
  z-index: -2;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.14);
}

.list-social__i:hover {
  color: #5f9cff;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.fa-linkedin {
  color: #0e26ff;
}

:root {
  --primary: #555BFF;
  --secondary: #22D2A0;
  --background: white;
  --green: #1FC11B;
  --yellow: #FFD913;
  --orange: #FF9C55;
  --red: #FF5555;
}

.card {
  background-color: var(--background);
  display: block;
  width: 300px;
  min-height: 90px;
  border: 3px solid var(--primary);
  padding: 0px;
  margin: calc(50vh - 30px) auto 0 auto;
  box-shadow: 10px -10px 0 -3px var(--background), 10px -10px var(--green),
    20px -20px 0 -3px var(--background), 20px -20px var(--yellow),
    30px -30px 0 -3px var(--background), 30px -30px var(--orange),
    40px -40px 0 -3px var(--background), 40px -40px var(--red);
  transition: box-shadow 1s, top 1s, left 1s;
  position: relative;
  top: -302px;
  left: 33vw;
  cursor: pointer;

}

.card:hover {
  top: -342px;
  left: 580px;
  box-shadow: 0 0 0 -3px var(--background), 0 0 0 0 var(--green),
    0 0 0 -3px var(--background), 0 0 0 0 var(--yellow),
    0 0 0 -3px var(--background), 0 0 0 0 var(--orange),
    0 0 0 -3px var(--background), 0 0 0 0 var(--red);
}

.card p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-weight: bolder;
}

.card h2 {
  font-size: 14px;
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-weight: normal;
  font-weight: bolder;

}



svg {
  margin-top: 20vh;
  width: 80vw;
  
}


::-webkit-scrollbar {
  width: 12px;
  background: rgb(95, 111, 145);
  background: radial-gradient(circle, #FF9A8B 0%, #FF6A88 100%);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.scrollable {
  width: 100%;
  height: 500%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cardcomp {
  width: 280px;
  height: 360px;
  background: linear-gradient(45deg, #ffcc00 0%, #00a2ff 100%);
  margin: 40px 30px;
  padding: 5px;
  position: relative;
  transition: 0.5s;
}

.cardcomp:hover {
  transform: translatey(-20px);
}

.cardcomp::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  filter: blur(30px);
}

.cardcomp:nth-child(1)::before,
.cardcomp:nth-child(1) {
  background: linear-gradient(45deg, #f55003 0%, #00a2ff 100%);
}

.cardcomp:nth-child(2)::before,
.cardcomp:nth-child(2) {
  background: linear-gradient(315deg, #03a9f4 0%, #ff0058 100%);
}

.cardcomp:nth-child(3)::before,
.cardcomp:nth-child(3) {
  background: linear-gradient(315deg, #4dff03 0%, #00d0ff 100%);
}

.cardcomp span {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.content {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(0, 0, 0, 0.05) 50%);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px 20px;
}

.content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.content p {
  margin-bottom: 20px;
}

.content a {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  background: #F5A503;
  color: #ffffff;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 20px;
}


/* MENU BURGER */
#menu-burger {
  width: 50px;
  height: 50px;
  background: #e95662;
  
  border-radius: 50%;
  position: absolute;
  top: 0vh;
  cursor: pointer;
  z-index: 2000;
}

#menu-burger .menu-icon {
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -1px;
}

#menu-burger .menu-icon:after {
  content: '';
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -5px;
  transition: 0.35s;
}

#menu-burger .menu-icon:before {
  content: ' ';
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
    position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: 4px;
    transition: 0.35s;
}

#menu-burger .menu-icon.open:before{
  transform: rotate(45deg);
  margin-top: -1px;
  background: #e95662;
}

#menu-burger .menu-icon.open:after{
  transform: rotate(-45deg);
  margin-top: -1px;
  background: #e95662;
}

#menu-burger.open {
  background: #fff;
}

#menu-burger .menu-icon.open {
  background: #fff;
}

#overlay-menu {
  position: fixed;
  background: #000;
  height: 100%;
  width: 100%;
  top: 0vh;
  opacity: 0.85;
  z-index: 1000; 
  right: -100%;
  transition: 0.35s;
}

#overlay-menu.open {
  right: 0%;
}

#overlay-menu nav {
  height: 60%;
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 32px;
  text-align: center;
}

#overlay-menu nav ul {
  display: inline-block;
  margin: auto;
  height: 100%;
}

#overlay-menu nav ul li {
  position: relative;
  color: #fff;
  margin-bottom: 20px;
}

#overlay-menu nav ul li a {
  color: #fff;
  text-shadow: 0px 1px 0 #4a6868, 0px 2px 0 #405959, 0px 3px 0 #354a4a, 0px 0px 0px hsla(0,0%,0%,0), -4px 4px 6px black;
}

#overlay-menu nav ul li a:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  height: 3px;
  width: 0%;
  background: #fff;
  transition: 0.25s;
}

#overlay-menu nav ul li a:hover:after {
  width: 100%;
  background: #e95662;
}



/* ===========================
      Responsive
  ============================ */

@media (max-width: 991px) {
  .body {

    background-color: #FF9A8B;
    background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 200vh;
    margin: -20px 0 50px;

  }

  svg {
    width: 60rem;
    margin-top: 20vh;
    padding-bottom: 10vh;
    margin-left: 2vh;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 20px 50px;
  }

  .body {

    background-color: #FF9A8B;
    background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 250vh;
    margin: -20px 0 50px;

  }

  svg {
    width: 50rem;
    margin-top: 20vh;
    padding-bottom: 10vh;
    margin-left: 2vh;
  }
}




@media (max-width: 500px) {
  .header__btn-menu {
    margin-right: 0;
  }

  .masthead-img__1 {
    padding-top: 40px;
    max-width: 320px;
  }
}

@media (max-width: 400px) {
  .menu__link {
    padding: 10px 30px;
    margin-right: 10px;
  }

  .masthead-content {
    top: 40px;
  }

  .masthead__link {
    padding: 5px 25px;
    height: 55px;
  }

  .masthead__link:after {
    padding: 32px 129px;
  }
}

@media (max-width: 320px) {
  .header {
    padding: 20px 26px;
  }

  .header__logo {
    font-size: 21px;
  }

  .masthead {
    padding: 121px 34px 111px;
  }

  .masthead__link {
    height: 55px;
  }
}