/* Basics */

* {
    padding: 0;
    margin:0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Proxima Nova', sans-serif;
    color: #414346;
}

img {
    display: block;
    max-width: 100%;
}

menu:not(article menu),
ol:not(article ol),
ul:not(article ul) {
    list-style: none;
}

menu,
ol,
ul {
    padding-left: 0;
}

/*NAVBAR*/

.hero {
    display: block;
    background-image:
        linear-gradient(180deg, rgba(2,0,36,0.70) 0%, rgba(9,9,121,0.37) 12%, rgba(0,212,255,0.05)100%),
        url(../img/GG_top_1163_484.jpg);
    min-height: 484px;
    max-height: 60vh;
    max-width: 100%;
    background-size: cover;
    background-position: center;
}

.hero nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 8%;
    line-height: 60px;
}


.hero .navbar-menu{
    justify-content: space-between;
    transition: .6s all;
}

.navbar-menu-fixed {
    position: fixed;
    transition: .6s all;
    z-index: 1;
}

.nav-active {
    background-color: rgba(30, 30, 30, 0.95);
    box-shadow: 5px -1px 12px -5px grey;
    transition: .3s;
}

.hero .nav-active {
    padding: 10px 8%;
}


.hero .nav-active * {
    color:whitesmoke;
}

.hero a:hover {
    color:white;
}

.hero a:hover {
    color: #FFD700;
}

.hero .nav-logo {
    color: white;
    font-size:32px;
}

.hero ul li {
    display:inline-block;
    padding:0 10px;
}

.hero ul li a{
    color: white;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
}


.active {
    border-bottom: solid 2px white;
}

#checkbtn {
    font-size: 30px;
    color: white;
    line-height: 60px;
    cursor: pointer;
    display: none;
}

#hamburger {
    color: white;
}



@media (max-width: 858px) {
    #checkbtn{
        display: block;
    }
    #checkbtn i {
        vertical-align: center;
        font-size: 40px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero nav {
        padding: 10px 6%;
    }

    .hero ul{
        position:fixed ;
        width: 80%;
        background-color: rgba(30, 30, 30, 0.95);
        top: 15%;
        left: -100%;
        margin: auto;
        text-align: center;
        transition: all .5s;
        border-radius: 20px;
        box-shadow:
          0 2.8px 2.2px rgba(0, 0, 0, 0.034),
          0 6.7px 5.3px rgba(0, 0, 0, 0.048),
          0 12.5px 10px rgba(0, 0, 0, 0.06),
          0 22.3px 17.9px rgba(0, 0, 0, 0.072),
          0 41.8px 33.4px rgba(0, 0, 0, 0.086),
          0 100px 80px rgba(0, 0, 0, 0.12);

    }
    .hero .toggler {
        left: 10%;
        top: 15%;
    }
    .hero ul li {
        display: block;
        color: #414346;
        margin: 30px;
        padding: 0;
        line-height: 30px;
    }

    .hero ul li a{
        display: block;
        padding: 20px 20px;
        font-size: 20px;
        font-weight: 600;
        border: solid 1px #414346;;
        border-radius: 10px;
        box-shadow: 1px 2px 14px 1px grey;
        background: whitesmoke;
        color: #414346;
    }
    .hero .nav-active a {
        color:#414346;
    }

}

/*Footer*/
footer {
    background-color: rgb(30, 30, 30);
    padding-bottom: 10px;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.footer-container * {
    color: whitesmoke;
}

.footer-container .footer-section {
    display: inline-block;
    width: 45%;
    margin-top: 40px;
    padding: 15px;
    vertical-align:top;
}

.footer-container h2 {
    margin: 30px 0;
}

.footer-container p {
    line-height: 26px;

}

.footer-section svg{
    margin-top:20px;
    width: 50px;
    height: auto;
}


.footer-container h5 {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 858px) {
    .footer-container {
        width: 80%;
        text-align: center;
    }

    .footer-container .footer-section {
        width: 100%;
        margin-top: 10px;
    }

    .footer-container h2 {
        margin: 10px 0;
    }

    .footer-container h5 {
        margin-top: 25px;
    }
}

/*Main page content*/


.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    padding: 50px 0;
}

.container h2 {
    font-size: 32px;
    margin: 30px 0;
}

.container p {
    font-weight: 600;
    width: 100%;
    margin: 25px 0;
    line-height: 20px;
}

.container .main-page hr{
    margin:50px 0;
}

.container hr{
    margin:30px 0;
}



.container iframe {
    width: 100%;
    height: 600px;
}


@media (max-width: 858px) {

    .container p {
        font-weight: 600;
        width: 100%;
        margin: 25px 0;
        line-height: 20px;
    }

}

/* Team */

.card {
  display: grid;
  grid-template-columns: 1fr 1fr;

}

.left-card {
    grid-template-areas: "card-img-area card-desc-area";
}

.right-card {
    grid-template-areas: "card-desc-area card-img-area";
}

.card .card-desc {
    grid-area: card-desc-area;
}

.card .card-img {
    grid-area: card-img-area;
}

.card-desc h3{
    font-size: 28px;
    margin-bottom: 20px;
}

.card-desc h4{
    line-height: 30px;
}

.card-img {
    margin: auto;
}

@media (max-width: 858px) {

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

    .card {
        grid-template-areas: "card-img-area"
                             "card-desc-area";
    }


    .card-desc h3{
        font-size: 24px;
        margin: 10px 0 20px 0;
        text-align: center;
    }


}








/*Slider*/
.slider {
    margin: 8% 5%;
}

.slider img {
    max-height: 565px;
}

.slideshow-container {
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slider.active, .dot:hover {
  background-color: #717171;
  border-bottom: solid 4px #FFD700;
}

.slider .active {
    border-bottom: solid 6px #FFD700;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


/* Fading animation */
.projects-href {
	color: blue;
	text-decoration: none;
}

.projects-href:visited {
	color: blue;
	text-decoration: none;
}

.projects-href:hover {
  border-bottom: 1px solid;
}


		
