:root {
    --font-primary: 'Roboto Condensed', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    --gray: #f4f4f4;
    --blue: #214596;
    --dark-blue: #183062;
    --green: #28b34a;

    --top-header: 40px;
    --height-header: 105px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

h1 {
    font-size: 45px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #000;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.text-blue {
    color: var(--blue);
}

.text-green {
    color: var(--green);
}

.site-button,
.menu-button a {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    border-width: 3px;
    border-style: solid;
    border-radius: 30px;
    padding: 7px 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.button-blue,
.menu-button a {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.button-blue:hover,
.menu-button a:hover {
    background-color: transparent;
    color: var(--blue);
}

.button-white {
    background-color: #fff;
    border-color: #fff;
    color: var(--blue);
}

.button-white:hover {
    background-color: transparent;
    color: #fff;
}

.background-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-mobile {
    display: none;
    font-size: 25px;
}

#mobile_menu {
    position: fixed;
    background-color: var(--blue);
    width: 100%;
    height: calc( 100% - calc( var(--height-header) + var(--top-header) ) );
    left: 0;
    bottom: 0;
    padding: 100px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

#mobile_menu.show {
    visibility: visible;
    opacity: 1;
}

#mobile_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile_menu ul li a {
    font-size: 20px;
    font-weight: 700;
}

#mobile_menu .menu-button a {
    text-transform: uppercase;
}

.mobile-box {
    display: none;
}

header {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    top: 0;
    z-index: 1;
}

header .top-bar {
    font-size: 13px;
    background-color: var(--green);
    height: var(--top-header);
}

header .top-bar-column {
    width: auto;
}

header .column-contact a {
    display: inline-flex;
    align-items: center;
    height: var(--top-header);
    color: #fff;
    font-family: var(--font-primary);
    padding: 5px 15px;
}

header .column-contact a:hover {
    background-color: var(--dark-blue);
}

header .column-contact a span {
    margin: 0 0 0 10px;
}

header .column-social ul li {
    display: inline-block;
}

header .column-social ul li:not(:first-child) {
    margin-left: 15px;
}

header .column-social ul li a {
    font-size: 17px;
    color: #fff;
}

header .main-header {
    height: var(--height-header);
}

header .header-column {
    width: auto;
}

ul.menu {
    padding: 0;
    margin: 0;
}

header ul.menu li {
    display: inline-block;
}

header ul.menu li:not(:first-child) {
    margin-left: 30px;
}

header ul.menu li a {
    color: #000;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
}

header ul.menu li a:hover,
header ul.menu li.current-menu-item a {
    color: var(--blue);
}

header ul.menu li.menu-button a {
    color: #fff;
}

header ul.menu li.menu-button a:hover {
    color: var(--blue);
}

main {
    padding-top: calc(var(--height-header) + var(--top-header));
}

#banner {
    background-color: var(--blue);
    min-height: 200px;
    padding: 30px 0;
}

#banner h1 {
    color: #999;
}

#home_hero {
    background-color: var(--gray);
    height: 600px;
}

#home_hero .hero-background::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#home_hero .hero-background video {
    object-fit: cover;
}

#home_hero h1 {
    color: #999;
}

#home_hero .description,
#home_hero .button-container {
    margin: 20px 0 0;
}

#home_offer {
    background-color: var(--gray);
    padding: 100px 0;
}

#home_offer a {
    padding: 10px;
}

#home_offer a[href]:hover {
    color: #fff;
    background-color: var(--blue);
}

#home_offer a[href]:hover .offer-heading h5 {
    color: #fff;
}

#home_offer .offer-icon img {
    max-height: 100px;
}

#home_why {
    padding: 50px 0;
}

#home_why .section-column {
    padding: 100px 50px;
}

#home_why .column-image .item-image {
    background-color: var(--gray);
    border-radius: 30px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#home_why .column-image .item-image img {
    object-fit: cover;
}

#home_why .column-text a {
    text-decoration: underline;
}

#page_content {
    background-color: var(--gray);
    padding: 100px 0;
}

#page_content .contact-details > div {
    margin: 30px 0 0;
}

#page_content .contact-details ul {
    list-style: none;
}

#page_content .contact-details ul li:not(:last-child) {
    margin: 0 0 10px;
}

#platform_select {
    padding: 100px 0;
}

#platform_select .section-column > div {
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 60px 50px;
}

#platform_select .section-column .description,
#platform_select .section-column .button-container {
    margin: 20px 0 0;
}

#cta {
    display: flex;
    background-color: var(--green);
    min-height: 150px;
    padding: 50px 0;
}

#contact_form,
#subscription_form {
    padding: 100px 0;
}

.wpcf7 label,
.wpcf7 input[type='text'],
.wpcf7 input[type='tel'],
.wpcf7 input[type='email'],
.wpcf7 textarea {
    font-family: var(--font-primary);
    width: 100%;
}

.wpcf7 label {
    color: var(--dark-blue)
}

.wpcf7 input[type='text'],
.wpcf7 input[type='tel'],
.wpcf7 input[type='email'] {
    height: 50px;
}

.wpcf7 input[type='text'],
.wpcf7 input[type='tel'],
.wpcf7 input[type='email'],
.wpcf7 textarea {
    border: 1px solid var(--dark-blue);
    border-radius: 30px;
    padding: 12px 20px;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: block;
    margin: 10px 0 0;
}

footer {
    font-size: 15px;
    background-color: #2f2f2f;
    padding: 100px 0;
}

footer img {
    width: 150px;
}

footer ul {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li:not(:last-child) {
    margin: 0 0 10px;
}

footer ul li a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

footer ul li a:hover {
    color: #fff;
    opacity: 0.7;
}

footer .footer-social {
    font-size: 30px;
}

#copyright {
    background-color: #262626;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 13px;
    padding: 10px 0;
}

@media (max-width: 1300px) {
    .menu-desktop {
        display: none;
    }

    .menu-mobile {
        display: block;
    }
}

@media (max-width: 1200px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 25px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    #home_hero {
        height: 500px;
    }
}

@media (max-width: 991px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 17px;
    }

    #home_why .section-column {
        padding: 50px;
    }

    .desktop-box {
        display: none !important;
    }

    .mobile-box {
        display: block;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 17px;
    }

    h6 {
        font-size: 16px;
    }

    #home_hero {
        height: 400px;
    }
}

@media (max-width: 480px) {
    header span {
        display: none;
    }
}