
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Orbitron:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
*{
    padding: 0;
    margin: 0;
    
    box-sizing: border-box;
}

@font-face {
  font-family: myfont;
  src: url(../Calibri/calibril.ttf);
}

:root {
    --orange: #EDCFA9;
    --white: #ffffff;
    --black: #000
}
a{
    color: #000;
    text-decoration: none;
}
body { background-color: var(--white); 
overflow-x: hidden;
box-sizing: border-box;
}
.logo{
  display: flex;
}
.logo p{
  font-family: 'Audiowide', cursive;
  font-weight: bolder;
  font-size: 20px;
  padding-left: 2%;
}
  .logo span{
    width: 2px;
    height: 45px;
    background-color: #c56900;
    margin-left: 3px;
    margin-right: 3px;
  }

  .ddiq p{
    background-color: #ffffff;
    font-family: sans-serif;
    line-height: 12px;
    font-size: 10px;
  }
  .nav {
    height: 50px;
    width: 100%;
    position: relative;
  }
  
.active{
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #000000;
}
.active::before,
.active::after{
	content: '';
	position: absolute;
	left: 0%;
	width: 100%;
	height: 2px;
	background-color: rgb(0, 0, 0);
	transform: scaleX(0);
	transition: transform .25s;
}

.active::before{
	top: -1px;
	transform-origin: left;
}

.active::after{
	bottom: 11px;
	transform-origin: right;
}

.active:hover::before,
.active:hover::after{
	transform: scaleX(1);
}
 
  .nav > .nav-btn {
    display: none;
  }
  
  .nav > .nav-links {
    display: flex;
    font-size: 18px;
    justify-content: right;

  }
  
  .nav > .nav-links > a {  
    display: inline-block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-family: 'Audiowide', cursive;
    text-transform: capitalize;
    text-align: center;
    margin-right: 5%;
    margin-top: -2.5%;
    font-weight: bold;
}
  

  .nav > #nav-check {
    display: none;
  }
  .title{
    margin-top: 3%;
  }
.title h1{
  text-align:center;
  font-size: 43px;
  font-weight: 500;
  margin-top: 3%;
  font-family: myfont;
}

.title-section{
  display: flex;
  justify-content: space-evenly;
  margin-top: 5%;
}
.youtube span{
  font-family: myfont;
  font-weight: 600;
  text-align: center;
  padding-left: 23%;
  font-size: 18px;
}
.youtube iframe{
  border-radius: 5px;
}
.projects{
  margin-top: 5%;
}
.project1{
  width: 250px;
  height: 200px;
  position: relative;
  text-align: center;
}
.project1 img{
  width: 350px;
  height: 200px;


}
.img-text{
  display: absolute;
  top: 8px;
  right: 26px;
}

.contact{
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}
.contact a{
  background-color: #ffffff;
  width: auto;
  height: auto;
  text-decoration: none;
  font-family: myfont;
  font-size: 17px;
  font-weight: bold;
  color: var(--black);
  padding: 0.5%;
  border: 1px solid var(--black);
  text-align: center;
  border-radius: 5px;
}
.contact a:hover{
  color: var(--white);
  background-color: var(--black);
}

.row{
  margin-top: 3%;
}
/* Add padding BETWEEN each column (if you want) */
div.content {
  position: relative;
  border: 1px solid #ccc;
  overflow: hidden;
}

div.content:hover {
  border: 1px solid #000000;
}
a{
  text-decoration: none;
}
.content img{
  vertical-align: top;
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  height: auto;
}

.content img:hover{
  transform: scale(1.2);
  -moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.column {
  float: left;
  width: 24.99999%;
  display: none;
  padding: 10px;
}
h4 {
  margin: 12px;
  text-align: center;
  font-family: myfont;
  font-size: 13px;
  font-weight: bolder;
  text-transform: lowercase;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

.content {
  background-color: white;
}

.show {
  display: block;
}
#myBtnContainer{
  justify-content: center;
}
.btn {

  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
  font-family: myfont;
  font-size: 14px;
  font-weight: bolder;
}

.btn:hover {
  border-bottom: 2px solid #666;
}


.btn.actives {
  border-bottom: 2px solid #666;
}


.projects {
  margin-top: 5%;
}
.projects h2{
  text-align: center;
  font-family: myfont;
  font-size: 30px;
  margin-bottom: 3%;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}




  /*          @media 600px                       */
@media (max-width:600px) {
    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;
    }
    .nav > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
    }
   
    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 8px;
      border-top: 2px solid #000000;
    }
    .nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: #000000;
      height: 0px;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 40px;
      left: 0px;
      text-align: center;
    }
    .nav > .nav-links > a {
      display: block;
      width: 100%;
      color: #fff7f7;
      margin-top: 10%;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height: calc(100vh - 50px);
      overflow-y: auto;
    }
    .active{
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: #000000;
    }
    .active::before,
    .active::after{
        content: '';
        position: absolute;
        top: 15%;
        width: 2px;
        height: 80%;
        background-color: rgb(255, 255, 255);
        transform: scaleY(0);
        transition: transform .50s;
        margin-left: 25%;
    }
    
    .active::before{
        left: 49%;
        transform-origin: bottom;
    }
    
    .active::after{
        right: 10%;
        transform-origin: top;
    }
    
    .active:hover::before,
    .active:hover::after{
        transform: scaleY(1);
    }
    .logo{
      display: flex;
    }
    .logo p{
      font-family: 'Audiowide', cursive;
      font-weight: bolder;
      font-size: 17px;
    }
      .logo span{
        width: 2px;
        height: 40px;
        background-color: #c56900;
      }
    
      .ddiq p{
        background-color: #ffffff;
        font-family: sans-serif;
        line-height: 10px;
        font-size: 10px;
      }
   
      .title{
        margin-top: 3%;
        text-align: center;
      }
    .title h1{
      font-size: 28px;
      font-weight: 500;
      margin-top: 3%;
      font-family: myfont;
    }
    
    .title-section{
      flex-direction: column;
      margin-top: 5%;
    }
    .youtube{
      text-align: center;
    }
    .youtube span{
      font-family: myfont;
      font-weight: 600;
      font-size: 13px;
      text-align: center;
      margin-left: -23%;
    }
  
    .youtube iframe{
      border-radius: 3px;
      width: 250px;
      height: 150px;
      margin-top: 15%;
      margin-left: 0%;
    }
    .content img{
      vertical-align: top;
      max-width: 100%;
      -moz-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      height: auto;
    }
    
    .content img:hover{
      transform: scale(1.2);
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    
    .column {
      float: left;
      width: 49.99999%;
      display: none;
      padding: 10px;
    }
    h4 {
      margin: 12px;
      text-align: center;
      font-family: myfont;
      font-size: 13px;
      font-weight: bolder;
      text-transform: lowercase;
    }
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    
    .content {
      background-color: white;
    }
    
    .show {
      display: block;
    }
    #myBtnContainer{
      justify-content: center;
    }
    .btn {
    
      border: none;
      outline: none;
      padding: 12px 16px;
      background-color: white;
      cursor: pointer;
      font-family: myfont;
      font-size: 12px;
      font-weight: bolder;
    }
    #show-all{
      margin-left: 35% ;
    }
    .btn:hover {
      border-bottom: 2px solid #666;
    }
    
    
    .btn.actives {
      border-bottom: 2px solid #666;
    }
    .projects {
      margin-top: 15%;
    }
    .projects h2{
      text-align: center;
      font-family: myfont;
      font-size: 21px;
      margin-bottom: 3%;
    }
    
    /* Style the buttons */
    .btn {
      border: none;
      outline: none;
      padding: 12px 16px;
      background-color: white;
      cursor: pointer;
    }
    
}  


#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  width: 40px;
  height: 40px;
  background-color: black; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 3px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

.side-button a:nth-child(1){
  position: fixed;
  bottom: 140px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #000;
  color: white;
  width: auto;
  height: auto;
  padding: 0.7%;
  font-size: 25px;
  display: flex;
  justify-content: space-evenly;
  text-decoration: none;
  border-radius: 8px;
}

.side-button a:nth-child(1):hover{
  color: var(--white);
  background-color: #4FCE5D
  ;
}
.side-button a:nth-child(2){

  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #000;
  color: white;
  width: auto;
  height: auto;
  padding: 0.9%;
  font-size: 17px;
  display: flex;
  justify-content: space-evenly;
  text-decoration: none;
  border-radius: 8px;
}

.side-button a:nth-child(2):hover{
  color: var(--white);
  background-color: #1180FF
  ;
}

.side-button a:nth-child(3){

  position: fixed;
  bottom: 200px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #000;
  color: white;
  width: auto;
  height: auto;
  padding: 0.8%;
  font-size: 18px;
  display: flex;
  justify-content: space-evenly;
  text-decoration: none;
  border-radius: 8px;
}

.side-button a:nth-child(3):hover{
  color: var(--white);
  background-color: #FF0000
  ;
}
@media (max-width:600px){
  #myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    width: 30px;
    height: 30px;
    background-color: black; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 3px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }

  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }
  
  .side-button a:nth-child(1){
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    width: auto;
    height: auto;
    padding: 1.5%;
    font-size: 25px;
    display: flex;
    justify-content: space-evenly;
    text-decoration: none;
    border-radius: 8px;
  }
  
  .side-button a:nth-child(1):hover{
    color: var(--white);
    background-color: #4FCE5D
    ;
  }
  .side-button a:nth-child(2){
  
    position: fixed;
    bottom: 120px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    width: auto;
    height: auto;
    padding: 2.3%;
    font-size: 17px;
    display: flex;
    justify-content: space-evenly;
    text-decoration: none;
    border-radius: 8px;
  }
  
  .side-button a:nth-child(2):hover{
    color: var(--white);
    background-color: #1180FF
    ;
  }

.side-button a:nth-child(3){

  position: fixed;
  bottom: 170px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #000;
  color: white;
  width: auto;
  height: auto;
  padding: 1.8%;
  font-size: 18px;
  display: flex;
  justify-content: space-evenly;
  text-decoration: none;
  border-radius: 8px;
}

.side-button a:nth-child(3):hover{
  color: var(--white);
  background-color: #FF0000
  ;
}

.contact{
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}
.contact a{
  background-color: #ffffff;
  width: auto;
  height: auto;
  text-decoration: none;
  font-family: myfont;
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
  padding: 2%;
  border: 1px solid var(--black);
  text-align: center;
  border-radius: 5px;
}

.contact a:hover{
  color: var(--white);
  background-color: var(--black);
}
footer{
  font-size: 10px;
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

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

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(5, 5, 5);
  font-weight: bold;
  font-size: 15px;
  transition: 0.6s ease;
  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(252, 252, 252, 0.8);
}


}

.row > .column2 {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column2 {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

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

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(5, 5, 5);
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  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: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}