*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

/* Utilities */

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-menu{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 120rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.dark-bg{
  background: #000;
}

.pd-bottom {
  padding-bottom: 9rem;
}

.white-title {
  color: #eee;
  font-weight: 500;
}
.neo-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  width: 100%;
}
/* Main Title */
.main-title {
  font-size: 2rem;
  text-transform: uppercase;
  padding: 1rem 0;
  margin: 5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  width: 100%;
}

.main-title h2 {
  font-size: 4rem;
  color: #333;
  padding: 0 3rem 0 6rem;
  margin-top: 3.5rem;
}
.h3-title {
  font-size: 6rem;
  /* font-style: italic; */
  margin-top: 3.5rem;
  color: #333;
  animation: animate2 4s linear infinite;
}

.grid-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4px;
  background: #000;
}

.flex-content {
  display: flex;
  flex-direction: column;
}
.flex-raw {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  width: auto;
  height: 100%;
  padding: 0 2rem;
}

span {
  font-weight: 800;
  color: #ffcb05;
  text-transform: uppercase;
}

.grey-text {
  font-weight: 500;
  color: #cccccc;
  text-transform: uppercase;
}


/* Progress Bar Web */
.container-progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  padding: 0 3rem;
}

.container-progress-bar h2 {
  color: #fff;
}

.container-progress-bar .skills {
  position: relative;
  display: flex;
  margin: 20px 0;
  padding: 24px 10px 18px;
  background: linear-gradient(#616161 0%, #333 10%, #222);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #000;
  transition: 0.5s;
}

.container-progress-bar .skills:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.container-progress-bar .skills .name {
  position: relative;
  width: 110px;
  text-align: right;
  color: #fff;
  font-weight: normal;
  margin-top: -2px;
  text-transform: uppercase;
}

.container-progress-bar .skills .value {
  position: relative;
  width: 40px;
  text-align: left;
  font-weight: normal;
  color: #fff;
  margin-top: -2px;
  text-transform: uppercase;
}

.container-progress-bar .skills .percent {
  position: relative;
  width: calc(100% - 150px);
  height: 20px;
  margin: 0 10px;
  border-radius: 10px;
  background: #151515;
  box-shadow: inset 0 0 10px #000;
  overflow: hidden;
}

.container-progress-bar .skills .percent .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 2px #000;
  animation: animatepb 4s ease-in-out forwards;
}

@keyframes animatepb {
  from {
    width: 0;
  }
}

.container-progress-bar .skills:nth-child(2) .percent .progress {
  background: linear-gradient(45deg, #2e3192, #00aeef);
}
.container-progress-bar .skills:nth-child(3) .percent .progress {
  background: linear-gradient(45deg, #673ab7, #8778a1);
}
.container-progress-bar .skills:nth-child(4) .percent .progress {
  background: linear-gradient(45deg, #ffcb05, rgb(252, 227, 1));
}
.container-progress-bar .skills:nth-child(5) .percent .progress {
  background: linear-gradient(45deg, #f00048, #d3807d);
}
.container-progress-bar .skills:nth-child(6) .percent .progress {
  background: linear-gradient(45deg, #05c4b4, #33ff00);
}

/* HOVER EFFECT */

.container-progress-bar:hover .skills {
  opacity: 0.2;
}
.container-progress-bar .skills:hover {
  opacity: 1;
}
/* Progress Bar Design */
.container-progress-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  padding: 0 3rem;
}

.container-progress-bars h2 {
  color: #fff;
}

.container-progress-bars .skills {
  position: relative;
  display: flex;
  margin: 20px 0;
  padding: 24px 10px 18px;
  background: linear-gradient(#616161 0%, #333 10%, #222);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #000;
  transition: 0.5s;
}

.container-progress-bars .skills:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.container-progress-bars .skills .name {
  position: relative;
  width: 110px;
  text-align: right;
  color: #fff;
  font-weight: normal;
  margin-top: -2px;
  text-transform: uppercase;
}

.container-progress-bars .skills .value {
  position: relative;
  width: 40px;
  text-align: left;
  font-weight: normal;
  color: #fff;
  margin-top: -2px;
  text-transform: uppercase;
}

.container-progress-bars .skills .percent {
  position: relative;
  width: calc(100% - 150px);
  height: 20px;
  margin: 0 10px;
  border-radius: 10px;
  background: #151515;
  box-shadow: inset 0 0 10px #000;
  overflow: hidden;
}

.container-progress-bars .skills .percent .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 2px #000;
  animation: animatepb 4s ease-in-out forwards;
}

@keyframes animatepb {
  from {
    width: 0;
  }
}

.container-progress-bars .skills:nth-child(2) .percent .progress {
  background: linear-gradient(45deg, #2e3192, #00aeef);
}
.container-progress-bars .skills:nth-child(3) .percent .progress {
  background: linear-gradient(45deg, #f15a29, #ffcb05);
}
.container-progress-bars .skills:nth-child(4) .percent .progress {
  background: linear-gradient(45deg, #662d91, #ec008c);
}

/* HOVER EFFECT */

.container-progress-bars:hover .skills {
  opacity: 0.2;
}
.container-progress-bars .skills:hover {
  opacity: 1;
}

/* Scroll Down */
::-webkit-scrollbar {
  width: 0;
}

#scrollPath {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

#progessbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 15px;
  background: linear-gradient(to top, #008aff, #00ffe7);
  animation: animate 5s linear infinite;
}

@keyframes animate {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
}

#progessbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #008aff, #00ffe7);
  filter: blur(10px);
}

#progessbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #008aff, #00ffe7);
  filter: blur(30px);
}

/* End Scroll */



header {
  width: 100%;
  background-color: #0085a1;
  position: fixed;
  z-index: 5;
}

header.shrink {
  height: 8rem;
  background-color: #05c4b4;
  transition: background-color 0.8s ease-in-out;
}
header.logo {
  height: 8rem;
  background-color: #05c4b4;
  transition: background-color 0.8s ease-in-out;
}

nav {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  background: url('../img/whee_studio_web_logo.png') no-repeat center
    center/cover;
  height: 50px;
  width: 250px;
  display: flex;
  transition: background 1s ease-in-out;
}

.navbar-brand.logo {
  background: url('../img/whee_studio_web_logo_mobile.png') no-repeat center
    center/cover;
  height: 50px;
  width: 250px;
  transition: background 640ms ease-in;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-link {
  font-size: 1.6rem;
  text-decoration: none;
  display: block;
  margin: 0 2rem;
  color: white;
  transform: scale(0);
  transition: transform 650ms;
}

.nav-item {
  position: relative;
  line-height: 8rem;
  transition-delay: 0.5s;
  visibility: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  /* background: #ff4f79; */
  background: #ffcb05;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 650ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger Menu */
.hamburger {
  width: 3.6rem;
  height: 1.8rem;
  position: relative;
  cursor: pointer;
  line-height: 5rem;
  z-index: 1500;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  display: block;
  right: 0;
  transition: all 650ms;
}

.hamburger .line:nth-child(1) {
  top: 0;
}
.hamburger .line:nth-child(2) {
  top: 50%;
  margin-top: -1px;
  width: 2.8rem;
}
.hamburger .line:nth-child(3) {
  top: 100%;
  margin-top: -2px;
  width: 2rem;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
  width: 2rem;
}
.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
  width: 2rem;
}

.nav-list.active .nav-link {
  transform: scale(1);
}

.nav-list.active .nav-item {
  transition-delay: initial;
  visibility: visible;
}

.nav-list.active .nav-item:nth-child(1) .nav-link {
  transition-delay: 0.5s;
}
.nav-list.active .nav-item:nth-child(2) .nav-link {
  transition-delay: 0.4s;
}
.nav-list.active .nav-item:nth-child(3) .nav-link {
  transition-delay: 0.3s;
}
.nav-list.active .nav-item:nth-child(4) .nav-link {
  transition-delay: 0.2s;
}
.nav-list.active .nav-item:nth-child(5) .nav-link {
  transition-delay: 0.1s;
}

/* Reverse Animation */

.nav-list .nav-item:nth-child(1) .nav-link {
  transition-delay: 0.1s;
}
.nav-list .nav-item:nth-child(2) .nav-link {
  transition-delay: 0.2s;
}
.nav-list .nav-item:nth-child(3) .nav-link {
  transition-delay: 0.3s;
}
.nav-list .nav-item:nth-child(4) .nav-link {
  transition-delay: 0.4s;
}
.nav-list .nav-item:nth-child(5) .nav-link {
  transition-delay: 0.5s;
}

/* showcase */

.showcase {
  width: 100vw;
  height: 100vh;
  color: #000;
}

.showcase .showcase-image {
  background: url('../img/web_design_showcase.jpg') no-repeat center
    center/cover;
  width: 100%;
  height: 100%;
  }

.showcase .showcase-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  padding: 0 10rem;
  height: 100%;
  width: 100%;
}



.showcase .showcase-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  height: 100%;
  color: #fff;
  padding: 0;
}

.showcase-container-image{
  display: flex;
  justify-items: center;
  align-items: flex-end;
  margin-bottom:10px;
    }

.showcase-text h1 {
  font-size: 6rem;
  text-align: left;
  color: #f1f1f1;
  margin-bottom: 15px;
  line-height: 5rem;
  padding: 0;
  transition: all 1s;
}

.showcase-text p {
  font-size: 1.7rem;
  line-height: 2rem;
  transition: 0.7s;
  margin-bottom: 30px;
}

.showcase-container-image {
  background: transparent;
}

/* Header Button */

.showcase-bt {
  position: relative;
  width: 200px;
  height: 50px;
  line-height: 48px;
  background: transparent;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  text-decoration: none;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0004);
}

.showcase-bt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #fb0094,
    #00f,
    #0f0,
    #ff0,
    #f00,
    #fb0094,
    #00f,
    #0f0,
    #ff0,
    #f00
  );
  background-size: 400%;
  opacity: 0;
  transition: 0.5s;
  animation: animate1 20s linear infinite;
}

.showcase-bt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #fb0094,
    #00f,
    #0f0,
    #ff0,
    #f00,
    #fb0094,
    #00f,
    #0f0,
    #ff0,
    #f00
  );
  background-size: 400%;
  opacity: 0;
  filter: blur(20px);
  transition: 0.5s;
  animation: animate1 20s linear infinite;
}

.showcase-bt:hover::before,
.showcase-bt:hover::after {
  opacity: 1;
}

@keyframes animate1 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.showcase-bt span {
  position: absolute;
  display: block;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  text-align: center;
  background: #fff;
  color: #0085a1;
  transition: 0.5s;
  z-index: 1;
}

.showcase-bt:hover span {
  color: #30ca97;
}

.showcase-bt span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

.mousebox{
  position:absolute;
  left: 48%;
  display: inline-block;
  line-height: 18px;
  color: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  }
  
  .mousebox .single-box .line{
      position: absolute;
      display: block;
      left: 65%;
      width: 3px;
      height: 19px;
      margin: -8px 0 0 -8px;
      background: #fff;
      animation: animatemouse 2s linear infinite;
  }
  
  .mousebox .single-box{
      position: relative;
      display: block;
      width: 48px;
      height: 100px;
      margin: 0 auto 20px;
      box-sizing: border-box;
      border: 3px solid #fff;
      border-radius: 50px;
  }
  
  @keyframes animatemouse {
      0%{
          opacity: 1;
          top: 29%;
      }
      15%{
          opacity: 1;
          top: 50%;
      }
      50%{
          opacity: 0;
          top: 50%;
      }
      100%{
          opacity: 0;
          top: 29%;
      }
  }


/* Services */

#services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
 }

.services-sub {
  font-size: 2.2rem;
  margin-bottom: 15px;
  /* text-transform: uppercase; */
  color: #333;
  padding: 0 3rem 0 6rem;
  text-align: center;
}

.titlecolor1 {
  color: #ec008c;
}

@keyframes animate2 {
  0% {
    color: #00aeef;
  }
  25% {
    color: #ffcb05;
  }
  50% {
    color: #ec008c;
  }
  100% {
    color: #0085a1;
  }
}

.loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}
.loader:before {
  animation: before 2s infinite;
}
.loader:after {
  animation: after 2s infinite;
}

@keyframes before {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75),
      0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75),
      1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75),
      -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75),
      -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}

/* Core Services */
.core-container {
  position: relative;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 20px;
  padding: 20px 40px;
}

.core-container .core-card {
  position: relative;
  height: 250px;
  background: #0085a1;
  color: #fff;
  display: flex;
  width: 45%;
  margin: 30px 0;
}

.core-container .core-card .imgBX {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2e3192;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.core-card:hover .imgBX {
  width: 150px;
  height: 150px;
  left: -75px;
  top: calc(50% - 75px);
  transition: 0.5s ease-in-out;
  background: #30ca97;
}

.core-container .core-card .imgBX img {
  max-width: 100px;
  transition: 0.5s ease-in-out;
}
.core-container .core-card:hover .imgBX img {
  max-width: 75px;
}

.core-container .core-card .imgBX::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 6em;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.core-container .core-card .content {
  position: absolute;
  right: 0;
  width: calc(100% - 75px);
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.core-container .core-card .content h3 {
  margin-bottom: 10px;
  font-size: 3rem;
}
.core-container .core-card .content p {
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1.8rem;
}

.core-container .core-card .content a {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background: #662d91;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.7rem;
}

.core-container .core-card .content a:hover {
  opacity: 0.8;
}

/* Section 1 */

.other-container {
  position: relative;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-gap: 0 40px;
  padding: 40px 30px;
  font-family: 'Poppins', sans-serif;
}

.other-container .box {
  position: relative;
  height: 410px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
}

.other-container .box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: white;
  transform: skew(2deg, 2deg);
  z-index: -1;
}

.other-container .box:nth-child(1)::before {
  background: linear-gradient(315deg, #ff0057, #05c4b4);
}
.other-container .box:nth-child(2)::before {
  background: linear-gradient(315deg, #89ff00, #006cd4);
}
.other-container .box:nth-child(3)::before {
  background: linear-gradient(315deg, #00aeef, #00caca);
}
.other-container .box:nth-child(4)::before {
  background: linear-gradient(315deg, #ff0000, #ffc107);
}

.other-container .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #f1f1f1;
  opacity: 0.3;
  pointer-events: none;
}

.contents {
  position: relative;
  padding: 1.7rem;
  line-height: 1.8rem;
  transform: translateY(40px);
  z-index: 1;
}

.contents h2 {
  position: absolute;
  top: -60px;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 10em;
  color: #333;
  transition: 0.5s;
}

.box:hover .contents h2 {
  top: -90px;
}

.box .contents h3 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.box .contents p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: 333;
}

.box .contents .boxbtn {
  position: relative;
  margin: 20px 0 0;
  padding: 10px 20px;
  text-decoration: none;
  /* border: 1px solid #ec008c; */
  border: 1px solid darkred;
  color: #333;
  display: inline-block;
  transition: 0.5s;
  transform: translateY(-40px);
  opacity: 0;
  visibility: hidden;
  font-size: 1.7rem;
 }

.box:hover .contents .boxbtn {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.box .contents .boxbtn:hover {
  color: #fff;
  /* background:#03e3ed; */
  background:darkred;
   }


/* Section 2 */
.section2 {
  background: #000;
  padding: 20px 0;
  color: #fff;
}



.a-section-2 {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  margin: 40px 40px;
  color: #03e9f4;
  text-align: center;
  font-size: 2.1rem;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  letter-spacing: 4px;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

a:nth-child(1){
  filter: hue-rotate(0);
  }
a:nth-child(2){
  filter: hue-rotate(270deg);
}
a:nth-child(3){
  filter: hue-rotate(110deg);
}

a:nth-child(4){
  filter: hue-rotate(189deg);
}
.a-section-2:hover {
  background: #03e9f4;
  color: #050801;
  box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 75px #03e9f4,
    0 0 100px #03e9f4;
}

.a-section-2 span {
  position: absolute;
  display: block;
  /* display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.a-section-2 span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: animate21 2s linear infinite;
}

@keyframes animate21 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.a-section-2 span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: animates22 2s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animates22 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}

.a-section-2 span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: animates23 2s linear infinite;
  animation-delay: 0.5s;
}

@keyframes animates23 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}
.a-section-2 span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: animate4 2s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animates24 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}

.section2-p {
  font-size: 2rem;
  margin-top: 5rem;
  padding: 2rem 8rem;
  text-align: justify;
  line-height: 3rem;
}

.ecommerce {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #000;
  padding: 40px 30px;
  color: #fff;
  font-size: 1.8rem;
}
.ecommerce h2 {
  font-size: 15rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
}

.ecommerce h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffcb05;
}

.ecommerce p {
  line-height: 3rem;
  margin-bottom: 3rem;
  font-size: 1.7rem;
}

.ui-ux-img {
  position: relative;
  width: 200px;
  height: 550px;
  background: #000;
  transform: rotate(-30deg) skew(25deg) scale(0.8);
  margin: auto;
  padding: 0 3rem;
}

.ui-ux-img img {
  position: absolute;
  width: 100%;
}

.ui-ux-img img:nth-child(1) {
  opacity: 1;
  z-index: 4;
}
.ui-ux-img img:nth-child(2) {
  opacity: 0.8;
  z-index: 3;
}
.ui-ux-img img:nth-child(3) {
  opacity: 0.6;
  z-index: 2;
}
.ui-ux-img img:nth-child(4) {
  opacity: 0.9;
  z-index: 1;
}

.ui-ux-content p {
  font-size: 1.7rem;
  line-height: 3rem;
}
.ui-ux-content li{
font-size: 1.7rem;
}

.ga-certificate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.ga-content {
  padding: 0 2rem;
}

.creativity-pack-img {
  background: url('../img/creative_peak_whee_studio.jpg') no-repeat center
    center/cover;
  width: 100%;
  height: 1000px;
}

/* section 4 */

#process {
  background: linear-gradient(45deg, #24006b, #f42f8c);
  height: 100%;
  padding: 2rem 0;
}

.cardcontainer {
  /* width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px; */
  /* margin: 50px auto; */

   width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  /* padding: 2rem 1rem; */
}
}

.cardcontainer .card .content h2 {
  font-size: 2.5rem;
  line-height: 2rem;
  
}
.cardcontainer .card .content p {
  font-size: 1.8rem;
  line-height: 2rem;
  margin-top: 20px;
}

.cardcontainer .card {
  position: relative;
  width: 300px;
  height: 400px;
  margin: 4rem ;
  background: white;
  padding: 0;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
}

.cardcontainer .card .face {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardcontainer .card .face.face1 {
  box-sizing: border-box;
  padding: 20px;
}

.cardcontainer .card .face.face1 h2 {
  margin: 0;
  padding: 0;
  font-size:2.5rem;
}

.cardcontainer .card .face.face2 {
  background: #111;
  transition: 0.5s;
}

.cardcontainer .card:hover .face.face2 {
  height: 60px;
}

.cardcontainer .card .face.face2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.cardcontainer .card .face.face2 h2 {
  margin: 0;
  padding: 0;
  font-size: 20rem;
  color: white;
  transition: 0.5s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cardcontainer .card:nth-child(1) .face.face2 {
  background: linear-gradient(45deg, #3503ad, #f7308c);
}
.cardcontainer .card:nth-child(2) .face.face2 {
  background: linear-gradient(45deg, #ccff00, #09afff);
}
.cardcontainer .card:nth-child(3) .face.face2 {
  background: linear-gradient(45deg, #e91e63, #ffeb3b);
}

.cardcontainer .card:hover .face.face2 h2 {
  font-size: 5rem;
}

/* Section 3 Home page */
.container-services-box {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}

.container-services-box .services-box {
  position: relative;
  width: 330px;
  height: 380px;
  background: #fff;
  padding: 100px 40px 60px;
  box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.container-services-box .services-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ec008c;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
}

.container-services-box .services-box:hover::before {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}

.container-services-box .services-box h2 {
  position: absolute;
  left: 40px;
  top: 60px;
  font-size: 8rem;
  font-weight: 800;
  z-index: 1;
  opacity: 0.1;
  transition: 0.5s;
}

.container-services-box .services-box:hover h2 {
  opacity: 1;
  color: #fff;
  transform: translateY(-40px);
}

.container-services-box .services-box h3 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 1rem;
  z-index: 2;
  color: #333;
  transition: 0.5s;
}
.container-services-box .services-box p {
  font-size: 1.7rem;
}

.container-services-box .services-box:hover h3,
.container-services-box .services-box:hover p {
  color: #fff;
}

.container-services-box .services-box p {
  position: relative;
  z-index: 2;
  color: #555;
  transition: 0.5s;
}
/* End of Section 3 Home page */

/* Footer */
footer{
  background: #2e3192;
  background:#fff;
  padding-top: 15rem;
  width: 100%;
  }

.footer-grid{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    text-align: center;
}
.footer-flexbox{
  display: flex;
 justify-content:space-evenly;
padding: 0 3rem;
}

.foot-name-brand h2{
   font-size: 10rem;
  color: #333;
  width: 100%;  
  text-align: center;
}

.contactus-title p{
  font-size: 2.5rem;
  color: #333;
  text-transform: uppercase;
}

.footer-menu li{
  display: inline-block;
  margin: 12rem auto;
}
.footer-menu a {
     color: #333;
    font-size: 2.5rem;
    padding: 0 2rem;
    list-style: none;
    text-decoration: none;
    text-transform: uppercase;
     transition:color .8s ease-out ;
  }

.footer-menu a:hover {
     color: #ffcb05;
     transition:color 1s ease-in-out ;
    
  }


.contact-btn a{
 color: #eee;
 font-size: 1.6rem;
 text-decoration: none;
 padding: 1rem 4rem;
 border: 1px solid #eee;
 border-radius: 5px;
 text-transform: uppercase;
 opacity: .4;
 transition:opacity 2s ease-out ;
}
.contact-btn a:hover{
 color: #ffcb05;
opacity: 1;
transition:opacity .5s ease-in ;
}

.copyright{
   background: linear-gradient(45deg, #24006b, #f42f8c);

  padding: 4rem 0;
}

.copyright p{
  text-align: center;
  font-size: 1.7rem;
  color: #fff;
  
}

/* Back to Top */
.gototop {
  display: none;
  -webkit-animation: hide 350ms ease-out forwards 1;
  animation: hide 350ms ease-out forwards 1;
  padding: 15px 20px;
    border: 0;
  text-align: center;
  font-size: 30px;
  background-color: #05c4b4;
  color: #fff;
  position: fixed;
  bottom: 25px;
  right: 25px;
  box-shadow: 0 2px 10px rgba(6, 196, 180, 0.644);
  -webkit-transition: background-color 100ms ease-in-out;
  transition: background-color 100ms ease-in-out;
  cursor:pointer;
  z-index: 3;
}

.gototop > span {
  display: inline-block;
  color: #fff;
  -webkit-transition: transform 100ms 100ms ease-in-out;
  transition: transform 100ms 100ms ease-in-out;
}

.gototop:hover, .gototop:focus { background-color: #05c4b4; 
border:none;}

.gototop:hover > span, .gototop:focus > span {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border:none;
}

.isvisible {
  -webkit-animation: show 1s ease-out forwards 1;
  animation: show 1s ease-out forwards 1;
}
 @-webkit-keyframes 
hide {  0% {
 opacity: 1;
 -webkit-transform:translateY(0);
}
 25% {
 opacity: .5;
 -webkit-transform: rotate(-3deg) translateY(-40px);
}
 75% {
 -webkit-transform: rotate(3deg);
}
 100% {
 opacity: 0;
 -webkit-transform:translateY(100px);
}
}
@keyframes 
hide {  0% {
 opacity: 1;
 transform:translateY(0);
}
 25% {
 opacity: .5;
 transform: rotate(-3deg) translateY(-40px);
}
 75% {
 transform: rotate(3deg);
}
 100% {
 opacity: 0;
 transform:translateY(100px);
}
}
 @-webkit-keyframes 
show {  0% {
 -webkit-transform: rotate(0deg);
}
 25% {
 opacity: .5;
 -webkit-transform: rotate(-3deg) translateY(-40px);
}
 75% {
 -webkit-transform: rotate(3deg);
}
 100% {
 opacity: 1;
 -webkit-transform: rotate(0deg);
}
}
 @keyframes 
show {  0% {
 transform: rotate(0deg);
}
 25% {
 opacity: .5;
 transform: rotate(-3deg) translateY(-40px);
}
 75% {
 transform: rotate(3deg);
}
 100% {
 opacity: 1;
 transform: rotate(0deg);
}
}


/* Social Media */
.wrapper{
  display: flex;
  justify-items: center;
  align-items: center;
  height: 100%;
  place-items: center;
    font-family: 'Poppins', sans-serif;
    padding: 2rem 5rem;
}

.wrapper .button{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 grid-gap: 5px;
  height: 60px;
  width: 60px;
 margin: 0 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease-out;
}
.wrapper .button:hover{
  width: 200px;
}
.wrapper .button .icon{
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1):hover .icon{
  background: #4267B2;
z-index: 1;
}
.wrapper .button:nth-child(2):hover .icon{
  background: #0072b1;
}
.wrapper .button:nth-child(3):hover .icon{
  background: #03cbcb;
}

.wrapper .button .icon i{
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:hover .icon i{
  color: #fff;

}
.wrapper .button span{
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 1rem;
   transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1) span{
  color: #4267B2;
  padding-right: 3rem;
 }
.wrapper .button:nth-child(2) span{
  color: #0072b1;
  padding-right: 3rem;
}
.wrapper .button:nth-child(3) span{
  color: #03cbcb;
  padding-right: 3rem;
 
}

.wrapper .button a{
text-decoration: none;
color:#03cbcb;
}

/* Showcase web page */

.showcase-wp{
background: darkseagreen;
width: 100vw;
height: 20vh;
}

/* Webpage */
.webpage-header{
 background: url(../img/web-page-mauritius.png) repeat-x;
 width: 100%; 
 height: 300px;
}

.webpage-header-h{
  display: flex;
  justify-content: center;
  align-content: center;
  }

.webpage-header-h h2{
  padding-top: 170px;
  color: #05c4b4;
  width: 100%;
  font-size: 4rem;
  text-transform: uppercase;
}

/*Popup*/
.popup-wrapper{
  background: rgba(0,0,0,0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
}

.popup{
  font-family: arial;
  text-align: center;
  width: 100%;
  max-width: 700px;
  height: 70%;
  margin: 10% auto;
  padding: 20px;
  background: white;
  color: #000;
  position: relative;
}

.popup h2{
  font-size: 3rem;
  color:crimson;
  text-decoration: none;
  padding: 6px 10px;
  margin-bottom: 2rem;
}

.popup-close{
  position: absolute;
  top: 5px;
  right: 8px;
  cursor: pointer;
font-size: 3rem;
}

.webpage-container{
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
  padding: 5rem  3rem;
}

.webpage-container p {
  font-size: 1.7rem;
}