@import url('https://fonts.googleapis.com/css?family=Roboto');
body{
    margin: 0;
     padding: 0;
     font-family: 'Roboto', sans-serif;
     font-family: "Alkatra", cursive;
     font-family: "Delicious Handrawn", cursive;
     font-family: "Poppins", sans-serif;
     font-family: "Roboto Slab", serif;
     font-family: "Secular One", sans-serif;
     text-rendering: optimizeLegibility;

}

html{
  overflow-x: hidden;
}

 .navigation {
     height: 55px;
     background: rgb(2, 2, 13)
}
 .brand {
     position: absolute;
     padding-left: 20px;
     float: left;
     line-height: 55px;
     text-transform: uppercase;
     font-size: 1.4em;
}
 .brand a {
     color: #ffffff;
     text-decoration: none;
}
 .nav-container {
     max-width: 1000px;
     margin: 0 auto;
}
 nav {
     float: right;
}
 nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
}
 nav ul li {
     float: left;
     position: relative;
}
 nav ul li a{
     display: block;
     padding: 0 20px;
     line-height: 55px;
     color: #fff;
     background: #262626 ;
     text-decoration: none;
}
 nav ul li a{
     background: transparent;
     color: #FFF;
}
 nav ul li a:hover{
     background: #2581DC;
     color: #ffffff;
}
 .navbar-dropdown li a{
    background: #262626 ;
}
 nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
     padding-left: 4px;
     content: ' \025BE';
}
 nav ul li ul li {
     min-width: 190px;
}
 nav ul li ul li a {
     padding: 15px;
     line-height: 20px;
}
 .navbar-dropdown {
     position: absolute;
     display: none;
     z-index: 1;
     background: #fff;
     box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}
/* Mobile navigation */
 .nav-mobile {
     display: none;
     position: absolute;
     top: 0;
     right: 0;
     background: transparent;
     height: 55px;
     width: 70px;
}


.head{
    font-family: 'Alkatra', cursive;
    font-family: 'Delicious Handrawn', cursive;
    font-size: 40px;
}

.icon{
    color: white;
    font-size: 35px;
    margin-right: 10px;
    margin-top: 5px;
}
 
/* navbar code end */


#skill{
    background-color: whitesmoke !important;

}

/* Callout box - fixed position at the bottom of the page */
.callout {
    position: absolute;
    margin-top: 200px;
    margin-left: 35%;
    width: max-content;
    z-index: 5000;

    /* bottom: 35px;
    right: 20px;
    margin-left: 20px; */
    /* max-width: 300px; */
  }
  
  /* Callout header */
  .callout-header {
    padding: 25px 15px;
    background: #555;
    font-size: 30px;
    color: white;
  }
  
  /* Callout container/body */
  .callout-container {
    padding: 15px;
    background-color: #262626;
    color: black
  }

  .callout-container li{
    padding: 15px;
    background-color: #262626;
    color: #fff;
  }
  
  .callout-container li:hover{
    color: #fff;
    background-color: #2581DC;
  }
  
  /* Close button */
  .closebtn {
    position: absolute;
    top: 5px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
  }
  
  /* Change color on mouse-over */
  .closebtn:hover {
    color: lightgrey;
  }


  #skill div img{
    width: 100%;
    height: min-content;
    margin-bottom: 30px;
  }

    #free{
      font-size: 60px;
      /* border-bottom: 10px solid rgb(99 102 241);
      border-bottom-left-radius: 40%;
      border-bottom-right-radius: 40%;
      border-bottom-width: 10px;
      border-block-end-width: 9px; */
      font-family: 'Alkatra', cursive;
      font-family: 'Delicious Handrawn', cursive;
      font-family: 'Roboto Slab', serif;
      font-family: 'Secular One', sans-serif;
  }



  /* Pay button css */

  .paymentbutton{
    position: relative;
    margin-left: 20%;
    align-items: center;
    color: white;
    background-color:green;
    padding: 10px;
    border-radius: 2px;
  
  }

  .paymentbutton:hover{
    border-radius: 50px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    margin-left: 15%;
    background-color:darkgreen;
    color: white;
  }

.premium{
  color: yellow;
  font-weight: 200;
}

/* hero section css */

#herofont{
  color: #f06;
  font-weight: 900;
}
.herotext{
  font-size: 56px;
  font-weight: 700;
  line-height: 100px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: .7s;
}

.get_started_btn:hover{
  background: linear-gradient(45deg, rgb(150, 26, 43) , rgb(23, 133, 169));
  color: white;
}
/* ANIMATED TYPED TEXT CSS START*/

#element{
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #f06 , #3cf);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: none;
  
}

/* Cursor */
.typed-cursor {
  font-size: 3.0rem;
}

/* ANIMATED TYPED TEXT CSS END*/

@keyframes backcolor {
  
    100%{
      background-position: 0 0;
    }
  
}

/* Keyframes Animation */

@keyframes slideTop {
  0%{
      opacity: 0;
      transform: translateY(100px);
  }

  100%{
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideBottom {
  0%{
      opacity: 0;
      transform: translateY(-100px);
  }

  100%{
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideRight{
  0%{
      opacity: 0;
      transform: translateX(-100px);
  }

  100%{
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideLeft{
  0%{
      opacity: 0;
      transform: translateX(100px);
  }

  100%{
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes zoomIn{
  0%{
      opacity: 0;
      transform: scale(0);
  }

  100%{
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes floatImage{
  0%{
      transform: translateY(0);
  }

  50%{
      transform: translateY(-24px);
  }

  100%{
      transform: translateY(0);
  }
}

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


/* ---------------------------------------------------------- */
/* CODING SECTION - WEB DEV. SOURCE CODE  */
/* ---------------------------------------------------------- */

.ImageFit{
  
  width: 100%;
  height: fit-content;
}

.CARDBORDER{
  border: 1px solid black !important;
}