/* font */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap");

:root {
    --first: #004055;
    --second: #fc4349;
    --third: #fff;
    --forth: rgba(255, 255, 255, 0.3);
}

body {
    font-family: "Open Sans", sans-serif;
}

a {
    color: var(--first);
    font-family: "Source Sans Pro", sans-serif;
}

a:hover {
    /*color: var(--forth);*/
    /*text-decoration: none;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

.dark-btn,
.dark-btn:hover {
    color: var(--third) !important;
    background: var(--second);
    padding: 15px 30px;
    display: inline-block;
    margin-top: 40px;
    cursor: pointer;
}

.dark-btn.green-btn,
.dark-btn.green-btn:hover {
    background: #004055;
    /*background: #28a745;*/
    /*cursor: initial;*/
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.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: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--first);
    color: --whight;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: var(--second);
    color: var(--forth);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #151515;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid #ffc451;
    border-top-color: #151515;
    border-bottom-color: #151515;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -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);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    font-family: "Source Sans Pro", sans-serif;
    z-index: 997;
    /* line-height: 50px; */
    padding: 15px 0;
    background: #004055;
    position: relative;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #004055;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo img {
    max-height: 66px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.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 15px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: rgba(255, 255, 255, 0.3);
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.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: #151515;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: #151515;
    background: #ffc451;
}

.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";
    }
}

/* log in option */
.nav-2 a,
.line-bg {
    position: relative;
}

.nav-2 a::after,
.line-bg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #fc4349;
    bottom: -5px;
    left: 0;
}

.member a {
    border: 1px solid #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: block;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.member a.active,
.member a:hover {
    background: #fc4349;
    color: #fff;
    border: none;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 7px 20px 8px 20px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    top: 50px;
    right: 15px;
    transform: translateY(-50%);
    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: #fff;
}

.mobile-nav {
    position: fixed;
    top: 90px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    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: #151515;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: var(--third);
    text-decoration: none;
    background: var(--first);
}

.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(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    background: #fff;
    position: relative;
}

#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    color: #004055;
    line-height: normal;
    font-family: "Poppins", sans-serif !important;
}

#hero p {
    color: rgb(0, 0, 0);
    margin: 10px 0 0 0;
    /* font-size: 14px; */
}

#hero .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    text-align: center;
}

#hero .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: #ffc451;
}

#hero .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 20px;
    line-height: 26px;
}

#hero .icon-box h3 a {
    color: #fff;
    transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
    color: #ffc451;
}

#hero .icon-box:hover {
    border-color: #ffc451;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: auto;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 20px;
        line-height: 24px;
    }

    #hero h2.logintitle {
        font-size: 20px;
        line-height: 40px;
    }

    #hero .loginhero {
        padding-top: 0 !important;
    }

    #hero .loginhero .inner_div {
        padding: 0 !important;
    }

    #hero .loginhero .cmn-form {
        margin-top: 35px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


#sec1, .sec1 {
    padding: 0;
}

.section-title h2 {
    color: #004055;
    font-size: 22px;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
    font-weight: 600;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about th,
.about td {
    border-top: none !important;
    border-bottom: dotted 1px !important;
}

.title th {
    color: #848484;
    font-weight: 400;
    font-size: 13px;
}

th {
    text-transform: uppercase;
    color: var(--first);
}

.w-30 {
    width: 30%;
}

.about table a,
.services a {
    color: var(--first);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    /* padding-bottom: 10px; */
}

.about table a::after,
.services a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #fc4349;
    bottom: -2px;
    left: 0;
    right: 0;
}

.cat-image {
    margin: 20px 0;
}

.accordion {
    width: 175%;
}

.accordion > .card > .card-header {
    background: transparent !important;
}

.card-header:first-child {
    border: transparent !important;
}

.card {
    border: none;
    background-color: transparent !important;
}

.accordionComments .show {
    position: relative;
}

.mark {
    color: var(--second);
    background: transparent;
}

.accordionComments .show::before {
    background: #f4f7f8;
    position: absolute;
    content: "";
    top: 0;
    z-index: 1;
    bottom: -60px;
    border-radius: 10px;
    left: -20px;
    right: -20px;
}

.accordionComments .card-body {
    z-index: 5;
    position: inherit;
}

.accordionComments .card {
    z-index: 5;
}

.card-body span {
    text-transform: uppercase;
    color: #848484;
    font-size: 18px;
    margin-bottom: 1rem;
}

.about textarea {
    padding: 10px;
    border-radius: 10px;
    border: transparent;
}

.card-header {
    margin-bottom: 30px;
    position: relative;
}

.card-header a {
    color: #004055 !important;
    cursor: pointer;
}

.submitComment {
    cursor: pointer;
}

.card-header a[aria-expanded="true"]::before {
    background-image: url(/images/icones/up-arrow.svg);
    background-size: 16px;
    content: "";
    display: inline-block;
    position: absolute;
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    top: 6px;
    left: -24px;
}

.card-header a[aria-expanded="false"]::before {
    background-image: url(/images/icones/comment.svg);
    background-size: 18px;
    content: "";
    display: inline-block;
    position: absolute;
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    top: 6px;
    left: -24px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding-top: 20px;
}

.contact-form {
    background: var(--first);
    color: var(--third);
    padding: 40px 60px;
}

.contact-form h2 {
    text-transform: uppercase;
}

.contact-form input {
    padding: 5px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    padding-top: 20px;
}

.features .icon-box {
    padding-left: 15px;
}

.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #ffc451;
}

.features .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: left;

    /* padding: 80px 20px; */
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #ffc451;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .icon-box .icon i {
    color: #151515;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #151515;
    transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
    color: #ffc451;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    /*border-color: #fff;*/
    /*box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);*/
    /*transform: translateY(-10px);*/
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--second);
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
}

#footer .footer-top {
    background: var(--second);
    /* border-bottom: 1px solid #222222; */
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-info::after {
    position: absolute;
    content: "";
    left: -300%;
    top: -60px;
    right: 0;
    bottom: -1000px;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.233);
}

.footer-info div,
.footer-info h4,
.footer-info p,
.footer-info img {
    position: relative;
    z-index: 4;
}

.footer-info .d-flex {
    margin-left: -50px;
}

.footer-info img {
    max-width: 70px;
    margin: 0 15px;
    display: block;
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
    color: #ffc451;
}

#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: 18px;
    display: inline-block;
    /* background: #292929; */
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #fff;
    color: var(--second);
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    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: #ffc451;
    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: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #ffc451;
    color: #151515;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #ffcd6b;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/*.inner_content h3 {*/
/*  font-family: "Source Sans Pro", sans-serif;*/
/*  font-size: 20px;*/
/*  font-weight: bold;*/
/*  color: #004055;*/
/*  margin-bottom: 15px;*/
/*  text-transform: uppercase;*/
/*}*/
/*.inner_content a {*/
/*  color: #004055;*/
/*  font-size: 20px;*/
/*  font-family: "Source Sans Pro", sans-serif;*/
/*  font-weight: normal;*/
/*}*/
.inner_content a:hover {
    color: #fc4349;
}

.profile h2 {
    font-family: "Montserrat", sans-serif !important;
    color: #004055;
    font-size: 22px;
    margin: 20px 0px;
    text-transform: uppercase;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background: #fc4349;
}

.events h1 {
    font-size: 45px !important;
    line-height: 51px !important;
}

.fullwidth,
.fullwidth:hover {
    display: block;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 40px;
}

.inner_conttent h2 {
    color: #004055;
    font-size: 22px;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
}

.discover h2,
.practical h2 {
    color: #004055;
    font-size: 22px;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
}

.inner_conttent .homePubli-headImg {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border: 1px solid #004055;
    background: #fff;
}

.homePubli-headImg .date {
    font-size: 15.4px;
    line-height: 15px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    font-weight: bold;
    text-transform: uppercase;
    color: #004055;
    text-align: center;
}

.side_content {
    width: 100px;
    height: 100px;
    line-height: 28px;
    border: 1px solid #004055;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side_content .date {
    font-size: 30.6px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    font-weight: bold;
    text-transform: uppercase;
    color: #004055;
    text-align: center;
}

.upevents h2 {
    color: #004055;
    font-size: 30px;
    font-family: "Source Sans Pro", sans-serif;
    margin: 20px 0px;
}

body .upevents .location {
    color: #004055;
    font-weight: 200;
    font-size: 12px;
    margin-top: 10px;
    border: 1px solid #004055;
    border-radius: 24px;
    padding: 2px 10px;
    display: inline-block;
    text-transform: uppercase;
}

.up_events .homePubli-headImg {
    width: 100px;
    height: 70px;
}

.up_events .date {
    font-size: 22.4px;
    line-height: 20px;
}

.up-head {
    margin-bottom: 30px !important;
    position: relative;
}

div.up-head:not(:last-child):after {
    position: absolute;
    background: url(../images/border-bottom.png);
    width: 2px;
    height: 32px;
    content: "";
    bottom: -32px;
    left: 11%;
}

.meetings p {
    font-size: 13px;
    line-height: 20px;
    font-family: "Open Sans", sans-serif;
}

.meetings h5 {
    font-size: 11px;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    color: #b8c2c6;
}

.blue_link {
    font-size: 15px;
    color: #004055;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s;
    border-bottom: 3px solid #fc4349;
}

.blue_link:hover {
    font-size: 15px;
    color: #fc4349;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s;
    border-bottom: none;
}

.custom-select-sm {
    margin: 0px 20px;
    font-size: 15px;
    font-weight: bold;
    color: #004055;
    border: none;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.875rem;
    border-bottom: 3px solid #fc4349;
    border-radius: 0px !important;
    outline: none;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0.5rem;
    background: #fff url(../images/bottom-arrow.png) right 0.75rem center/13px 8px no-repeat;
}

.filter-members .custom-select-sm {
    margin: 0px;
}

.search-icon {
    background: #f5f6f6 url(../images/search-icon.png) right 0.75rem center/15px 18px no-repeat;
}

.icon-box h3 {
    font-size: 22px;
    font-weight: 500;
}

.icon-box {
    margin: 25px 0px;
}

/*.profile_section {*/
/*  text-align: center;*/
/*  padding: 20px 15px 40px;*/
/*}*/
.profile_section h5 {
    font-size: 15px;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    color: #6e6e6e;
}

.profile_section h4 {
    font-size: 18px;
    font-family: "Source Sans Pro", sans-serif;
    color: #666666;
    margin: 10px 0px 0px;
}

.profile_section h3 {
    font-size: 20px;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    color: #333333;
    font-weight: 600;
    margin: 0px 0px 10px;
}

.profile_section h2 {
    font-size: 28px;
    font-family: "Source Sans Pro", sans-serif !important;
    color: #004055;
    font-weight: 400;
    margin: 0px 0px 10px;
}

.profile_section .ftr_social li a {
    border: 1px solid #004055;
    color: #004055;
    width: 23px;
    height: 23px;
    line-height: 23px;
    border-radius: 50%;
    opacity: 1;
    text-align: center;
    transition: all 0.5s;
    font-size: 11px;
}

.modal-content .profile_section .ftr_social li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}

.profile_section .ftr_social {
    padding-top: 10px;
}

.profile_section .ftr_social li {
    margin-right: 4px;
}

.profile_section th,
.profile_section tr {
    padding: 5px 15px 5px 0px;
    text-align: left;
    font-weight: 400;
    font-family: "Source Sans Pro", sans-serif;
}

#registrylock .icon-box {
    background: transparent;
    text-align: center;
    padding: 20px;
}

.login .form-control {
    background: #445256;
    color: #fff !important;
    border: none;
}

.login .link_btn {
    color: #fff;
}

#nav-tab .active {
    background: #fc4349;
    color: #fff;
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: bold;
    text-transform: capitalize;
    text-align: left;
    cursor: pointer;
}

#nav-tab a {
    color: #004055;
    height: 50px;
    line-height: 50px;
    padding: 0px 20px;
    text-align: left;
    margin: 0px;
    background: none;
    border: none;
    outline: none;
    border-bottom: 3px solid #fc4349;
    color: #245364;
    color: #245364;
    font-family: "Source Sans Pro", sans-serif !important;
    font-weight: bold;
    text-transform: capitalize !important;
}

#nav-tab a:not(:last-child) {
    margin-right: 20px;
}

.nav-tabs {
    border: none;
}

.member_only {
    display: flex;
}

.member_only li {
    margin-right: 30px;
}

.member_only li a {
    text-decoration: none;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
}

.member_only li:nth-child(1) a {
    text-transform: uppercase;
    color: #fc4349;
}

.transport_content h4,
.transport_content,
.transport_content li,
.transport_content p,
.transport_content a {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

.transport_content a {
    color: #fc4349;
}

.transport_content h4 {
    font-weight: 600;
}

.transport_content {
    padding-right: 80px;
}

.transport_content li {
    margin: 20px 0px;
}

.lb-list li {
    display: inline-block;
    margin-left: 50px;
    padding: 20px 50px;
}

.location {
    color: #004055;
    font-weight: 400;
    font-size: 12px;
    border: 1px solid #004055;
    border-radius: 24px;
    padding: 1px 8px;
    display: inline-block;
    text-transform: uppercase;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    z-index: 1000;
    right: auto;
    display: none;
    float: left;
    min-width: 100%;
    padding: 40px;
    margin: 29px 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fc4349 !important;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.megamenu-li {
    position: static;
}

.megamenu {
    position: absolute;
    /*width: 100%;*/
    /*left: 0;*/
    right: 0;
    padding: 40px 20px;
    width: 1451px;
    left: 50%;
    margin-left: -689px;
    border: none;
    border-radius: 0;
}

.megamenu a {
    font-size: 22px;
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
    line-height: 40px;
}

.megamenu a:hover {
    color: #fc4349 !important;
}

.megamenu h2 {
    /*font-size: 22px !important;*/
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
}

.calendar .day.today {
    /* background: #6691CC; */
    color: white;
    background: #fb4449 !important;
    border-radius: 50px;
    color: white !important;
}

.has-event {
    /* background: #6691CC; */
    color: white;
    background: #004055 !important;
    border-radius: 50px;
    color: white !important;
}

.calendar .day.has-event:after {
    content: none !important;
}

.month {
    color: #004055 !important;
    font-weight: bold;
}

.year {
    font-size: 19px !important;
    color: #004055 !important;
    font-weight: 600 !important;
}

.calendar .event-container {
    background: #004055 !important;
}

.calendar .event-container .event {
    background: #004055 !important;
}

.c-red {
    color: #fb4449 !important;
}

.h-color {
    color: #004055 !important;
}

.text-dark {
    color: #212121 !important;
}

.socail_cions i {
    font-size: 22px;
}

.calendar .btn-prev,
.calendar .btn-next {
    top: 49% !important;
}

#nav-tabContent li {
    padding: 2px;
    background: #fff;
}

#nav-tabContent li h2 {
    font-size: 20px !important;
    font-family: "Source Sans Pro", sans-serif !important;
    color: #004055;
    font-weight: bold;
}

#nav-tabContent li h3 {
    font-size: 18px !important;
    font-family: "Source Sans Pro", sans-serif !important;
    color: #000;
    font-weight: 600;
}

#nav-tabContent li p {
    font-size: 16px !important;
    font-family: "Source Sans Pro", sans-serif !important;
    color: #000;
}

#nav-tabContent li:hover {
    border: none;
}

#nav-tabContent li:hover a {
    border: none;
    color: #fc4349;
}

#nav-tabContent li:hover h2,
#nav-tabContent li:hover h3,
#nav-tabContent li:hover p {
    color: #fff;
}

#discover #nav-tab a {
    text-transform: uppercase !important;
    font-size: 20px;
    letter-spacing: 1px;
}

.eventtable td {
    background: #fff;
    padding: 20px 30px;
    border-right: 3px solid #f4f7f8;
    border-bottom: 5px solid #f4f7f8;
    cursor: pointer;
}

.eventtable td:hover {
    background: #fc4349;
    color: #fff;
}

.eventtable td:hover,
.eventtable td:hover p,
.eventtable td:hover h2 {
    background: #fc4349;
    color: #fff !important;
}

.eventtable th {
    border-bottom: 5px solid #f4f7f8;
    vertical-align: middle;
}

.eventtable h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.eventtable p {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.advsearcharea select {
    color: #004054;
}

.advsearcharea {
    display: none;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 50px;
    margin: 0px;
    background: #004054;
    padding: 25px 10px;
}

.advsearchareaactive {
    display: inline-flex;
}

.simpleform select,
.advsearchtoggle {
    width: 20%;
    float: left;
}

.search-icon {
    /*width: 25%;*/
    float: left;
}

.advsearchactive {
    background: #004055;
    color: #fff;
    padding: 12px 20px 30px 20px;
    border-bottom: navajowhite;
}

/*-----------------------------  */
/*
.search {
  position: relative;
  height: 40px;
}
.serch {
  position: absolute;
  right: 0;
}
.serch button {
  position: absolute;
  right: 10px;
  height: 40px;
  background: transparent;
  border: none;
}
.search .inputsearch {
  background: #ffffff;
  border: 0;
  font-size: 20px;
  padding: 15px;
  height: 40px;
  color: #111;
  width: 30px;
  transition: width 0.3s ease;
  border-radius: 30px;
  position: relative;
}
.search .btn {
  border-radius: 30px;
  background: var(--first);
  color: var(--third);
  border: 1px solid;
  position: initial;
  cursor: pointer;
  top: 0;
  right: 0;
  transition: transform 0.3s ease;
}
.search .btn::before {
  content: "\f002";
  font-family: "fontawesome";
  font-size: 17px;
  color: #fff;
}
.search .close {
  opacity: 1;
}
.search .close::before {
  content: "\f00d";
  font-family: "fontawesome";
  font-size: 17px;
  color: #fff;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}
.search .btn .active ::after {
  content: "x";
  font-size: 17px;
  color: #fff;
}
.btn:focus,
.inputsearch:focus,
.btn:hover {
  outline: none;
}
.search.active .inputsearch {
  width: 300px;
  border-radius: 30px;
  right: 30px;
}
.serch {
  position: absolute;
  right: 40px;
}
.search .serch {
  z-index: -3;
  opacity: 0;
}
.search.active .serch {
  z-index: 3;
  opacity: 1;
}
.serch button {
  background: var(--third);
  border-radius: 0 50% 50% 0;
  width: 40px;
  border-left: 1px solid #111;
}
@media (max-width: 768px) {
  .search.active .inputsearch {
    width: 250px;
  }
}
@media (max-width: 530px) {
  .search.active .inputsearch {
    max-width: 150px;
  }
}
@media (max-width: 400px) {
  .search.active .inputsearch {
    max-width: 100px;
  }
}
*/

@media (min-width: 1450px) {
    /* Underline effect */
    .underline {
        position: relative;
    }

    .underline:hover,
    .underline:focus,
    .underline:active {
        cursor: pointer;
    }

    .underline:hover:after,
    .underline:focus:after,
    .underline:active:after {
        width: 100%;
    }

    .underline:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -30px;
        height: 7px;
        background-color: #fc4349;
        width: 0;
        transition: width 0.4s;
    }

    /*.navbar .nav-item .dropdown-menu{ display: none; }*/
    /*.navbar .nav-item:hover .dropdown-menu{ display: block; }*/
}

@media (max-width: 1449px) {
    /* Megamenu mobile */
    .megamenu {
        width: 100%;
        margin-left: 0;
        left: 0;
        padding: 20px;
    }

    .megamenu .col-xl-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .dropdown-menu {
        margin-top: 0px;
    }

    .megamenu .row .title {
        display: none;
    }

    .collapse.navbar-collapse.show ul > li > a:hover {
        color: #fc4349;
    }

    .dropdown-item {
        white-space: normal;
        line-height: 1.5 !important;
        padding: 0.5rem 1rem !important;
    }
}

.herosec.hero-home {
    height: 800px;
}

.herosec.hero-no-home {
    height: 450px;
    padding: 220px 0 140px;
}

@media (max-width: 768px) {
    .eventtable h2 {
        font-size: 14px !important;
        line-height: 1.2;
    }

    #nav-tab a:not(:last-child) {
        margin-right: 0;
    }

    .eventtable td {
        padding: 10px 20px;
    }

    .herosec {
        height: 200px !important;
    }

    .herosec.hero-no-home {
        /*height:200px;*/
        padding: 180px 10px 90px 10px;
    }
}

h2.cat-title {
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 25px;
    color: var(--first);
}

#fc_filter_form_blocker {
    display: none;
}

tr.calendar-row {
    height: 50px;
}

td.calendar-day {
    font-size: 16px;
    text-align: center
}

td.calendar-day-head {
    color: #aaa;
    text-align: center;
    width: 120px;
    padding: 5px;
}

div.day-number {
    color: #000;
    font-weight: 600;
    width: 30px;
    height: 30px;
    line-height: 20px;
    margin: auto;
}

.calendar-day-event div.day-number {
    background: #004055;
    padding: 5px;
    color: #fff;
    font-weight: 600;
    width: 30px;
    height: 30px;
    line-height: 20px;
    border-radius: 50%;
    margin: auto;
    cursor: pointer;
}

.calendar-day-event div.day-number a {
    color: #fff;
}

td.calendar-day,
td.calendar-day-np {
    width: 120px;
    padding: 5px;
}

.calendarCtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendarNav a img {
    display: block;
    width: 40px;
}

.prevMonth {
    margin-right: 50px;
}

.nextMonth {
    margin-left: 50px;
}

.calendarTitle {
    color: #004055;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

.calendarTitle div {
    font-size: 28px;
}

.popover {
    text-align: center;
    border-radius: 0;
    background-color: #004055;
    color: #fff;
    border-color: #004055;
    pointer-events: auto;
}

.popover-arrow,
.bs-popover-bottom .arrow::after {
    border-bottom-color: #004055;
}

.popover-body {
    padding: 20px 30px;
    color: #fff;
}

.popover-body a {
    color: #fff;
}

.popover-body a:hover {
    text-decoration: none;
}

.popover-body b {
    font-weight: 600;
    padding-bottom: 10px;
}

.popoverTitle {
    margin-bottom: 4px;
    font-size: 16px;
}

.calendarNav {
    cursor: pointer;
}

/* Author box */
.author_box .ftr_social ul {
    margin-bottom: 0;
}

.ui-dialog-titlebar-close {
    width: 20px !important;
    right: 30px !important;
}
body .ui-widget button {
    font-size: 25px;
}
.page-item.active .page-link {
    color: #fff;
    background-color: #fc4349;
    border-color: #fc4349;
}
a.page-link {
    color: #fc4349;
}
span.page-link {
    color: rgba(252, 67, 73, 0.41) !important;
}
