/* Main */

.color-orange {
    color: #ff6e1b;
}
.font-bold {
    font-weight: bold;
}
.border-color {
    border-color: #d3d3d6;
}
.mr-10px {
    margin-right: 0.625rem;
}
.mr-20px {
    margin-right: 1.25rem;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 1rem solid #262834;
    border-top: 1rem solid #ff6e1b;
    border-radius: 50%;
    width: 6.25rem;
    height: 6.25rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.custom-rounded {
    color: #fff;
    border-radius: 6.25rem;
    background-color: #262834;
    border-color: #f6f6f7;
    border-style: solid;
    border-width: 1px;
}

.column-width {
    width: calc(100%);
}

.your-message {
    padding-top: 1.25rem;
}

.your-message-input {
    padding-top: 0.625rem;
    padding-bottom: 15.625rem;
    color: #fff;
    border-radius: 1.875rem;
    background-color: #262834;
    border-color: #f6f6f7;
    border-style: solid;
    border-width: 1px;
    overflow-y: hidden;
    height: 15vmin;
    min-height: 3rem;
}

.fa-envelope {
    color: #ff6e1b;
    font-size: 2.25rem;
}

.contact-mail {
    text-decoration: none;
    color: white;
}

@media (max-width: 991px) {
    .fa-envelope {
        padding-top: 0px;
        font-size: 1rem;
    }
    .your-message-input {
        padding-bottom: 0.625rem;
        border-radius: 1.875rem;
    }
    .your-message {
        padding-top: 0px;
        position: unset;
        transform: none;
    }
}

/* Submit button */

.sub-btn-active {
    width: 18.75rem;
    height: 3.125rem;
    max-width: 100%;
    font-size: 1.25rem;
    border-radius: 3.125rem;
    background-color: #ff6e1b;
    border: none;
    color: #fff;
    transition: background-color 0.5s, border-color 0.5s;
}

.sub-btn-active:hover {
    background-color: rgba(255, 110, 27, 0.686);
    border-color: rgba(255, 110, 27, 0.612);
}

.sub-btn {
    width: 18.75rem;
    height: 3.125rem;
    max-width: 100%;
    font-size: 1.25rem;
    border-radius: 3.125rem;
    background-color: #1c1e27;
    border: none;
    color: #fff;
    transition: background-color 0.5s, border-color 0.5s;
}

.sub-btn:hover {
    background-color: rgb(17, 18, 24);
}
