@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700;900&display=swap');
body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #444444;
}

a {
    color: #226899;
    /* color: inherit; */
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

a:hover {
    color: inherit;
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans Pro', sans-serif;
}

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.headerx {
    height: 14px;
    position: relative;
    top: -3px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #226899;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

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

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    /* background: url(../img/header-bg.jpg) no-repeat; */
    background-size: cover;
    object-fit: cover;
    transition: all 0.5s;
    z-index: 997;
    padding: 7px 0 0 0;
    background: #226899;
}

#header.header-scrolled {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

.header_link li {
    /* float: right; */
    list-style: none;
    padding: 5px 15px;
    color: #fff;
    font-size: 16px;
	display: inline-block;
}

.header_link {
    margin: 0;
    padding: 3px 0px;
    float: right;
}

#header .logo a {
    color: #0b2341;
}

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

.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.main-navigation {
    padding: 0 30px;
    background: #2b84c3;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.main-navigation li {
    position: relative;
}

li.page_item_has_children:after {
    content: "\e9ac";
    font-family: 'boxicons'!important;
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #fff;
    font-size: 18px;
    padding-left: 0.5em;
    position: absolute;
    top: 10px;
    right: 0;
}

.main-navigation a,
.main-navigation a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff !important;
    white-space: nowrap;
    transition: 0.3s;
}

.main-navigation a i,
.main-navigation a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.main-navigation a:hover,
.main-navigation .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #0098ff;
}

.main-navigation .getstarted {
    background: #0098ff;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.main-navigation .getstarted:hover {
    color: #fff;
    background: #0098ff;
}

.navbar .dropdown ul,
.navbar .page_item_has_children ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #0098ff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li,
.navbar .page_item_has_children ul li {
    min-width: 200px;
}

.navbar .dropdown ul a,
.navbar .page_item_has_children ul a {
    padding: 10px 20px;
    text-transform: none;
    text-transform: uppercase;
    font-weight: 700;
}

.navbar .dropdown ul a i,
.navbar .page_item_has_children ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a,
.navbar .page_item_has_children ul a:hover,
.navbar .page_item_has_children ul .active:hover,
.navbar .page_item_has_children ul li:hover>a {
    color: #0098ff;
}

.navbar .dropdown:hover>ul,
.navbar .page_item_has_children:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #0b2341;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background: #0098ff;
    background: url(../img/header-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    overflow-y: auto;
    transition: 0.3s;
    margin: 0;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #0098ff;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #0098ff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #0098ff;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.border_bottom_1 {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid #27a7fc;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 80vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

#hero .carousel-item::before {
    content: '';
    background-color: rgba(1, 37, 55, 0.4);
}

#hero .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 82px;
    left: 50px;
    right: 50px;
}

#hero h2 {
    color: #fff;
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0px 6px 9px #000000bd;
}

#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .border_bottom_1 {
        display: none;
    }
}

@media (min-width: 1200px) {
    #hero p {
        width: 70%;
        text-align: center;
    }
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #0098ff;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #0098ff;
    margin-top: 15px;
}

#hero .btn-get-started:hover {
    background: #0098ff;
}

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }
    #hero .carousel-container {
        text-align: center;
        top: 74px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
}

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

@media (max-height: 500px) {
    #hero {
        height: 100vh;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 80px 0;
}

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

.section-title {
    padding-bottom: 10px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1f1f1f;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    color: #226899;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 180px 0px;
    overflow: hidden;
    position: relative;
    background: #f1f7fc url(../img/grid-bg.png) 50% 50%;
}

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

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

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

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

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

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

.about .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: #226899;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #226899;
}

.about .content .btn-learn-more:hover {
    background: #226899;
    color: #fff;
    text-decoration: none;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    padding-top: 0;
}

.counts .count-box {
    box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
}

.counts .count-box i {
    display: block;
    font-size: 30px;
    color: #0098ff;
    float: left;
}

.counts .count-box span {
    font-size: 42px;
    line-height: 24px;
    display: block;
    font-weight: 700;
    color: #0b2341;
    margin-left: 50px;
}

.counts .count-box p {
    padding: 30px 0 0 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

.counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #164682;
    font-size: 15px;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: #2169c4;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us {
    padding: 0;
}

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #123a6d;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

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

.why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

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

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

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

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

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    color: #0b2341;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #226899;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

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

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

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

.why-us .accordion-list a.collapsed {
    color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
    color: #226899;
}

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

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

.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#0098ff 50%, rgba(237, 80, 46, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.why-us .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);
}

.why-us .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(237, 80, 46, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
    border-left: 15px solid #0098ff;
    transform: scale(20);
}

.why-us .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) {
    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }
    .why-us .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
--------------------------------------------------------------*/

.services {
    background: url(../img/our-servicebg.jpg) no-repeat;
    background-size: cover;
}

.services .icon-box {
    text-align: center;
    background: #fefefe;
    text-transform: uppercase;
    width: 100%;
    box-shadow: 0px 5px 15px 0px rgb(110 123 131 / 19%);
    padding: 20px 10px 25px 10px;
    border-radius: 6px;
    transition: all ease-in-out 0.3s;
}

.services .icon-box .icon img {
    margin: 0 auto;
    width: 73px;
    height: 73px;
    border-radius: 5px;
    transition: all .3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}

.services .icon-box .icon i {
    color: #fff;
    font-size: 28px;
}

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

.services .icon-box h4 a {
    color: #0b2341;
}

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

.services .icon-box:hover {
    background: #f2fdff;
    border-color: #f2fdff;
}


/* .services .icon-box:hover .icon {} */

.services .icon-box:hover .icon i {
    color: #bbf5ff;
}

.services .icon-box:hover .icon::before {
    background: #f1775d;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
    color: #0b2341;
}


/*--------------------------------------------------------------
# events
--------------------------------------------------------------*/

.events {
    background: url(../img/events-bg.jpg) no-repeat;
    background-size: cover;
}

.events .events-wrap {
    padding-left: 0px;
}

.events .events-item {
    box-sizing: content-box;
    padding: 15px 15px 15px 15px;
    margin: 5px 15px;
    border-radius: 10px;
    margin-top: -76px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
    position: relative;
}

.events .events-wrap .events-img {
    width: 100%;
    border-radius: 5px;
    position: relative;
}

.events .events-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #226899;
}

.events .events-item h4 {
    font-size: 16px;
    color: #999;
    margin: 0;
}

.events .events-item .quote-icon-left,
.events .events-item .quote-icon-right {
    color: #fdedea;
    font-size: 26px;
}

.events .events-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.events .events-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.events .events-item p {
    color: #000;
    margin: 7px auto 14px auto;
}

.events .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #226899;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #226899;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
    color: #669ee5;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
}

.faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
}

.faq .faq-item p {
    font-size: 15px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
    color: #0b2341;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: #0098ff;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

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

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    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: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #226899;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

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

.contact .php-email-form button[type="submit"] {
    background: #226899;
    border: 0;
    padding: 10px 30px;
    border-radius: 4px;
    color: #fff;
    transition: 0.4s;
}

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

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

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


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    /* background: #f6f9fd; */
    min-height: 40px;
    margin-top: 82px;
}

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

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0b2341;
}

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

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

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #123a6d;
    content: "/";
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #226899;
    background-size: cover;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

a.privacy_polcy {
    color: #60ff00;
}

.subscribe_text {
    font-size: 16px;
    padding-right: 40px;
}

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

#footer .footer-top .footer-info {
    margin-bottom: 15px;
    background: #05101e;
    border-top: 4px solid #0098ff;
    text-align: center;
    padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    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;
}

.scl-links a {
    font-size: 16px;
    display: inline-block;
    color: #1e1e1e;
    line-height: 1;
    /* float: right; */
    padding: 7px 0;
    margin-right: 4px;
    border-radius: 61px;
    text-align: center;
    width: 30px;
    height: 30px;
    transition: 0.3s;
    background: #ffffff;
}

.scl-links a:hover {
    color: #fff;
    background: #2b84c3;
    text-decoration: none;
}

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

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

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #0098ff;
    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,
#footer .contact_text a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover,
#footer .contact_text a:hover {
    color: #0098ff;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: none;
    border: 2px solid #fff;
    padding: 15px 20px;
    position: relative;
    border-radius: 37px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 6px 20px;
    font-size: 18px;
    background: none;
    color: #fff;
    width: calc(100% - 110px);
}

.wpcf7 form .wpcf7-response-output {
    margin: 2.5em 0.5em 1em !important;
}

#footer .footer-top .footer-newsletter form placeholder {
    color: #fff;
}

textarea:focus,
input:focus {
    outline: none;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    font-weight: 600;
    text-transform: uppercase;
    background: none;
    font-size: 16px;
    padding: 0 30px 2px 31px;
    background: #ffffff;
    color: #226899;
    transition: 0.3s;
    border-radius: 0 32px 31px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #226899;
    color: #fff;
}

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

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.blue_btn {
    
    background: #2b84c3;
    border: 2px solid #2b84c3;
    color: #fff;
    margin-top: 25px;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 50px;
}

.blue_btn:hover {
    border: 2px solid #fff;
    background: none;
    color: #fff;
    text-decoration: none;
}

.blue_btn1 {
    background: #226899;
    border: 2px solid #226899;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 50px;
}

.blue_btn1:hover {
    border: 2px solid #4a4a4a;
    background: none;
    color: #4a4a4a;
    text-decoration: none;
}

.border_btn {
    background: none;
    border: none;
    border: 2px solid #fff;
    text-transform: uppercase;
    color: #fff;
    padding: 8px 20px;
    margin-left: 5px;
    border-radius: 50px;
}

.border_btn:hover {
    background: #2b84c3;
    color: #fff;
    border: 2px solid #2b84c3;
    text-decoration: none;
}

.view_more {
    background: none;
    border: none;
    border: 2px solid #4a4a4a;
    text-transform: uppercase;
    color: #4a4a4a;
    padding: 8px 20px;
    margin-left: 5px;
    border-radius: 50px;
}

.view_more:hover {
    background: #226899;
    color: #fff;
    border: #226899;
    text-decoration: none;
}

.about .map_nwf {
    position: absolute;
    top: -29px;
    left: 50%;
    width: 50%;
    height: 100%;
/*     background: url(../img/nmap.png) 0 0 no-repeat; */
	background: url(/wp-content/uploads/2025/10/nmap.png) 0 0 no-repeat;
    background-size: auto 100%;
    transition: all 0.6s ease;
    transition-delay: 0.6s;
}

.map_nwf .map-item {
    position: absolute;
    background: 50% 50% no-repeat;
    background-size: auto 100%;
    pointer-events: none;
}

.map_nwf .map-cloud {
    top: 127px;
    position: absolute;
    left: -29px;
    height: 85px;
    width: 220px;
    background-image: url(../img/cloud.svg);
    animation: fly 7s infinite;
}

.map_nwf .map-cloud2 {
    position: absolute;
    top: auto;
    bottom: 375px;
    z-index: 2;
    right: 13px;
    width: 220px;
    height: 105px;
    animation-delay: -5s;
    background-image: url(../img/cloud.svg);
    animation: fly 7s infinite;
}

.map_nwf .navigation_arrow {
    bottom: 13px;
    left: 131px;
    height: 100px;
    width: 100px;
    background-image: url(../img/navigation.svg);
    animation: way 2s alternate infinite;
}

.events {
    position: relative;
}

.section_title {
    margin: 20px 0px;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    color: #226899;
}

.news {
    margin-bottom: 44px;
}

.news .date {
    background: #226899;
    width: 104px;
    height: 96px;
    position: absolute;
    padding: 20px 15px 11px 15px;
    font-size: 44px;
    font-weight: 900;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 50px;
    text-align: center;
}

.news .date span {
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    display: grid;
    line-height: 15px;
}

.news p,
.news h3 {
    margin-left: 120px;
    font-size: 16px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.news p a {
    color: #000;
}

.link_news {
    margin-left: 120px;
    font-size: 22px;
    margin-bottom: 10px;
}

.link_news a {
    color: #226899;
}

.link_news a:hover {
    color: #000;
}

.text-black {
    color: #000;
}

.contact_info {
    position: relative;
    margin-bottom: 15px;
}

.icon_contact {
    position: absolute;
    left: 0;
    top: -2px;
}

.contact_text h6 {
    /* margin-left: 26px; */
    font-size: 16px;
    /* text-transform: uppercase; */
    font-weight: 600;
}

.contact_text p {
    /* margin-left: 26px; */
}

.color_default {
    color: #226899;
    font-size: 18px;
}

.font_wight {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

@media only screen and (max-width: 721px) {
    .about {
        padding: 52px 0px;
        overflow: hidden;
        position: relative;
        background: #f1f7fc url(../img/grid-bg.png) 50% 50%;
    }
    .border_bottom_1 {
        display: none;
    }
    .scl-links a {
        align-items: center;
        margin: 0 auto;
        float: none !important;
        text-align: center;
    }
    .header_link li {
        float: none !important;
        display: inline-block;
        list-style: none;
        padding: 5px 15px;
        color: #fff;
        font-size: 16px;
    }
    .about .map_nwf {
        position: relative;
        right: 98px;
        margin-left: -200px;
        width: 100%;
        top: auto;
        margin-top: -51px;
        bottom: 0;
        height: 542px;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 10px;
        left: -7px;
        width: 100%;
    }
    #footer .footer-top .footer-newsletter form {
        margin-top: 4px;
        background: none;
        border: 2px solid #fff;
        /* padding: 0px 1px; */
        position: relative;
        border-radius: 37px;
    }
    #footer .footer-top .footer-newsletter form input[type="submit"] {
        position: absolute;
        top: 0;
        right: -1px;
        bottom: 0;
        border: 0;
        font-weight: 600;
        text-transform: uppercase;
        background: none;
        font-size: 15px;
        padding: 0px 15px 2px 15px;
        background: #ffffff;
        color: #226899;
        transition: 0.3s;
        border-radius: 0 32px 31px 0;
    }
    .scl-links {
        text-align: center;
        margin-top: 5px !important;
    }
}


/* } */

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}

@media (max-width: 1200px) {
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 20px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff !important;
        white-space: nowrap;
        transition: 0.3s;
    }
}

@media screen and (min-width:1400px) and (max-width: 1920px) {
/*     .about .map_nwf::after {
        content: "";
        position: absolute;
        top: 0;
        z-index: 1;
        right: 0%;
        width: 8%;
        height: 100%;
        background: #c3e0a8;
    } */
} 

@-webkit-keyframes fly {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(30px, 0, 0);
    }
}

@keyframes fly {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(30px, 0, 0);
    }
}

@-webkit-keyframes way {
    0%,
    100% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-15deg);
    }
}

@keyframes way {
    0%,
    100% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-15deg);
    }
}

.wpcf7 .ajax-loader {
    position: absolute !important;
    top: 70px !important;
}

span.wpcf7-form-control-wrap.email {
    position: absolute !important;
}

.wpcf7-not-valid-tip {
    position: absolute !important;
    top: 60px !important;
}

.wpcf7 .ajax-loader {
    position: absolute !important;
    top: 70px !important;
}

.wpcf7-response-output {
    position: absolute !important;
    top: 67px !important;
}

#breadcrumbs {
    list-style: none;
    margin: 4px 0;
    overflow: hidden;
    margin-left: 15px;
}

#breadcrumbs li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

#breadcrumbs .separator {
    font-size: 16px;
    font-weight: 100;
    color: #ccc;
}

.bellows .bellows-nav .bellows-custom-content.bellows-custom-content-padded,
.bellows .bellows-nav .bellows-target,
.bellows .bellows-nav .bellows-target.bellows-target-w-image>.bellows-image.bellows-image-padded,
.bellows .bellows-nav .bellows-target.bellows-target-w-image>.bellows-target-text {
    padding: 10px !important;
}

.view_more:hover a {
    color: #fff;
}

.padding_0 {
    padding: 0;
}

.bg_one_lg {
    background: #dbf4ff;
}

.entry-content h1,
.entry-header h1 {
    font-size: 34px;
    font-weight: 800;
    color: #226899;
    padding-bottom: 10px;
    margin: 0;
}

.entry-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #a2ce4c !important;
    /* margin: 0; */
}

.entry-content h2 a {
    color: #a2ce4c !important;
}

.entry-content h3 a {
    color: #555 !important;
}

.entry-content h3 {
    /* margin: 0; */
    font-size: 22px;
    font-weight: 600;
    color: #555;
}

.entry-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    /* margin: 0;      */
}

.entry-content ul {
    margin: 15px 0;
    padding-left: 20px;
}


/* .entry-content ul li{
    list-style: none;
    position: relative;
    margin-bottom: 15px;
}
.entry-content ul li:before {
    content: "";
    height: 20px;
    width: 20px;
    display: block;
    background: url(../img/water-list.png) no-repeat;
    position: absolute;
    background-size: auto 20px;
    left: -30px;
    top: 4px;
} */

.entry-content ul li::marker {
    /* color: #1883d1 !important; */
    color: #000;
    /* font-size: 16px; */
}

.entry-content ul li {
    margin-bottom: 15px;
}


/* .panel-layout {
    background-color: #f2f7fd !important;
} */

.content-white-bg {
    background: #fff;
    padding-right: 15px;
    /* height: 100vh !important; */
    /* min-height: 800px; */
}

.bellows.bellows-skin-blue-material {
    background: #f2f7fd !important;
    box-shadow: none !important;
}

.bellows.bellows-skin-blue-material .bellows-nav .bellows-target,
.bellows.bellows-skin-blue-material .bellows-nav .bellows-custom-content {
    color: #000 !important;
}

.bellows.bellows-skin-blue-material .bellows-nav .bellows-item-level-0>.bellows-target,
.bellows.bellows-skin-blue-material .bellows-nav .bellows-item-level-0>.bellows-custom-content {
    border-bottom: 1px solid rgb(230 237 247) !important;
}

.bellows.bellows-skin-blue-material .bellows-nav .bellows-item-level-0>.bellows-target:hover {
    background: #a7d4f0 !important;
}

.bellows.bellows-skin-blue-material .bellows-nav .bellows-item-level-0>.bellows-target .bellows-subtoggle {
    background: none !important;
    font-size: 12px;
}

.bellows-subtoggle i {
    background: none !important;
    font-size: 12px;
}

.bellows.bellows-skin-blue-material .bellows-nav .bellows-item-level-0.bellows-current-menu-item>.bellows-target,
.bellows.bellows-skin-blue-material .bellows-nav .bellows-item-level-0.bellows-current-menu-ancestor>.bellows-target {
    background: #e6edf7 !important;
}

.bellows {
    margin: 20px 10px !important;
}

.bellows.bellows-skin-blue-material .bellows-nav .bellows-item-level-0.bellows-active>.bellows-target {
    background: #a7d4f0 !important;
}

.bellows .bellows-nav,
.bellows .bellows-nav .bellows-menu-item,
.bellows .bellows-nav .bellows-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-right: 15px !important;
}

.bellows .bellows-nav .bellows-subtoggle {
    height: 100%;
    width: 16px !important;
    display: block;
    position: absolute;
    right: -26px !important;
    top: 0;
}


/* body:not(.home) p {
    text-align: justify;
} */

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item0 {
    border-radius: 5px !important;
}

#bwg_container1_0 #bwg_container2_0 #spider_popup_overlay_0 {
    background-color: #000000 !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-current-page-ancestor {
    background: #0871b5 !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout ul.mega-sub-menu li.mega-current-page-ancestor a.mega-menu-link {
    background: #0871b5 !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
    padding: 16px 8px !important;
    height: auto !important;
    line-height: normal !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    padding: 10px 15px 11px 15px !important;
    line-height: 20px !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout ul.mega-sub-menu li.mega-current-menu-item>a.mega-menu-link {
    background: #0871b5 !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
    margin: 0px 0 0 0px;
}

.bellows.bellows-skin-blue-material .bellows-nav .bellows-submenu .bellows-current-menu-item>.bellows-target,
.bellows.bellows-skin-blue-material .bellows-nav .bellows-submenu .bellows-current-menu-ancestor>.bellows-target {
    background: #f5f5f5 !important;
}


/* table,
td,
tr,
th {
    border: 1px solid #c3c3c3;
    text-align: center;
    padding: 5px;
} */

th {
    border-top: 1px solid #ddd;
}

th,
td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

div#map {
    height: 500px !important;
    width: 100% !important;
}

div#map_canvas {
    height: 500px !important;
    width: 100% !important;
}

.divider-right {
    border-right: 1px solid #e0e0e0;
}

div#paymentForm {
    padding: 25px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 0 !important;
    /* border: 1px solid #ddd; */
}

table td img {
    width: auto !important;
    /* min-width: 100% !important; */
    max-width: none;
}

span.page-numbers.current {
    background: #047ccc;
    color: #fff;
    padding: 8px 13px;
    border-radius: 4px;
}

.page-numbers,
.nav-previous,
.nav-next {
    background: #ececec;
    position: relative;
    display: inline-block;
    color: #000;
    padding: 8px 13px;
    border-radius: 4px;
    margin: 4px 1px;
}

.nav-previous a,
.nav-next a {
    color: #000;
}

body.page-template-press_release .news .date {
    font-size: 33px;
}

a.head-contact {
    color: #fff;
}

.page-id-814 .sow-slider-base {
    height: auto !important;
}

.events-wrap img {
    width: 100%;
}

@media only screen and (max-width: 480px) {
    body.page-id-482 .entry-content a {
        word-break: break-word;
    }
    a.head-contact {
        color: #fff;
        font-size: 12px;
    }
    .wpcf7-form-control::-webkit-input-placeholder {
        /* Edge */
        font-size: 14px;
    }
    .wpcf7-form-control:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        font-size: 14px;
    }
    .wpcf7-form-control::placeholder {
        font-size: 14px;
    }
}

@media only screen and (max-width: 540px) {
    .search_header {
        display: table;
        margin: 0 auto;
    }
    ul.header_link li {
        display: table;
        margin: 0 auto;
    }
    ul.header_link {
        margin-top: 10px;
		float: none;
    }
    .header-tollnumber {
        width: 100% !important;
    }
    .header-social {
        width: 100% !important;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .header_link li {
        list-style: none;
        padding: 5px 15px;
        color: #fff;
        font-size: 16px;
    }
    .search_header {
        width: inherit;
        margin-top: 16px;
    }
    .header-tollnumber {
        width: inherit;
    }
    .header-social {
        width: inherit;
    }
    .news .date {
        background: #226899;
        width: 74px;
        height: 77px;
        position: absolute;
        padding: 15px 8px 11px 8px;
        font-size: 44px;
        font-weight: 900;
        border-radius: 3px;
        color: #fff;
        margin-bottom: 0px;
        line-height: 37px;
        text-align: center;
    }
    body.page-template-press_release .news .date {
        font-size: 26px;
    }
    .news p,
    .news h3 {
        margin-left: 90px;
        font-size: 16px;
        padding-right: 20px;
        margin-bottom: 10px;
    }
    .news .date span {
        font-weight: 600;
        font-size: 18px;
        text-transform: uppercase;
        display: grid;
        line-height: 15px;
    }
    .blue_btn {
        background: #226899;
        border: 2px solid #226899;
        color: #fff;
        margin-top: 25px;
        padding: 10px 20px;
        font-size: 14px;
        text-transform: uppercase;
        border-radius: 50px;
    }
    .border_btn {
        background: none;
        position: relative;
        border: 2px solid #fff;
        text-transform: uppercase;
        color: #fff;
        padding: 10px 20px;
        font-size: 14px;
        margin-left: 5px;
        border-radius: 50px;
    }
    #hero .carousel-container {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 82px;
        left: 15px;
        right: 15px;
    }
    .link_news {
        margin-left: 90px;
        font-size: 22px;
        margin-bottom: 10px;
    }
    .sow-slide-nav.sow-slide-nav-next,
    .sow-slide-nav.sow-slide-nav-prev,
    .sow-slider-pagination {
        display: block !important;
    }
    .wpcf7-form.invalid {
        margin-bottom: 100px !important;
    }
    .wpcf7-form {
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    ul.header_link {
        margin: 0 0 0 0;
    }
    .header_link li {
        list-style: none;
        padding: 5px 15px;
        color: #fff;
        font-size: 16px;
    }
}

@media only screen and (max-width: 1024px) {
    .table-responsive {
        overflow-x: auto !important;
    }
    /* .back-to-top:hover {
        background: #0098ff;
    } */
}

.sow-slider-base ul li {
    z-index: 1 !important;
}

.word_break {
    word-break: break-word;
}

span.press-date-ext {
    box-sizing: content-box !important;
    display: inline-block !important;
    margin-left: 2px;
    font-size: 17px !important;
    text-transform: lowercase !important;
    margin-top: 14px !important;
    vertical-align: top;
}

.newsletter_title,
.press_release a:hover {
    color: #226899;
}

body.page-id-392 table {
    width: 100% !important;
}

.nav-subtitle {
    font-weight: bold;
    margin: 0 5px;
}

.sow-slider-base {
    height: 500px;
}

.sow-slider-images li img {
    min-height: 500px !important;
}

body.search .entry-summary {
    border-bottom: 1px dotted #ddd;
}

.search_header {
    width: 300px;
    margin-top: 16px;
    margin-right: 172px;
}

.header-tollnumber {
    width: 325px;
}

.header-social {
    width: 180px;
}

.overflow_hid {
    overflow: hidden;
    position: relative;
}

#navbar {
    padding: 0px 15px;
    margin-top: 7px;
}

.bg_color_search {
    color: #fff;
    background-color: #a2ce4c;
    border-color: #a2ce4c;
}

.bg_color_search:hover {
    color: #fff;
    background-color: #2b84c3;
    border-color: #2b84c3;
    box-shadow: none;
}

.bg_color_search:focus {
    color: #fff;
    background-color: #226899;
    border-color: #226899;
    box-shadow: none;
}

body.page-id-746 div#map-canvas {
    height: 300px !important;
    max-height: 300px !important;
}

    .members_list {
	  border-radius: 5px;
      width: 100%;
      padding: 20px 20px;
      margin-bottom: 20px;
      background-color: #FFFFFF;
      box-shadow: 0 0 10px rgb(51 51 51 / 15%);
      position: relative;
      border-radius: 5px;
      display: block;

    }

    .team_member {
      border-radius: 5px;
      width: 100%;
    }

    .entry-content h3 {
      /* margin: 0; */
      font-size: 24px;
      font-weight: 700;
      color: #226899;
      margin-bottom: 2px;
    }

    .sub_titiles_inner {
      font-weight: 600;
    }

    .members_sub_title {
      font-size: 16px;
      font-weight: 400;
    }

    .line_height_adj {
      line-height: 35px;
    }

    @media only screen and (max-width:990px) {
      .team_member {
        border-radius: 5px;
        width: auto;
      }
    }

#pay_now_button{
	background-color: #226899;
	padding: 10px 15px;
	color: #fff;
}

body .uwy.userway_p2 .uai, body .uwy.userway_p3 .uai{
	top: 40% !important;
}

.wpcf7-response-output{
	display: none !important;
}

.notranslate > div > a {
	color: #000 !important;
}
.gt_switcher
{
	border-radius:4px;
	position: absolute; right: 0px; top: 16px;
}

.gt_switcher .gt_selected a {
    padding: 6px 5px !important;
    
}

 .top-header-1
  {
padding: 0px !important;
margin: 0px !important;
background: #135180 !important;
  }
 
.header-social {
    margin-top: 5px;
}
.float-right
{
  float: right;
}

.postion-relative
{
	position:relative !important;
}

@media(max-width:768px){
	.float-right {
    float: none;
    display: flex;
    align-items: center;
    justify-content: center !important;
}
}
@media(max-width:500px)
{
	.switcher{
		top: 2px !important;
    right: 12px !important;	
	}
	.search_header {
    margin-right: 0px;
	margin-top: 53px;
    width: 100%;
}
	.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

}
.quick-links-sites
{
  list-style: none;
  padding: 0;
  margin: 0px;
}
.quick-links-sites li
{
  list-style: none;
  margin: 5px 0px;
}
.pt-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 3px 0px;
  font-size: 18px;
  transition: border-color 0.4s, color 0.4s, background-color 0.4s, box-shadow 0.4s;
}
.pt-button i {
  position: relative;
  top: 2px;
  font-size: 14px;
  transition: transform 0.3s;
}
.pt-button:hover i {
  transform: translateX(4px);
}
.pt-button.icon-position-left {
  flex-direction: row-reverse;
}
.pt-button.filled {
  padding: 13px 36px 10px;
  border-radius: 25px;
  background-color: #000;
  color: #fff;
}
.pt-button.filled:hover {
  background-color: #000;
  color: #000;
}
.pt-button.filled-2 {
  padding: 13px 36px 10px;
  border-radius: 25px;
  background-color: #eee;
  color: #000;
  box-shadow: 0px 0px 83px rgba(196, 232, 73, 0.35), 0px 0px 36.1828px rgba(196, 232, 73, 0.23625), 0px 0px 13.4875px rgba(196, 232, 73, 0.175), 0px 0px 4.79844px rgba(196, 232, 73, 0.11375);
}
.pt-button.filled-2:hover {
  background-color: #000;
  color: #fff;
  box-shadow: none;
}
.pt-button.outlined {
  color:#000;
}
.pt-button.textual span {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 95%;
  transition: background-size 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.pt-button.textual:hover span {
  background-size: 100% 1px;
}

.pticon-arrow {
  position: relative;
  overflow: hidden;
}
.pticon-arrow::before, .pticon-arrow::after {
  transition: top 0.6s cubic-bezier(0.405, 0.005, 0, 1), right 0.6s cubic-bezier(0.405, 0.005, 0, 1);
}
.pticon-arrow::before {
  position: relative;
  top: 2px;
  right: 2px;
}
.pticon-arrow::after {
  content: "\f144";
  font-family: bootstrap-icons !important;
  position: absolute;
  top: 16px;
  right: 16px;
}

.pt-button:hover .pticon-arrow {
  transform: translateX(0);
}
.pt-button:hover .pticon-arrow::before {
  top: -16px;
  right: -16px;
}
.pt-button:hover .pticon-arrow::after {
  top: 2px;
  right: 2px;
}
.related-sites-title
{	font-weight: 700;
    font-size: 20px;	
}
@media(max-width:990px)
{
	.border-bottom-style
	{
		margin-top:50px;
	}
	
}


li.sow-slider-image.sow-slider-image-cover.cycle-slide {
    height: 400px !important;
}

.siteorigin-widget-tinymce .textwidget
{
	padding: 300px 20px 50px 20px !important; 
}