* {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
        Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

*:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

body {
    overflow-x: hidden;
    font-size: 13px;
    margin: 0;
    height: 100dvh;
}

html {
    font-size: 10px;
}

.sec-pad {
    padding: 60px 0;
    ;
}

@media (max-width: 767px) {
    .sec-pad {
        padding: 30px 0;
        ;
    }
}

.sec-title span {
    display: block;
    text-transform: uppercase;
    color: #767676;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 5px;
}


.sec-title span:before {
    content: '';
    width: 16px;
    height: 8px;
    background: #0057b3;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: block;
    margin-bottom: 22px;
}

.sec-title h2 {
    margin: 0;
    color: #001328;
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -.03em;
}

.sec-title.text-center span:before {
    margin-left: auto;
    margin-right: auto;
}

.sec-title.light h2,
.sec-title.light span {
    color: #fff;
}

.sec-title.light span:before {
    background: #fff;
}

.primary-btn {
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    padding: 20px 40px;
    text-align: center;
    animation-delay: 2s;
    text-decoration: none;
    background: #ee3234 !important;
    color: white !important;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

.primary-btn:hover {
    background: #001328 !important;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}


#backButton {
    display: inline-block;
    background-color: #ee3234;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border-radius: 50%;
    text-decoration: none;
}

#backButton::after {
    content: "\f176";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#backButton:hover {
    cursor: pointer;
    background-color: #001328;
}

#backButton:active {
    background-color: #555;
}

#backButton.show {
    opacity: 1;
    visibility: visible;
}