/*-- Use For Custom Styling --*/

#name {
    text-transform: uppercase;
}

#email {
    text-transform: lowercase;
}

#big-screen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(123, 179, 254, 0.5);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.validation {
    min-height: 40px;
    color: red;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-80 {
    margin-top: 80px;
}

.team-1-text h3,
.team-2-text h3 {
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 20px;
}

.team-1-text h3,
.team-1-text p {
    text-align: left !important;
}

.team-2-text h3,
.team-2-text p {
    text-align: right !important;
}

.team-3-text {
    margin-top: 30px;
}

.separator-30 {
    height: 30px;
}

/* loader */
.big-screen-loading {
    width: 96px;
    height: 96px;
    display: inline-block;
    position: relative;
}

.big-screen-loading::after,
.big-screen-loading::before {
    content: '';
    box-sizing: border-box;
    width: 96px;
    height: 96px;
    border-radius: 75%;
    background: var(--blueLight);
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}

.big-screen-loading::after {
    animation-delay: 1s;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}


@media screen and (max-width: 768px) {

    .team-1-text h3,
    .team-1-text p {
        text-align: center !important;
    }

    .team-2-text h3,
    .team-2-text p {
        text-align: center !important;
    }

    .team-1-text {
        margin-bottom: 30px;
    }

    #team img:last-child {
        display: inline-block;
        margin-top: 30px;
    }
}