@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

@media (max-width: 1199.98px) {
    .container {
        max-width: 100% !important;
        padding: 0 1.5rem;
    }
}

/* Fonts */
@font-face {
    src: url(../fonts/Poppins-Black.otf);
    font-family: 'poppins-black';
}

.poppins-black {
    font-family: 'poppins-black';
}

@font-face {
    src: url(../fonts/Poppins-Bold.otf);
    font-family: 'poppins-bold';
}

.poppins-bold {
    font-family: 'poppins-bold';
}

@font-face {
    src: url(../fonts/Poppins-SemiBold.otf);
    font-family: 'poppins-semiBold';
}

.poppins-semiBold {
    font-family: 'poppins-semiBold';
}

@font-face {
    src: url(../fonts/Poppins-Medium.otf);
    font-family: 'poppins-medium';
}

.poppins-medium {
    font-family: 'poppins-medium';
}

@font-face {
    src: url(../fonts/Poppins-Regular.otf);
    font-family: 'poppins-regular';
}

.poppins-regular {
    font-family: 'poppins-regular';
}

@font-face {
    src: url(../fonts/Poppins-Light.otf);
    font-family: 'poppins-light';
}

.poppins-light {
    font-family: 'poppins-light';
}

/* Default */

* {
    transition: all 0.5s linear;
    font-family: 'poppins-regular';
    outline: 0 !important;
}

button {
    display: block;
    border: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

.input-error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
    box-shadow: 0 0 0 1px #dc3545 !important;
}

/* Navbar */
.logo {
    width: 250px;
}

nav.navbar {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.navbar-nav .nav-link {
    color: #313B77;
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #4CAF50;
}

/*  */
.main-heading {
    color: #4CAF50;
    font-size: 40px;
    font-family: 'poppins-bold';
}

.sub-heading {
    color: #313B77;
    font-size: 28px;
    font-family: 'poppins-semiBold';
}

.after-verification-code-send,
.verification-success {
    display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.login-btn {
    display: block;
    width: 100%;
    height: 66px;
    background: #ffffff;
    color: #4CAF50;
    font-size: 25px;
    line-height: 66px;
    font-family: 'poppins-bold';
    text-align: center;
    border: 2px solid #4CAF50;
}

.login-btn:hover {
    background-color: #313B77;
    color: #ffffff;
    border: 2px solid #313B77;
}

.login-panel {
    padding: 2rem 0;
    background-color: beige;
}

.hero {
    background: url(../images/hero-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 3rem 0 4rem;
    position: relative;
}

.hero::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(76, 174, 80, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero p {
    color: #fcfff9;
}

.short-features {
    color: #fcfff9;
    display: flex;
    padding: 15px;
    flex-wrap: wrap;
}

.short-features li {
    font-family: 'poppins-semiBold';
    width: 50%;
    padding: 0 0 10px 1rem;
    font-size: 18px;
}

.features {
    background: url(../images/features-section-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 3rem 0 4rem;
    position: relative;
}

.features::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(49, 59, 119, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-family: cursive;
    font-size: 22px;
    font-weight: bold;
    color: #FFC107;
    text-transform: uppercase;
    text-shadow: 1px 0px 1px #ffffff;
    margin-top: 1rem;
}

.feature-sub {
    color: #ffffff;
    padding-left: 20px;
    position: relative;
    font-weight: bold;
}

.feature-sub::before {
    content: "✔";
    color: #dc3545;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Footer */
footer {
    background: #313B77;
    padding: 2rem 0;
}

.quick-links {
    padding: 0;
    list-style-type: none;
}

.quick-links li {
    margin: 0.5rem 0;
}

.quick-links li a {
    color: #ffffff;
}