@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900");
body {
    font-family: "Montserrat", sans-serif;
    padding: 0; margin:0;
    overflow-x: hidden;
}
/*
.modal {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.modal-fullscreen {
    margin: 0px;
    min-width: 100% !important;
    min-height: 100% !important;
    margin: 0;
    top: 0;
    left: 0;
    border-radius: 0px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    border: 0px;
}

.modal-fullscreen .modal-dialog {
    margin: 0px;
    min-width: 100% !important;
    min-height: 100% !important;
    border-radius: 0px;
    border: 0px;
}

.modal-fullscreen .modal-dialog .modal-content {
    min-width: 100% !important;
    min-height: 100% !important;
    border-radius: 0px;
    border: 0px;
}

.modal-fullscreen .modal-content .modal-header {
    border-bottom: 0px;
    border-radius: 0px;
    border: 0px;
}

.modal-fullscreen .modal-content .modal-body {
    padding: 0px;
    min-height: 100% !important;
    border-radius: 0px;
    border: 0px;
}

.modal-backdrop, ngb-modal-backdrop {
    background-color: rgba(255, 255, 255, 0);
    padding: 0px;
    margin: 0px;
    border: 0px;
}*/



/* custom margins */
.m0-p0 {
    margin: 0px;
    padding: 0px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-50 {
    margin-top: 50px;
}
@media (max-width: 576px) {
    .mt-50 {
        margin-top: 30px;
    }
}

.mt-100 {
    margin-top: 100px;
}
@media (max-width: 576px) {
    .mt-100 {
        margin-top: 70px;
    }
}

.mt-150 {
    margin-top: 150px;
}
@media (max-width: 576px) {
    .mt-150 {
        margin-top: 100px;
    }
}

.mt-200 {
    margin-top: 200px;
}
@media (max-width: 576px) {
    .mt-200 {
        margin-top: 150px;
    }
}

.mt-250 {
    margin-top: 250px;
}
@media (max-width: 576px) {
    .mt-250 {
        margin-top: 150px;
    }
}

.mt-350 {
    margin-top: 350px;
}
@media (max-width: 576px) {
    .mt-350 {
        margin-top: 200px;
    }
}

.mb-15 {
    margin-bottom: 15px;
}

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

.mb-50 {
    margin-bottom: 50px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-200 {
    margin-bottom: 200px;
}

.mb-250 {
    margin-bottom: 250px;
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}






.owl-carousel {
    overflow: hidden;
}

.color-primary {
    color: #006f72;
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
    /* added this */
}

.owl-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
}

.navbar-nav {
    -webkit-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
    overflow: hidden;
}

.hideNav {
    overflow: hidden;
    height: 0px;
    -webkit-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
}

.showNav {
    overflow: hidden;
    height: auto;
}

@media (max-width: 576px) {
    header > nav > ul {
        margin-right: 0px;
    }
}

header > nav > ul > li {
    margin-left: 25px;
    margin-right: 25px;
    z-index: 999;
}
@media (max-width: 576px) {
    header > nav > ul > li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

header > nav > ul > li > a {
    cursor: pointer;
}

header > nav > ul > li > a.nav-link {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    color: #000000;
}
@media (max-width: 576px) {
    header > nav > ul > li > a.nav-link {
        font-size: 10px;
        font-weight: 800;
    }
}

/* nav underline animation */
header > nav > ul > li > a.nav-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #006f72;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

header > nav > ul > li > a.nav-link:hover:before, header > nav > ul > li > a.nav-link.active:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

header > nav > ul > li > a.nav-link:after {
    /* This value is the OPPOSITE color of our background */
    color: aqua;
    mix-blend-mode: multiply;
}

/*white nav*/
.nav-white .navbar-nav .nav-item .nav-link {
    color: #ffffff;
}

.nav-white .navbar-nav .nav-item .nav-link:hover {
    color: #006f72;
}

/*dark nav*/
.nav-dark .navbar-nav .nav-item .nav-link {
    color: #000000;
}

.nav-dark .navbar-nav .nav-item .nav-link:hover {
    color: #006f72;
}

.navbar-brand svg {
    width: 120px;
    height: auto;
}

.nav-white .navbar-brand svg path, .nav-white .navbar-brand > svg polygon, .nav-white .navbar-brand > svg rect {
    fill: #ffffff;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;
}

.logo {
    display: block;
    float: left;
    width: 150px;
    overflow: hidden;
    padding: 10px;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo svg path, .logo svg polygon, .logo svg rect, .logo svg {
    fill: #ffffff;
}

nav {
    margin-top: 20px;
    margin-right: 30px;
}

nav ul {
    list-style: none;
}

nav ul li {
    padding-left: 0px;
    float: left;
}

nav ul li a {
    font-size: 1em;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .modal-content .modal-header {
        border: 0;
        padding-top: 10px;
        padding-right: 10px;
    }

    .lp-title {
        padding-top: 30%;
        font-size: 0.7em;
    }

    .logo {
        display: block;
        float: left;
        width: 100px;
        overflow: hidden;
        padding: 10px;
    }

    nav {
        margin-top: 30px;
        margin-right: 0px;
    }

    nav ul li a {
        font-size: 0.6em;
    }

    .nav-link {
        padding-right: 0px;
    }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */





















/** scroll bars
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    background: #f1f3f5;
    border-left: 1px solid #d3d9e0;
}
::-webkit-scrollbar-thumb {
    background: #b5c0cb;
}
 **/
