@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
}

body{
    font: 18px "Nunito", sans-serif;
    padding: 20px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    animation: backgroundZoomAnimate 20s forwards;

} 
@keyframes backgroundZoomAnimate {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.3);
    }
}


#preloader{
    background: #000000;
    background-size: 5%;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    margin: -20px;
    padding: -20px;
}
@media screen and (min-width: 1024px){
    #preloader{
        background: #ffffff;
        background-size: 5%;
        height: 200%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        z-index: 100;
        margin-top: -900px;
        padding: 0px;
    }
}
.icon_background1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.wait{
    font-size: 17px;
    color: #000000;
    padding-top: 10px;
}
.custom-loader {
    width: 100px;
    height: 100px;
    display: grid;
    color:#000000;
    background: radial-gradient(farthest-side, currentColor calc(100% - 12px),#0000 calc(100% - 10px) 0);
    -webkit-mask:radial-gradient(farthest-side,#0000 calc(100% - 26px),#000 calc(100% - 24px));
    border-radius: 50%;
    animation: s9 2s infinite linear;
  }
  .custom-loader::before,
  .custom-loader::after {    
    content:"";
    grid-area: 1/1;
    background:
      linear-gradient(currentColor 0 0) center,
      linear-gradient(currentColor 0 0) center;
    background-size: 100% 20px,20px 100%;
    background-repeat: no-repeat;
  }
  .custom-loader::after {
     transform: rotate(45deg);
  }
  
  @keyframes s9 { 
    100%{transform: rotate(1turn)}
  }

.profile-card{
    background: linear-gradient(180deg, #ffffff7e,#ffffffbd, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
    box-shadow: 0px 18px 100px -60px black;
    border-radius: 20px;
    width: 100%;
    height: auto;
    position: relative;
    outline: #00000027 solid 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;   
    overflow: hidden;
    margin-top: 1000px;
    opacity: 0%;
}
.cover_img{
    width: 100%;
    height: auto;
}
.cover_img_bk{
    width: 100%;
    height: 130px;
    overflow: hidden;
}
@media screen and (min-width: 1024px){
    .cover_img_bk{
        width: 100%;
        height: 160px;
    }
}
@media screen and (max-width: 360px){
    .profile-card{
        height: auto;
    }
}
@media screen and (min-width: 1024px){
    body{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (min-width: 1024px){
    .profile-card{
        width: 600px;
    }
}

.button-box{ 
    width: 250px;
    margin: 25px auto;
    position: relative;
    box-shadow: 0 0 10px 5px #a6a6a631;
    border-radius: 15px;
    background-color: rgb(219, 219, 219);
}
.toggle-btn{
    padding: 10px 33px;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
}

#btn{
    top: 0;
    left: 0;
    position: absolute;
    width: 125px;
    height: 100%;
    background: linear-gradient(to right, #ffffff, #ffffff);
    border-radius: 15px;
    transition: .2s;
}

.input-group{
    top: -10px;
    position: relative;
    width: 100%;
    transition: .2s;
}
.input-group-2{
    top: 20px;
    position: absolute;
    width: 100%;
    transition: .2s;
}

#contact{
    left: 0px;
}
#gallery{
    left: 650px;
}

.profile-card__img img{
    margin: auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 60px -10px rgba(13, 28, 39, 0.535);
    transition: .2s linear;
    border: 4px solid #ffffff9e;
    cursor: pointer;
}
.profile-card__img img:hover{
    transform: scale(1.06);
}
@media screen and (min-width: 1024px){
    .profile-card__img img{
        width: 130px;
        height: 130px;
    }
}
.profile-card__desc {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;

}
.profile-card__desc .head{
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.profile-card__desc .role{
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.profile-card__desc a{
    font-size: 15px;
    font-weight: 400;
}

.profile-card__desc a:hover{
    color: rgb(0, 83, 118);
}

.profile-about .about-me{
    font-size: 15px;
    padding-bottom: 5px;
    font-weight:700;
    text-transform: uppercase;
}
.profile-about .dec-txt{
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 22px;
}
@media screen and (min-width: 1024px){
    .profile-about .dec-txt{
        font-size: 18px;
    }
    .profile-about .about-me{
        font-size: 18px;
    }
}
@media screen and (min-width: 1024px){
    .profile_card__social a{
        height: 43px;
        width: 43px;
    }    
    .profile_card__social a:hover{
        scale: 1.15;
    }
}
@media screen and (min-width: 1024px){
    .profile-card__desc .head{
        font-size: 25px;
    }
    
    .profile-card__desc .role{
        font-size: 17px;
        margin-bottom: 10px;
    }
    .profile-card__desc a{
        font-size: 17px;
    }    
    .profile-card__desc svg{
        height: 23px;
        width: 23px;
    }
}
@media screen and (min-width: 1024px){
    .profile-card__actions .blue{
        font-size: 18px;
    }
    .profile-card__actions .orange{
        font-size: 18px;
    }
}

.profile_card__social{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.profile_card__social a{
    display: inline-flex;
    height: 37px;
    width: 37px;
    margin: 8px;
    border-radius: 40%;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    flex-shrink: 0;
    transition: all .2s;
    
}
@media screen and (min-width: 360px){
    .profile_card__social a{ 
        height: 38px;
        width: 38px;
        margin: 8px;
    }
}
.profile_card__social .facebook{
    background: linear-gradient(45deg, #3b5998, #0078d7);
}

.profile_card__social .twitter{
    background: linear-gradient(45deg, #405de6, #0078d7);
}

.profile_card__social .instagram{
    background: linear-gradient(45deg, #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #df1d1d);
}

.profile_card__social .Whatsapp{
    background: linear-gradient(45deg, #46c75e, #27D145);
}

.profile_card__social .Youtube{
    background: linear-gradient(45deg, #E02F2F, #f42525);
}

.profile_card__social .github{
    background: linear-gradient(45deg, #5b5b5b, #2e2e2e);
}
.profile_card__social .pinterest{
    background: linear-gradient(45deg, #E02F2F, #fc0a0a);
}
.profile_card__social .linkedin{
    background: linear-gradient(45deg, #0597e6, #0072b1);
}
.profile_card__social .tiktok{
    background: linear-gradient(45deg, #545454, #000000);
}
.profile_card__social .spotify{
    background: linear-gradient(45deg, #1ed760, #1ed760);
    color: rgb(0, 0, 0);
}
.profile_card__social .snapchat{
    background: linear-gradient(45deg, #f0ec00, #f5f100);
    color: rgb(0, 0, 0);
}
.profile_card__social .telegram{
    background: linear-gradient(45deg, #029dea, #0088cc);
}

.profile-card__actions{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
.profile-card__actions button{
    font-weight: 400;
    padding: 7px 0;
    font-size: 16px;
    min-width: 250px;
    border-radius: 50px;
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}
.profile-card__actions .blue{
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
}

.popup-image {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.popup-image span{
    position: absolute;
    top: 0; right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}
.popup-image img{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #ffffff7f;
    border-radius: 8px;
    width: 750px;
    object-fit: cover;
}



/*body*/

.profile-cc{
    display: flex;
    flex-direction: column;
    margin: 10px;
    margin-top: -30px;
    padding-left: 10px;
    padding-right: 10px;
    gap: 25px; 
}
@media screen and (max-width: 360px){
    .profile-cc{ 
        margin: 10px;
        margin-top: -30px;
    }
}

@media screen and (min-width: 1024px){
    .profile-cc{
        gap: 30px;
        padding-left: 25px;
        padding-right: 25px;
    }
}

.profile-cc-2{
    display: flex;
    flex-direction: column;
    gap: 25px; 
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 1024px){
    .profile-cc-2{
        gap: 30px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
    }
}

/*Gallery*/
.container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-gap: 3px;
}
@media screen and (min-width: 1024px){
    .gallery{
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        grid-gap: 5px;
    }
}

.gallery img{
    width: 100%;
    border-radius: 10px;
    transition: .2s linear;
}
.gallery img:hover{
    transform: scale(1.03);
}
.scrooll-div{
    width: 100%;
    height: 700px;
    overflow: hidden;
    overflow-y: scroll;
    position: relative;
    display: flex;
    border-radius: 10px;
    padding-bottom: 20px;
}
@media screen and (max-width: 360px){
    .scrooll-div{ 
        height: 700px;
    }
}
::-webkit-scrollbar{
    width: 3px;
}
::-webkit-scrollbar-track{
    background: transparent;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(to bottom, #067eff, #00bfff79);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(to bottom, #ff00d0, #fc00b555);
}
.contact_section{
    display: flex;
    justify-content: center;
    width: 250px;
}
.contact_section button{
    font-weight: 400;
    padding: 7px 0;
    font-size: 16px;
    min-width: 100%;
    border-radius: 50px 0px 0px 50px;
    color: rgb(255, 255, 255);
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}
.conatctbtn_section{
    width: 80%;
}
.share_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    margin-left: 7px;
    border-radius: 0px 50px 50px 0px;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.276);
    cursor: pointer;
}
.share_btn svg{
    color: white;
    width: 20px;
    height: 20px;
}