body {
    margin: 0;
    padding: 0;
    background-color: #0B0C10;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: inherit; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #66FCF1;
    height: 70px; 
  }


h1 {
    font-weight: 400;
    font-size: 2.3em;
    color: #66FCF1 ;
    
}
h3{
    color: white;
    font-weight: 500;
}

p {
    font-weight: 300;
    color: whitesmoke;
}

/*NAVBAR*/
.nav-container {
    position: fixed;
    top: 3%;
    right: 3%;
    z-index: 100;
}
/*fa1616*/
.nav,
.nav-item {
    border-radius: 50%;
    background-color: #66FCF1;
    color: #1f2833;
}

.nav:active{
    background-color: #1f2833;
}

.nav {
    width: 4em;
    height: 4em;
}

.nav:hover,
.red-btn:hover {
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform: scale(1.3);
}


.menu-text h1 {
    padding: 1.2em 0.5em;
    font-size: 1em;
    color: #0B0C10;
    font-weight: 900;
}

.menu-close {
    display: none;
}

.nav-item {
    position: absolute;
    height: 3em;
    width: 3em;
    right: 7em;
    color: #;
    transform-origin: 6em 1em;
}

.nav-item a {
    text-decoration: none;
    color: #1f2833;
}

.fa {
    position: absolute;

}

.nav-item:nth-child(1) {
    transform: rotate(30deg);
}
.nav-item:hover:nth-child(1){
    transform: rotate(30deg) scale(1.1);
}
.fa-home {
    transform: rotate(-30deg);
    margin: 1rem;
}
.home-text{
    margin-top: 2rem;
}

.nav-item:nth-child(2) {
    transform: rotate(-20deg);
}
.nav-item:hover:nth-child(2) {
    transform: rotate(-20deg) scale(1.1);
}
.fa-cogs {
    transform: rotate(20deg);
    margin: 1rem;
}

.nav-item:nth-child(3) {
    transform: rotate(-70deg);
}
.nav-item:hover:nth-child(3) {
    transform: rotate(-70deg) scale(1.1);
}

.fa-archive {
    transform: rotate(70deg);
    margin: 1rem;
}

.nav-item:nth-child(4) {
    transform: rotate(-120deg);
}
.nav-item:hover:nth-child(4) {
    transform: rotate(-120deg) scale(1.1);
}
.nav-item:hover a{
    color: #0B0C10;
}

.fa-envelope {
    transform: rotate(120deg);
    margin: 1rem;
}

/*IMAGE CIRCLE*/
#home, #skills {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#skills{
    flex-direction: column;
}


.image-circle {
    display: flex;
    justify-content: center;
    z-index: 6;
    position: relative;
}

.image-circle img {
    border-radius: 50%;
    width: 15em;
    height: 15em;
    animation: 3s forwards img-animation;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: absolute;
    margin-top: .5em;
}

.image-circle #border {
    /* content: ''; */
    justify-content: center;
    width: 16em;
    height: 16em;
    background: transparent;
    border-radius: 50%;
    border: 0.5em dashed #66fcf1;
    animation: 1s 3s forwards appear;
    opacity: 0%;
}

@keyframes appear {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes img-animation {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }

}

#skills,
#projects,
#contact,
#home {
    text-align: center;
    padding: 5vh 0vh;
}

#home,
#skills {
    height: 100vh;
}

.navigator-outer {
    display: flex;
    justify-content: center;
    padding-top: 5vh;
}

.navigator-inner {
    text-align: center;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    background-color: #1f2833;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: #e4f9ff;
    display: flex;
    justify-content: center;
    align-items: center;

}

.navigator-inner a {
    color: #e4f9ff;
}
.navigator-inner:hover  {
    background-color: #66fcf1;
   
}
.navigator-inner:hover a{
    color: #0B0C10;
}


.image-circle h1 {
    font-size: 2em;
}

/*Skills*/


.skill-container {
    background-color: #1f2833;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 90%;
    border-radius: 1em;
    padding: 1em 0em;
}

.skill-container h1 {
    margin-top: 0;
}

.skill-container .navigator-outer .navigator-inner {
    background-color: #e4f9ff;
    color: #66fcf1;
}

.skill-container .navigator-outer .navigator-inner:hover {
    background-color: #66fcf1;
    color: #e4f9ff;
}

.skill-icon img {
    width: 10em;
    height: auto;
    max-width: 90%;
}

.skill-row {
    display: flex;
    justify-content: space-evenly;
}

.red-btn {
    font-family: 'Montserrat';
    background-color: #66fcf1;
    border: none;
    font-size: 1.1em;
    font-weight: 400;
    padding: 0.5em 1em;
    color: #0B0C10;
    outline: none;
    font-weight: 900;
}

/*Project Photos*/
.projects-container {
    display: grid;
    padding: 0 5vw;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 200px;
    grid-gap: 20px;

}
.projects-container>div{
    border-radius: 10px;
    position: relative;
}
.projects-container-2>div{
    margin-bottom: 1rem;
    width: 90%;
    margin: 0 5% 1rem 5%;
    position: relative;
    
}
.projects-container>div>img, .projects-container-2>div>img{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.img-overlay
{
    border-radius: 10px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0,0,0,0.7);
    color: white;
    
    flex-direction: column;
}


.projects-container>div:nth-child(2){
    grid-row: 1/3;
    grid-column: 1/2;
}

.projects-container>div:nth-child(3){
    grid-row: 1/3;
    grid-column: 3/5;
}
.projects-container>div:nth-child(6){
    grid-row: 2/4;
    grid-column: 5/6;
}
.projects-container>div:nth-child(7){
    grid-row: 3/5;
    grid-column: 1/4;
}

.projects-container>div:nth-child(8){
    grid-row: 4/6;
    grid-column: 4/6;
}
.projects-container>div:nth-child(10){
    grid-row: 5/7;
    grid-column: 3/4;
}
.projects-container>div:nth-child(15){
    grid-row: 5/7;
    grid-column: 1/3;
}

.projects-container h1 {
    margin-top: 0;
    display: block;
}

.project-photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    justify-content: space-evenly;
    width: 90%;


}

.project-photos-col {
    width: 100%;
}

.project-photos img {

    max-width: 90%;
    height: auto;
    margin-top: 1em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

/*projects*/
.contact-container {
    padding-top: 1em;
}

.contact-container h1 {
    margin-top: 0;
}

.project-photo {
    display: block;
    width: 90%;
    height: auto;

}

.project-photo h3 {
    padding: 1em 0 0 0;
    margin: 0;
    
}

/*contact*/



.form-input {
    width: 90%;
    margin-bottom: 1em;
    padding: 0.5em 1em;
    
    outline: none;
    border: none;
    border-radius: 2pt;
    font-family: 'Montserrat', sans-serif;
    resize: none;
}
.contact-card-outer{
    display: flex;
    justify-content: space-evenly;
}

.contact-card-sm,
.contact-card-form {
    background-color: #1f2833;
    border-radius: 0.5em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1em;
}
.contact-card-sm{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-sm-row{
    display: flex;
    flex-direction: row;
}
.cc-sm-col{
    display: inline-flex;
    padding: 1em;
}

.sm-icon{
    color: #66fcf1;
}
.sm-icon:hover{

    color: aliceblue;
}
.footer {
    min-height: 5rem;
    background-color: #66FCF1;
}



  .glide__arrow{
    border: none;
  }
  .glide__arrow{
    color: #66FCF1;
  }
  
  .glide__slide{
    background-color: #3E4A51;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 250px;
    width: 250px;
    padding: 2rem ;
  }
  .glide__slide>img{
      max-width: 100%;
  }
  
  @media (max-width: 768px) { 
      h3{
          font-size: 1rem;
      }
  }

  .hide{
    display: none!important;
}

.footer{
    display: flex;
    align-items: center;
    padding: 0 3rem;
}
.footer>a{
    color: #0B0C10;
    font-weight: 900;
}
.btn-o{
    outline: none;
    background-color: #66FCF1;
    border: none;
}
a{
    text-decoration: none;
}
.img-overlay>a>.red-btn{
    display: none;
}
.img-overlay:hover >a> .red-btn{
    display: block;
    text-decoration: none;
}
.img-overlay:hover{
    cursor: pointer;
}
