@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libertinus+Keyboard&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Sacramento&family=Vend+Sans:ital,wght@0,300..700;1,300..700&display=swap');
body{
    font-family: 'Vend Sans', sans-serif !important;
    font-size: 15px;
    line-height: 2em;  /*em relative to font-size*/
    color: #333;
    font-weight: 400;
    background: #bbb3b3;
}
.columns-block {
    display: flex;/*block should be next to each other right & left*/
    flex-wrap: wrap;
    justify-content: space-around;
}

.left-col-block{
    width: 50%;
    
    overflow: hidden;
    position: fixed;/*dont scroll*/
    left:0;
}
.right-col-block{
    width: 50%;
    position: absolute;
    right:0;
}

.header {
    padding: 0;
    margin: 0;
    height: 100vh; /*it will occupies 100 percent height in part it is intialized*/
    position: relative;
    vertical-align: middle;
}

.header .profile-image{/*tells the browser to look for a .profile-image element that is located somewhere inside a .header element.*/
    position: absolute;
    left: 0;
    top: 0%;
    z-index: -1; /*to bring background text to front (increases the priority)*/
    width: 100%;
    height: 100%;
    background-image: url(../img/profile_image.png);
    background-size: cover;/*cover means fit into container*/
    background-position: top center;
}
.header .profile-image:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
   background: linear-gradient(1deg, #e6e6fa 0%, #d8bfd8 18%, transparent 100%);
}

.header .content{
    position: absolute;
    /*top: 0%; i want content at bottom*/
    bottom: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10%;
}
.header .content h1{
    font-family: libertinus keyboard;
    font-size: 36px;
    color: rgb(4, 24, 104);
    line-height: 1;
    margin: 0;
    animation: backInLeft; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */


/* Define the bouncing animation */
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* Apply the animation to the heart icon */
.fa-heart {
  animation: heartBeat 1.5s infinite; /* 1.5s duration, infinite loop */
}
}

.header .content p{
    font-family: Sacramento;
    font-size: 30px;
    color: rgb(152, 4, 132);
}

.header .content .social-icon{
    margin: 0;
    padding:0;
    display:block;
    
}
.header .content .social-icon li{
    display: inline-block;
    margin: 0 2px;
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
}

.header .content .social-icon a{
    display: block;
    font-size: 15px;
    color: #100b93;
    height: 35px;
    width: 35px;
    line-height: 32px;
    text-align: center;
    border-radius: 100px;
    border: 2px solid rgb(11, 177, 47);
}
.header .content .social-icon a:hover{
    border-color: #2b28d7;
}

.section-wrapper{
    padding: 20px;
}

.section-title{
    margin-bottom: 15px;
    
}

.section-title h2{
    color: rgb(197, 38, 178);


}

.grey-bg {
    background: #E2DAF0;
}

.blue-bg {
    background: #bfd4de;
}

.expertise-items{
    margin-bottom: 20px;
    animation: backInRight; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 5s; /* don't forget to set a duration! */


}
.expertise-items h3{
    margin-bottom: 5px;
    color: #08d81add;
    font-weight:700;
  
}

