* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  text-align: center;
  background: rgb(244, 245, 247);
  background: linear-gradient(90deg, rgba(244, 245, 247, 1) 0%, rgba(223, 224, 226, 1) 100%);
}

.hi {
  font-size: 5rem;
  font-family: 'Mr De Haviland', cursive;
}

h1 {
  font-size: 10rem;
  font-family: 'Mr De Haviland', cursive;
}

h2 {
  font-size: 2rem;
  font-family: 'Overpass', sans-serif;
  font-weight: 200;
}

p {
  font-size: 1.12rem;
  font-family: 'Overpass', sans-serif;
  font-weight: 400;
}

#home {
  background-color: #313131;
}

section {
  padding-top: 60px !important;
}

.welcome-txt {
  padding-top: 15%;
  padding-bottom: 10%;
  width: auto;
  height: auto;
  margin: auto;
}

.parallax {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.parallax-two {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.bgOne {
  background-image: url('https://images.pexels.com/photos/1629236/pexels-photo-1629236.jpeg?cs=srgb&dl=pexels-suzy-hazelwood-1629236.jpg&fm=jpg');
  background-color: #3e1772 !important;
}

.nav-link {
  color: #3e1772 !important;
}

.separation-arrow {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 5%, 50% 100%, 0 5%);
  background-color: #313131;
  height: 150px;
}


.welcome-title::before {
  content: attr(data-text);
  filter: blur(10px) brightness(0);
  animation: flicker 2s linear forwards;
  animation-delay: 1s;
  position: absolute;

}
@keyframes flicker{
  0% {filter: blur(5px) brightness(1)}
  3% {filter: blur(5px) brightness(0)}
  6% {filter: blur(5px) brightness(0)}
  7% {filter: blur(5px) brightness(1)}
  8% {filter: blur(5px) brightness(0)}
  9% {filter: blur(5px) brightness(1)}
  10% {filter: blur(5px) brightness(0)}
  20%{filter: blur(5px) brightness(1)}
  50%{filter: blur(5px) brightness(1)}
  99% {filter: blur(5px) brightness(0)}
  100% {filter: blur(5px) brightness(1)}
}



.circle {
  width: 180px;
  height: 180px;
  border-radius: 100px;
  position: relative;
  margin: 10px auto 0 auto;
}

.scroll-down{
  height: 50px;
  width: 30px;
  border: 2px solid rgb(255, 255, 255);
  position: absolute;
  left: 50%;
  bottom: 20px;
  border-radius: 50px;
  cursor: pointer;
}
.scroll-down::before,
.scroll-down::after{
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform:translate(-50%, -100%) rotate(45deg);
  border: 2px solid black;
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s ease-in-out infinite;
}
.scroll-down::before{
  top: 30%;
  animation-delay: .3s;
  animation: scroll-down 1s ease-in-out infinite;
}
@keyframes scroll-down{
  0%{
    opacity: 0;
  }
  30%{
    opacity: 1;
  }
  60%{
    opacity: 1;
  }
  100%{
    top:90%;
    opacity:0;
  }
}

.fa-award,
.fa-envelope,
.fa-concierge-bell,
.fa-user-astronaut {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff;
  font-size: 70px;
}

.fa-behance-square,
.fa-paper-plane,
.fa-linkedin,
.fa-github,
.fa-tv,
.fa-figma {
  font-size: 70px;
}

.img-logo {
  width: 100px;
}

.link-color {
  color: #3e1772;
}

.portfolio .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.portfolio .portfolio-item .portfolio-link .portfolio-hover {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 21, 145, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity ease-in-out 0.25s;
}

.portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 1.25rem;
  color: white;
}

.portfolio .portfolio-item .portfolio-link:hover .portfolio-hover {
  opacity: 1;
}

.portfolio .portfolio-item .portfolio-caption {
  padding: 1.5rem;
  text-align: center;
  background-color: rgb(255, 255, 255);
}

.portfolio .portfolio-item .portfolio-caption .portfolio-caption-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.portfolio-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.portfolio-modal .modal-content {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.portfolio-modal .modal-content h2 {
  font-size: 3rem;
  line-height: 3rem;
}

.portfolio-modal .modal-content p.item-intro {
  font-style: italic;
  margin-bottom: 2rem;
}

.portfolio-modal .modal-content p {
  margin-bottom: 2rem;
}

.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 2rem;
}

.portfolio-modal .modal-content img {
  margin-bottom: 2rem;
}

.portfolio-modal .close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  background-color: transparent;
}

.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}

.nav-link.active {
  border-radius: 2px;
  border-bottom: 3px solid #3e1772;
}


/**************
*    Mobile   *
**************/
@media screen and (max-width: 600px) {
  .hi {
    font-size: 3.5rem;
  }

  .welcome-name {
    font-size: 8rem;
  }
  .welcome-title {
    font-size: 1.5rem;
  }

}
