@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Poppins&family=Roboto+Mono:wght@100&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #1f242d;
    font-family: 'Poppins', sans-serif;
    color: white;
}
.header {
    display: flex;
    justify-content: space-between;
    padding: 25px 10%;
}
.logo{
    color:#fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 27px;
    cursor: default;
    animation: slideLeft 1s ease forwards;
    opacity: 0;
}
.navbar a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0px 16px;
    font-weight: 600;
    transition: 0.3ms all;
    animation: navMenu 1s ease forwards;
    animation-delay: calc(0.2s * var(--i));
    opacity: 0;
}
.navbar a:hover,
.navbar a.active
{
    color:#00ff2f;
}
.hello{
    animation: hello1 1s ease forwards;
    opacity: 0;
}
.iam{
    animation: iam1 1s ease forwards;
    opacity: 0;
}
 .main-container , .about-section,.experience-section,.edu-section{
    display: flex;
    padding: 25px 10%;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.edu-section{
    padding: 0px !important;
}
.skills-section{
    padding: 25px 10%;
    align-items: center;
    font-size: 20px;
}
.page-title{
    /* background-color: #00ff2f;
    color: black; */
    color: #00ff2f;
    /* height: 50px; */
   /* padding: 15px 5px; */
   border-radius: 20px;
   display: flex;
   justify-content: center;
   animation: slideLeft 0.5s ease forwards;
   letter-spacing: 6px;
   animation-delay: 1s;
   opacity: 0;
   font-size: 25px !important;
}

.info-side h3{
        font-size: 30px;
        font-weight: 700;
        margin: 10px 0;
        letter-spacing: 1px;
        opacity: 0;

}

.info-side h1{
    font-size: 75px;
    letter-spacing: 1px;
    font-weight: 700;
    animation: slideRight 0.5s ease forwards;
    animation-delay: 0.5s;

}
.info-side h3 span{
    color:#00ff2f;
}

p, section{
    margin: 20px 0 40px 0;
    line-height: 27px;
    animation: slideLeftP 1s ease forwards;
    opacity: 0;
    animation-delay: 1.2s;
}
p{
  margin: 0 0 40px 0!important;
}
.profile-image img{
    width: 450px;
    border-radius: 250px;
    box-shadow: 2px 2px 2px 2px #00ff2f;
    animation: zoomIn 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;

}
.container a{
    color: #fff;
}
img.icons{
    position: relative;
    border: 2px solid #00ff2f;
    padding: 10px ;
    border-radius: 50%;
    color: #00ff2f;
    margin: 0px 8px;
    transition: 0.3ms ;
    animation: socialIcons 1s ease forwards;
    animation-delay: calc(.3s * var(--i));
    cursor: pointer;
}
img.icons {
    width: 50px;
    margin: 0px 20px;
}
img.icons:hover{
    box-shadow: 0 0 20px #00ff2f;
}
button{
    background-color: #00ff2f;
    margin-top: 20px;
    padding: 20px 70px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    animation: slideUp 1s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
    font-size: medium;
    letter-spacing: 0.5px;
}
/* ul {
    list-style-type: none;
} */

li b{
    font-weight: bold;
}
.common-container h3{
    margin: 1% 0; 
    animation: slideRight 1s ease forwards;
    opacity: 0;
    animation-delay: 1.2s;

}
.add-bold,.add-color,.card-title{
    color: #00ff2f !important;
    font-weight: 900;
}
.card-title{
    cursor: pointer;
}
li{
    margin: 25px 0;
}
.role{
    margin-bottom: 1rem;;
}
.card-action{
    background-color: #00ff2f08;
    padding: 20px;
}
.add-color{
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-weight: 300;
    font-size: 2.28rem;
    line-height: 2.508rem;
    margin: 1.14rem 0 0.912rem 0;
    
}
.ul-list{
    animation: slideLeftP 1s ease forwards;
    opacity: 0;
    animation-delay: 1.2s;
    margin-left: 50px;
}


button:hover{
    box-shadow: 0 0 10px #00ff2f;
}
.card {
    position: relative;
    overflow: hidden;
    margin: 0.5rem 0 1rem 0;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 20px;
    background-clip: padding-box;
    background-color: #0d0909;
    padding: 10px;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}
.align-card-icons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.responsive-img{
    max-height: 100px;
    padding-bottom: 10px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    margin: 1rem 0;

}
@keyframes slideLeft{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideLeftP{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes navMenu{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes hello1{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes iam1{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes socialIcons {
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideUp {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
/* #aboutData h3{
    margin-top: 8%;
    margin-bottom: 3%;
} */
/* #experienceData h3{
    margin-top: -5%;
} */
@keyframes zoomIn {
    0%{
        transform: scale(0);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (min-width: 280px) and (max-width: 379px) {
  .logo{
      margin-left: 80%;
  }
  .navbar{
      display: none;
  }
  svg{
    position: relative !important;
    margin-right: 0px !important;
  }
  .info-side h3{
      font-size: 15px;
      font-weight: 300;
      margin: 25px 0;
      letter-spacing: 0.5px;
      opacity: 0;

}
.info-side h1{
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 400;
}
p.my-info {
  width: 100% !important;
}
.main-container , .about-section,.experience-section ,.edu-section{
 display: flex;
 flex-direction: column-reverse;
  position: relative;
  left: 20%;
  padding: 15px 15% 15px 5%;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
.edu-section{
  margin-top: 20px;
  left: -8%;
}
.container-fluid{
  margin-top: 10px !important;
}
div#Background {
  margin-top: 60px !important;
}
.skills-section{
  padding: 15px;
  align-items: center;
  margin: 5% 20% !important;
  font-size: 15px;
}
p,section{
  padding: 3px;
  line-height: 17px;

}
.add-color {
  border-bottom: 1px solid #ddd;
  font-weight: 300;
  font-size: 15px;
  line-height: 10px;
  margin: 0.75rem 0 0.45rem 0;
}
.responsive-img ,.responsive-img-vue{
  max-height: 50px;
  padding-bottom: 5px;
  margin: 0.5rem 0;
}
.common-container{
  width: 150%;
}
img.responsive-img.vue {
  height: 90px;
  padding-top: 20px;
}
.skills-container{
  width: 70% !important;
  /* margin-left: -20%; */
}
/* #aboutData h3{
  width: 150%;
  margin-bottom: 8%;
} */
section{
  width: 80% !important;
}
section#skills-data {
  width: 70% !important;
}
section p{
  width: 100%;
}
.flag{
  font-size: 16px;
  background-color: #070505 !important;
  margin: 10px 15%;
}
img.icons{
  width: 40px;
  margin: 0 10px;
}
.profile-image img{
  width: 200px;
  border-radius: 50%;
}


.li{
  margin: 10px 0;
}
.common-container h3{
 font-size: medium;

}
.skills-text{
  font-size: 12px;
}
.card.finastra {
  width: 150%;
}


}
@media screen and (min-width: 820px) and (max-width: 1370px)  {
  div#main-container {
    display: flex;
    flex-direction: column-reverse;
}
}

@media screen and (min-width: 380px) and (max-width: 768px) {
    .logo{
        margin-left: 20px;
    }
    .navbar{
        display: none;
    }
    div#Background {
      margin-top: 60px !important;
    }   
   
    svg{
      position: relative !important;
      margin-right: 0px !important;
    }
    .info-side h3{
        font-size: 15px;
        font-weight: 300;
        margin: 25px 0;
        letter-spacing: 0.5px;
        opacity: 0;

}
.info-side h1{
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
}
p.my-info {
    width: 100% !important;
}
.main-container , .about-section,.experience-section ,.edu-section{
    display: flex;
    flex-direction: column-reverse;
    /* position: absolute; */
    left: 40%;
    padding: 15px 15% 15px 5%;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}
.edu-section{
  margin-top: 100px;
}
.skills-section{
    padding: 15px 15%;
    align-items: center;
    font-size: 15px;
}
p,section{
    padding: 3px;
    line-height: 17px;

}
.card{
    margin: 5% 0 0.5rem 0;
    padding: 10px;
}
section#eduData {
  width: 70% !important;
}
.add-color {
    border-bottom: 1px solid #ddd;
    font-weight: 300;
    font-size: 15px;
    line-height: 10px;
    margin: 0.75rem 0 0.45rem 0;
}
.responsive-img ,.responsive-img-vue{
    max-height: 50px;
    padding-bottom: 5px;
    margin: 0.5rem 0;
}
.common-container{
    width: 150%;
}
img.responsive-img.vue {
    height: 90px;
    padding-top: 20px;
}
.skills-container{
    width: 180%;
    margin-left: -20%;
}
/* #aboutData h3{
    width: 150%;
    margin-bottom: 8%;
} */
section{
    width: 80% !important;
}
section p{
    width: 100%;
}
img.icons{
    width: 40px;
    margin: 0 10px;
}
section#skills-data {
  width: 90% !important;
  margin: -40px;
}

.profile-image img{
    width: 200px;
    border-radius: 50%;
}


.li{
    margin: 10px 0;
}
.common-container h3{
   font-size: medium;

}
.skills-text{
    font-size: 12px;
}
.card.finastra {
    width: 150%;
}


  }
  
  header h1{
    text-align: center;
    font-weight: bold;
    margin-top: 0;
  }
    
   header p{
     text-align: center;
     margin-bottom: 0;
   }
  
  .mytext{
    text-align: justify !important;
  }
  
  svg{
    /* border: 0px;
    float: left;
    text-align: center;
    height: 35px;
    width: 60px;
    font-size: 22px; */
    /* background:#00ff2f; */
    /* color:#00ff2f; */
    position: relative;
    margin-top: 15px;
  }
  
  svg:before{
    content: ""; 
    position: absolute; 
    left: 0; 
    width: 0; 
    height: 0;
    border-bottom: 15px solid #00ff2f;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    top: -15px;
  }
  
  svg:after{
    content: ""; 
    position: absolute; 
    left: 0; 
    width: 0; 
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 15px solid #00ff2f;
    bottom: -15px;
  }
  .svg-icons svg{
    width: 40px;
    fill: #00ff2f !important;
    border: 0.5px solid #00ff2f;
    padding: 10px;
    border-radius: 20px;
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    margin-left:auto;
    margin-right:auto;
    top: -30px;
    margin-top: 0;
  }
  .icons i,
.icons svg {
   color: #2759AE;
}
  .icons svg {
    color: #2759AE;
 }
  .timeline {
    position: relative;
    padding: 0;
    width: 100%;
    margin-top: 20px;
    list-style-type: none;
  }
  
  .timeline:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background: rgb(213,213,213);
    background: -moz-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
    background: -webkit-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
    background: -o-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
    background: -ms-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
    background: linear-gradient(to bottom, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
    z-index: 5;
  }
  
  .timeline li {
    padding: 2em 0;
  }
  
  .timeline .hexa{
    width: 16px;
    height: 10px;
   
  }
  svg{
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    margin-left:auto;
    margin-right:0 !important;
    top: -30px;
    margin-top: -40px !important;
    background-color: black;
  }
  
  .timeline svg:before {
    border-bottom: 4px solid #00ff2f;
    border-left-width: 8px;
    border-right-width: 8px;
    top: -4px;
  }
  
  .timeline svg:after {
    border-left-width: 8px;
    border-right-width: 8px;
    border-top: 4px solid #00ff2f;
    bottom: -4px;
  }
  
  .direction-l,
  .direction-r {
    float: none;
    width: 100%;
    text-align: center;
  }
  
  .flag-wrapper {
    text-align: center;
    position: relative;
  }
  
  .flag {
    position: relative;
    display: block;
    background-color: #00ff2f08;
    font-weight: 600;
    z-index: 15;
    padding: 6px 10px;
    text-align: center;
    border-radius: 5px;
    color: #00ff2f;
  }
  
  .direction-l .flag:after,
  .direction-r .flag:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -15px;
    height: 0;
    width: 0;
    margin-left: -8px;
    border: solid transparent;
    border-bottom-color: rgb(255,255,255);
    border-width: 8px;
    pointer-events: none;
  }
  
  .direction-l .flag {
    -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  }
  
  .direction-r .flag {
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  }
  
  .time-wrapper {
    display: block;
    position: relative;
    margin: 4px 0 0 0;
    z-index: 14;
    line-height: 1em;
    color: #fff;
    font-size: 16px;
  }
  
  .direction-l .time-wrapper {
    float: none;
  }
  
  .direction-r .time-wrapper {
    float: none;
  }
  
  .time {
    background: #00ff2f;
    display: inline-block;
    padding: 8px;
    color: #0d0909;
    border-radius: 10px;
  }
  
  .desc {
    font-size: 14px;
    position: absolute;
    /* margin: 1em 0 0 0; */
    /* padding: 1em; */
    /* -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
    -moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
    box-shadow: 0 0 1px rgba(0,0,0,0.20); */
    /* z-index: 15; */
    color: #fff;
  }
  
  .direction-l .desc,
  .direction-r .desc {
    position: relative;
    margin: 1em 1em 0 1em;
    padding: 1em;
    z-index: 15;
  }
  
  .comego{
      -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
         -moz-animation: fadein 1s; /* Firefox < 16 */
          -ms-animation: fadein 1s; /* Internet Explorer */
           -o-animation: fadein 1s; /* Opera < 12.1 */
              animation: fadein 1s;
  }
  
  @keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
  /* Firefox < 16 */
  @-moz-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
  /* Safari, Chrome and Opera > 12.1 */
  @-webkit-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
  /* Internet Explorer */
  @-ms-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
  
  @media(min-width: 768px){
    .timeline {
      width: 660px;
      margin: 0 auto;
      margin-top: 20px;
    }
  
    .timeline li:after {
      content: "";
      display: block;
      height: 0;
      clear: both;
      visibility: hidden;
    }
    
    .timeline svg {
      left: -40px;
      right: auto;
      top: 8px;
    }
  
    .timeline .direction-l svg {
      left: auto;
      right: -38px;
    }
  
    .direction-l {
      position: relative;
      width: 310px;
      float: left;
      text-align: right;
    }
  
    .direction-r {
      position: relative;
      width: 310px;
      float: right;
      text-align: left;
    }
  
    .flag-wrapper {
      display: inline-block;
    }
    
    .flag {
      font-size: 18px;
    }
    .add-mar{
      margin-top: 7px !important;
    }
  
    .direction-l .flag:after {
      left: auto;
      right: -16px;
      top: 50%;
      margin-top: -8px;
      border: solid transparent;
      border-left-color: rgb(254,254,254);
      border-width: 8px;
    }
  
    .direction-r .flag:after {
      top: 50%;
      margin-top: -8px;
      border: solid transparent;
      border-right-color: rgb(254,254,254);
      border-width: 8px;
      left: -8px;
    }
  
    .time-wrapper {
      display: inline;
      vertical-align: middle;
      margin: 0;
    }
  
    .direction-l .time-wrapper {
      float: left;
    }
  
    .direction-r .time-wrapper {
      float: right;
    }
  
    .time {
      padding: 5px 10px;
    }
  
    .direction-r .desc {
      margin: 1em 0 0 0.75em;
    }
  }
  
  @media(min-width: 992px){
    .timeline {
      width: 800px;
      margin: 0 auto;
      margin-top: 20px;
    }
  
    .direction-l {
      position: relative;
      width: 380px;
      float: left;
      text-align: right;
    }
  
    .direction-r {
      position: relative;
      width: 380px;
      float: right;
      text-align: left;
    }
  }
  footer{
    text-align: center;
    display: flex;
    width: auto;
    flex-direction: column;
    justify-content: center;
    background-color: #00ff2f08 !important;
    height: 35vh;
    /* position:fixed; */
    /* height:180px; */
    /* bottom:0;
    right: 0;
    left:0; */
    border-top: 0.5px solid #00ff2f;
  }
  footer p{
    margin:0px !important;
  }
  footer h3{
    margin-top: 10px;
    color: #00ff2f;
  }
  .mail-btn{
    margin-top: -10px !important;
  }
  .footer-info{
    margin: 20px 0px;
  }
  .footer-info a{
   color: #00ff2f;
   font-size: 16px;
  }
  footer button{
    width: 120px;
    height: 40px;
    padding: 5px;
  }