/* Reset styles */
*, ::after, ::before {
    box-sizing: border-box;
}

:focus {
    outline: 0!important;
}

body, h1, h2, h3, li, p, ul, ol {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    border: none;
    background: none;
    padding: 0;
    color: inherit;
    touch-action: manipulation;
}

a {
    text-decoration: none;
}

a:not([class]) {
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

/* Base styles */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 16px;
    position: relative;
    background-color: #fff;
    color: #000;
}

/* Container */
.c-container {
    padding: 0 15px;
    max-width: 1140px;
}

/* Header styles */
.c-header {
    background-color: #0a519e;
    background-image: linear-gradient(to top, #00326600 0, var(--color-second-blue) 73%, var(--color-second-blue) 98%);
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 14px 0;
}

.c-header .c-container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-header__leftside {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0;
    margin-bottom: 0;
    order: 3;
}

.c-header__rightside {
    order: 1;
    width: 85%;
}

.c-header__logo img {
    display: flex;
    width: 170px;
    min-width: 120px;
}

.c-header__buttons {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.c-header__buttons .o-btn {
    padding: 10px;
    text-align: center;
}

.c-header__buttons .o-btn:last-child {
    margin-left: 14px;
}

/* Button styles */
.o-btn {
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
}

.o-btn--blue {
    background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
    box-shadow: 0 10px 30px #fa410066;
}

.o-btn--black {
    background: linear-gradient(0deg, #428cdc 0, #509aea 97%, #509aea);
}

/* Main banner styles */
.c-main-banner {
    height: 250px;
    position: relative;
    background-image: url(/img/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.c-main-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .5;
    background: linear-gradient(0deg, #084b95 0, #084b95 12%, #003266);
    z-index: 2;
}

.c-main-banner .c-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.c-main-banner__title span {
    font-style: italic;
    font-size: 40px;
    line-height: 1;
}

.c-main-banner__title span:first-child {
    color: #ffd200;
}

.c-main-banner__title span:last-child {
    color: #fff;
}

.c-main-banner__desc {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    text-shadow: 0 0 19px #448ede91;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Columns styles */
.c-columns {
    padding: 10px;
    margin-bottom: 30px;
}

.c-columns__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.c-columns__column-icon {
    font-size: 50px;
    color: #88c504;
    margin-bottom: 20px;
}

.c-columns__column-title {
    font-size: 20px;
    color: #47abff;
    font-weight: 600;
    margin-bottom: 20px;
}

.c-columns__column-description {
    font-size: 16px;
    text-align: center;
    color: #000;
}

/* Content styles */
.c-content h1 {
    font-size: 26px;
    color: #1183d3;
    margin-bottom: 14px;
    line-height: 1.2;
}

.c-content h2 {
    font-size: 23px;
    color: #1183d3;
    margin-bottom: 14px;
    line-height: 1.2;
}

.c-content p {
    font-size: 16px;
    margin-bottom: 14px;
}

.c-content p:last-child {
    margin-bottom: 0;
}

.c-content p a {
    color: #1183d3;
    font-weight: 700;
}

.c-content ol {
    list-style-type: decimal;
}

.c-content ol,
.c-content ul {
    margin-top: 0;
    font-size: 16px;
    margin-left: 16px;
    margin-bottom: 14px;
}

.c-content ul li:before {
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    content: "\f144";
    margin-right: 8px;
    color: #1183d3;
    font-size: 12px;
    margin-left: -16px;
}

/* Table styles */
.c-brand-table {
    overflow-x: auto;
    margin-bottom: 14px;
}

.c-brand-table table {
    border-collapse: collapse;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.c-brand-table table tr {
    background-color: #094a92;
    color: #fff;
}

.c-brand-table table tr:first-child {
    background-color: #003266;
}

.c-brand-table table td {
    padding: 10px;
}

/* Banner styles */
.c-banner {
    display: flex;
    flex-direction: column;
    background-color: #094a92;
    margin-bottom: 14px;
    padding: 20px 10px;
}

.c-banner--bonus {
    background-color: #88c504;
}

.c-banner__image {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.c-banner__image-wrapper {
    display: flex;
    padding: 15px;
}

.c-banner__image-wrapper img {
    width: 120px;
}

.c-banner__bonus-text {
    text-align: center;
    margin-bottom: 14px;
}

.c-banner__bonus-text span {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.c-banner__button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-banner__button .o-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    width: fit-content;
    height: fit-content;
}

.c-banner__button .o-btn .copy {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

/* Blockquote styles */
.c-blockquote {
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 14px;
}

/* Mobile menu */
.page-header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 35px;
    height: 25px;
    order: 2;
}

.page-header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #d3362e!important;
    border-radius: 20%;
    transform-origin: center;
}

/* Footer styles */
.c-footer {
    background-color: #003266;
    padding: 20px 0;
    color: #fff;
}

.copy {
    text-align: center;
}

/* Popup styles */
.popup-copy {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.popup-copy.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Font Awesome */
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-check:before {
    content: "\f00c";
}

/* Media Queries */
@media (max-width: 370px) {
    .c-header__buttons .o-btn {
        padding: 10px;
        font-size: 14px;
    }
}

@media (min-width: 340px) {
    .o-btn {
        font-size: 18px;
    }
}

@media (min-width: 500px) {
    .c-brand-table table td:first-child {
        width: 25%;
    }
}

@media (min-width: 580px) {
    .c-header__leftside {
        order: 1;
        width: inherit;
        margin-right: auto;
        margin-bottom: 15px;
    }
    
    .c-header__rightside {
        width: inherit;
        margin-right: 20px;
        order: 2;
    }
    
    .page-header__burger {
        order: 3;
    }
}

@media (min-width: 670px) {
    .c-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 60px;
    }
    
    .c-banner__image {
        margin-bottom: 0;
    }
    
    .c-banner__bonus-text {
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 700px) {
    .c-header__logo img {
        width: 210px;
    }
}

@media (min-width: 701px) {
    .c-container {
        padding: 0 22px;
    }
}

@media (min-width: 768px) {
    .c-content p {
        font-size: 17px;
    }
    
    .c-content h1 {
        font-size: 33px;
    }
    
    .c-content h2 {
        font-size: 30px;
    }
    
    .c-columns {
        padding: 30px 10px;
    }
    
    .c-columns .c-container {
        display: flex;
    }
    
    .c-columns__column-title {
        font-size: 23px;
    }
}

@media (min-width: 1000px) {
    .c-main-banner {
        height: 350px;
    }
    
    .c-main-banner__title span {
        font-size: 60px;
    }
    
    .c-main-banner__desc {
        font-size: 28px;
    }
}

@media (min-width: 1140px) {
    .c-container {
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .c-header__leftside {
        order: 1;
        margin-right: 0;
    }
    
    .c-header__rightside {
        order: 3;
        margin-top: 0;
        margin-right: 0;
    }
    
    .c-header__buttons .o-btn {
        font-size: 15px;
    }
    
    .page-header__burger {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}