*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Kumbh Sans", sans-serif;
}


.navbar{
background: #131313;
height: 80;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
position: sticky;
top: 0;
z-index: 999;
}

.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.navbar__container a{
text-decoration: none;
color: white;
}

#navbar__logo{
background-color: rgb(0, 255, 0);
background-image: linear-gradient(to top, cyan 0%, darkblue 100%);
background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
display: flex;
align-items: center;
cursor: pointer;
text-decoration: none;
font-size: 2rem;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}


.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 16px;
  background-color: inherit;
  margin: 0;
}

/* Add a blue background color to navigation links on hover */
.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: black;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  display: none;
  position: absolute;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: black;
  width: 100%;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: middle;
  color: white;
  text-decoration: underline;
  padding: 10px;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
}

/* 3D Models*/
#container3D{
  position: absolute;
  width: 100px;
  height: 100px;
}

.button{
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
height: 40%;
width: 40%;
border: none;
outline: none;
border-radius: 4px;
background-color: green;
color: aliceblue;
}

.button:hover{
    background-color: #0037ff;
    transition: all 0.3s ease;
}

.navbar__links:hover{
    color: #0037ff;
    transition: all 0.3s ease;
}
/* MOBILE RESPONSVIE */
@media screen and (max-width: 960px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: #131313;
    }

    .navbar__menu.active{
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }
  

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item{
        width: 100%;
    }

    .navbar__links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
    }

    .navbar__btn{
        padding-bottom: 2rem;
    }

    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 80px;
        margin: 0;
        
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1){
     transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* HERO SECTION CSS */
.main{
    background-color: #141414;
}

.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 95vh;
    background-color: #141414;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content h1{
font-size: 4rem;
background-color: crimson;
background-image: linear-gradient(to top, cyan 0%, darkblue 100%);
background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

.main__content h2{
    font-size: 4rem;
    background-color: crimson;
    background-image: linear-gradient(to top, #ff890f 0%, darkblue 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    }
    
.main__content p{
    font-size: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.main__btn{
    font-size: 1rem;
    background-image: linear-gradient(to top, cyan 0%, darkblue 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main__btn a{
    position: relative;
    z-index: 2;
    color: black;
    text-decoration: none;
}

.main__btn:after{
position: absolute;
content: '';
top: 0;
left: 0;
width: 0;
height: 100%;
background: grey;
transition: all 0.35s;
border-radius: 4px;
}

.main__btn:hover{
color: white;
}

.main__btn:hover:after{
width: 100%;
}

.main__img--container{
text-align: center;
}


#main__img{
    height: 80%;
    width: 80%;
}

.polaroid {
  margin-left: 10%;
  width: 80%;
  background-color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 10%;
  }

  .polaroid img {
    width: 100%;
  }

  .polaroid h4 {
    color: white;
    text-align: center;
    padding: 10px 20px;
  }

  .polaroid a {
    color: white;
  }

/* MOBILE RESPONSVIE */
@media screen and (max-width: 768px) {
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        height: 95vh;
    }

    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 3rem;
    }

    .main__content p{
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .polaroid{
      width: 70%;
      margin-bottom: 10;
  }
}

/* MOBILE RESPONSVIE */
@media screen and (max-width: 480px) {
    .main__content h1{
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2{
        font-size: 2rem;
    }

    .main__content p{
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .main__btn{
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* SERVICES */
.services {
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .services h1 {
    background-color: #ff8177;
    background-image: linear-gradient(
      to right,
      #ff8177 0%,
      #ff867a 0%,
      #ff8c7f 21%,
      #f99185 52%,
      #cf556c 78%,
      #b12a5b 100%
    );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 2.5rem;
  }
  
  .services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .services__card {
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.6) 100%
      ),
      url('images/project_one.png');
    background-size:contain;
    position: relative;
    color: #fff;
    background-size: cover;
  }
  
  .services__card:before {
    opacity: 0.2;
  }
  
  .services__card:nth-child(2) {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.9) 100%
      ),
      url('images/project_two.PNG');
  }

  .services__card:nth-child(3) {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.9) 100%
      ),
      url('images/project_three.PNG');
  }

  .services__card:nth-child(3) h3{
  color: #ff0000;
  position: absolute;
  top: 430px;
  left: 30px;  
}
  
  .services__card h2 {
    position: absolute;
    top: 400px;
    left: 30px;
  }
  
  .services__card p {
    position: absolute;
    top: 400px;
    left: 30px;
  }
  
  .services__card button {
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #ffffff;
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1rem;
  }
  
  .services__card button:hover {
    cursor: pointer;
  }
  
  .services__card:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
  }

  /* MOBILE RESPONSVIE */
  @media screen and (max-width: 960px) {
    .services {
      height: 1600px;
    }
  
    .services h1 {
      font-size: 2rem;
      margin-top: 15rem;
    }
  }
  
  /* MOBILE RESPONSVIE */
  @media screen and (max-width: 480px) {
    .services {
      height: 1400px;
    }
  
    .services h1 {
      font-size: 1.2rem;
    }
  
    .services__card {
      width: 300px;
    }
  }


/* FOOTER CSS */
.footer__container {
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  
  .footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: left;
  }
  
  .footer__link--wrapper {
    display: flex;
  }
  
  .footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 200px;
    box-sizing: border-box;
  }
  
  .footer__link--items h2 {
    margin-bottom: 16px;
  }
  
  .footer__link--items > h2 {
    color: #fff;
  }
  
  .footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }
  
  .footer__link--items a:hover {
    color: #303030;
    transition: 0.3s ease-out;
  }
    

  /* MOBILE RESPONSVIE */
  @media screen and (max-width: 820px) {
    .footer__links {
      padding-top: 2rem;
    }
  
  
    .website__rights {
      margin-bottom: 2rem;
    }
  
    .footer__link--wrapper {
      flex-direction: column;
    }
  

  }
  
  /* MOBILE RESPONSVIE */
  @media screen and (max-width: 480px) {
    .footer__link--items {
      margin: 0;
      padding: 10px;
      width: 100%;
    }
  }
  

/* 3D Models */
  .models__main{
    background-color: #141414;
  }
  
  .models__container{
    
    margin: 0 auto;
   
    background-color: #141414;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
  }
  
  .models__content h1{
  font-size: 4rem;
  background-color: crimson;
  background-image: linear-gradient(to top, cyan 0%, darkblue 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  }
  
  .models__content h2{
    font-size: 4rem;
    background-color: crimson;
    background-image: linear-gradient(to top, #0fff13 0%, darkblue 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    padding-bottom: 20px;
    }
    
  .models__content p{
    padding:  10px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
  }
  
  .models__paragraph{
    text-align: center;
  }

  /* PROJECT PAGES CSS */
.proj__main{
  background-color: #141414;
}

.proj__container{
  
  margin: 0 auto;
 
  background-color: #141414;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.proj__content h1{
font-size: 4rem;
background-color: crimson;
background-image: linear-gradient(to top, cyan 0%, darkblue 100%);
background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

.proj__content h2{
  font-size: 4rem;
  background-color: crimson;
  background-image: linear-gradient(to top, #0fff13 0%, darkblue 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  padding-bottom: 20px;
  }
  
.proj__content p{
  padding:  10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.proj__paragraph{
  text-align: center;
}

.proj__paragraph h4{
  color: #ff0000;
  font-size: 2rem;
}

/* MOBILE RESPONSVIE */
@media screen and (max-width: 768px) {
  .proj__container{
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto;
      height: 95vh;
  }

  .proj__content{
      text-align: center;
      margin-bottom: 4rem;
  }

  .proj__content h1{
      font-size: 2.5rem;
      margin-top: 2rem;
  }

  .proj__content h2{
      font-size: 3rem;
  }

  .proj__content p{
      margin-top: 1rem;
      font-size: 1.5rem;
  }

  .container{
    width: 40%;
  }

  .trailer{
    width: 560px;
    height: 315px;
  }

}

/* MOBILE RESPONSVIE */
@media screen and (max-width: 480px) {
  .proj__content h1{
      font-size: 2rem;
      margin-top: 3rem;
  }

  .proj__content h2{
      font-size: 2rem;
  }

  .proj__content p{
      margin-top: 2rem;
      font-size: 1.5rem;
  }

  .trailer{
    width: 360px;
    height: 215px;
  }

}



  /* IMAGE SLIDESHOW */

  /* Position the image container (needed to position the left and right arrows) */
.container {
  position:relative;
  width: 80%;
  left: 10%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: white;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  right: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}




/* ABOUT ME */
.aboutme{
  background-color: #141414;
}

.aboutme__container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 180vh;
  background-color: #141414;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}


  
.aboutme__content p{
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
}



.aboutme__img--container{
text-align: center;
padding-bottom: 20px;
border-radius: 10%;

}


#aboutme__img{
  height: 80%;
  width: 70%;
}

/* MOBILE RESPONSVIE */
@media screen and (max-width: 768px) {
  .aboutme__container{
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto;
      height: 1100px;
  }

  .aboutme__content{
      text-align: center;
      margin-bottom: 4rem;
  }


  .aboutme__content p{
      margin-top: 1rem;
      font-size: 1rem;
  }



}





