:root {
    --primary-color: #084678;
    --secondary-color: #07b390;
    --default-color: #555;
    --v-light-grey: #fbfbfb;
}

body {
    line-height: 1.3;
    color: var(--default-color);
    background-color: #ffffff;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

img,
.injectable {
    width: 100%;
    height: auto;
    display: block;
}

.light-bg {
    background-color: var(--v-light-grey);
}

.title {
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.05rem;
}

h2.title {
    font-size: 2.15rem;
    margin-bottom: 1.2rem;
}

.sub-title {
    position: relative;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    letter-spacing: 0.0125rem;
}

.small {
    font-size: 0.95em !important;
}

.spec-txt {
    margin: -1rem auto 1.5rem;
}

p,
a,
li,
a.nav-link {
    line-height: 1.4;
    font-size: 0.9rem;
    letter-spacing: 0.0125rem;
    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: 1.25rem;
    position: relative;
}

.listing li::before {
    content: '';
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    top: 4px;
    left: 0;
    background-image: url(../img/check.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

a,
.nav-link {
    font-weight: 500;
    color: var(--default-color);
}

a:hover,
.navbar-nav .nav-link.active,
.nav-link:hover {
    color: var(--secondary-color);
}

.text-justify {
    text-align: justify;
}

.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.bg-img {
    top: 0;
    left: 0;
    overflow: hidden;
}

.bg-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar {
    border-bottom: 1px solid #00000008;
}

.navbar.active {
    background-color: #ffffff;
    box-shadow: 0 0 15px -4px #00000035;
}

.navbar-brand {
    max-width: 6rem;
    margin: 0 0 0.2rem;
}

.navbar.active .navbar-brand {
    max-width: 5rem;
}

.navbar.active .navbar-nav {
    padding: 0.25rem 0;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--default-color);
}

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::before {
    content: attr(data-val);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    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::before,
.nav-link:hover:before {
    width: 100%;
}

.copy-right {
    margin: 0 auto;
    padding: 1.5rem 1rem;
    background-color: var(--primary-color);
}

.copy-right p {
    font-size: 0.825rem;
    text-align: center;
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto;
}

.transition-300ms {
    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;
}

@media screen and (min-width: 992px) {
    .navbar {
        background-color: transparent;
    }

    h2.title {
        font-size: 2.25rem;
        margin-bottom: 1.3rem;
    }

    p,
    a,
    li,
    .sub-title {
        font-size: 1rem;
    }

    .listing li {
        padding-left: 1.6rem;
    }

    .listing li::before {
        width: 0.95rem;
        height: 0.95rem;
    }
}

@media screen and (min-width: 1200px) {
    h2.title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .listing li::before {
        width: 1rem;
        height: 1rem;
    }
}

@media screen and (min-width: 1440px) {
    h2.title {
        font-size: 2.75rem;
        margin-bottom: 1.7rem;
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        background-color: #ffffff;
    }

    .navbar-brand {
        max-width: 4.5rem;
    }

    h2.title,
    .sub-title,
    .spec-txt {
        text-align: center;
    }
}

@media screen and (max-width: 575px) {

    p,
    a,
    li,
    a.nav-link,
    .sub-title {
        font-size: 0.875rem;
    }
}

.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;
}