body {
    font-family: 'Open Sans', sans-serif;
    color: #444444;
    background-color: #f7fafd;
}

a {
    color: #0062A6;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer !important;
}

a:hover {
    color: #004373;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    color: #05639E;
}

button {
    border: 0;
    padding: 12px 34px;
    color: #ffffff;
    transition: 0.3s;
    border-radius: 50px;
}

button:focus {
    outline: none !important;
}

.close {
    text-shadow: none;
}

.form-check-inline {
    margin: 5px 1rem 0 1rem;
}

#navbar {
    z-index: 100;
    padding: 15px 0;
    background-color: white;
    box-shadow: 0px 0px 30px rgba(6,132,208,0.2);
}

#navbar .ltext {
  position: relative;
  top: 3px;
  left: 15px;
  text-align: center;
  color: #0062A6;
  width: calc(100vw - 135px);
}

#navbar .logo:hover .ltext {
  color: #0062A6;
}

#navbar .motto {
    display: none;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    position: relative;
    top: -2px;
}

#navbar .name {
    font-size: 17px;
    margin: 0;
    font-weight: 700;
    color: #003092;
    text-transform: uppercase;
}

#navbar .logo a {
    color: #ffffff;
}

#navbar .logo img {
    max-height: 40px;
}

.br {
    display: block;
}

@media (min-width: 570px) {
    .br {
        display: inline-block;
    }
    #navbar .ltext {
      position: relative;
      top: 8px;
      color: #0062A6;
      text-align: left;
    }
    #navbar .name {
        font-size: 30px;
    }
}

@media (min-width: 992px) {
    .container-fluid {
    	padding-left: 20px;
        padding-right: 20px;
	}
    #navbar .ltext {
        width: auto;
    }
}

@media (min-width: 1242px) {
    .container-fluid {
        padding-left: 70px;
        padding-right: 70px;
    }
    #navbar .logo img {
        max-height: 60px;
    }
    #navbar .motto {
        display: block;
    }
    #navbar .ltext {
        top: 7px;
    }
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

@media (min-width: 992px) {
    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 24px;
    }
}

@media (min-width: 1050px) {
    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 35px;
    }
}

@media (min-width: 1242px) {
    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 0 10px 50px;
    }
}

.nav-menu a {
    display: block;
    position: relative;
    color: #0062A6 !important;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nav-menu a:hover, .nav-menu li:hover > a {
    color: #004373 !important;
}

.nav-menu .active > a {
    color: #004373 !important;
    font-weight: 700;
}

.nav-menu .drop-down ul {
    border-radius: 8px;
    display: block;
    position: absolute;
    top: 100%;
    left: -40px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(6, 132, 208, 0.1);
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #0683D1;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #0062A6;
}

.nav-menu .drop-down > a:after {
    content: "\f0d7";
    font-family: FontAwesome;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% + 5px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\f0da";
    font-family: FontAwesome;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\f0d9";
    }
}

/* Mobile Navigation */
.mob-nav-toggle {
    position: fixed;
    top: 12px;
    right: 0px;
    z-index: 200;
    border: 0;
    padding: 12px 20px;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

@media (max-width: 330px) {
    .mob-nav-toggle {
        top: 7px;
    }
}

.mob-nav-toggle i {
    color: #003092;
}

.mob-nav {
    position: fixed;
    top: 85px;
    right: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #ffffff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mob-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mob-nav a {
    display: block;
    position: relative;
    color: #0062A6;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mob-nav a:hover, .mob-nav .active > a, .mob-nav li:hover > a {
    color: #004373;
    text-decoration: none;
}

.mob-nav .drop-down > a:after {
    content: "\f0d7";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mob-nav .active.drop-down > a:after {
    content: "\f0d8";
}

.mob-nav .drop-down > a {
    padding-right: 35px;
}

.mob-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mob-nav .drop-down li {
    padding-left: 20px;
}

.mob-nav-bg {
    width: 100%;
    height: 100%;
    z-index: 50;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 58, 90, 0.5);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mob-nav-active {
    overflow: hidden;
}

.mob-nav-active .mob-nav {
    opacity: 1;
    visibility: visible;
}

.mob-nav-active .mob-nav-toggle i {
    color: #003092;
}

.pagebody {
    margin-top: 70px;
}

@media (min-width: 992px) {
    .pagebody {
        margin-top: 74px;
    }
}

@media (min-width: 1242px) {
    .pagebody {
        margin-top: 90px;
    }
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    background-color: #0062A6;
}

.carousel-indicators li.active {
    background-color: #004373;
}

.carousel-indicators {
    display: none;
    bottom: 10px;
}

.carousel-item {
    height: calc(100vh - 143px);
}

.carousel-bg {
    height: 60vh;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-caption {
    position: relative;
    top: 2vh;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    color: #444444;
}

.carousel-caption h1{
    font-size: 4vh;
    text-transform: uppercase;
}

@media (min-width: 554px) {
    .carousel-caption {
        top: 30px;
    }
    .carousel-indicators {
        display: flex;
    }
}

@media (min-width: 790px) {
    .carousel-bg {
        height: 60vh;
    }
    .carousel-caption {
        position: relative;
        top: 2vh;
    }
    .carousel-caption h1{
        font-size: 5vh;
    }
}

@media (min-width: 992px) {
    .carousel-item {
        height: calc(100vh - 147px);
    }
}

@media (min-width: 1076px) {
    .carousel-item {
        height: calc(100vh - 173px);
    }
}

.product-item {
    margin-bottom: 30px;
}

.product-item .card {
    box-shadow: 0px 0px 20px rgba(6,132,208,0.1);
    border: none;
}

@media (min-width: 768px) {
    .product-item .card {
        min-height: 200px;
    }
}

.product-item .card-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
}

.product_category .col-2 {
    padding-right: 0;
}

.product_category .col-10 {
    padding-left: 0;
}

.product_category .row {
    margin-bottom: 5px;
    cursor: pointer;
}

.product_category i {
    font-size: 0.6rem;
    position: relative;
    top: -2px;
    color: #0683D1;
}

.product_category h5 {
    text-align: center;
    margin-top: 15px;
}

.product_category .row:hover i {
    color: #0062A6;
}

.product_detail .row {
    margin-bottom: 15px;
}

.product_detail .col-4 {
    font-style: italic;
}

.product_detail p {
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
}

.product_detail p {
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
}

.product_detail hr {
    width: 60%;
}

.product_detail p span {
    font-weight: normal;
    font-size: 1rem;
}

.product_detail i {
    color: #05639E;
    font-size: 0.8rem;
    position: relative;
    top: -1px;
}

.product_detail .col-1 {
    padding-right: 0;
}

.product_detail .col-11 {
    padding-left: 0;
}

.contactinfo .col-2 {
    text-align: center;
    font-size: 1.2rem;
}

.contactinfo .col-2 i {
    position: relative;
    top: -3px;
}

.contactinfo .col-10 {
    padding-left: 0;
}

.contactinfo .fas {
    color: #023352;
}

.contactform, .contactinfo {
    box-shadow: 0px 0px 15px rgba(6,132,208,0.1);
    border: none;
}

#sendMessageButton {
    margin: auto;
    background-color: #0062A6;
}


.heading {
    height: 120px;
    background: no-repeat center center;
    background-size: cover;
    margin-bottom: 30px;
}

.heading h1 {
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    top: 0vw;
    text-transform: uppercase;
    text-shadow: -1px 1px 5px white, 1px 1px 5px white, 1px -1px 5px white, -1px -1px 5px white
}

@media (max-width: 330px) {
    .heading h1 {
        top: -6vw;
    }
}

@media (min-width: 992px) {
    .heading {
        height: 12.5vw;
    }
    .heading h1 {
        top: 1vw;
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .heading h1 {
        top: 2vw;
    }
}

footer {
    background-color: white;
    box-shadow: 0px 0px 20px rgba(6,132,208,0.1);
    margin-top: 30px;
}

.recruitment-positions {
    margin-bottom: 30px;
}

.recruitment-positions .card {
    box-shadow: 0px 0px 20px rgba(6,132,208,0.1);
    border: none;
}

.recruitment-positions h4 {
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
}

.recruitment-positions p {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.recruitment-positions i {
    color: #0062A6;
}

.recruitment-positions .intern h5 {
    display: inline-flex;
}