body {
    font-family: 'Fira Sans', serif !important;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.bg-blue {
    background-color: #EDF6FD;
}

.fw-500 {
    font-weight: 500;
}

.btn {
    background: #0098FF;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 0.6em 2em;
}

.btn-big {
    padding: 0.625em 2em;
    font-size: 32px;
}

.btn:hover {
    background: #0084EB;
    color: white;
}

.btn:focus {
    background: #0084EB;
    box-shadow: rgba(0, 102, 205, 1) 0px 1px 4px inset, rgba(0, 102, 205, 1) 0px 0px 0px 3px inset;
}

.btn:active  {
    background: #0066CD;
}

.link {
    font-size: 20px;
    font-weight: 400;
    color: #0098FF;
    text-decoration: none;
}

.link:hover,
.menu-link:hover {
    color: #0084EB;
}

.link:focus {
    color: #0098FF;
    border: solid 1px #0066CD;
}

.link:active,
.menu-link:active {
    color: #0066CD;
}

.menu-link {
    font-size: 16px;
    font-weight: 500;
    color: #474747;
    text-decoration: none;
}

.menu-link:focus {
    color: #0084EB;
    border: solid 1px #0066CD;
}

.title {
    font-family: 'Fira Sans Condensed', serif;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #474747;
    margin-bottom: 40px;
}

footer {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #0098FF url("../images/bg-footer.svg") no-repeat 0 bottom;
    background-size: contain;
}

@media (max-width: 1199.98px) {
    .title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    footer {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .btn-big {
        padding: 0.625em 2em;
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding-top: 40px;
        padding-bottom: 40px;
        background-size: cover;
    }

    .title {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .btn-big {
        padding: 0.625em 2em;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .logo {
        width: 122px;
    }

    .btn {
        font-size: 14px;
    }

    .menu-link {
        font-size: 14px;
    }
}

