/* Font */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: Montserrat;
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
}
.preloder{
    width: 100%;
    height: 100vh;  
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloder-c-d{
    width: 90%;
    height: 100vh;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    box-shadow: 4px 4px 40px #8c8c8c;
    position: fixed;
}
.preloder-c-d img{
    margin: 20px;
}
.preloder-c-d .preloder{
    height: 44px;
    width: 44px;
}
.preloder-c-d .logo{
    width: 86%;
}
.preloder-c-d-a{
    display: flex;
    flex-direction: row;
    width: 89%;
    justify-content: center;
    
}
.preloder-c-d-a img{
    margin: 0px;
    padding: 0;
    width: 10px;
    height: 10px;
}
.div{
    width: 100%;
    height: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile{
    width: 90%;
    max-width: 450px;
    text-align: center;
    background-color: #fff;
    color: #000;
    box-shadow: 4px 4px 40px #8c8c8c;
}
.a{
    display: block;
    width: 100%;
}
.b{
    width: 140px;
    border-radius: 50%;
    margin-top: -70px;
}
.child-div-a{
    margin-top: 10px;
}
.socialmediaicon{
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
}
.contactdetails{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
}
.contactdetails a{
    display: flex;
    color: #000;
    font-size: 1em;
    flex-wrap: wrap;
    padding: 2px;
}
.contactdetails a h3{
    width: 70%;
    font-size: medium;
    text-align: justify;
    margin-right: 10px;
}
.contactdetails a i{
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.contactdetails a .add{
    font-size: 1em;
    text-align: justify;
    width: 70%;
}
.child-div-b{
    height: auto;
    padding: 20px;
    background-color: #171c26;
    color: #fff;
}
.child-div-b h2{
    margin: 20px;
}
.child-div-b img{
    width: 90%;
    max-width: 450px;
    text-align: center;
    background-color: #fff;
    color: #000;
    margin-bottom: 20px;
    border-radius: 5px;
}
.child-div-c{
    margin: 20px;
}
.child-div-c button{
    width: 100%;
    height: auto;
    padding: 8px;
    font-size: 1em;
    border: none;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bolder;
    transition: 0.5s;
}
.child-div-c button:hover{
    background-color: #171c26;
    color: #fff;
}
.div-b{
    background-color: #3333332d;
    width: 100%;
    height: 100vh;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;   
    transition: 0.7s;
}
.profile-b{
    width: 90%;
    height: 100%;
    max-width: 450px;
    text-align: center;
    background-color: #393185b4;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.child-div-d{
    background-color: #fff;
    /* width: 100%; */
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    text-align: left;
    border-radius: 10px;
}
.child-div-d form .div-value{
    display: flex;
    flex-direction: column;
    margin: 10px;
}
.child-div-d form .div-value span{
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: bolder;
}
.child-div-d form .div-value input{
    padding: 5px;
    border-bottom: 3px solid #333;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    transition: 0.5s;
    background-color: transparent;
}
.child-div-d form .div-value input:focus{
    border-bottom: 3px solid #393185;
    color: #393185;
}
.child-div-d form .div-value textarea{
    padding: 5px;
    border-bottom: 3px solid #333;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    transition: 0.5s;
    background-color: transparent;
}
.child-div-d form .div-value textarea:focus{
    border-bottom: 3px solid #393185;
    color: #393185;
}
.child-div-e{
    margin: 20px;
    box-shadow: 3px 3px 10px #33333385;
    padding: 10px;
}
/* email */
.email{
    text-transform: none!important;
}
/* Scroll Bar */
::-webkit-scrollbar {
    display: none;
}
::-moz-selection{
    background: #393185;
    color: #fff;
}
::selection {
    background: #393185;
    color: #fff;
}
/* media query */
@media screen and (max-width:280px){
    .contactdetails a h3{
        width: auto;
        font-size: medium;
        text-align: justify;
        margin-right: 10px;
    }
    .contactdetails a{
        flex-wrap: nowrap;
    }
    .socialmediaicon{
        padding-left: 20px;
        padding-right: 20px;
    }
}