/* CSS VERSION 1.36 */
/* 28 Mar 2025 */

:root {
    --blue: #014189;
    --light-blue: #95E6FF;
    --orange: #F58B22;
    --grey: #454545;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--black);
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--grey);
}

h5 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

strong {
    font-weight: 900;
}

input {
    transition: 0.3s ease-in-out;
}/* GENERAL STYLES V.1 */


html {
    scroll-behavior: smooth;
}


section {
    position: relative;
}


img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}


li {
    list-style: none;
}


.hidden {
    display: none !important;
}


.uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #fff;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.button-center {
    margin: 0 auto;
}



/* Margins ---------------------------- */
.margin-top-xs {
    margin-top: 20px;
}

.margin-top-sm {
    margin-top: 40px;
}

.margin-top-md {
    margin-top: 80px;
}

.margin-top-lg {
    margin-top: 120px;
}

.margin-top-xl {
    margin-top: 160px;
}

.margin-bottom-xs {
    margin-bottom: 20px;
}

.margin-bottom-sm {
    margin-bottom: 40px;
}

.margin-bottom-md {
    margin-bottom: 80px;
}

.margin-bottom-lg {
    margin-bottom: 120px;
}

/* Padding ---------------------------- */
.padding-top-xs {
    padding-top: 20px;
}

.padding-top-sm {
    padding-top: 40px;
}

.padding-top-md {
    padding-top: 80px;
}

.padding-top-lg {
    padding-top: 120px;
}

.padding-top-xl {
    padding-top: 160px;
}

.padding-bottom-xs {
    padding-bottom: 20px;
}

.padding-bottom-sm {
    padding-bottom: 40px;
}

.padding-bottom-md {
    padding-bottom: 80px;
}

.padding-bottom-lg {
    padding-bottom: 120px;
}

.padding-sides-md {
    padding: 0 5%;
}


/* SECTION GENERAL ////////////////////////////////////////*/

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.container {
    max-width: 1200px;
}


.section-title {
    margin-top: 30px;
    margin-bottom: 40px;
}

.container-narrow {
    max-width: 900px;
    /* margin: 0 auto; */
}

.container-small {
    max-width: 500px;
    /* margin: 0 auto; */
}

.text-narrow {
    max-width: 700px;
}

.section-orange {
    background-color: var(--orange);   
    color: #fff;
}

.page-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.section-title {
    text-align: center;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}



.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    min-width: 250px;
    max-width: 450px;
    border-radius: 15px;
    color: var(--black);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.cta-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    z-index: 300;
}

.cta-orange {
    background-color: var(--orange);
    box-shadow: 0px 5px 0px #8E5101;
}
.cta-orange:hover {
    background-color: #F6581F;
    box-shadow: 0px 8px 0px #8E5101;
    transform: translateY(-3px);
}

.cta-blue {
    background-color: var(--blue);
    box-shadow: 0px 5px 0px #042449;
}
.cta-blue:hover {
    background-color: #10B4E7;
    box-shadow: 0px 8px 0px #042449;
    transform: translateY(-3px);
}

.orange-wave-top {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    z-index: 1;
}

.orange-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    width: 100%;
}

.orange-wave-top-bottom {
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    width: 100%;
}

.orange-wave-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
