body {
    font-family: 'Roboto', sans-serif;
    color: #343434;
}

a {
    color: #032f7a;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #032f7a;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #a1bc38;
    color: #fff;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 3px solid #032f7a;
    border-top-color: #bfe0fd;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

#topbar {
    height: 60px;
    transition: all 0.5s;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    background-color: #a1bc38;
}

#topbar.topbar-scrolled {
    top: -60px;
}

#topbar .contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#topbar .contact-info li {
    display: inline-block;
    padding: 0;
}

#topbar .contact-info li+li {
    margin-left: 18px;
}

#topbar .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: #a1bc38;
    padding-right: 4px;
}

#topbar .language .btn-primary {
    color: #ffffff;
    background-color: #032f7a;
    border-color: #032f7a;
}

#topbar .language .btn-primary:hover {
    border-color: #ffffff;
}

@media (max-width: 1200px) {
    .oei {
        display: block;
        font-size: 12px;
    }
}

#header {
    background: rgb(3, 47, 122);
    transition: all 2s;
    z-index: 997;
    top: 60px;
}

#header.header-scrolled {
    top: 0;
    background: #009DDF;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo b {
    font-size: 14px;
}

#header .logo img {
    max-height: 130px;
}

@media (max-width: 992px) {
    #header {
        top: 0;
        padding: 15px 0;
        background: transparent;
    }
}

.header-inner-pages {
    background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
    background: rgba(6, 98, 178, 0.9) !important;
}

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

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

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #063586;
    transition: 0.3s;
    font-size: 14px;
    padding: 0 3px;
    font-family: "Open Sans", sans-serif;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #a1bc38;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #a1bc38;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 8px;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    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: #032e54;
}

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

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

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

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

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

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    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: "\ea9d";
    }
}

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #a1bc38;
    position: fixed;
    top: 35px;
    left: 88%;
}

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

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

.mobile-nav a {
    display: block;
    position: relative;
    color: #0665b7;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

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

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

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

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

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

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

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(3, 47, 122, 0.75);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
    width: 80%;
    height: 275px;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

#hero {
    width: 100%;
    height: 95vh;
    overflow: hidden;
    position: relative;
    background: url("../img/hero-bg.jpeg") top center;
    background-size: cover;
    position: relative;
    margin-bottom: -20px;
    padding-top: 30em;
}

#hero:before {
    content: "";
    background: rgb(161, 188, 56, 0.45);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 600;
    width: 70%;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #a1bc38;
}

#hero .btn-get-started:hover {
    background: #a1bc38;
    color: #fff;
    text-decoration: none;
}

#hero-main {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    background: url("../img/hero-bg.jpeg") top center;
    background-size: cover;
    position: relative;
    padding-top: 13em;
}

#hero-main:before {
    content: "";
    background: rgb(250, 250, 250, 0.60);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
        margin-bottom: 60px;
    }
    #hero h2 {
        font-size: 28px;
    }
    #hero-main {
        height: 100vh;
        padding-top: 5em;
    }
}

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f8ff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #054a85;
}

.section-title p {
    margin-bottom: 0;
}

.icon-boxes .icon-box {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.icon-boxes .icon {
    margin: 0 auto 20px auto;
    display: inline-block;
    text-align: center;
}

.icon-boxes .icon i {
    font-size: 36px;
    line-height: 1;
    color: #a1bc38;
}

.icon-boxes .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.icon-boxes .title a {
    color: #032f7a;
}

.icon-boxes .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: #777777;
}

.history {
    padding: 10px 0 60px;
    background: url("../img/about-bg.png") center center no-repeat;
    position: relative;
}

.history:before {
    content: "";
    background: rgba(255, 255, 255, 0.35);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.history .container {
    position: relative;
}

.history .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.history .content ul {
    list-style: none;
    padding: 0;
}

.history .content ul li {
    padding-left: 28px;
    position: relative;
}

.history .content ul li+li {
    margin-top: 10px;
}

.history .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #032f7a;
    line-height: 1;
}

.history .content p:last-child {
    margin-bottom: 0;
}

.history .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #032f7a;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #032f7a;
}

.history .content .btn-learn-more:hover {
    background: #032f7a;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 992px) {
    .history {
        padding: 60px 0;
    }
}

.clients .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.clients .owl-item img {
    width: 60%;
    opacity: 0.5;
    transition: 0.3s;
}

.clients .owl-item img:hover {
    opacity: 1;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.clients .owl-dot.active {
    background-color: #032f7a !important;
}

.biocat {
    background: #f1f8ff;
    padding: 0;
}

.biocat .content {
    padding: 50px 100px 40px 100px;
}

.biocat .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.biocat .content h4 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 5px;
}

.biocat .content p {
    font-size: 15px;
    color: #848484;
}

.biocat .video-box {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.biocat .accordion-list {
    padding: 0 100px 60px 100px;
}

.biocat .accordion-list ul {
    padding: 0;
    list-style: none;
}

.biocat .accordion-list li+li {
    margin-top: 15px;
}

.biocat .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.biocat .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
}

.biocat .accordion-list span {
    color: #032f7a;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.biocat .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.biocat .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.biocat .accordion-list .icon-show {
    display: none;
}

.biocat .accordion-list a.collapsed {
    color: #343a40;
}

.biocat .accordion-list a.collapsed:hover {
    color: #032f7a;
}

.biocat .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.biocat .accordion-list a.collapsed .icon-close {
    display: none;
}

.biocat .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#032f7a 50%, rgba(8, 128, 232, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.biocat .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.biocat .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(8, 128, 232, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.biocat .play-btn:hover::after {
    border-left: 15px solid #032f7a;
    transform: scale(20);
}

.biocat .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@media (max-width: 1024px) {
    .biocat .content,
    .biocat .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .biocat .content {
        padding-top: 30px;
    }
    .biocat .accordion-list {
        padding-bottom: 30px;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.services .icon-box {
    margin-bottom: 20px;
    padding: 50px 40px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon-box i {
    float: left;
    color: #a1bc38;
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #05579e;
    transition: 0.3s;
}

.services .icon-box h4 a:hover {
    color: #032f7a;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
}

.services .icon-box .btn-primary {
    background-color: #a1bc38;
    color: #ffffff;
    border-color: #a1bc38;
}

.services .icon-box .btn-primary:hover {
    background-color: #032f7a;
    border-color: #032f7a;
}

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    background: #fff;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover img {
    transform: scale(1.1);
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #05579e;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #bfe0fd;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #ecf6fe;
    color: #0665b7;
}

.team .member .social a i {
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #032f7a;
    color: #fff;
}

.team .member .social a+a {
    margin-left: 8px;
}

.member-info {
    padding: 0 10px;
}

.contact .container {
    padding: 10px 0 60px;
    background: url("../img/contact-bg.png") no-repeat;
    position: relative;
}

.contact .container:before {
    content: "";
    background: rgba(255, 255, 255, 0.60);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.contact .container {
    position: relative;
}

.contact .info {
    width: 100%;
}

.contact .info i {
    font-size: 20px;
    background: #032f7a;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #043c6d;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #444444;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.error-message {
    display: none;
    color: #fff;
    background: rgb(228, 13, 13);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.sent-message {
    display: none;
    color: #fff;
    background: #032f7a;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #032f7a;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    border: 0;
    padding: 10px 32px;
    color: #032f7a;
    transition: 0.4s;
    border-radius: 50px;
    border: 2px solid #032f7a;
    background: #fff;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #032f7a;
    color: #fff;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.internal-nav {
    padding: 30px 0 15px 0;
    background: #ecf6fe;
    margin-top: 160px;
}

@media (max-width: 992px) {
    .internal-nav {
        margin-top: 50px;
    }
}

.internal-nav h2 {
    font-size: 26px;
    font-weight: 600;
    color: #043c6d;
}

.internal-nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.internal-nav ol li+li {
    padding-left: 10px;
}

.internal-nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #f8c255;
    content: "/";
}

.oei-details {
    padding-top: 40px;
}

.oei-details .oei-details-container {
    position: relative;
}

.oei-details .details-carousel {
    position: relative;
    z-index: 1;
}

.oei-details .details-carousel .owl-nav,
.oei-details .details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.oei-details .details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.oei-details .details-carousel .owl-dot.active {
    background-color: #032f7a !important;
}

.oei-details .oei-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: 0px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.oei-details .oei-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.oei-details .oei-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.oei-details .oei-info ul li+li {
    margin-top: 10px;
}

.oei-details .oei-description {
    padding-top: 50px;
}

.oei-details .oei-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.oei-details .oei-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .oei-details .oei-info {
        position: static;
        margin-top: 30px;
    }
}

#footer {
    background: rgb(161, 188, 56);
    background: linear-gradient(0deg, rgba(161, 188, 56, 1) 0%, rgba(5, 87, 158, 1) 25%);
    padding: 0 0 30px 0;
    color: #ffffff;
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 16px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    padding: 10px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #a1bc38;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #5db1f9;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: rgba(255, 255, 255, 0.75);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 26px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .copyright a {
    color: #ffffff !important;
}

.language {
    border-color: #ffffff;
}

@media (max-width: 992px) {
    #main {
        margin-top: 7em;
    }
}

.pdf {
    max-width: 50px !important;
}

.documents li {
    list-style: none;
}

#history:before {
    content: "";
    background: rgb(255, 255, 255, 0.80);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.btn-primary {
    background-color: #A1BC38;
    border-color: #A1BC38;
}

.btn-primary:hover {
    background-color: #93B037;
    border-color: #93B037;
}

.btn-secondary {
    background-color: #54ACDE;
    border-color: #54ACDE;
}

.btn-secondary:hover {
    background-color: #009CDE;
    border-color: #009CDE;
}