@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../font/open-sans-v20-latin-300.eot');
    src: local(''), url('../font/open-sans-v20-latin-300.eot?#iefix') format('embedded-opentype'), url('../font/open-sans-v20-latin-300.woff2') format('woff2'), url('../font/open-sans-v20-latin-300.woff') format('woff'), url('../font/open-sans-v20-latin-300.ttf') format('truetype'), url('../font/open-sans-v20-latin-300.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../font/open-sans-v20-latin-regular.eot');
    src: local(''), url('../font/open-sans-v20-latin-regular.eot?#iefix') format('embedded-opentype'), url('../font/open-sans-v20-latin-regular.woff2') format('woff2'), url('../font/open-sans-v20-latin-regular.woff') format('woff'), url('../font/open-sans-v20-latin-regular.ttf') format('truetype'), url('../font/open-sans-v20-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../font/open-sans-v20-latin-600.eot');
    src: local(''), url('../font/open-sans-v20-latin-600.eot?#iefix') format('embedded-opentype'), url('../font/open-sans-v20-latin-600.woff2') format('woff2'), url('../font/open-sans-v20-latin-600.woff') format('woff'), url('../font/open-sans-v20-latin-600.ttf') format('truetype'), url('../font/open-sans-v20-latin-600.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../font/open-sans-v20-latin-700.eot');
    src: local(''), url('../font/open-sans-v20-latin-700.eot?#iefix') format('embedded-opentype'), url('../font/open-sans-v20-latin-700.woff2') format('woff2'), url('../font/open-sans-v20-latin-700.woff') format('woff'), url('../font/open-sans-v20-latin-700.ttf') format('truetype'), url('../font/open-sans-v20-latin-700.svg#OpenSans') format('svg');
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #000000;
    mix-blend-mode: darken;
}

*,
::after,
::before {
    box-sizing: border-box;
}

div {
    position: relative;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 300;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: #012d78;
}

.bg-theme {
    background-color: #012d78 !important;
}

.bg-light {
    background-color: #ffffff !important;
}

.bg-dark {
    background-color: #000000 !important;
}

.text-light {
    color: #ffffff;
}

.text-dark {
    color: #000000;
}

.text-red {
    color: #ff0000;
}

.text-center {
    text-align: center !important;
}
.text-end {
    text-align: right!important;
}
p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
}

.img-middle {
    margin: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #000000;
    background: #ffffff;
}

.btn-outline-dark {
    color: #000000;
    border-color: #000000;
}

.btn-outline-dark:hover {
    color: #ffffff;
    background: #000000;
}

.btn-outline-gci {
    color: #012d78;
    border-color: #012d78;
}

.btn-outline-gci:hover {
    color: #ffffff;
    background: #012d78;
}

.btn-gci {
    color: #fff;
    background-color: #012d78;
    border-color: #012d78;
}

.btn-gci:hover {
    color: #fff;
    background-color: #00328a;
    border-color: #00328a;
}

.pl-xl-5 {
    padding-left: 5rem;
}

.pr-xl-5 {
    padding-right: 5rem;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.special {
    display: none;
}

.h-100 {
    height: 100%;
}

.vh-100 {
    min-height: 100vh !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.unstyled-list {
    list-style: none;
    padding-left: 0;
}

.price-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ababab;
}

/*===========================Navigation=============================*/
.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar {
    position: fixed;
    z-index: 10000;
    padding: 0;
    top: 0;
    right: 0;
    height: 100vh;
}

.optpixel-nav {
    display: flex;
    z-index: 999;
    height: 100%;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #012d78;
    padding-top: .5rem;
    padding-bottom: .5rem;
    box-shadow: -1px -1px 5px #000000;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-content: center;
}

.navbar-brand,
.navbar-toggler,
.navbar-social {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 5px !important;
}

.brand-logo {
    width: 42px;
}

.navbar-social {
    list-style: none;
}

.navbar-social .social-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.navbar-toggler {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1;
    border: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.offcanvas-collapse {
    position: fixed;
    display: flex;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 51.6%;
    padding-left: 4.375rem;
    padding-right: 4.375rem;
    overflow-y: auto;
    visibility: hidden;
    background: #fffffff0;
    transition: transform .8s ease-in-out, visibility .8s ease-in-out;
}

.offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
}

.nav-link {
    position: relative;
    display: inline-block;
    color: rgb(1 45 120);
    font-size: 1.8rem;
    font-weight: bold;
    padding: 10px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: #012d78;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.nav-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/*===========================Main Layout=============================*/
main,
footer {
    position: relative;
    width: calc(100% - (50px));
}

section,
.container,
.container-fluid {
    position: relative;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.overlay {
    position: fixed;
    min-height: 100vh;
    width: 100vw;
    background: radial-gradient(ellipse at bottom, #003958 0%, #000000 100%);
}

.banner {
    min-height: 100vh;
    overflow: hidden;
}

#introduction h1 {
    font-size: 1.6rem;
    text-transform: uppercase;
}

#introduction h1 span {
    color: #fff;
    background: #012d78;
    padding: 0rem 0.5rem;
    border-radius: 0.2rem;
}

#introduction h2 {
    font-size: 6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.follow-us {
    list-style: none;
    padding: 0;
}

.follow-us li {
    display: inline;
}

.follow-us li a i {
    background: #e8e8e8;
    color: #012d78;
    margin: 0 0.2rem;
    text-align: center;
    border-radius: 0.2rem;
}

.follow-us li a i:hover {
    background: #012d78;
    color: #ffffff;
}

#title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #FFF;
    text-align: center;
    letter-spacing: 4px;
    margin-top: -60px;
    padding-left: 10px;
    z-index: 99;
}
.shadow{
    box-shadow: 1px 1px 4px 3px #ccc;
}
.fw-bold{
    font-weight: bold;
}



/*===========================Contact====================================*/
.form-control {
    display: block;
    width: 100%;
    height: calc(1.45em + 1.6rem + 2px);
    padding: .8rem .8rem;
    margin-bottom: 1rem;
    font-size: inherit;
    font-weight: 300;
    line-height: 1.45;
    color: #000000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cfcfcf !important;
    border-radius: .1875rem;
}

textarea.form-control {
    height: auto;
}
.small, small {
    font-size: 0.875em;
}

/*===========================Footer-Layout=============================*/
footer {
    position: relative;
    color: #fff;
    background: #012d78;
}

.footer-col {
    padding: 1rem;
}

.footer-col-inner {
    padding: 1rem 1.5rem;
    border-radius: 0.2rem;
    font-size: 1rem;
}

.footer-col-inner .nav li {
    display: block;
    width: 100%;
    padding-bottom: 15px;
}

.footer-col-inner a {
    color: #fff;
}

.footer-col-inner h4 {
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.footer-about .footer-col-inner {
    background-color: #fff;
    background-image: none;
    color: #000;
}

.flash-alert {
    position: fixed;
    top: 10px;
    right: 10px;
    display: block;
    max-width: 269px;
    z-index: 99999999;
}
.alert {
    padding: 10px;
    font-size: 0.875em;
}
.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-success {
    color: #00663f;
    background-color: #ecffed;
    border-color: #bbf0bd;
}
.alert-warning {
    color: #000000;
    background-color: #ffde4d;
    border-color: #fff45d;
}

.me-2 {
    margin-right: 0.5rem!important;
}
.flex-shrink-0 {
    flex-shrink: 0!important;
    transform: translateY(5px);
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bcd0c7;
}
.table>:not(caption)>*>* {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}