@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #0A2C34;
}

h1, h2, h3, h4, h5, h6,
strong {
    font-weight: 700;
}

.navbar {
    background-color: #0A2C34;;
}

.navbar-toggler {
    color: #FFFFFF;
}

.navbar-toggler:focus {
    box-shadow: none;
}


.nav-link {
    transition: .3s ease-in-out;
    color: #FFFFFF;
}

.active.nav-link,
.nav-link:hover {
    color: #f2f2f2;
}

.btn {
    transition: .3s ease-in-out;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 10px 20px;
    color: #FFFFFF;
}

.btn:hover {
    color: #FFFFFF;
}

.btn a {
    color: #FFFFFF;
    text-decoration: none;
}

.btn-main {
    background: #317077;
}

.btn-main:hover {
    background: #295f65;
}

.btn-alt {
    background: #0A2C34;
}

.btn-alt:hover {
    background: #071f24;
}

.py-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pb-section {
    padding-bottom: 100px;
}

.pt-section {
    padding-top: 100px;
}

#thank-you {
    padding-top: 100px;
    padding-bottom: 100px;
}

footer {
    background-color: #0A2C34;
}

footer p {
    color: #FFFFFF; 
}

footer a {
    transition: .3s ease-in-out;
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    color: #f2f2f2;
}

.footer-social {
    font-size: 2em;
}


@media (min-width: 992px) {
    .py-lg-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .pb-lg-section {
        padding-bottom: 100px;
    }
    
    .pt-lg-section {
        padding-top: 100px;
    }
}
