@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&amp;display=swap&amp;family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&amp;display=swap');
@import url('lib/normalize.css');
html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #9dabaf;
    background-color: #FFF;
    letter-spacing: 0px;
}

strong {
    font-weight: bold;
    color: var(--primary-heading);
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

img {
    width: 100%;
}


/** Transition **/

a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover {
    color: var(--secundary-color);
}


/* =====================================
    2. COLOR PALETTE.
===================================== */

:root {
    --primary-color: #1D428A;
    --secundary-color: #f46b37;
    --third-color: #5EC0D4;
    --primary-heading: #09192A;
    --paragraph-color: #020202;
    --background-color: #F8F8F8;
}

.text-white {
    color: #fff;
}

*::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

a {
    color: var(--headline-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}


/* ===================================== 
    3. TYPOGRAPHY. 
===================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-heading);
}

h1 {
    font-size: 45px;
    line-height: 50px;
}

h2 {
    font-size: 35px;
    line-height: 42px;
}

h3 {
    font-size: 25px;
    line-height: 35px;
}

h4 {
    font-size: 20px;
    line-height: 25px;
}

h5 {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    line-height: 25px;
}

h6 {
    font-size: 16px;
    line-height: 18px;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 25px;
    color: var(--paragraph-color);
}

h6 a {
    font-size: 14px;
    text-decoration: underline;
    text-transform: uppercase;
}

li {
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-heading);
}

h5.subtitle {
    color: var(--secundary-color);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0px;
}


/* ===================================== 
    4. SPACE AND ALIGMENT. 
===================================== */

.mt-lg-5 {
    margin-top: 5rem!important;
}

.mt-3,
.my-3 {
    margin-top: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 5rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 5rem !important;
}

.mb-20 {
    margin-bottom: 20px!important;
}

.p-spacing-lg-right-70 {
    padding-right: 70px;
}

.p-spacing-lg-right-60 {
    padding-right: 60px;
}

.p-spacing-lg-right-50 {
    padding-right: 50px;
}

.icon {
    margin-bottom: 15px !important;
}

section {
    overflow: hidden !important;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h5 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
    color: var(--secundary-color);
}

.pad-40 {
    padding: 40px;
}


/* ===================================== 
    5. BUTTONS. 
===================================== */

.btn-default {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    padding: 10px 30px;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1.3333333;
    letter-spacing: 1px;
    font-weight: 600;
    color: #FFF;
    background-color: var(--secundary-color);
    border: 1px solid var(--secundary-color);
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 3px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.btn-default:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-default:focus,
.btn-default.focus {
    color: #fff;
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
    box-shadow: none;
    outline: 0;
}

.btn-default.disabled,
.btn-default:disabled {
    color: #fff;
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
}

.btn-default:not(:disabled):not(.disabled):active,
.btn-default:not(:disabled):not(.disabled).active,
.show>.btn-default.dropdown-toggle {
    color: #fff;
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
}

.btn-default.disabled,
.btn-default:disabled {
    color: #fff;
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
    opacity: 1;
}

.btn-default-white {
    color: var(--headline-color);
    background-color: #FFF;
    border-color: #FFF;
}


/* ===================================== 
    6. PRELOADER. 
===================================== */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1031;
    background-color: #F2F2F2;
}

.loader {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#cube {
    -webkit-perspective: 120px;
    -moz-perspective: 120px;
    -ms-perspective: 120px;
    perspective: 120px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#cube:before {
    content: "";
    position: absolute;
    left: 25px;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--secundary-color);
    animation: flip 1s infinite;
}

@keyframes flip {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(180deg) rotateX(180deg);
    }
}


/* =====================================
    SCROLLING TOP.
===================================== */

@media only screen and (min-width: 1024px) {
    main p {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: var(--secundary-color) url(../images/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    border-radius: 5px;
    z-index: 4;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

.no-touch .cd-top:hover {
    background-color: var(--primary-color);
}

@media only screen and (min-width: 768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 45px;
        width: 45px;
        right: 30px;
        bottom: 30px;
    }
}


/* ===================================== 
    MEDIA QUERIES. 
===================================== */

@media (max-width:1200px) {
    .container {
        max-width: 95%;
    }
    .p-spacing-lg-right-70 {
        padding-right: 30px;
    }
}

@media (max-width:1199px) {
    .spacing-lg {
        margin-top: 50px;
    }
}

@media (max-width:992px) {
    h1 {
        font-size: 40px;
        line-height: 45px;
    }
    h2 {
        font-size: 30px;
        line-height: 35px;
    }
    h3 {
        font-size: 25px;
        line-height: 30px;
    }
    h4 {
        font-size: 20px;
        line-height: 25px;
    }
    h5 {
        font-size: 16px;
        line-height: 24px;
    }
    h6 {
        font-size: 14px;
        line-height: 18px;
    }
    .spacing-md {
        margin-top: 50px;
    }
    .p-spacing-lg-right-70 {
        padding-right: 0px;
    }
    .p-spacing-lg-right-60 {
        padding-right: 0px;
    }
    .p-spacing-lg-right-50 {
        padding-right: 0px;
    }
}

@media (max-width:991px) {
    h1 {
        font-size: 40px;
        line-height: 45px;
    }
    h2 {
        font-size: 30px;
        line-height: 35px;
    }
    h3 {
        font-size: 25px;
        line-height: 30px;
    }
    h4 {
        font-size: 20px;
        line-height: 25px;
    }
    h5 {
        font-size: 18px;
        line-height: 24px;
    }
    h6 {
        font-size: 14px;
        line-height: 18px;
    }
    .colm-rev {
        flex-direction: column-reverse;
    }
}

@media (max-width:767px) {
    .spacing-sm {
        margin-top: 50px;
    }
    .mt-5,
    .my-5 {
        margin-top: 4rem !important;
    }
    .mb-5,
    .my-5 {
        margin-bottom: 4rem !important;
    }
    .spacing-sm-center {
        margin: 50px 0px;
    }
}

@media (max-width:576px) {
    .spacing-sm {
        margin-top: 40px;
    }
}