@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}
a {
  text-decoration: none;
}
:root {
  --background: #fff;
}

/*logo color*/
#final-logo {
  fill: #000;
  transition: color 0.5s;
}

#final-logo:hover {
  fill: #02a3d8;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}
a:visited {
  color: #252b41;
}
h2 {color: #252b41;}
h3 {color: #252b41;}
p {
  color: #3d3d3d;
  line-height: 1.8em;
}
/* ==========================================================================
   Start Nav
   ========================================================================== */

/*-- Inspiration taken from abdo steif -->
   /* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
  width: 100%;
  height: 80px;
  position: fixed;
  line-height: 65px;
  text-align: center;
  font-size: 11px;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 2.5rem;
}

.nav div.logo a:hover {
}

.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 55px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #000;
  line-height: 55px;
  font-size: 1.5rem;
}

.nav div.main_list ul li a:hover {
  /*no hover*/
}

.link {
  position: relative;
}

.link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  display: block;
  margin-top: -15px;
  right: 0;
  background: #02a3d8;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
}

.link:hover:after {
  width: 100%;
  left: 0;
  background: #02a3d8;
}

/* Home section */

.home {
  width: 100%;
  height: 100vh;
  background-position: center top;
  background-size: cover;
}

.navTrigger {
  display: none;
}

.nav {
  padding-top: 20px;
  /*padding-bottom: 20px;*/
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 100;
}
.sticky-background {
  background-color: #fff;
  opacity: 0.9;
  filter: blur(2px);
}
/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .navTrigger {
    display: block;
  }
  .nav div.logo {
    margin-left: 15px;
  }
  .nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  .nav div.show_list {
    height: auto;
    display: none;
  }
  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #3b3b3b;
    /*same background color of navbar*/
    background-position: center top;
  }
  .nav div.main_list ul li {
    width: 100%;
    text-align: right;
  }
  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    font-size: 3rem;
    padding: 20px;
    color: #fff;
  }
  .nav div.media_button {
    display: block;
  }
  .link:after {
    background: #fff;
  }
  .link:hover:after {
    background: #fff;
  }
}

/* Animation */

/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #0a0a0a;
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding: 0;
  background-color: #111;
}

.myH2 {
  text-align: center;
  font-size: 4rem;
}

.myP {
  text-align: justify;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 20px;
}

@media all and (max-width: 700px) {
  .myP {
    padding: 2%;
  }
}

/* ==========================================================================
   End Nav
   ========================================================================== */

/*start homepage css*/
<!--.homepage-body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}-->

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

<style media="screen" > *,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/*body{
    background-color: #080710;
}*/
.background {
  width: 330px;
  height: 520px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.background .shape {
  height: 200px;
  width: 200px;
  position: absolute;
  border-radius: 50%;
}
.shape:first-child {
  background: linear-gradient(#1845ad, #23a2f6);
  left: -80px;
  top: -80px;
}
.shape:last-child {
  background: linear-gradient(to right, #ff512f, #f09819);
  right: -30px;
  bottom: -80px;
}

form {
  height: 250px;
  width: 400px;
  background-color: rgba(255, 255, 255, 0.13);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
  padding: 50px 35px;
}

label {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}
.input-container{ 
  padding: 25px 25px;
}
input {
  display: block;
  height: 50px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  border: 1px solid;
  border-color: #494949;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
}
::placeholder {
  color: #e5e5e5;
}
.member_form{ 
	dispay:block; 
	min-height:800px;
    width:auto;
    height:auto;
}
.button {
  transition: all 0.5s ease;
  border: 2px solid #111;
  text-align: center;
  line-height: 1;
  font-size: 17px;
  outline: none;
  color:#000;
}
.button:hover {
  color: #fff;
  background-color: #111;
  cursor: pointer;
  font-weight: 600;
}
.centered-content {
  margin: 0 auto;
  max-width: 1280px;
}

.introduction-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  height: auto;
  border: 1px solid #bababa;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.2);
}
.introduction-block p {
  max-width: 300px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.homepage-banner {
  width: 100%;
  height: 100px;
}
.homepage-info {
  height: auto;
  min-height:1000px;
}

.homepage-text {
  text-align: center;
  padding-top: 10px;
  min-height: 325px;
}
.homepage-text-left {
  text-align: left;
  padding-top: 10px;
  min-height: 325px;
}
.homepage-text-left > H1 {
  font-size: 90px;
  margin-bottom: 32px;
}
.homepage-text > H1 {
  font-size: 90px;
  margin-bottom: 32px;
}

.homepage-text p {
}

.introduction-block-text {
  text-align: center;
}

.introduction-block-text ul {
  padding: 0;
}

.introduction-block-text ul li {
  list-style: none;
}

.featured-projects {
  padding-top: 50px;
  display: grid;
  grid-row-gap: 50px;
}

.homepage-two-col-grid {
 display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.homepage-three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}

.homepage-single-col{
border-style: solid;
border-radius: 20px;
padding-right: 10px;
border-color: #f1f1f1;
border-width: 1px;
background-color: #Fbfbfb;
padding-left: 20px;
-webkit-box-shadow: 0 3px 6px -6px #777;
-moz-box-shadow: 0 3px 6px -6px #777;
     box-shadow: 0 3px 6px -6px #777;
}

.homepage-single-col > p{
	margin-top:4px;
}

svg.home-page-icons {
  width: 80px;
  padding-top: 15px;
}

.homepage-background {
  /*background-color:#e66465;*/
  height: 350px;
  background: rgb(29, 29, 29);
  background: radial-gradient(
    circle,
    rgba(29, 29, 29, 1) 27%,
    rgba(37, 37, 37, 1) 100%
  );
}
.comma-color {
  color:#06A9DF
}

.homepage-two-column-text {padding-left:16px;}
.homepage-two-column-text-block > h2 {
  color: #10161b;
  text-decoration: none;
}
.homepage-two-column-text-block > h2:hover {
  text-decoration: underline;
}
.homepage-two-column-text-block > p {
  color: #575757;
  text-decoration-color: #252b41;
  margin-top: 5px;
  height: 70px;
  max-width:320px;
}
.homepage-two-column-text-block > a > h2:visited {
  text-decoration-color: #252b41;
}
.homepage-two-column-text-block > a > p:visted {
  color: #252b41;
}

.homepage-locked-title { 
    display: grid;
    grid-template-columns: .8fr 30px;
    align-items: center;
}

.homepage-icon-grid{
display:grid;
grid-template-columns: 60px 1fr;
align-items:center;
}
.homepage-img-grid{
width:40px;
}

.homepage-product-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 400px));
  grid-column-gap: 50px;
  background: rgb(255 255 255 / 80%);
  border-radius: 6px;
}
.homepage-suplament-text{
color:#7C7C7C;
}
.homepage-4-product-columns {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 400px));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.homepage-product-img {
  background-color: #f1f1f1;
  border-radius: 6px;
}
.homepage-product-img img {
  width: 400px;
}
.learn-more-button {
  border: 1px solid black;
  padding: 10px;
  padding-right: 10px;
  padding-left: 10px;
  width: 250px;
  text-decoration: none;
  text-align: center;
  color: #000;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 6px -6px #777;
  -moz-box-shadow: 0 4px 6px -6px #777;
  box-shadow: 0 4px 6px -6px #777;
}

.learn-more-button:hover {
  background: rgba(17, 17, 17, 0.1);
  transition: all 0.4s ease 0s;
  border: 2px solid white;
}

.tripple-icon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.homepage_light_gray_text{color:#575757}

.icon-text {
  display: flex;
  justify-content: center;
}
.locked-icon {height:25px;}

.view-work {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
  padding-top: 150px;
}
.view-work > p {
  font-weight: bold;
  margin: 0;
  font-size: 32px;
}
.view-work > a {
  margin: 0;
}
.all-work-link {
  text-decoration: underline;
  color: black;
}
 .word {
      position: absolute;
      display: flex;
      opacity: 0;

      .letter {
        transform-origin: center center 25px;

        &.out {
          transform: rotateX(90deg);
          transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
        }
        &.in {
          transition: 0.38s ease;
        }
        &.behind {
          transform: rotateX(-90deg);
        }
      }
    }
  }
}

.alizarin {
  color: #e74c3c;
}

.wisteria {
  color: #8e44ad;
}

.peter-river {
  color: #3498db;
}

.emerald {
  color: #2ecc71;
}

.sun-flower {
  color: #f1c40f;
}



/*end homepage css*/

/* ==========================================================================
   Resume Page
   ========================================================================== */

.resume-title > h1 {
  margin-bottom: 3px;
}

.resume-wrapper {
  max-width: 1000px;
}

.resume-experience {
  display: grid;
  grid-template-columns: 1fr;
}

.resume-banner {
  width: 100%;
  height: 100px;
}

.resume-company-name {
  font-weight: bold;
}

.resume-company-dates {
  font-style: italic;
}

.resume-padding {
  display: grid;
  grid-template-columns: 0.2fr;
}

.resume-button {
  border: 2px solid #000;
  width: 150px;
  padding: 5px 12px 5px 12px;
  text-decoration: none;
  color: #000;
}

.resume-button:hover {
  background: rgba(17, 17, 17, 0.1);
  transition: all 0.4s ease 0s;
  border: 2px solid white;
}

.resume-hr {
  display: inline-block;
  width: 120px;
  border: 3px solid #000;
  float: left;
}

.resume-title h2 {
  margin-bottom: 0;
}

/* ==========================================================================
  Project Page
   ========================================================================== */
/*.project-banner {background-color: #f1f1f1; text-align: center;}*/
/*.project-text{text-align: center;}*/
h1 {
  font-weight: bold;
  color: #000;
  font-size: 64px;
  margin:0;
}
h2 {
  font-size: 40px;
}
.project-text > h1 {
  font-weight: bold;
  color: #000;
  font-size: 64px;
  margin:0;
}
.project-description-block-color > h2 {
  /*padding-top: 32px;*/
  font-size: 40px;
  margin:0;
}
.project-background {
  background-color: #f1f1f1;
  height: 600px;
}
.project-text-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.project-description-block-color {
  border: solid;
  border-color: #f1f1f1;
  border-width: 1px;
  background-color: #Fbfbfb;
  border-radius: 20px;
  padding: 20px;
  margin-bottom:32px;
-webkit-box-shadow: 0 3px 6px -6px #777;
-moz-box-shadow: 0 3px 6px -6px #777;
     box-shadow: 0 3px 6px -6px #777;
}
.portfolio-description-block {
  display: grid;
  grid-template-columns: 1fr;
}
.portfolio-description-subblock {
}
.portfolio-description-container {
  text-align: left;
  margin: 0;
  display:grid;
}
.portfolio-description-right-block {
  text-align: left;
  flex: 1;
}
.portfolio-description-stats-block {
  display: grid;
  grid: auto-flow dense / 1fr 1fr 1fr 1fr;
}
.portfolio-description-half-block {
  flex: 1;
}
.portfolio-project-stat {
  color: #848484 !important;
  flex: auto;
}
.portfolio-project-stat > strong {
  color: #3d3d3d;
}
.portfolio-responsabilites-subblock {
  padding-bottom: 20px;
  line-height: 1.8em;
}
.portfolio-copy > p {
  color: #3d3d3d;
  line-height: 1.8em;
}
.portfolio-left-copy {
  display: flex;
  gap: 20px;
}
.portfolio-left-flex {
  flex: 1;
}
.portfolio-right-flex {
  flex: 1;
}
/*.portfolio-project-title {font-size: 3.5vh;}*/
.portfolio-project-text-color {
  color: #02a3d8;
}
.portfolio-banner {
  height: 80vh;
}
.portfolio-marketing-banner {
  height: 30vh;
}
.portfolio-full-width-wrapper {
  width: 100%;
}
.portfolio-centered-two-img-wrapper {
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 1em;
}
.portfolio-centered-two-img-wrapper > a > img {
  width: 50%;
}
.portfolio-problem-img-wrapper {
  padding-top: 15px;
  display: grid;
  column-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 300px 300px 300px 300px;
  justify-content: center;
}
/*.portfolio-problem-img-wrapper {
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 1em;
}*/
.portfolio-problem-img-wrapper > a > img {
  width: 90%;
}
.portfolio-problem-img-wrapper > a > p {
  font-size: 12px;
  color: #000;
}
.portfolio-centered-two-hero-img-wrapper {
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  column-gap: 1em;
}
.portfolio-centered-two-hero-img-wrapper > a > img {
  width: 70%;
}
.portfolio-centered-img-wrapper {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  padding-top: 15px;
  text-align:center;
}
.portfolio-centered-img-wrapper > a > img {
  width: 100%;
}
.portfolio-image-title {
  font-size: 18px;
  padding-bottom: 8px;
}
.portfolio-centered-wrapper {
  display: inline-block;
  height: 80vh;
  width: 100%;
  display: flex;
  justify-content: center;
}
.portfolio-two-column-wrapper {
  grid-template-columns: repeat(2, 1fr);
}
.portfolio-two-column-wrapper-project {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.portfolio-section-header {
  padding-top: 30px;
  border-bottom: 6px solid #848484;
  width: 160px;
}
.portfolio-centered-content {
  display: flex;
  align-items: center;
}
.portfolio-next-project {
  text-align: center;
  font-size: 24px;
}
.portfolio-start {
  height: 15vh;
  display: grid;
}
@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 15px, 0);
  }
}


/* ==========================================================================
  all projects block
   ========================================================================== */
.project-three-block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-column-gap: 10px;
  grid-row-gap: 32px;
  padding-bottom: 32px;
}
.all-projects-portfolio-banner {
  height: 10vh;
}
.project-product-img {
  max-width: 310px;
  border-radius:12px;
}
.project-product-img:hover {
  transform:scale(1.05);
}
.projects-hr {
  border-bottom: 8px solid #000;
  width: 100px;
  float: left;
}
.marketing-block {
  padding-top: 40px;
}

/* ==========================================================================
  Footer block
   ========================================================================== */

footer {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.footer-case-study-bg-color {
  background-color: #f9f9f9;
}
.footer-contact {
  text-decoration: underline;
  color:#000;
}
.footer-case-studies {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  text-align: center;
}
.footer-case-studies-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  list-style-type: none;
}
.footer-case-studies-list li {
  list-style-type: none;
  padding:16px;
}
.footer-text {
}

.footer-icons {
  list-style-type: none;
  display: inline-block;
}

.footer-icons li {
  display: inline-block;
}
i.fab {
  color: #02a3d8;
}
