
.loader {
    width: 80px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #127fff14;
    border-radius: 7px;

    position: absolute;
    top: -40px;
    left: 35px;
}

.loader span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 10px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.loader span:nth-child(1) {
    animation-name: first;
}

.loader span:nth-child(2) {
    animation-name: second;
}

.loader span:nth-child(3) {
    animation-name: third;
}

@keyframes first {
    0%{opacity: 0;}
    60%,100%{opacity: 1;}
}

@keyframes second {
    0%,20%{opacity: 0;}
    80%,100%{opacity: 1;}
}

@keyframes third {
    0%,40%{opacity: 0;}
    100%{opacity: 1;}
}

.side-profile-full-btn
{
    width: 100vw;
    height: 100vh;
    background-color: red;
}

.contact
{
    width: 30%;
    margin: auto;
}
.contact-field input
{
    width: 100%;
}
.contact-head h3
{
    font-size: 25px;
    margin-bottom: 100px;
    text-align: center
}
.contact-field
{
    margin-bottom: 30px;
}
.contact-form
{
    width: 100%;
}
.contact-field h6
{
    font-size: 17px;
    margin: 0;
    margin-bottom: 10px;
}
.contact-field input
{
    padding: 10px;
    border-radius: 7px;
    font-size: 15px;
    resize: none;
    border: 1px solid rgb(0, 0, 0, 0.5);
}
.contact-field textarea
{
    width: 100%;
    padding: 10px;
    border-radius: 7px;
    font-size: 15px;
    resize: none;
    border: 1px solid rgb(0, 0, 0, 0.5);
}
.contact-btn button
{
    width: 100%;
    color: #fff;
    background-color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
}




























