@import url("https://fonts.googleapis.com/css2?family=Cabin&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
}

div {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.padding-section {
  padding: 0 20vw;
}

.button {
  padding: 14px 40px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.button:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #e60a80;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

#title-section {
  width: 100%;
  padding-top: 265px;
  padding-bottom: 265px;
  background-image: url("../img/pattern-15.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: -2;
}

#title-section .title {
  font-family: "Quicksand", sans-serif;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.3em;
  font-weight: 700;
  margin: 0;
}

#title-section .overlay {
  width: 60%;
  height: 100%;
  position: absolute;
  margin: 0 20%;
  top: 0;
  left: 0;
  z-index: -1;
}

#title-section .overlay .icon-one {
  position: absolute;
  left: 6%;
  top: 35%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
  -webkit-animation: 3s zoom-fade linear infinite;
          animation: 3s zoom-fade linear infinite;
}

#title-section .overlay .icon-two {
  position: absolute;
  left: 6%;
  top: 65%;
  width: 91px;
  height: 99px;
  background-repeat: no-repeat;
  -webkit-animation: 3s left-right linear infinite;
          animation: 3s left-right linear infinite;
}

#title-section .overlay .icon-three {
  position: absolute;
  left: 26%;
  top: 35%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
}

#title-section .overlay .icon-four {
  position: absolute;
  left: 48%;
  top: 35%;
  width: 101px;
  height: 101px;
  background-repeat: no-repeat;
  -webkit-animation: 3s zoom-fade linear infinite;
          animation: 3s zoom-fade linear infinite;
}

#title-section .overlay .icon-five {
  position: absolute;
  left: 48%;
  top: 65%;
  width: 64px;
  height: 60px;
  background-repeat: no-repeat;
  -webkit-animation: 15s rotate linear infinite;
          animation: 15s rotate linear infinite;
}

#title-section .overlay .icon-six {
  position: absolute;
  right: 3%;
  top: 25%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
  -webkit-animation: 3s left-right linear infinite;
          animation: 3s left-right linear infinite;
}

#projects-section {
  width: 100%;
}

#projects-section h4 {
  position: relative;
  font-size: 18px;
  color: #2200bd;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
  font-family: "Cabin", sans-serif;
  margin-bottom: 12px;
  text-align: center;
  float: left;
  width: 100%;
  margin-bottom: 65px;
}

#projects-section h5 {
  float: left;
  width: 100%;
  margin: 0;
}

#projects-section h5 ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  text-align: center;
}

#projects-section h5 ul li {
  position: relative;
  display: inline-block;
  color: #777777;
  padding: 0px 12px 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  margin: 0px 10px 8px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  font-family: "Quicksand", sans-serif;
}

#projects-section h5 ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #e60a80;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 0px;
}

#projects-section h5 ul li::after {
  position: absolute;
  content: '/';
  right: -14px;
  top: 1px;
  font-size: 14px;
  color: #222222;
}

#projects-section h5 ul li:hover::before {
  width: 100%;
}

#projects-section h5 ul li.active {
  color: #222222;
}

#projects-section h5 ul li.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #e60a80;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
}

#projects-section .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#projects-section .wrapper .card {
  margin: 1.6%;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  max-width: 30%;
}

#projects-section .wrapper .card > div {
  width: 100%;
  position: relative;
}

#projects-section .wrapper .card > div img {
  width: 100%;
  border-radius: 10px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#projects-section .wrapper .card > div:hover .overlay,
#projects-section .wrapper .card > div:hover .arrow-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  pointer-events: all;
}

#projects-section .wrapper .card > div:hover .overlay {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

#projects-section .wrapper .card > div:hover .arrow-link {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#projects-section .wrapper .card > div .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  opacity: 0;
  pointer-events: none;
  border-radius: 10px;
}

#projects-section .wrapper .card > div .overlay i:not(.fa-arrow-right) {
  font-size: 18px;
  padding: 16px;
  background-color: #06009c;
  color: #fff;
  cursor: pointer;
  position: relative;
  margin: 0 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects-section .wrapper .card > div .overlay i:not(.fa-arrow-right)::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: calc(50% + 3px);
  left: calc(50% + 3px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects-section .wrapper .card > div .overlay i:not(.fa-arrow-right):hover {
  background-color: #fff;
  color: #06009c;
}

#projects-section .wrapper .card > div .overlay i:not(.fa-arrow-right):hover::after {
  top: calc(50% + 2px);
  left: calc(50% + 2px);
  background-color: #06009c;
}

#projects-section .wrapper .card > div .arrow-link {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  text-decoration: none;
  position: absolute;
  bottom: -30px;
  right: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  opacity: 0;
  pointer-events: none;
}

#projects-section .wrapper .card > div .arrow-link:hover {
  background-color: #06009c;
}

#projects-section .wrapper .card > div .arrow-link:hover .fa-chevron-right {
  color: #fff;
}

#projects-section .wrapper .card > div .arrow-link .fa-chevron-right {
  font-size: 20px;
  color: #06009c;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#projects-section .wrapper .card > h3 {
  margin: 0;
  margin-top: 25px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  font-family: "Quicksand", sans-serif;
}

#projects-section .wrapper .card > h3 a {
  text-decoration: none;
  color: #222222;
}

.sperataor {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 10px;
  height: 5px;
  margin-left: -5px;
  background-color: #2200bd;
}

.sperataor::after {
  position: absolute;
  content: "";
  left: -20px;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #e60a80;
}

.sperataor::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #e60a80;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
}

@keyframes left-right {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}

@media (max-width: 1450px) {
  .padding-section {
    padding: 0 10vw;
  }
  #title-section .overlay {
    width: 80%;
    margin: 0 10%;
  }
}

@media (max-width: 1000px) {
  .padding-section {
    padding: 0 3vw;
  }
  #title-section .overlay {
    width: 94%;
    margin: 0 3%;
  }
}

@media (max-width: 900px) {
  #title-section {
    padding: 140px 0px 225px;
  }
  #title-section .title {
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  #projects-section .wrapper .card {
    margin: 1%;
    margin-bottom: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 48%;
            flex: 1 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 500px) {
  #projects-section .wrapper .card {
    margin: 0;
    margin-bottom: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
/*# sourceMappingURL=portfolio.css.map */