/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
html, body {
    position: relative;
    background-color: #fff;
}

.site-wrapper {
    margin-top: 75px;
}

@media (max-width: 576px) {
    .site-wrapper {
        margin-top: 90px;
    }
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
/* mixin usage */
.linear-gradient {
    background: -moz-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00FFFF), color-stop(100%, #0080FF));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* ie10+ */
    background: linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-one', endColorstr='$color-two', GradientType=1);
    /* ie6-9 */
}

/* mixin usage */
.center-both p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-vert p {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* mixin usage */
.border-all {
    border: 5px solid #0080FF;
}

.border-less-bottom {
    border: 5px solid #0080FF;
    border-bottom: none;
}

.border-top {
    border-top: 5px dashed #0080FF;
}

/* BOX SHADOW */
/* mixin usage */
button.fade {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    color: #00FFFF;
    background-color: #0080FF;
    border-color: #00FFFF;
}

button.fade:hover {
    color: #0080FF;
    background-color: #00FFFF;
    border-color: #0080FF;
}

button.scale {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #00FFFF;
    background-color: #0080FF;
    width: 18rem;
    position: relative;
    top: 0;
}

button.scale:hover {
    width: 22rem;
    top: 10px;
}

/* mixin usage */
.demo1 {
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -ms-border-radius: 1em;
    border-radius: 1em;
}

.demo2 {
    -webkit-border-radius: 25px 5px 25px 5px;
    -moz-border-radius: 25px 5px 25px 5px;
    -ms-border-radius: 25px 5px 25px 5px;
    border-radius: 25px 5px 25px 5px;
}

/* mixin usage */
.box.sevenfive {
    filter: alpha(opacity=75);
    opacity: 0.75;
}

.box.twofive {
    filter: alpha(opacity=25);
    opacity: 0.25;
}

/* mixin usage */
.demo1 {
    color: #0080FF;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.demo2 {
    color: #FFFFFF;
    text-shadow: -1px -2px 3px #00FFFF, 1px 2px 3px #0080FF;
}

/* mixin usage */
.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=1, M21=-1, M22=0, sizingMethod='auto expand');
    zoom: 1;
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
/*______________________ Global stlye ___________________*/
h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #fe9500;
}

h1, h2, h3, h4, h5, h6 {
    color: #282828;
}

h1 {
    font-size: 60px;
    font-weight: 900;
}

h2 {
    font-size: 45px;
    font-weight: 800;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

h4 {
    font-size: 22px;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    font-weight: 300;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #fe9500;
    font-family: 'Montserrat', sans-serif;
}

a:visited {
    color: #fe9500;
}

a:hover, a:focus {
    color: #ec7a00;
}

a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none;
}

input, textarea {
    outline: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*==================== Click Top ====================*/
.scroll-top {
    width: 30px;
    height: 30px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    background: #00c4fc;
    font-size: 20px;
    display: none;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: -webkit-radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.shadow-card {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
}

.img-scalable {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-scalable::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-scalable:hover {
    -webkit-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15);
}

.img-scalable:hover::after {
    opacity: 1;
}

.shadow-card-interactable {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadow-card-interactable::after {
    content: "";
    border-radius: 5px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadow-card-interactable:hover {
    -webkit-transform: scale(1.02, 1.02);
    transform: scale(1.02, 1.02);
}

.shadow-card-interactable:hover::after {
    opacity: 1;
}

/*Scrolling-Social*/
#scrollingDiv {
    padding: .35rem;
    z-index: 1029;
}

#scrollingDiv .fa {
    border-radius: 0;
}

#scrollingDiv .fa-facebook-square {
    color: #3b5998;
}

#scrollingDiv .fa-twitter-square {
    color: #1da1f2;
}

#scrollingDiv .fa-envelope-square {
    color: #848484;
}

#scrollingDiv .fa-rss-square {
    color: #ff5700;
}

#scrollingDiv:hover {
    opacity: 1;
}

#scrollingDiv:hover .fa-facebook-square {
    color: #3b5998;
}

#scrollingDiv:hover .fa-twitter-square {
    color: #1da1f2;
}

#scrollingDiv:hover .fa-envelope-square {
    color: #848484;
}

#scrollingDiv:hover .fa-rss-square {
    color: #ff5700;
}

#scrollingDiv > a.ion-social-facebook {
    padding-left: 6px;
}

#scrollingDiv > a.ion-social-instagram-outline {
    padding-left: 2px;
}

#scrollingDiv > a {
    color: #50514f;
    font-size: 40px;
}

#scrollingDiv > a::before {
    justify-content: center;
}

#scrollingDiv > a:hover {
    color: #4f8ef7;
}

@media (min-width: 0) {
    #scrollingDiv {
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
        border-bottom-left-radius: 0;
        opacity: 1;
        position: fixed;
        top: auto;
        right: auto;
        left: 0;
        bottom: 0;
        width: 100%;
    }
}

@media (max-width: 992px) {
    #scrollingDiv {
        background-color: #eeeeee;
    }
}

@media (min-width: 992px) {
    #scrollingDiv {
        border-top-left-radius: 7px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 7px;
        opacity: 0.5;
        position: absolute;
        top: 200px;
        right: 0;
        left: auto;
        bottom: auto;
        width: auto;
    }
}

.at-style-responsive .at-share-btn {
    border-radius: 5px !important;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
}

.wow {
    visibility: hidden;
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
/* mixin usage */
.linear-gradient {
    background: -moz-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #00FFFF), color-stop(100%, #0080FF));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* ie10+ */
    background: linear-gradient(45deg, #00FFFF 0%, #0080FF 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-one', endColorstr='$color-two', GradientType=1);
    /* ie6-9 */
}

/* mixin usage */
.center-both p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-vert p {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* mixin usage */
.border-all {
    border: 5px solid #0080FF;
}

.border-less-bottom {
    border: 5px solid #0080FF;
    border-bottom: none;
}

.border-top {
    border-top: 5px dashed #0080FF;
}

/* BOX SHADOW */
/* mixin usage */
button.fade {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    color: #00FFFF;
    background-color: #0080FF;
    border-color: #00FFFF;
}

button.fade:hover {
    color: #0080FF;
    background-color: #00FFFF;
    border-color: #0080FF;
}

button.scale {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #00FFFF;
    background-color: #0080FF;
    width: 18rem;
    position: relative;
    top: 0;
}

button.scale:hover {
    width: 22rem;
    top: 10px;
}

/* mixin usage */
.demo1 {
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -ms-border-radius: 1em;
    border-radius: 1em;
}

.demo2 {
    -webkit-border-radius: 25px 5px 25px 5px;
    -moz-border-radius: 25px 5px 25px 5px;
    -ms-border-radius: 25px 5px 25px 5px;
    border-radius: 25px 5px 25px 5px;
}

/* mixin usage */
.box.sevenfive {
    filter: alpha(opacity=75);
    opacity: 0.75;
}

.box.twofive {
    filter: alpha(opacity=25);
    opacity: 0.25;
}

/* mixin usage */
.demo1 {
    color: #0080FF;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.demo2 {
    color: #FFFFFF;
    text-shadow: -1px -2px 3px #00FFFF, 1px 2px 3px #0080FF;
}

/* mixin usage */
.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=1, M21=-1, M22=0, sizingMethod='auto expand');
    zoom: 1;
}

.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    background: -moz-linear-gradient(180deg, #009fcc 0%, #006c8c 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #009fcc), color-stop(100%, #006c8c));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, #009fcc 0%, #006c8c 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, #009fcc 0%, #006c8c 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, #009fcc 0%, #006c8c 100%);
    /* ie10+ */
    background: linear-gradient(180deg, #009fcc 0%, #006c8c 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-one', endColorstr='$color-two', GradientType=1);
    /* ie6-9 */
}

.navbar .navbar-brand {
    padding-bottom: 0;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: bold;
}

.navbar .navbar-toggler-icon {
    color: #fff;
    border-color: #fff;
}

.navbar a {
    -o-transition: color .3s linear, background .3s linear;
    -moz-transition: color .3s linear, background .3s linear;
    -webkit-transition: color .3s linear, background .3s linear;
    transition: color .3s linear, background .3s linear;
}

.navbar a.nav-link.dropdown-toggle:hover, .navbar a.nav-link.dropdown-toggle:focus {
    color: #ec7a00;
}

.navbar a.dropdown-item {
    font-weight: bold;
}

.navbar a[disabled="disabled"].dropdown-item {
    pointer-events: none;
    color: #919191;
    font-weight: normal;
}

.navbar a.dropdown-item:hover, .navbar a.dropdown-item:focus {
    background-color: #ec7a00;
    color: #fff;
}

.navbar a.dropdown-item:visited:hover, .navbar a.dropdown-item:visited:focus {
    background-color: #ec7a00;
    color: #fff;
}

.navbar a.dropdown-item:visited {
    color: #393939;
}

.navbar button {
    -o-transition: color .3s linear, background .3s linear;
    -moz-transition: color .3s linear, background .3s linear;
    -webkit-transition: color .3s linear, background .3s linear;
    transition: color .3s linear, background .3s linear;
}

.navbar button.nav-link.dropdown-toggle:hover, .navbar a.nav-link.dropdown-toggle:focus {
    color: #ec7a00;
}

.navbar button.dropdown-item {
    font-weight: bold;
}

.navbar button[disabled="disabled"].dropdown-item {
    pointer-events: none;
    color: #919191;
    font-weight: normal;
}

.navbar button.dropdown-item:hover, .navbar a.dropdown-item:focus {
    background-color: #ec7a00;
    color: #fff;
}

.navbar button.dropdown-item:visited:hover, .navbar a.dropdown-item:visited:focus {
    background-color: #ec7a00;
    color: #fff;
}

.navbar button.dropdown-item:visited {
    color: #393939;
}

.navbar a.dropdown-item-active {
	display: block;
	width: 100%;
	padding: .25rem 1.5rem;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.navbar a.dropdown-item-active {
    font-weight: bold;
    background-color: #ec5e20;
    color: #fff;
}

.navbar button.dropdown-item-active {
	display: block;
	width: 100%;
	padding: .25rem 1.5rem;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.navbar button.dropdown-item-active {
    font-weight: bold;
    background-color: #ec5e20;
    color: #fff;
}

/*.navbar a[disabled="disabled"].dropdown-item-active {*/
    /*pointer-events: none;*/
    /*color: #919191;*/
    /*font-weight: normal;*/
/*}*/

/*.navbar a.dropdown-item-active:hover, .navbar a.dropdown-item-active:focus {*/
    /*background-color: #ec7a00;*/
    /*color: #fff;*/
/*}*/

/*.navbar a.dropdown-item-active:visited:hover, .navbar a.dropdown-item-active:visited:focus {*/
    /*background-color: #ec7a00;*/
    /*color: #fff;*/
/*}*/

/*.navbar a.dropdown-item-active:visited {*/
    /*color: #393939;*/
/*}*/

.navbar .dropdown-menu.show {
    -webkit-animation: drop-up 400ms ease both;
    -moz-animation: drop-up 400ms ease both;
    -o-animation: drop-up 400ms ease both;
    animation: drop-up 400ms ease both;
}

.navbar .dropdown-menu {
    -webkit-animation: drop-up 400ms ease both;
    -moz-animation: drop-up 400ms ease both;
    -o-animation: drop-up 400ms ease both;
    animation: drop-up 400ms ease both;
}

.navbar button.dropdown-menu.show {
    -webkit-animation: drop-up 400ms ease both;
    -moz-animation: drop-up 400ms ease both;
    -o-animation: drop-up 400ms ease both;
    animation: drop-up 400ms ease both;
}

.navbar button.dropdown-menu {
    -webkit-animation: drop-up 400ms ease both;
    -moz-animation: drop-up 400ms ease both;
    -o-animation: drop-up 400ms ease both;
    animation: drop-up 400ms ease both;
}

/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 768px) {
    /* remove the padding from the navbar so the dropdown hover state is not broken */
    .navbar {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .navbar .dropdown-menu {
        /*  height of nav-item  */
        top: 35px;
    }

    /* shows the dropdown menu on hover */
    .navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
        display: block !important;
    }

    .navbar .dropdown-menu {
        border: 1px solid rgba(0, 0, 0, 0.15);
        background-color: #fff;
    }
}

/*Search-Modal*/
.modal {
    background-color: rgba(11, 73, 164, 0.95);
    padding: 0 !important;
}

.modal button.btn {
    width: 50px;
}

.modal-open .modal {
    overflow-y: hidden;
}

.modal-header {
    border-bottom: none;
}

.modal-header .header-text {
    border-bottom: 0;
    display: table;
    width: 100%;
}

.modal-header .header-text h1, .modal-header .header-text h2 {
    color: #fff;
}

.modal-header .header-text div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.header-text {
    border-bottom: 1px solid #cbd4c2;
    display: table;
    width: 100%;
}

#searchModal > button.close {
    position: absolute;
    top: 5px;
    right: 20px;
    line-height: 50px;
    font-size: 50px;
    text-shadow: 0 0 0 #fff;
    color: #fff;
    opacity: 1;
    z-index: 2000;
}

#searchModal > button.close:hover {
    opacity: 1;
    color: black;
}

#searchModal > button.close:focus {
    outline: 0;
}

#searchModal > input:focus
.modal-header {
    border: 0;
    margin-bottom: 25px;
}

.modal-content {
    height: 100%;
    background-color: transparent;
    border: 0;
}

.modal.fade .modal-dialog {
    transition: transform .4s ease-out;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    margin: 0;
}

@media (min-width: 576px) {
    .header-text {
        height: 130px;
        font-size: 10px;
    }

    .modal-dialog {
        max-width: 550px;
        margin: 1.75rem auto;
    }

    button.btn.btn-outline-secondary {
        padding: 10px 20px;
        font-size: 20px;
    }

    .modal-content {
        padding: 5% 2%;
    }
}

@media (min-width: 768px) {
    .modal-content {
        padding: 5% 7%;
    }
}

@media (min-width: 992px) {
    .header-text {
        height: 170px;
        font-size: 14px;
    }

    #navbarSupportedContent {
        padding-top: 0;
    }

    nav > button.btn.btn-link {
        top: 10px;
    }
}

@media (min-width: 992px) {
    .navbar {
        height: 58px;
    }

    .navbar .navbar-brand {
        padding-top: 26px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 0;
        border-radius: 0 !important;
    }

    .navbar .navbar-brand {
        padding-top: 0;
        height: 58px;
    }

    ul.navbar-nav {
        padding-top: 30px;
        padding-left: 15px;
    }
}

@media (max-width: 371px) {
    .navbar .navbar-brand img {
        height: 66px;
    }
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.nav-header {
    clear: both;
    text-align: center;
    padding-top: 10px;
}

.nav-header .btn-category-nav {
    background-color: #fe9500;
    color: #fff;
}

.nav-header .btn-category-nav:hover {
    background-color: #ec7a00;
}

.nav-header .btn-icon {
    height: 35px;
    width: 35px;
    background-color: #fe9500;
    color: #fff;
    border-radius: 4px;
    font-size: 35px;
    line-height: 30px;
}

.nav-header .btn-icon:hover {
    background-color: #ec7a00;
}

.nav-header .btn-icon i {
    margin-top: 0;
}

/*active*/
.nav-header .btn-category-nav-active {
    /*background-color: #fe9500;*/
    background-color: #ec5e20;
    color: #fff;
}

.nav-header .btn-category-nav-active:hover {
    /*background-color: #ec7a00;*/
    background-color: #ec5e20;
}

.nav-header .btn-icon-active {
    height: 35px;
    width: 35px;
    /*background-color: #fe9500;*/
    background-color: #ec5e20;
    color: #fff;
    border-radius: 4px;
    font-size: 35px;
    line-height: 30px;
}

.nav-header .btn-icon-active:hover {
    /*background-color: #ec7a00;*/
    background-color: #ec5e20;
}

.nav-header .btn-icon-active i {
    margin-top: 0;
}
/*end active*/

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media screen and (prefers-reduced-motion: reduce) {
    .btn-icon {
      transition: none; } }
  .btn-icon:hover, .btn-icon:focus {
    text-decoration: none; }
  .btn-icon:focus, .btn-icon.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .btn-icon.disabled, .btn-icon:disabled {
    opacity: 0.65; }
  .btn-icon:not(:disabled):not(.disabled) {
    cursor: pointer; }
  .btn-icon:not(:disabled):not(.disabled):active, .btn-icon:not(:disabled):not(.disabled).active {
    background-image: none; }

a.btn-icon.disabled,
fieldset:disabled a.btn-icon {
  pointer-events: none; }

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media screen and (prefers-reduced-motion: reduce) {
    .btn-icon-active {
      transition: none; } }
  .btn-icon-active:hover, .btn-icon-active:focus {
    text-decoration: none; }
  .btn-icon-active:focus, .btn-icon-active.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .btn-icon-active.disabled, .btn-icon-active:disabled {
    opacity: 0.65; }
  .btn-icon-active:not(:disabled):not(.disabled) {
    cursor: pointer; }
  .btn-icon-active:not(:disabled):not(.disabled):active, .btn-icon-active:not(:disabled):not(.disabled).active {
    background-image: none; }

a.btn-icon-active.disabled,
fieldset:disabled a.btn-icon-active {
  pointer-events: none; }

@media (max-width: 576px) {
    .nav-header {
        margin-top: 20px;
    }
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.main-slider .swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    border: #fff solid 1px;
    border-radius: 4px;
}

.main-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 3px;
}

.main-slider .caption {
    background-color: rgba(10, 10, 10, 0.7);
    background: -moz-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(10, 10, 10, 0.7)), color-stop(100%, rgba(10, 10, 10, 0.3)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* ie10+ */
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-one', endColorstr='$color-two', GradientType=1);
    /* ie6-9 */
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 200;
    padding: 15px 0;
    color: #fff;
}

.main-slider .title {
    font-size: 30px;
    font-weight: 300;
}

.main-slider .subtitle {
    font-size: 18px;
    font-weight: 500;
}

.main-slider .swiper-button-next, .main-slider .swiper-button-prev {
    background-image: none;
}

.main-slider .swiper-button-next .fa, .main-slider .swiper-button-prev .fa {
    font-size: 3em;
    font-weight: 900;
    color: #fe9500;
}

.main-slider .swiper-button-next .fa:hover, .main-slider .swiper-button-prev .fa:hover {
    color: #ec7a00;
}

.our-slider {
    max-height: 120px;
}

.our-slider img {
    max-height: 120px;
}

.our-slider .swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    border: #fff solid 1px;
    border-radius: 4px;
}

.our-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 3px;
}

.relateds-slider .swiper-container {
    max-width: 270px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border: #fff solid 1px;
    border-radius: 4px;
}

.relateds-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 3px;
}

.footer-slider {
    max-height: 120px;
}

.footer-slider img {
    max-height: 120px;
}

.footer-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.footer-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    width: auto;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.ann-cards .card {
    max-height: 320px;
}

.ann-cards .card-image-wrapper {
    overflow: hidden;
}

.ann-cards .card-image-wrapper image {
    border-radius: calc(0.25rem - 1px);
}

.ann-cards .card-subtitle {
    background-color: rgba(10, 10, 10, 0.7);
    background: -moz-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(10, 10, 10, 0.7)), color-stop(100%, rgba(10, 10, 10, 0.3)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* ie10+ */
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-one', endColorstr='$color-two', GradientType=1);
    /* ie6-9 */
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
    padding: 5px;
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.ann-cards .card-subtitle p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.activities-cards {
    min-height: 500px;
}

.activities-cards .card {
    margin: 0 auto;
    /* Added */
    float: none;
    /* Added */
    margin-bottom: 10px;
    /* Added */
    min-height: 430px;
    max-width: 265px;
}

.activities-cards .card-img-abs {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e0e5da;
}

.activities-cards .card-img-abs image {
    border-radius: calc(0.25rem - 1px);
}

.activities-cards .category {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0px 6px;
}

/*new */
.activities-cards .new {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 150px;
}

.activities-cards .new-icon {
    font-size: 20px;
    color: #fff;
    /*color: #ffd000;*/
    padding-left: 7px;
    padding-top: 2px;
}

.activities-cards .pentagon-new-icon {
    display: inline-block !important;
    position: relative;
    /*background-color: #a42800;*/
    background-color: #0b49a4;
    width: 30px;
    height: 25px;
}

.activities-cards .pentagon-new-icon:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 12.78px solid transparent;
    /*border-left: 10px solid #a42800;*/
    border-left: 10px solid #0b49a4;
    left: 30px;
    top: 0px;
}
/*end new*/

/*canceled */
.activities-cards .canceled {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 150px;
}

.activities-cards .canceled-icon {
    font-size: 20px;
    color: #fff;
    /*color: #ffd000;*/
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 2px;
}

.activities-cards .pentagon-canceled-icon {
    display: inline-block !important;
    position: relative;
    /*background-color: #a42800;*/
    background-color: #0b49a4;
    /*width: 30px;*/
    height: 25px;
}

.activities-cards .pentagon-canceled-icon:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 12.78px solid transparent;
    /*border-left: 10px solid #a42800;*/
    border-right: 10px solid #0b49a4;
    right: 91px;
    top: 0px;
}
/*end canceled*/

.activities-cards .category-icon {
    font-size: 40px;
    color: #fff;
    padding-left: 3px;
}

.activities-cards .circle-icon {
    background-color: #0b49a4;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 40px;
    vertical-align: middle;
}

.activities-cards .pentagon-icon {
    display: inline-block !important;
    position: relative;
    background-color: #0b49a4;
    width: 40px;
    height: 35px;
    top: 0;
}

.activities-cards .pentagon-icon:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top: 10px solid #0b49a4;
    left: 0;
    top: 35px;
}

.activities-cards .card-body {
    padding-top: 10px;
}

.activities-cards .card-title {
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.18rem;
    word-wrap: break-word;
    margin: 0;
    color: #fe9500;
}

.activities-cards hr {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.activities-cards .card-meta {
    font-size: 0.9em;
}

.activities-cards .date-range {
    font-size: 0.9em;
    font-style: italic;
}

.activities-cards .place a {
    font-style: italic;
    font-size: 0.9em;
}

.activities-cards .published_by {
    font-size: 0.9em;
}

.activities-cards .publisher {
    font-style: italic;
    text-transform: uppercase;
    color: #fe9500;
}

.activities-cards .social-icons {
    font-size: 1.2em;
    line-height: 31px;
    margin: 0 2px;
    color: #0b49a4;
}

.activities-cards .social-icons:hover {
    color: #0b3f7e;
}

.activities-cards .btn-read-more {
    background-color: #fe9500;
    color: #fff;
    position: absolute;
    right: 12px;
}

.activities-cards .btn-read-more:hover {
    background-color: #ec7a00;
}

.activities-cards .card-footer {
    min-height: 60px;
    background-color: #F7F7F7;
    display: inline-flex;
}

.activities-cards .circle {
    width: 10px;
    height: 10px;
    background-color: #F7F7F7;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    display: inline-block;
}

.activities-cards .ticket-shape {
    position: absolute;
    bottom: -10px;
}

.link-icons {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
}

.link-icons a {
    color: #fff;
}

.link-icons .link-icon {
    font-size: 19px;
    width: 32px;
    height: 32px;
    background-color: #0b49a4;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    padding-top: 4px;
}

.svg-border-mask {
    -webkit-mask-box-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/stampTiles.svg) 30 repeat;
    mask-border: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/stampTiles.svg) 30 repeat;
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
/*
===========================
Content Area
===========================
*/
.activity-details {
    min-height: 500px;
}

.activity-details .activity-title {
    font-size: 20px;
    color: #fe9500;
    margin-bottom: 20px;
}

.activity-details .activity-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
}

.activity-details .activity-content p {
    text-align: justify;
    text-justify: inter-word;
}

.activity-details .activity-metas {
    padding: 10px 10px 0 0;
}

.activity-details .activity-metas .fa {
    color: #393939;
}

.activity-details .activity-metas .social-icons {
    margin-top: 10px;
    font-size: 24px;
    color: #0b49a4;
}

.activity-details .activity-metas .social-icons:hover {
    color: #0b3f7e;
}

.activity-details .bottom-metas {
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.875em;
}

.activity-details .bottom-metas .separator {
    color: #fe9500;
    font-weight: bold;
}

.activity-details .bottom-metas a.meta {
    color: #fe9500;
    font-weight: bold;
}

.activity-details .bottom-metas a.meta:visited {
    color: #fe9500;
}

.activity-details .bottom-metas a.meta:hover, .activity-details .bottom-metas a.meta:focus {
    color: #ec7a00;
}

.activity-details .sidebar-module {
    border-radius: 5px;
    background-color: #fff;
    padding: 10px;
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.sidebar-module .activities-cards {
    min-height: auto;
}

.module-title {
    color: #0b49a4;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-activity-text {
    margin-bottom: 5px;
}

a.featured-activity-title {
    color: #393939;
}

a.featured-activity-title h3 {
    font-size: 1em;
}

a.featured-activity-title:hover, a.featured-activity-title:focus {
    font-size: 1.1em;
}

a.featured-activity-place {
    font-size: 0.875em;
    color: #393939;
}

a.featured-activity-place:hover, a.featured-activity-place:focus {
    font-weight: 600;
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.responsive-calendar {
    border-radius: 5px;
}

.responsive-calendar h4 {
    font-size: 25px;
}

.responsive-calendar hr {
    margin-top: 8px;
    margin-bottom: 1px;
}

.responsive-calendar .day {
    font-size: 12px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .responsive-calendar h4 {
        font-size: 20px;
    }

    .responsive-calendar hr {
        margin-top: 13px;
    }
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.staticpage-title {
    color: #393939;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .staticpage-content {
        min-height: 500px;
    }
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
footer .footer-content {
    background-color: #fff;
}

footer .footer-note {
    border-top: 1px #393939 solid;
    font-size: 14px;
    font-weight: 400;
    color: #393939;
    text-align: center;
    font-style: italic;
}

footer ul.footer-menu {
    margin-bottom: 0;
}

footer .footer-link {
    color: #0b49a4;
}

footer .footer-link:hover, footer .footer-link:focus {
    font-weight: 600;
}

footer .footer-social-icons i {
    color: #0b49a4;
    margin: 10px;
}

footer .footer-social-icons i:hover {
    color: #0b3f7e;
}

footer .footer-about-us {
    color: #0b49a4;
}

@media (max-width: 992px) {
    .footer-note {
        margin-bottom: 55px;
    }
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.btn-primary {
    background-color: #fe9500;
    border-color: #fe9500;
}

.btn-primary:visited {
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    color: #fff;
    background-color: #ec7a00;
    border-color: #ec7a00;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ec7a00;
    border-color: #ec7a00;
}

.btn-see-more-large {
    width: 100%;
    max-width: 100%;
    height: 54px;
    line-height: 30px;
    font-size: 20px;
    padding: 12px 0;
}

/* Primary Colors */
/* Text and links Colors */
/* Buttons Colors */
.filters-area .jumbotron {
    padding-top: 10px;
    background-color: #fff;
}

.filters-area hr {
    margin-top: 5px;
}

.filters-area-header {
    font-weight: bold;
}

/*
===========================
Pagination
===========================
*/
.page-link {
    color: #fe9500;
    background-color: #fff;
    border: 1px solid #fe9500;
}

.page-link:hover {
    color: #fff;
    background-color: #ec7a00;
    border-color: #ec7a00;
}

.page-link:focus {
    outline: none;
    box-shadow: none;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #ec7a00;
    border-color: #ec7a00;
}

.page-item.disabled .page-link {
    color: #c3c3c3;
    background-color: #fff;
    border-color: #fff;
}

/*# sourceMappingURL=styles.css.map */
