@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

*{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #16c59d;
}
/*color-change background*/
body {
	background: linear-gradient(-45deg, #000000, #2b073d, #000000, #16c59d);
	background-size: 400% 400%;
	animation: gradient 8s ease infinite;
	height: 140vh;
    color: #16c59d;
}
@keyframes gradient {
	0% {
		background-position: 0% 50% ;
	}
	50% {
		background-position: 100% 50% ;
	}
	100% {
		background-position: 0% 50% ;
	}
}
#header{
    width: 100%;
    background-image:url(../Images/GinMidoSmallV3.png);
    height: 50vh;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 50px;
}
.navbar-nav li a{
    float:right;
    color: #16c59d;
}
  ul li a:hover {
    color: #1998dd!important;
    box-shadow: 0 0 5px #d1d4d6!important;
    text-shadow: 0 0 10px #10fff7!important;
  }
.navbar-brand img
{
    width: 150px;
}
.navbar-toggler
{
    border: none!important;
    outline: none!important;
    color: #16c59d;
}
nav .fa-bars
{
    font-size: 26px;
    color: #16c59d;
}
nav .dropdown
{
    color: #16c59d;
}
nav .dropdown-menu
{
    background-color: #00000000;
}
 .dropdown-menu:hover
 {
    background-color: #00000000;
 }
 .dropdown-item:hover
 {
    background-color: #00000000;
 }
nav #dropdownMenuButton
{
    background-color: #00000000;
    border: none;
}
/*Welcome text*/
.welcome
{
    padding: 50px 100px;
    margin-top: -140px;
    background-color:#00000065;
    box-shadow: 0 0 20px 7px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}
.welcome h1
{
    color: #6c1097;
}
.welcome .home-btn
{
    color: rgb(255, 255, 255);
    background-color: #2b073d;
}
 .gallery-upload .home-btn
{
    color: rgb(255, 255, 255);
    background-color: #2b073d;
}
.glow
{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px auto;
    width: 250px;
    height: 100px;
    border-radius: 75px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 2px;
    transition: 1s box-shadow;
}
.glow:hover {
    box-shadow: 0 5px 35px 0px rgba(0,0,0,.1);
  } 
  .glow:hover::before, .glow:hover::after {
    
    display: block;
    content: '';
    position: absolute;
    width: 250px;
    height: 100px;
    background: #7205a9;
    border-radius: 75px;
    z-index: -1;
    animation: 0.5s clockwise infinite;
  } 
  .glow:hover:after {
    background: #16c59d;
    animation: 1s counterclockwise infinite;
  } 
  @keyframes clockwise {
    0% {
      top: -5px;
      left: 0;
    }
    12% {
      top: -2px;
      left: 2px;
    }
    25% {
      top: 0;
      left: 5px;    
    }
    37% {
      top: 2px;
      left: 2px;
    }
    50% {
      top: 5px;
      left: 0;    
    }
    62% {
      top: 2px;
      left: -2px;
    }
    75% {
      top: 0;
      left: -5px;
    }
    87% {
      top: -2px;
      left: -2px;
    }
    100% {
      top: -5px;
      left: 0;    
    }
  }
  @keyframes counterclockwise {
    0% {
      top: -5px;
      right: 0;
    }
    12% {
      top: -2px;
      right: 2px;
    }
    25% {
      top: 0;
      right: 5px;    
    }
    37% {
      top: 2px;
      right: 2px;
    }
    50% {
      top: 5px;
      right: 0;    
    }
    62% {
      top: 2px;
      right: -2px;
    }
    75% {
      top: 0;
      right: -5px;
    }
    87% {
      top: -2px;
      right: -2px;
    }
    100% {
      top: -5px;
      right: 0;    
    }
  }
.welcome .btn:focus
{
    box-shadow: none;
}
/*About*/
#about
{
    padding-top: 100px;
    padding-bottom: 100px;
}
#about .col-md-6
{
    padding: 80px 10px;
}
#about h3 
{
    margin: 20px auto;

}
/*Categories*/
#categories
{
    
    padding-top: 80px;
    padding-bottom: 80px;
    color: rgb(255, 241, 241);
}
#categories .col-md-4
{
    padding: 20px;
    background-color: #000000a3;
}
 .zoom-in
{
    transform: scale(1);
    transition: 0.3s ease-in;
}
 .zoom-in:hover
{
    transform: scale(2);
 
}
#categories .col-md-4 h4
{
    padding: 50px;
}
#categories .col-md-4 img
{
    width: 50px;
    
}
#categories .col-md-4 p
{
    padding: 5px;
    text-align: left;
}
/*Features*/
#features
{
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(../Images/MetalGinMidosmall.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #16c59d;    
}
#features .col-md-6 img
{
    display: flex;
    justify-content: center;
    width: 300px;
}
#features .col-md-6
{
    padding: 80px;
}
.feature-box 
{
    height: 120px;
}
.feature-box .feature-left
{
    height: 120px;
    width: 20%;
    float: left;
}
.feature-box .feature-left .fa
{
    padding-top: 13px;
    font-size: 50px;
}
.feature-box .feature-right
{
    height: 120px;
    width: 80%;
    float: left;
}
.feature-box .feature-right h4
{
    padding-top: 10px;
    padding-left: 15px;
    text-align: left;
}
.feature-box .feature-right p
{
    padding-left: 15px;
    text-align: center;
}
/*footer*/
#footer
{
   
    margin-top: 20px;
    color: #ffffff;
    
}
#footer .col-md-3
{
    background-color: #00000000;
    
} 
.footer-logo
{
    width: 150px;
    margin-top: 25px;
    margin-bottom: 15px;
}
#footer h1
{
    font-size: 15px;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 25px; 
}
#footer p
{
    font-size: 12px;
    text-align: left;
 
}
#footer .city
{
    margin-left: 37px;
}
#footer .row .fa
{
    padding-right: 20px;
    font-size: 15px;
}
#footer hr
{
    margin-top: 10px;
}
#footer .copyright
{
    margin-bottom: -80px;
    text-align: center;
    font-size: 15px;
}
/*Cube*/

.thinkBox
{
    display: flex;
    justify-content: center;
}

.thinkText
{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}
.cube
{
    margin: 200px;
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    
    animation: animate 4s linear infinite;
}
@keyframes animate
{
    0%
    {
        transform: rotateX(-30deg) rotateY(0deg);
    }
    100%
    {
        transform: rotateX(-30deg) rotateY(360deg);
    }
}
.cube div
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.cube div span
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#151515, #7a791f);
    transform: rotateY(calc(90deg * var(--i))) translateZ(150px);
}
.top
{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: #222;
    transform: rotateX(90deg) translateZ(150px);
}
.top::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: #7dce14;
    transform: translateZ(-380px);
    filter: blur(20px);
    box-shadow: 0 0 120px rgba(0, 255, 0, 0.2),
     0, 0, 200px, rgba(0,255,0,0.4),
     0, 0, 300px, rgba(0,255,0,0.6),
     0, 0, 400px, rgba(0,255,0,0.8),
     0, 0, 500px, rgba(0,255,0,1);

}
/*gallery*/
.gallery-upload
{
    display: flex;
    justify-content: center;
    
    
}
.gallery-links h2
{
    display: flex;
    justify-content: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 60px;
    color: #16c59d;
    margin-top: -100px;
}
.gallery-container
{

    display: flex;
    flex-direction: row;
    color: #111;
    flex-wrap: wrap;
    justify-content: center; 
    margin-top: 100px;  
}
.gallery-container a
{
    text-decoration: none;
    color: rgb(150, 156, 146);
}
.gallery-container a div
{
    width: 300px;
    height: 235px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px;
}
form 
{
	inset: 2px;
	padding: 50px 40px;
    background-color: #000000;
	border-radius: 12px;
	z-index: 2;
	display: flex;
    justify-content: center;
	flex-direction: column;
    width: 400px;
    z-index: 0;  
}
.inputBox
{
    width: 300px;
    height: 50px;
    background-color: #16c59d;
    border-radius: 8px;
    margin: 10px;
    color: #2b073d;
}
.inputBox::-webkit-file-upload-button
{
    background-color: #2b073d;
    color: #16c59d;
    border-radius: 8px;
    margin: 5px;
    border: none;
    cursor: pointer;
}
.inputBox::placeholder
{
    color:#2b073d98 ;
}

/*CookieConsent*/

.cookieConsent {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #16c59d;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .cookieConsent.show {
    right: 20px;
  }
  .cookieConsent header {
    display: flex;
    align-items: center;
    column-gap: 15px;
  }
  header i {
    color: #2b073d98;
    font-size: 32px;
  }
  header h2 {
    color: #2b073d98;
    font-weight: 500;
  }
  .cookieConsent .data {
    margin-top: 16px;
  }
  .cookieConsent .data p {
    color: #333;
    font-size: 16px;
  }
  .data p a {
    color: #480b6698;
    text-decoration: none;
  }
  .data p a:hover {
    text-decoration: underline;
  }
  .cookieConsent .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .buttons .button {
    border: none;
    color: #16c59d;
    padding: 8px 0;
    border-radius: 4px;
    background: #2b073d98;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  .buttons #acceptBtn:hover {
    background-color: #2b073d98;
  }
  #declineBtn {
    border: 2px solid 2b073d98;
    background-color: #16c59d;
    color: #480b6698;
  }
  #declineBtn:hover {
    background-color: #480b6698;
    color: #16c59d;
  }

  /*Projects*/

  .box2 {
    color: #16c59d;
    background-color: rgba(71, 15, 109, 0);
    border: 3px solid rgba(158, 0, 250, 0.664);
    margin-top: 30px;
    min-height: 60px;
    font-size: 2rem;
  }

  .box a
  {
    color: #16c59d;
  }

  .blowUp
  {
	  color: #7419c9;
      font-size: 100px;
      animation-duration: 5s;
      animation-name: bigfont;
    }
    
    @keyframes bigfont {
      from {
        font-size: 3px;
      }
    
      to {
        font-size: 100px
      }
    }
  





