body {
    animation: changeBackground 12s infinite linear;
    margin: 0;
    padding: 0;
}
*{
    color: #ed4272;
}

/* Styles for loading animation */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(219, 233, 240, 0.9);
  z-index: 9999; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #fa2964;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite; 
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#content {
  display: none;
}

@keyframes changeBackground {
    0% {
        background-color: #F1EFEF;
    }
    25% {
        background-color: #fdfdfd;
    }
    50% {
        background-color: #d8dee5;
    }
    75% {
        background-color: #F1EFEF;
    }
    100% {
        background-color: #F1EFEF;
    }
}
.logo{
    color: #ed4272;
    font-size: 35px;
    transition: .5s;
    color: #fa2964;
    font-family: 'Abel', sans-serif;
    font-family: 'Grandiflora One', serif;
    font-family: 'Gruppo', sans-serif;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
}
.custom-nav-link {
    text-transform: capitalize;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;

}
#navbarNav li a:hover{
  color: #f02a62;

}

.text-color {
    color: #ed4272;
}
.profile-container {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  position: relative;
  margin: 2rem auto;
  border-radius: 50%;
  overflow: hidden;
}

.profile-picture {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: linear-gradient(45deg, #f54125, #f02a62, #ff0000, #f54125);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 10;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(.9);
  margin-top: 15px;
}

.pulse-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  overflow: hidden;
}

.pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(245, 65, 37, 0.5), rgba(240, 42, 98, 0.5), rgba(255, 0, 0, 0.5), rgba(245, 65, 37, 0.5));
  animation: pulse 4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.pulse-circle:nth-child(1) { animation-delay: -0s; }
.pulse-circle:nth-child(2) { animation-delay: -1s; }
.pulse-circle:nth-child(3) { animation-delay: -2s; }
.pulse-circle:nth-child(4) { animation-delay: -3s; }

@keyframes pulse {
  0% {
      transform: translate(-50%, -50%) scale(0.6);
      opacity: 0.8;
  }
  100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0;
  }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.orbit:nth-child(3) { width: 80%; height: 80%; }
.orbit:nth-child(4) { width: 90%; height: 90%; animation-duration: 25s; animation-direction: reverse; }
.orbit:nth-child(5) { width: 100%; height: 100%; animation-duration: 30s; }

.ball {
  width: 6%;
  height: 6%;
  background: linear-gradient(45deg, #f7735f, #f35b89, #ff4d4d, #f7735f);
  border-radius: 50%;
  position: absolute;
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 400px) {
  .profile-container {
      max-width: 300px;
  }
  .ball {
      width: 8%;
      height: 8%;
  }
}
  #home{
    height: 82vh;
  }
  section #typing-text{
    color: #1e1d1d;
  }
  section h2 {
    font-size: 24px;
    color: #333;
    font-family: 'Grandiflora One', serif;
    margin-bottom: 20px;
  }

  section h1 {
    color: rgb(36, 10, 83);
    font-size: 48px;
    position: relative;
    top: 50px;
    left: 150px;
    font-family: 'Abel', sans-serif;
    font-weight: 400;
  }
  
  section h2 {
    color: #fa2964;
    font-size: 50px;
    position: relative;
    top: 50px;
    left: 150px;
    font-family: 'Abel', sans-serif;
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
  }
  
  section h2 span {
    color: rgb(36, 10, 83);
    font-weight: 100;
    font-size: 60px;
  }
  
  section h3 {
    color: #f02a62;
    font-family: 'Abel', sans-serif;
    font-family: 'Grandiflora One', serif;
    font-family: 'Orbitron', sans-serif;
    font-weight: 100;
    position: relative;
    left: 240px;
    top: 25px;
    font-size: 15px;
  }
  
  section p {
    font-size: 20px;
    line-height: 1.9;
    color: #1e1d1d;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;

  }
  .know-btn{
    position: relative;
    top: 100px;
    left: 150px;
    width: 180px;
    text-transform: uppercase;
    background-color: rgb(16, 49, 90);
    color: #fff;
    border: 2px solid;
    transition: .5s;
  }
  .know-btn:hover{
    background-color: #fff;
    transform: scale(1.2);
  }
  @media (max-width: 768px) {
    .logo{
        transform: scale(.7);
    }
    .icon {
        width: 295px;
        height: 295px;
        left: 50%;
        transform: translateX(-50%);
        top: 25px;
    }
    #home .container{
      position: relative;
      height: 85vh;
    }

    .icon img {
        transform: scale(1.7);
    }
 
    section h1 {
        font-size: 44px;
        position: relative;
        top: 0;
        left: 10px; 
        max-width: calc(100% - 20px); 
    }

    section h2 {
        font-size: 33px;
        position: relative;
        top: 0;
        left: 10px; 
        margin-top: 10px;
        max-width: calc(100% - 20px); 
    }

    section h2 span {
        font-size: 36px;
    }

    section h3 {
        font-size: 12px;
        left: 58px; 
        top: -23px;
        max-width: calc(100% - 68px); 
    }
     #home h3{
      position: relative;
      margin-left: 10px;
    }

    body {
        overflow-x: hidden;
    }
    .know-btn{
      position: relative;
      top: 47vh;
      transform: scale(1);
      width: 110px;
      left: 35%;
      font-size: 10px;
      border-radius: 4px;
      box-shadow: 5px  4px 6px grey;
      border: none;
      visibility: hidden;
    }
    .know-btn:hover{
      transform: scale(1);
    }
}
 
@media (min-width:429px) and (max-width:768px){

  section #experience .container{
    height: 210vh;
  }
  #contact .newHero{
    height: 140vh;
  }
  
 
}
.h-con{
  height: 70vh;
}
.a-con{
  height: 290vh;
}
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}
.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: rgb(181, 185, 188);
}
.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}
.timeline > li:after, .timeline > li:before {
  display: table;
  content: " ";
}
.timeline > li:after {
  clear: both;
}
.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #fff;
}
.timeline > li .timeline-last {
  background: linear-gradient(#3a078d,#5EA8DF);
}
.timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4, .timeline .timeline-heading .h4 {
  margin-top: 0;
  color: inherit;
}
.timeline .timeline-heading h4.subheading, .timeline .timeline-heading .subheading.h4 {
  text-transform: none;
}
.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1200px) {
  .timeline{
    top: 100px;
  }
  .timeline > li {
    min-height: 170px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px;
  }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px;
  }
  .section-heading{
    position: relative;
    left: 10px;
  }
}

.timeline-heading h4 {
  font-family: 'Advent Pro', sans-serif;
  font-family: 'Dosis', sans-serif;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-weight: bolder;
  font-size: 30px;
}
@media (max-width: 768px) {
  #about .container{
    height: 450vh;
  }
}
@media (max-width: 426px) {
  #about .container{
    height: 350vh;
  }
}
@media (max-width: 376px) {
  #about .container{
    height: 440vh;
  }
}
@media (max-width: 325px) {
  #about .container{
    height: 540vh;
  }
}


/* About */
.section-heading{
  font-family:'Cairo', sans-serif;
  text-transform: capitalize;
  color:rgb(36, 10, 83) ;
  opacity: 80%;
}
.container{
  overflow: hidden;
}

/* Experience */

/* Certificates */
#experience{
  margin-top: 5vh;
}

.certificate {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  margin-top: 50px;
}

.certificate img {
  max-width: 100%;
  border-radius: 5px;
}

.certificate h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #333;
}

.certificate p {
  font-size: 16px;
  color: #666;
}

/* Courses List */
.courses-list {
  list-style-type: none;
  padding: 0;
}

.courses-list li {
  font-size: 18px;
  margin-bottom: 10px;
}

.courses-list a {
  color: #fa2964;
  text-decoration: none;
  transition: color 0.3s;
}

.courses-list a:hover {
  color: #ed4272;
}
.certificate {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity .8s ease, transform .9s ease;
}

.certificate.animate {
  opacity: 1;
  transform: translateY(0);
}

.languages-list {
  list-style-type: none;
  padding: 0;
}

.language-box {
  display: inline-block;
  width: 150px; 
  margin: 10px;
  text-align: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.language-box:hover {
  transform: translateY(-18px);
}

.language-icon img {
  width: 50px; 
  height: 50px; 
  margin-bottom: 10px;
}

.range-bar {
  width: 100%;
  height: 3.5px;
  background-color: #ccc;
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
}

.range-bar::after {
  content: "";
  height: 100%;
  background: linear-gradient(#07a11f,rgb(98, 255, 50)); 
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.language-details h4{
  font-size: 15px;
  color: #333;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;

}
.html::after{
  width: 90%;
}
.css::after{
  width: 85%;
}
.js::after{
  width: 70%;
}
.java::after{
  width: 70%;
}
.python::after{
  width: 80%;
}
.ejs::after{
  width: 60%;
}
.node::after{
  width: 60%;
}
.sql::after{
  width: 90%;
}
.c::after{
  width: 90%;
}
.mongo::after{
  width: 60%;
}
.csharp::after{
  width: 90%;
}
.react::after{
  width: 60%;
}
.r::after{
  width: 60%;
}
.bootstrap::after{
  width: 80%;
}
.dot-net::after{
  width: 60%;
}
.git::after{
  width: 60%;
}
.lang h2{
  font-size: 30px;
  top: -20px;
}
.lang{
  margin-top: 150px;
}

.projects-section {
  padding: 80px 0;
}

.project-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.project {
  margin: 20px;
  text-align: center;
}

.project img {
  max-width: 100%;
  width: 600px;
  height: 300px;
  border-radius: 10px;
  border: 1.5px solid #c4c1c1;
  margin-top: 50px;
}

.project-details {
  margin-top: 10px;
}

.project-details h4 {
  margin-bottom: 10px;
  font-family: 'Dosis', sans-serif;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-weight: 900;
  font-stretch: wider;
  transform: scale(1.2);
}

.project-details p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.project .btn {
  display: inline-block;
  font-size: 16px;
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  transform: scale(.8);
}

.btn:hover {
  background-color: #0056b3;
}

.project-navigation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  align-items: center;
}

.nav-arrow {
  font-size: 30px;
  cursor: pointer;
  margin: 0 10px;
}

.nav-dots {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #007bff;
}
.project-details a{
  transition: .5s;
}
.project-details a:hover{
  background-color: #fff;
    color: rgb(16, 49, 90);
    transform: scale(1.1); 
}
.project-navigation .left,.project-navigation .right{
  color: #515151;
  margin-top: -5px;
}
@media (max-width: 450px) {
  .project img{
    width: 300px;
    height: 180px;
  }
  .project-details a{
    transform: scale(0.7);
  }
  .project-navigation .left,.project-navigation .right{
    transform: scale(0.8);
    margin-top: -55px;

  }
  .nav-dots span{
    transform: scale(.6);
    margin-top: -30px;
  }
}

#contact {
  position: relative;
  padding: 0px 0;
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(#ff0000,#023f80);
  border-radius: 0 0 50% 50%;
  z-index: -1;
}

.form-container {
  position: relative;
  z-index: 1;
  background: linear-gradient( rgba(46, 59, 78,1),rgba(255, 64, 64,0.3));
  border-radius: 10px;
  transform: scale(.8);
  width: 500px;
  height: 600px; 
}


.form-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-content h2 {
  font-size: 30px;
  color: #fff; 
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 18px;
  color: #e7dfdf;
  margin-left: 65px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 70%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-left: 65px;
}

.form-group textarea {
  height: 150px;
  max-height: 250px;
}
@media (max-width: 450px) {
  .form-container{
    transform: scale(.6);
    margin-top: -180px;
  }
  .footer-div p{
    transform: scale(.8);
    margin-top: 10px;
  }
}

button[type="submit"] {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #fa2964; 
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #ed4272; 
}

.newHero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(160deg, rgba(46, 59, 78,1), rgba(255, 64, 64,0.3));
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  height: 115vh;
}
.newHero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  max-width: 550px;
}
.newHero p {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.newHero a {
  font-size: 20px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}

.newHero a:hover i {
  color: #fff;
}   

.newHero i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 12px;
}

.video-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.waves {
  height: 80px;
  width: 100%;
  margin-top: -30px;
  z-index: 10;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}
.form-content p {
  font-size: 40px;
  margin-top:10px;
  color: #fff; 
}

.social-icon i{
  transform: scale(.75);
  color: #fff;

}
.social-icon i:hover{
  transform: scale(.6);
  opacity: .5;
}
footer{
  background: white;
  height: 50px;
  margin-top: -30px;
  overflow: hidden;
}
.footer-div{
  margin-top: -5px;
}
.footer-div p{
  color: rgb(45, 49, 58);
  opacity: .7;
  margin-top: 10px;
}
@media (min-width: 769px ) and (max-width: 1024px ) {

  .section-heading{
    left: 0px;
    }
    .timeline{
      top: 40px;
    }
}

/* CSS for loading animation */
@keyframes spinner {
  to { transform: rotate(360deg); }
}

.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
  vertical-align: middle;
  margin-left: 5px;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 10px;
}

.custom-nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-nav-link:hover {
  color: #fa2964 !important;
}

.cv-download {
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 0.8em;
  cursor: pointer;
  border: none;
  background: linear-gradient(to right, #fa2964, #fa2964);
  color: ghostwhite;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
}

.cv-download svg {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
}

.cv-download span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  padding: 0.8em 1.2em 0.8em 1.05em;
}

.cv-download::before,
.cv-download::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cv-download::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cv-download:hover::before {
  transform: translate3d(100%, 0, 0);
}

.cv-download:active {
  transform: scale(0.95);
}
@media (max-width: 991px) {
  .navbar-nav {
    align-items: flex-start;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .cv-download {
    display: inline-block;
    margin-top: 10px;
  }
}

