body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
}



.btn-main {
    background: #0F3DDE;
    color: white;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
}

.form-control,
.form-select {
    height: 55px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 15px;
}


textarea.form-control {
    height: auto;
}


.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #0F3DDE;
}



footer {
    /* background:#07152f; */

    padding: 70px 0;
    /* color:white; */
}

.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #0F3DDE;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(15, 61, 222, .25);
    z-index: 999;
}

    .back-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-top:hover {
        background: #00C389;
        transform: translateY(-5px);
    }



/* Navbar */

.navbar {
    transition: .35s;
}

.navbar-scrolled {
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
