
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Jacques+Francois+Shadow&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Jacques+Francois+Shadow&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Oswald:wght@200..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');





body {
    background-color: #162330 !important;
}


/* header style  */

.navbar-expand-lg .nav-link {
    color: #C9BCAE;
}


.navbar-brand img {
    width: 70px;
    height: 40px;
}

.nav-link .active {
    color: #C9BCAE;
}



.navbar-nav a {
    font-size: 20px;
    margin-right: 30px;
    transition: all 0.7s ease-out;
    font-family: "Oswald", sans-serif;
   
}

.navbar-nav a:hover {
    transform: scale(1);
    transition: all 0.7s ease-out;
    filter: drop-shadow(0px 0px 7px #ffffe5);
    color: #CCCCCC;
}



.border-h {
    border-top: 0.5px solid #c9bcae7c;
    border-bottom: 0.5px solid #c9bcae7c;
}

.headerr {
    width: 100%;
    padding: 20px;
    position: relative;
    top: 0;
}

.headerr.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #162330;
}

.headerr{
    padding-top: 20px !important;
}



/* home style  */




.home .sec1 {
    text-align: center;
    color: #C9BCAE;
    padding-top: 60px;
}

.home .profile img {
    width:230px;
}

.home .name img {
    width: 60px;
}

.home .icons {
    padding-top: 20px;
}

.home .icons ul {
    display: flex;
    justify-content: center;
}

.home .icons ul li {
    list-style: none;
    padding-right: 10px;
}

.home .heading h1 {
    font-size: 135px;
    font-weight: 400;
    background-color: #C9BCAE;
    color: transparent;
    /* text-shadow: 1px 2px 7px rgb(250, 250, 250, 0.8); */
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    font-family: "Fjalla One", sans-serif;
}

.home .icons img {
    width: 52%;
}

.home {
    /* border-bottom: 0.5px solid #c9bcae31; */
    padding-bottom: 20px;
    margin-top: 30px;
}

.home .nmae {
    padding-left: 60px;
}

.home .heading p {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28.01px;
    color:#C9BCAE;
}




/* about style  */

.about .heading h5 {
    color: #C9BCAE;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    border: solid 1.5px #C9BCAE;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 6px;

 
}

.about .heading {
    text-align: center; 
    padding-top: 30px;
}


.about {
    margin: 120px 0;
}

.about h4 {
    font-family:"Oswald", sans-serif;
}


/* 
.about .heading h2 {
    font-size: 110px;
    color: #C9BCAE;
} */

.about .about-me {
    color: #CCCCCC;
    padding:60px 40px 40px 40px ;
}




.about p {
    font-size: 30px;
    font-family: "Oswald", sans-serif;
    
    margin-bottom: 30px;
    
    
}

.about h3 {
    font-family: "Oswald", sans-serif;
}

/* .section-heading{
    margin: 1rem;
    
    img{
      margin: .2rem;
    }
  }

  .abtimg {
    overflow-x: hidden;
  }

  .abtimg img {
    height:auto;
  }

  .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    width: auto !important;
    margin: 0 30px;
  } */

.about .heading img {
    width: 100%;
}


/* about-button */


/* body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #020710;
    font-family: 'Inter' Arial;
  } */

  .about span {
    color:#C9BCAE;
    font-family:"Oswald", sans-serif ;
  }

  .about .cv a {
    text-decoration: none;
  }

  .about .cv {
    display: flex;
    justify-content: center;
  }
  
  
  .button-wrapper {
    position: relative;
  }
  
  
  .button {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 28px;
    background-color: #162330;
    color: #CCCCCC;
      border-radius: 100px;
    border: 0px;
    cursor: pointer;
    margin-top: 30px;
    text-transform: capitalize;
    font-family: "Oswald", sans-serif;
    
  }
  
  .button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(90deg, #162330, #C9BCAE, #162330, #C9BCAE);
    background-size: 600% 600%;
    border-radius: 50px;
    animation: AnimateBorder 4s ease infinite;
    -webkit-animation: AnimateBorder 4s ease infinite;
    -moz-animation: AnimateBorder 4s ease infinite;
    z-index: -1;
    transform: translate(-2px, -2px);
    transition: filter 1s ease-in;
  }
  
  .button-wrapper:hover .button-bg {
    filter: blur(10px);
    transition: filter .4s ease-in;
  }
  
  
  @-webkit-keyframes AnimateBorder {
      0%{background-position:0% 50%}
      50%{background-position:100% 50%}
      100%{background-position:0% 50%}
  }
  @-moz-keyframes AnimateBorder {
      0%{background-position:0% 50%}
      50%{background-position:100% 50%}
      100%{background-position:0% 50%}
  }
  @keyframes AnimateBorder {
      0%{background-position:0% 50%}
      50%{background-position:100% 50%}
      100%{background-position:0% 50%}
  }
  
  



/* education style */

.education{
    margin: 160px 0;
}



.education .heading h5{
    color: #C9BCAE;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    border: solid 1.5px #C9BCAE;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 6px;
}

.education .heading{
    text-align: center;
    margin-bottom: 30px;
}

.cnt .cnt-1 p{
    color: #C9BCAE;
    font-family: "Jost", sans-serif;
}

.cnt .cnt-1 h5{
    color: #CCCCCC;
    font-family: "Jost", sans-serif;
}

.cnt .cnt-1{
    display: flex;
    justify-content: space-between;
    border-bottom: 0.5px solid #e5e4e47b;
    padding-top: 100px;
}




/* skillz style */



.skillz .heading h5 {
    color: #C9BCAE;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    border: solid 1.5px #C9BCAE;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 6px;

}

.skillz .heading {
    text-align: center;
    padding-top: 30px;
}




.skillz h2 {
    color: #C9BCAE;
    font-size: 40px;
    padding-top: 30px;
    text-align: center;
    padding-bottom: 30px;
}

.skillz .tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0 50px 0;
    margin-top: 60px;

}

.skillz .tool h5 {
    color: #C9BCAE;
    padding: 40px 0;
    font-size: 20px;
    
}

.skillz .tool h6 {
    color: #CCCCCC;
}

.skillz .tool h6 {
    border: 0.5px solid #C9BCAE;
    padding: 8px 24px;
    border-radius: 100px;
}


.skillz {
   
    padding-bottom: 40px;
}

.skillz .tool .image img {
    
    height: 70px;
    width: 100%;
    object-fit: contain;
}

.skillz .tool .image {
    border: 2.5px solid #C9BCAE;
    padding: 20px 30px;
    border-radius:12px;
    height: 110px;
    width: 70%;
  
}

.skillz .heading img {
    width: 100%;
    padding-bottom: 50px;
}



/* project */
.project .heading h5 {
    color: #C9BCAE;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    border: solid 1.5px #C9BCAE;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 6px;

}

.project .heading {
    text-align: center;
    padding-top: 30px;
}

/* 
.project .heading img {
    width: 100%;
    padding-bottom: 120px;
    
} */

.project {
    
    padding: 0px 0 70px 0;

}

/* project-slider */


  .slick-slider {
    margin-left: 12px;
    margin-right: 12px;
  }
  
  .slick-list {
    padding-top: 10%!important;
    padding-bottom: 10%!important;
    padding-left: 15%!important;
    padding-right: 15%!important;
  }
  
  .slick-dots {
    text-align: right;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .slick-track {
    max-width: 100%!important;
    transform: translate3d(0, 0, 0)!important;
    perspective: 100px;
  }
  
  .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 100%!important;
    transform: translate3d(0, 0, 0);
    transition: transform 1s, opacity 1s;
  }
  
  .slick-snext,
  .slick-sprev {
    display: block;
  }
  
  .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    transform: translate3d(0, 0, 20px);
    z-index: 2;
  }
  
  .slick-snext {
    opacity: 1;
    transform: translate3d(20%, 0, 0px);
    z-index: 1;
  }
  
  .slick-sprev {
    opacity: 1;
    transform: translate3d(-20%, 0, 0px);
  }
  
  .test {
    display: block;
    width: 100%;
    height: 350px;
    background: #C9BCAE;
    /* box-shadow: inset 0px 0px 0px 3px #000 */
    border-radius: 8px;
  }
  
  .slick-slider img {
    width: 100%;
    height: 350px;
    border-radius:8px ;
  }

 .project .project-slider .slick-arrow{
    display: flex;
    align-items: center;
 }

 .project .project-slider {
    display: flex;
    align-items: center;
}

.project .slick-arrow {
    background: transparent;
    height: 54px;
    /* border: none; */
    outline: none;
    border-radius: 4px;
}

.slick-arrow img {
    width: 40px;
}

.slick-list .draggable {
    margin-left: 60px;
}

.slick-arrow {
    border: none;
}



/* contact */

.contact .heading h5{
    color: #C9BCAE;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    border: solid 1.5px #C9BCAE;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 6px;
    
}

.contact .heading{
    text-align: center;
}

.contact{
    margin-top: 60px;
}

.contact .id img{
    width: 28px;
    margin-bottom: 12px;
}

.contact .id p{
    color: #CCCCCC;
    font-family: "Jost", sans-serif;
}

.contact .id{
    text-align: center;
}

.contact .text{
    margin: 80px 0;
}

.contact .text h3{
    color: #C9BCAE;
    text-align: center;
    font-size: 40px;
}

.contact h6{
    color: #C9BCAE;
}

.contact .text p{
    color: #CCCCCC;
    text-align: center;
    font-size: 24px;
    padding: 20px 200px;
    margin-bottom: 0;
}

/* .contact .button a{
    text-decoration: none;
    color: #ffffff;
    font-family: "Six Caps", serif;
    font-size: 50px;
}

.contact .button img{
    width: 42px;
}

.contact .button{
    text-align: center;
    margin-top: 60px;
} */










/* footer style  */


.footer{
    margin-top: 180px;
    border-top: 8px solid #c9bcaecc;
}

.footer .text h1{
    color: #C9BCAE;
    font-size: 180px;
    text-align: center;
    padding-top: 120px;
    letter-spacing: 14px;
    font-family: "Oswald", sans-serif;
    margin-bottom: 50px;
}

.footer .text-1 img{
    width: 26px;
}

.footer p{
    color: #ffffff;
}

.footer .text-1{
    display: flex;
    
}

.ftr-txt{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.ftr-txt h6{
    font-size: 13px;
    color: #C9BCAE;
    margin: 0;
}

.ftr-txt p{
    font-size: 14px;
    color: #C9BCAE;
    font-family: "Poppins", serif;
}

.footer .text-3 ul li{
    list-style: none;
    
}

.footer .text-3 ul li a{
    text-decoration: none;
    color: #C9BCAE;
    
}

.footer .text-3 ul{
    display: flex;
    padding-left: 0;
    gap: 20px;
}













/* .footer {
    padding: 20px 0;
}

.footer .logo img {
    width: 70px;
    height: 40px;
}

.footer .social {
    padding:10px 0 0 120px;
}


.footer .social ul {
    display: flex;
}

.footer .social ul li {
    list-style: none;
    padding-left: 10px;
}

.footer .social img {
    width: 60%;
}

.footer .bg2 {
    border-bottom: 0.5px solid #C9BCAE;
}

.footer .logo {
    padding-top: 8px;
} */


/* copyright style  */

.copyright p {
    color: #CCCCCC;
    font-size: 16px;
}

.copyright .icon {
    display: flex;
    align-items: stretch;
    justify-content: center
}

.copyright p span {
    color: #C9BCAE;
}





