@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,500&display=swap');

*{
    font-family: 'Poppins',sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgba(234,231,220,.7);
    border: 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    color: rgb(232,90,79);
}

html,body{
    scrollbar-width: none;
}

body::-webkit-scrollbar{
    display: none;
}

.navbar{
    background-color:transparent;
    position: -webkit-sticky;
    position: sticky;
    top:0;
    z-index:99;
}
.navbar button{
    cursor: pointer;
}
.navbar a{
    color:white;
    font-size: large;
    font-weight: 500;
    cursor: pointer;
}
.nav-link{
    width: 85px;
    text-align: center;
}
/*.navbar a::after{
    background: #3acfd5;
    background: -webkit-linear-gradient(to left, #3acfd5 0%, #3a4ed5);
    background: linear-gradient(to left, #3acfd5 0%, #3a4ed5);
    bottom: 0%;
    left: 50%;
    width: 0%;
    border-radius: 5px;
    transition: all 500ms ease;
}*/
.nav-link:hover,.nav-link:focus{
    background-image: linear-gradient(to right, rgb(255, 198, 118)  0%, rgb(255, 171, 55));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color:transparent;
    transition: ease .5s;
}
.navbar-nav a{
    margin:0 15px;
}
#logo-text{
    font-size: 25px;
    font-weight: 700;
    padding: 5px;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
}

#loader {
    /* Uncomment this to make it run! */
    /*
       animation: loader 5s linear infinite; 
    */    
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
  }
  @keyframes loader {
    0% { left: -100px }
    100% { left: 110%; }
  }
  .loader-wrapper{
      width: 100%;
      height:100vh;
      position: absolute;
      top: 0;
      background-color:rgb(234,231,220);
      z-index: 998;
  }
  #box {
    width: 50px;
    height: 50px;
    background: rgb(232,90,79);
    animation: boxanimate .5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    z-index: 999;
  }
  @keyframes boxanimate {
    17% { border-bottom-right-radius: 3px; }
    25% { transform: translateY(9px) rotate(22.5deg); }
    50% {
      transform: translateY(18px) scale(1,.9) rotate(45deg) ;
      border-bottom-right-radius: 40px;
    }
    75% { transform: translateY(9px) rotate(67.5deg); }
    100% { transform: translateY(0) rotate(90deg); }
  } 
  #shadow { 
    width: 50px;
    height: 5px;
    background: #000;
    opacity: 0.1;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
    animation: shadow .5s linear infinite;
  }
  @keyframes shadow {
    50% {
      transform: scale(1.2,1);
    }
  }

.hero{
    padding-top: -2%;
    display: flex;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top:0%;
}

.hero .parallax{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    
}
.text-wrapper{
    z-index: 9;
    text-align: center;
    left: 50%;
    top: 50%;
    transition:transform(-50%,-50%);
}

.headline{
    color: rgb(232,90,79);
    font-family: 'Montserrat',sans-serif;
    font-size: 4.2em;
    text-shadow: 1px 1px 5px #222;
    font-weight: 400;
}
.subline{
    color: rgb(236, 240, 230);
    font-size: 2em;
    font-weight: 400;
    text-align: left;
    text-shadow: 1px 1px 15px #222;
}
.salvin{
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transition: transform(-50%,-50%);
}
.salvin img{
    z-index: 11;
    width: 260px;
    height: auto;
    margin-right:2em;
}
.text{
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
}
.description{
    display: flex;
    justify-content: center;
    text-align: left;
    letter-spacing: 1px;
    font-weight: bold;
    overflow: hidden;
    padding: 2em;
}
.dynamic-text{
    color: rgb(232,90,79);
    
}
.cursor{
    display: inline-block;
    width: 3px;
    background-color: #fff;
    margin-left: .1em;
    animation:blink 1s infinite;
}

/*
.dynamic-text li{
    list-style: none;
    font-size: 2em;
    font-weight: 600;
    color: rgb(255,215,0);
    padding-left: 0.5em;
}
.dynamic-text li span{
    position: relative;
}
.dynamic-text li span::after{
    content: "";
    position: absolute;
    left: 0%;
    height: 100%;
    width: 100%;
    border-left: 2px solid rgb(255,215,0);
    animation: type 1.5s steps(14) infinite;
}
*/
.overflow{
    width: 100%;
    height: 50vh;
}

@keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    0%{
        background-color: #ccc;
    }
    50% {
      background-color: transparent;
    }
    10%{
        background-color: #ccc;
    }
  }


  /*about me*/

#about,#projects-head,#contact-me-form-head{
    font-size: 40px;
    font-weight:600;
    margin: 2em;
    padding-top: 1em;
    text-align: center;
}
#about{
    margin-top: 10em;
    padding-top:3em;
}
  .about-me .container-fluid .row{
      display: flex;
      justify-content:center;
      align-items: center;
      text-align: center;
  }

  .aboutdetails{
    width: 35%;
    margin-top: 0;
  }

  .aboutdetails p{
      padding: 1em 3em;
      text-align: justify;
      color: #222;
  }

  .social{
      display: flex;
      align-items: left;
      margin: 0 3em;
      text-decoration: none;
      list-style: none;
  }

  .social li a{
    margin: 1em;
    color: rgb(232,90,79);
  }
  .resume{
      border-radius: 5px;
      background-color: rgb(232,90,79);
      border: none;
      box-shadow: 1px 1px 2px rgb(233,128,116);
      width: auto;
      text-align: center;
      min-width: 110px;
      color: white;
      min-height: 40px;
      float:left;
      margin:2em 4em;
      transition: background 0.5s;
  }
  .resume:hover{
      box-shadow:none;
      cursor:pointer;
      background:  rgb(240, 106, 91) radial-gradient(circle, transparent 1%, rgb(230, 117, 105) 1%) center/15000%;
  }
  .resume:active{
    background-color: rgb(232,90,79);
    background-size: 100%;
    transition: background 0s;
  }
  .widget{
      margin: 0 5em;
      display: grid;
      grid-template-columns: auto auto;
      grid-gap:5em;
  }
  .widgetcard{
      box-sizing: border-box;
      border-radius: 10px;
      box-shadow:2px 2px 5px rgba(68, 67, 67, 0.5);
      width: 8em;
      height: 8em;
      justify-content: center;
  }
  .widgetcard h3{
      font-size: 1em;
      text-align: center;
      margin:10px 0;
  }
  .widgetcard h2{
      font-size: 2.5em;
      margin-top: 0.5em;
  }

 .skill-head{
    font-size: 40px;
    font-weight:600;
    margin: 2em;
    margin-top: 5em;
    text-align: center;
}

.skillset{
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    grid-gap:3em;
    text-align: center;
    justify-content: center;
}
.skill{
    margin:1em 3em;
}
.skill img{
    width: 6em;
    height: auto;
}
.skill h4{
    font-weight: 400;
    font-size: 1em;
    max-width: 6em;
    margin:1em 0;
}


.projects{
    display:flex;
    justify-content:center;
    color: rgb(75, 75, 75);
}
.proj-card{
    margin:2em;
}

.proj-card:hover{
    transform: translateY(10px);
    transition: all .5s ease-in-out;
    box-shadow:5px 5px 15px rgb(142,141,138);
}

.card-body h5{
    color:rgb(232,90,79);
    display: block;
}
.card-text{
    opacity: 0;
    position: absolute;
    top:0%;
    left:0%;
    margin: 15px;
    color: #fff;
}
.card-text:hover, .card-text:active{
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-primary{
    background-color: #e85a4f;
    border-color: #e85a4f;
}
.btn-primary:hover{
    background:  rgb(240, 106, 91) radial-gradient(circle, transparent 1%, rgb(230, 117, 105) 1%) center/15000%;
    border: none;
}
.btn-primary:active{
    background-color: rgb(232,90,79);
    background-size: 100%;
    transition: background 0s;
}

.pro-btn{
    border-radius: 5px;
    background-color: rgb(232,90,79);
    border: none;
    box-shadow: 1px 1px 2px rgba(68, 67, 67, 0.5);
    width: auto;
    text-align: center;
    min-width: 130px;
    color: white;
    min-height: 40px;
    float:right;
    margin:1em 6em;
    transition: background 0.5s;
    cursor:pointer;
}

.pro-btn:hover{
    box-shadow:none;
    cursor:pointer;
    background:  rgb(240, 106, 91) radial-gradient(circle, transparent 1%, rgb(230, 117, 105) 1%) center/15000%;
}
.pro-btn:active{
  background-color: rgb(232,90,79);
  background-size: 100%;
  transition: background 0s;
}
.extra-project{
    margin-top:5em;
    display: none;
    transition: opacity 1.5s;
}

.details{
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.details a{
    margin:5%;
    color:#fc6e63;
}

.fa-angle-double-down{
    color:#e85a4f;
    font-size:2rem;
}
/*
#contact-card{
    border: none;
}
#contact-form{
    background-color: #fff;
    color:#222
}

#form_name{
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: groove;
    border-radius: 0%;
}
#form_lastname{
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: groove;
    border-radius: 0%;
}
#form_email{
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: groove;
    border-radius: 0%;
}
#form_number{
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: groove;
    border-radius: 0%;
}
#form_message{
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: groove;
    border-radius: 0%;
}
#form_number:focus{
    box-shadow: none;
}
#form_name:focus{
    box-shadow: none;
}
#form_lastname:focus{
    box-shadow: none;
}
#form_email:focus{
    box-shadow: none;
}
#form_message:focus{
    box-shadow:none;
}
#send-btn{
    max-width: 200px;
    color: #fff;
    background-color: rgb(232,90,79);
    border-color: rgb(232,90,79);
}*/

.footer{
    background-color: #4b4b4b;
    bottom: 0%;
    height: auto;
    min-height: 240px;
    display: block;
    width: 100%;
    margin-top: 10em;
}
.footer h3{
    text-align: center;
    font-size:x-large;
    padding-top: 2em;
}
.footer ul{
    display: flex;
    justify-content:center;
    align-items: center;
    color:white;
    text-decoration: none;
    list-style: none;
    width: 100%;
}
.footer ul li{
    margin: 2em 1em;
    margin-bottom:1em;
}

.footer ul li a{
    color:rgb(232,90,79);
}

.footer p{
    color: rgb(255, 255, 255);
    font-size: small;
    text-align: center;
    padding: 5px 0;
}

@media(max-width:1800px){
    .hero .salvin{
        display: block;
        z-index: 15;
        align-items: center;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .salvin img{
        margin-bottom: 2em;
        width: 200px;
        height:auto;
    }
    .salvin .text{
        font-size: 0.65em;
    }
    .widget{
        grid-gap: 3em;
    }
    .skills{
        margin-top:0;
    }
    .skillset{
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        grid-gap: 0em;
        margin: 1em;
        padding: 1em;
    }
    .skill{
        margin: 1em 2.5em;
    }
    .skill img{
        width:5em;
    }
    .fa-angle-double-down{
        margin-top:30%;
    }
}

@media(max-width:1500px){
    .hero .salvin{
        display: block;
        z-index: 15;
        align-items: center;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .salvin img{
        margin-bottom: 2em;
        width: 200px;
        height:auto;
    }
    .salvin .text{
        font-size: 0.65em;
    }
    .widget{
        grid-gap: 3em;
    }
    .skills{
        margin-top:0;
    }
    .skillset{
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-gap: 1em;
        margin: 1em;
        padding: 1em;
    }
    .skill{
        margin: 1em 2.5em;
    }
    .skill img{
        width:4.5em;
    }
    .fa-angle-double-down{
        margin-top:30%;
    }
}

@media(max-width:1000px){
    .hero .salvin{
        display: block;
        z-index: 15;
        align-items: center;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .salvin img{
        margin-bottom: 2em;
        width: 150px;
        height:auto;
    }
    .salvin .text{
        font-size: 0.45em;
    }
    .about-me .container-fluid .row{
        display:block;
        justify-content:center;
        
    }
    .aboutdetails{
        width: 100%;
    }
    .widget{
        margin: 0em 2em;
        justify-content: center;
        margin-top:12em;
        margin-bottom: 0em;
        grid-gap:2em;
    }
    .skills{
        margin-top:0;
    }
    .skillset{
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-gap: 0em;
        margin: 1em;
        padding: 1em;
    }
    .skill{
        margin: 1em 2em;
    }
    .skill img{
        width:4em;
    }
    .pro-btn{
        margin: 1em;
        justify-content: center;
    }
    .fa-angle-double-down{
        margin-top:30%;
    }
}

@media(max-width:700px){
    .hero .salvin{
        display: block;
        z-index: 15;
        align-items: center;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .salvin img{
        margin-bottom: 2em;
        width: 150px;
        height:auto;
    }
    .salvin .text{
        font-size: 0.45em;
    }
    .about-me .container-fluid .row{
        display:block;
        justify-content:center;
        
    }
    .aboutdetails{
        width: 100%;
    }
    .widget{
        margin: 0em 2em;
        justify-content: center;
        margin-top:12em;
        margin-bottom: 0em;
        grid-gap:2em;
    }
    .skills{
        margin-top:0;
    }
    .skillset{
        display: grid;
        grid-template-columns: auto auto auto;
        grid-gap: 0em;
        margin: 1em;
        padding: 1em;
    }
    .skill{
        margin: 1em 2em;
    }
    .skill img{
        width:3.5em;
    }
    .pro-btn{
        margin: 1em;
        justify-content: center;
    }
    .fa-angle-double-down{
        margin-top:30%;
    }
}
