/* External Fonts */
@font-face {
    font-family: 'Georgia Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Regular'), url('georgia.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Georgia Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold'), url('georgiab.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Georgia Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold Italic'), url('georgiaz.woff') format('woff');
    font-display: swap;
}

:root {
    --primary-color: #0a163c;
    --secondary-color: #e5b23c;
    --secondary-color-dark: #e4a000;
    --default-color: #303030;
    --v-light-grey: #f0f4fb;

    /* Title Fonts */
    --title-regular: 'Georgia Regular', Arial, Helvetica, sans-serif;
    --title-bold: 'Georgia Bold', Arial, Helvetica, sans-serif;
    --title-bold-italic: 'Georgia Bold Italic', Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.3;
    color: var(--default-color);
    background-color: #ffffff;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

img,
svg,
.injectable {
    width: 100%;
    height: auto;
    display: block;
}

.light-bg {
    background-color: var(--v-light-grey);
}

.light-bg-50 {
    background-image: linear-gradient(to bottom, var(--v-light-grey) 50%, white 50%);
}

.primary-color {
    color: var(--primary-color) !important;
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.secondary-bg {
    background-color: var(--secondary-color) !important;
}

.secondary-color-dark {
    color: var(--secondary-color-dark) !important;
}

.default-color {
    color: var(--default-color) !important;
}

.title {
    font-family: var(--title-bold);
    color: var(--primary-color);
    letter-spacing: 0.05rem;
}

.title-bold-italic {
    font-family: var(--title-bold-italic) !important;
}

.title .text-lg {
    font-size: 1.5em;
}

h2.title {
    font-size: 2.15rem;
    margin-bottom: 1.2rem;
}

.small {
    font-size: 0.95em !important;
}

.large {
    font-size: 1.05em !important;
}

.text-lg {
    font-size: 1.125em;
}

.spec-txt {
    margin: -1rem auto 1.5rem;
}

p,
a,
li,
a.nav-link,
.btn,
nav .btn,
th,
td {
    line-height: 1.4;
    font-size: 0.9rem;
    letter-spacing: 0.025rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding: 0.75rem 0.125rem 1rem;
    margin: 0;
    list-style: none;
}

.listing li {
    margin-bottom: 0.75rem;
    padding-left: 34px;
    position: relative;
}

.listing li::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    top: 5px;
    left: 0;
    background-image: url(../images/list-icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

a,
.nav-link {
    font-weight: 500;
    color: white;
    font-family: var(--title-regular)
}

.nav-link {
    margin-bottom: 0 !important;
}

a:hover,
.navbar-nav .nav-link.active,
.nav-link:hover {
    color: var(--secondary-color);
}

.text-justify {
    text-align: justify;
}

.btn,
button {
    font-family: var(--title-regular)
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.light-btn {
    background-color: var(--v-light-grey);
    color: var(--primary-color);
}

.light-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.bg-img {
    top: 0;
    left: 0;
    overflow: hidden;
}

.bg-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

header {
    border-bottom: 1px solid #ffffff3a;
}

.navbar {
    border-bottom: 1px solid #00000008;
}

.navbar.active {
    box-shadow: 0 0 15px -4px #00000035;
}

.navbar.active .navbar-nav {
    padding: 0.25rem 0;
}

.navbar .bg-img {
    opacity: 0;
}

.navbar.active .bg-img {
    opacity: 1;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    position: relative;
}

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: attr(data-val);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.nav-link.active::after,
.nav-link:hover:after {
    width: 100%;
}

.navbar-toggler {
    border-color: white;
}

.copy-right {
    background-color: var(--primary-color);
}

.copy-right p {
    font-size: 0.825rem;
    color: white;
}

.copy-right .social-icon {
    border: 1px solid white;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-right .social-icon:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.transition-250ms {
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

@media screen and (min-width: 992px) {
    .navbar {
        background-color: transparent;
    }

    h2.title {
        font-size: 2.25rem;
        margin-bottom: 1.3rem;
    }

    p,
    a,
    li,
    .btn,
    th,
    td {
        font-size: 0.925rem;
    }

    .navbar-brand {
        max-width: 180px;
    }
}

@media screen and (min-width: 1200px) {
    h2.title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media screen and (min-width: 1440px) {
    h2.title {
        font-size: 2.75rem;
        margin-bottom: 1.7rem;
    }

    .navbar-brand {
        max-width: 225px;
    }

    p,
    a,
    li,
    .btn,
    th,
    td {
        font-size: 1rem;
    }
}

@media screen and (max-width: 991px) {
    .navbar-brand {
        max-width: 180px;
    }

    .navbar .bg-img {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .navbar-brand {
        max-width: 200px;
    }
}

@media screen and (max-width: 575px) {

    p,
    a,
    li,
    a.nav-link,
    .btn,
    th,
    td {
        font-size: 0.875rem;
    }

    .navbar-brand {
        max-width: 160px;
    }
}

.whatsapp-link {
    position: fixed;
    display: block;
    right: 1rem;
    bottom: 1.25rem;
    z-index: 99;
    margin-bottom: 0;
    box-shadow: 3px 5px 10px #2424242b
}

.whatsapp-link img,
.whatsapp-link svg {
    width: 40px;
    height: 40px;
}

/* Animation */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transition: 0.75s all ease;
    -webkit-transition: 0.75s all ease;
    -moz-transition: 0.75s all ease;
    -ms-transition: 0.75s all ease;
    -o-transition: 0.75s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}