@import "base.css";

ol,
ul {
    padding-left: 0;
    margin-bottom: .16rem;
}

p {
    margin-bottom: .16rem;
}

.nav {
    display: initial;
}

.contact-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 3rem auto;
}

.contact-header {
    margin-top: 3rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    margin: 30px auto;
}

.form-control {
    padding: .25rem .5rem;
    border-radius: .375rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.02rem rgba(103, 19, 201, 0.5);
}

.mb-3 {
    margin-bottom: 1.125rem !important;
}

.form-label {
    margin-bottom: .25rem;
    color: var(--theme-color);
    font-weight: 500;
}

.btn {
    color: #fff;
    position: relative;
    display: inline-block;
    height: 3rem;
    line-height: 3rem;
    margin: 0 auto;
    border: none;
    border-radius: .375rem;
    overflow: hidden;
    text-align: center;
    font-weight: 600;
    background-color: #6713c9;
    -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 1;
    /* -webkit-tap-highlight-color:initial; */
    padding: 0;
}

.btn:hover {
    background-color: #6713c9;
    color: #ee3c70;
}

.mb-4 {
    margin-bottom: 1.125rem !important;
}

@media (max-width: 768px) {
    .contact-container{
        margin: 2rem auto;
    }

    .dropdown-menu {
        border: none;
    }

    .contact-title {
        font-size: 1.28rem;
    }

    .contact-form {
        margin: 1rem;
    }

    .form-control {
        /* font-size: .426rem; */
        padding: .106rem .213rem;
        border-radius: .106rem;
    }

    .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 8px 20px;
    }
}