/* Custom styling */

html {
    scroll-behavior: smooth;
  }

.bg-gradient {
 background: linear-gradient(#333, #000);
}

.smt {
  scroll-margin-top: 66px;
}

.link-text {
    color:#1bb891 !important;
    font-weight: 500;
}

.link-text:hover {
    color:#149474 !important;
    text-decoration: none;
    font-weight: 500;
}

.btn-main {
    background-color: #1bb891;
    color: white;
    font-weight: 500;
}

.btn-main:hover {
    background-color: #149474;
    color: white;
}

.landing-pg {
    background: linear-gradient(
            rgba(0, 0, 0, 0.7), 
            rgba(0, 0, 0, 0.7)
          );
    margin-top: 50px;
}

.fullscr {
  height: 100vh;
}

.landing-btn {
    text-decoration: none;
    max-width: 250px;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #1fe8b6;
    padding: 20px 50px;
    border: 3px solid #1fe8b6;
    position: relative;
}

.landing-btn::before, .landing-btn::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: inherit;
    transition: all 0.5s;
}

.landing-btn::before {
    top: -15px;
    left: -15px;
    border-width: 3px 0 0 3px;
}

.landing-btn::after {
    bottom: -15px;
    right: -15px;
    border-width: 0 3px 3px 0;
}

.landing-btn:hover {
    text-decoration: none;
    color: #1fe8b6;
}

.landing-btn:hover::before, .landing-btn:hover::after {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
}



.img-container {
    overflow: hidden;
}

.profile-img {
    transition: transform 0.3s;
    border-radius: 10px;
}


.profile-img:hover {
    transform: scale(1.05);
}

.btn-download {
    background-color: #1bb891;
    color: white;
}

.dark-red {
    font-weight: bold;
    color: rgb(150, 3, 3);
}



/* nav hamburger*/
.animated-icon1 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
  .animated-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  .animated-icon1 span {
    background: #1fe8b6;
  }
  
  
  .animated-icon1 span:nth-child(1) {
   top: 0px;
  }
  
  .animated-icon1 span:nth-child(2) {
    top: 10px;
  }
  
  .animated-icon1 span:nth-child(3) {
    top: 20px;
  }
  
  .animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  
  .animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  
  .animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  