/* COLORS */
:root {
    --main-bg-green: #E1FF00;
    --main-bg-blue: #0083FC;
    --main-bg-black: #363436;
    --main-bg-orange: #F03E3E;
}

.text-mainsepeda-green {
    color: var(--main-bg-green);
}

.text-mainsepeda-blue {
    color: var(--main-bg-blue);
}

.text-mainsepeda-black {
    color: var(--main-bg-black);
}

.text-mainsepeda-orange {
    color: var(--main-bg-orange);
}


/************FONTS**************/
@font-face {
    font-family: "Myriad Pro Bold";
    src: url("../fonts/MyriadPro-Bold.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Myriad Pro Semibold";
    src: url("../fonts/MyriadPro-Semibold.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Myriad Pro Regular";
    src: url("../fonts/MyriadPro-Regular.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Myriad Pro Condensed";
    src: url("../fonts/MyriadCondensedWeb.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Myriad Pro Bold Condensed";
    src: url("../fonts/MyriadPro-BoldCond.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue";
    src: url("../fonts/BebasNeue.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue Bold";
    src: url("../fonts/BebasNeue Bold.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue Regular";
    src: url("../fonts/BebasNeue Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue Book";
    src: url("../fonts/BebasNeue Book.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Corbel Regular";
    src: url("../fonts/CORBEL.TTF");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Corbel Bold";
    src: url("../fonts/Corbel Bold.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Big Noodle Tilting";
    src: url("../fonts/big_noodle_titling.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat Regular";
    src: url("../fonts/Montserrat-Regular.otf");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* background color mainsepeda new */
.bg-mainsepeda-green {
    background-color: var(--main-bg-green);
}

.bg-mainsepeda-blue {
    background-color: var(--main-bg-blue);
}

.bg-mainsepeda-black {
    background-color: var(--main-bg-black);
}

/***** FRONTEND HEADER *****/
/* bootstrap sm screen size */
@media (max-width: 994px) {
    .bg-mainsepeda {
        background-color: var(--main-bg-blue);
        /* background-image: -webkit-linear-gradient(top, #4a4a4a 0%, #191919 100%);
        background-image: linear-gradient(to bottom, #4a4a4a 0%, #191919 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a4a4a', endColorstr='#191919', GradientType=0); */
    }

    #footer-top .bg-mainsepeda {
        /* background-image: linear-gradient(to bottom, #4a4a4a 0%, #191919 100%);
        background-repeat: repeat-x; */
    }

    .navbar-dark .navbar-nav .nav-link {
        color: white;
        font-size: 14px;
    }

    .navbar-dark .navbar-nav .show>.nav-link {
        color: white;
    }

    .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
        color: white;
    }

    .dropdown-item {
        color: white !important;
        background-color: var(--main-bg-blue);
        font-size: 14px;
        padding: 0.5rem 1.5rem;
    }

    .dropdown-item.active, .dropdown-item:active, .dropdown-item:focus {
        color: white !important;
        background-color: var(--main-bg-blue);
    }
}

/* bootstrap md screen size */
@media (min-width: 995px) {
    .bg-mainsepeda {
        background-color: var(--main-bg-blue);
        /* background-image: -webkit-linear-gradient(top, #34ACE9 0%, #0295E2 100%);
        background-image: linear-gradient(to bottom, #34ACE9 0%, #0295E2 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#34ACE9', endColorstr='#0295E2', GradientType=0); */
    }

    .bg-mainsepeda-black {
        background-color: var(--main-bg-black);
    }

    #footer-top .bg-mainsepeda {
        background: transparent;
    }  

    .navbar-expand-md .navbar-nav .nav-link,
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: white;
        padding-top: 16px;
        padding-bottom: 16px;
        /* font-family: "Bebas Neue"; */
        font-size: 14px;
    }

    .navbar-text {
        color: #ffffff;
        font-size: 14px;
    }

    .dropdown-menu {
        padding-top: 0px;
    }

    .mainsepeda-nav-v2 .dropdown-menu>a {
        /* font-family: "Bebas Neue"; */
        font-size: 14px;
        /* color: var(--main-bg-blue); */
        color: var(--main-bg-blue) !important;
        background-color: var(--main-bg-green);
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1.2px solid var(--main-bg-blue);
    }

    .mainsepeda-nav-v2 .dropdown-menu > a:after {
        /* content: "";
        border-bottom: 1px solid #000;
        display: block; */
    }

    .mainsepeda-nav-v2 .dropdown-menu > a:last-child {
        border-bottom: none;
    }

    .mainsepeda-nav-v2 .dropdown-menu>a:focus,
    .dropdown-menu>a:hover {
        text-decoration: none;
        color: var(--main-bg-green);
        /* color: #ff72a4; */
        background-color: var(--main-bg-blue);
    }

    #footer-top .mainsepeda-nav-v2 .dropdown-menu>a:focus,
    .dropdown-menu>a:hover {
        text-decoration: none;
        color: var(--main-bg-yellow) !important;
        /* color: #ff72a4; */
        background-color: var(--main-bg-blue);
    }


    .mainsepeda-nav-v2 .navbar-nav>li>a:focus,
    .mainsepeda-nav-v2 .navbar-nav>li>a:hover {
        text-decoration: none;
        color: var(--main-bg-blue) !important;
        background-color: var(--main-bg-green); 
        /* background-image: -webkit-linear-gradient(top, #30A3DC 0%, #038DD6 100%);
        background-image: linear-gradient(to bottom, #30A3DC 0%, #038DD6 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30A3DC', endColorstr='#038DD6', GradientType=0); */
    }

    .mainsepeda-nav .navbar-nav>li>a {
        /* (70px - line-height of 27px) / 2 = 26.5px */
        padding-top: 15px;
        padding-bottom: 15px;
        line-height: 27px;
    }

    .mainsepeda-nav .navbar-search {
        margin-top: 10px;
    }
}

.main-logo-mobile {
    max-width: 245px;
    padding: 5px 10px 0px 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.container-header {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container-header .header-mb {
    background-color: var(--main-bg-blue);
    padding-left: 30px;
    padding-right: 30px;
    /* background-image: -webkit-linear-gradient(top, #4a4a4a 0%, #191919 100%);
    background-image: linear-gradient(to bottom, #4a4a4a 0%, #191919 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a4a4a', endColorstr='#191919', GradientType=0); */
}

.dropdown-menu {
    color: #fff;
    background-color: #fff0;
    border: none;
}

.dropdown-item {
    color: #fff;

}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0095e1;
}

.mainsepeda-nav-v2 .navbar-nav>li:focus,
.mainsepeda-nav-v2 .navbar-nav>a.nav-item:hover {
    text-decoration: none;
    color: #ffffff;
    background-image: -webkit-linear-gradient(top, #424242 0%, #161719 100%);
    background-image: linear-gradient(to bottom, #424242 0%, #161719 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#161719', GradientType=0);
}

.navbar {
    margin-bottom: 0px;
}

.navbar-brand {
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
}

.navbar-toggle {
    /* (70px - button height 34px) / 2 = 18px */
    margin-top: 18px;
    padding: 9px 10px !important;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-nav {
    /* background:#2c2c2c;
     */
    background-image: -webkit-linear-gradient(top, #4a4a4a 0%, #191919 100%);
    background-image: linear-gradient(to bottom, #4a4a4a 0%, #191919 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a4a4a', endColorstr='#191919', GradientType=0);
}

/***** HEADLINE NEWS *****/
/* bootstrap md screen size */
@media (min-width: 995px) {
    #firstHeadlineImage {
        height: 300px;
    }

    #firstHeadlineText .headline-title {
        font-size: 25px;
    }

    #firstHeadlineText {
        padding-bottom: 15px;
        bottom: 0;
    }
}

/* bootstrap md screen size */
@media (max-width: 991px) {
    #firstHeadlineWrapper {
        position: relative;
        margin-bottom: 10px;
    }

    #firstHeadlineText .headline-title {
        font-size: 17px;
        color: white;
        margin-top: 5px;
        margin-bottom: 15px;
        font-family: Myriad Pro Bold;
        text-shadow: 2px 2px 4px #000000;
    }
}

/* bootstrap lg screen size */
@media (min-width: 992px) {
    #firstHeadlineImage {
        height: 300px;
    }

    #firstHeadlineText {
        padding-bottom: 25px;
        bottom: 0;
    }

    #firstHeadlineWrapper {
        position: relative;
        /*
        margin-bottom: 10px;
        padding-right: 5px;
        */
        padding: 0 !important;
        background-size: cover !important;
        background-position: center top !important;
    }

    #firstHeadlineText .headline-title {
        font-size: 28px;
        color: white;
        font-family: Myriad Pro Bold;
        text-shadow: 2px 2px 4px #000000;
    }

    .gradient-overlay-big,
    .gradient-overlay-medium,
    .gradient-overlay-small {
        background-repeat: repeat-x;
        bottom: 0;
        background-image: url(https://www.mainsepeda.com/img/gradient-bg-vertical.png);
        background-position: bottom center;


    }

    /*set gradient bg height and space occupied from bottom*/
    .gradient-overlay-big,
    .gradient-overlay-medium {
        height: 300px;
        background-size: 101% 200px;
        opacity: .95;
    }

    .gradient-overlay-small {
        height: 150px;
        background-size: 101% 150px;
        opacity: .8;
    }

    .gradient-overlay-big:hover,
    .gradient-overlay-medium:hover {
        opacity: .8;
    }

    .gradient-overlay-small:hover {
        opacity: .65;
    }



}

/* bootstrap xl screen size */
@media (min-width: 1200px) {
    #firstHeadlineImage {
        height: 500px;
    }

    #firstHeadlineText {
        padding-bottom: 30px;
        bottom: 0;
    }
}

#headlineContentWrapper {
    position: relative;
    margin-bottom: 10px;
}

#firstHeadlineImage {
    width: 100%;
    object-fit: cover;
    object-position: 50% 0%;

}

#firstHeadlineText {
    position: absolute;
    bottom: 0;
    padding-left: 15px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    left: 15px;
    right: 15px;
}

#firstHeadlineText a:hover {
    text-decoration: none;
}

#firstHeadlineText>.date {
    font-size: 13px;
    color: white;
    font-family: Montserrat Regular;
    text-shadow: 2px 2px 4px #000000;
}

#mobileHeadlineText {
    bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Montserrat Regular;
}

#mobileHeadlineText a:hover {
    text-decoration: none;
}

#mobileHeadlineText>.date {
    font-size: 13px;
    color: black;
    font-family: Montserrat Regular;
}

#mobileHeadlineText>.date a {
    color: black;
}

#mobileHeadlineText>.date a:hover {
    text-decoration: none;
    color: #007bff;
}

#mobileHeadlineText>.headline-title {
    font-size: 20px;
    padding-top: 5px;
    line-height: 1.3;
    font-family: "Myriad Pro Bold";
}

.author-text {
    font-size: 13px;
    color: black;
    font-family: Montserrat Regular;
}

.author-text a {
    color: black;
}

.author-text a:hover {
    text-decoration: none;
    color: #007bff;
}

/***** FEATURED POST *****/
@media (min-width: 992px) {
    .featured-news-wrapper {
        position: relative;
        /*margin-bottom: 10px;
        padding-left: 5px;
        */
        padding: 0 !important;
        background-repeat: no-repeat;
        background-size: cover !important;
        background-position: top center !important;
    }

    .featured-news-wrapper-small {
        position: relative;
        /* 
        margin-bottom: 10px;
        padding-left: 5px;
        */
        padding: 0 !important;
        background-repeat: no-repeat;
        background-size: cover !important;
        background-position: top center !important;
    }

    .featured-news-image {
        width: 100%;
        /*height: 160px;*/
        height: 300px;
        object-fit: cover;
        object-position: 50% 0%;
    }

    .featured-news-image-small {
        width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: 50% 0%;
    }

}

@media (max-width: 991px) {
    .featured-news-wrapper {
        position: relative;
        margin-bottom: 10px;
        background-repeat: no-repeat;
        background-size: cover !important;
        background-position: top center !important;
    }

    .featured-news-wrapper-small {
        position: relative;
        /* 
        margin-bottom: 10px;
        */
        padding-left: 0px !important;
        padding-right: 0px !important;
        background-repeat: no-repeat;
        background-size: cover !important;
        background-position: top center !important;
    }

    .featured-news-image {
        width: 100%;
        /*max-height: 200px;*/
        max-height: 300px;
        object-fit: cover;
        object-position: 50% 0%;
    }

    .featured-news-image-small {
        width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: 50% 0%;
    }

}


/* bootstrap xs screen size */
@media (max-width: 575px) {
    .date-mobile-site {
        display: none;
    }

    .headline-web {
        display: none;
    }

    .headline-mobile {
        display: flex;
    }
}


/* bootstrap sm screen size */
@media (min-width: 576px) {
    .date-mobile-site {
        display: none;
    }

    .headline-web {
        display: none;
    }

    .headline-mobile {
        display: flex;
    }

}


/* bootstrap md screen size */
@media (min-width: 995px) {
    .date-mobile-site {
        display: block;
    }

    .headline-web {
        display: flex;
    }

    .headline-mobile {
        display: none;
    }

}

.featured-news-text {
    position: absolute;
    padding-bottom: 15px;
    bottom: 0;
    padding-left: 15px;
    padding-right: 50px;
    padding-top: 10px;
    left: 15px;
    right: 15px;
}

.featured-news-text .news-title {
    font-size: 17px;
    color: white;
    font-family: Myriad Pro Bold;
}

.featured-news-text .news-title-top {
    font-size: 13px;
    color: white;
    margin-top: 5px;
    font-family: Myriad Pro Bold;
}

.featured-news-text .news-title-bottom {
    font-size: 17px;
    color: white;
    margin-top: 5px;
    font-family: Myriad Pro Bold;
}

.featured-news-text a {
    text-shadow: 2px 2px 4px #000000;
}


.featured-news-text a:hover {
    text-decoration: none;
}

.featured-news-text>.date {
    font-size: 13px;
    color: white;
    font-family: Myriad Pro Regular;
}



.featured-news-text-small {
    position: absolute;
    padding-bottom: 5px;
    bottom: 0;
    padding-left: 8px;
    /* padding-right: 50px; */
    /* padding-top: 10px; */
    left: 0px;
    right: 0px;
}

.featured-news-text-small .news-title {
    font-size: 13px;
    color: white;
    font-family: Myriad Pro Bold;
}

.featured-news-text-small .news-title-top {
    font-size: 11px;
    color: white;
    margin-top: 5px;
    font-family: Myriad Pro Bold;
}

.featured-news-text-small .news-title-bottom {
    font-size: 11px;
    color: white;
    margin-top: 5px;
    font-family: Myriad Pro Bold;
}

.featured-news-text-small a {
    text-shadow: 2px 2px 4px #000000;
}


.featured-news-text-small a:hover {
    text-decoration: none;
}

.featured-news-text-small>.date {
    font-size: 11px;
    color: white;
    font-family: Myriad Pro Regular;
}



/***** SIDEBAR TOP *****/
.sidebar-top {
    margin-bottom: 10px;
}

/***** SIDEBAR BOTTOM *****/
.sidebar-bottom {
    margin-top: 10px;
}

/***** POST ITEM *****/

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 0;
}

/* bootstrap xs screen size */
@media (min-width: 500px) {
    .post-image {
        height: 300px;
    }
}

/* bootstrap md screen size */
@media (min-width: 995px) {
    .post-image {
        height: 120px;
    }
}

/* bootstrap lg screen size */
@media (min-width: 992px) {
    .post-image {
        height: 150px;
    }
}

/* bootstrap xl screen size */
@media (min-width: 1200px) {
    .post-image {
        height: 180px;
    }
}

.post-title {
    color: #0095e1;
    font-size: 23px;
    padding: 5px 0px 5px 0px;
    font-family: "Myriad Pro Bold";
}

.post-title.vlog {
    color: white;
    font-size: 20px;
    padding: 5px 0px 5px 0px;
    font-weight: 700;
    line-height: 1.2em;
}

.post-title.vlog > a {
    color: white;
    text-decoration: none;
}

.post-title a:hover {
    /* color: #e57508; */
    text-decoration: none;
}

.post-title-top {
    color: #000;
    font-size: 17px;
    padding: 5px 0px 0px 0px;
    font-family: "Myriad Pro Bold";
}

.post-title-top a {
    color: #000;
    text-decoration: none;
}

.post-title-top a:hover {
    color: #000;
    text-decoration: none;
}


.post-title-bottom {
    color: #0095e1;
    font-size: 14px;
    padding: 5px 0px 0px 0px;
    font-family: "Myriad Pro Bold";
}

.post-title-bottom a {
    color: #f7820f;
    text-decoration: none;
}

.post-title-bottom a:hover {
    color: #e57508;
    text-decoration: none;
}

.post-author {
    color: #272727;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 0px 5px 0px;
    font-style: normal;
}

.post-author a {
    color: #272727;
    text-decoration: none;
    font-family: "Montserrat Regular";
}

.post-author img {
    width: 70px;
    height: 70px;
    text-decoration: none;
}

div.post-author>a {
    color: #5a5a5a;
}

.post-category {
    font-size: 14px;
    font-family: "Corbel Regular";
    text-transform: uppercase;
    padding: 5px 0px 0px 0px;
    color: #00AEEF;
    text-decoration: none;
}

.post-category-small {
    font-size: 12px;
    font-family: "Corbel Regular";
    text-transform: uppercase;
    padding: 5px 0px 0px 0px;
    color: #00AEEF;
    text-decoration: none;
}

.post-category a {
    color: #00AEEF;
    text-decoration: none;
}

.featured-post-category-text {
    color: #fff !important;
    font-weight: bolder;
    text-shadow: 2px 2px 4px #000000;
}

.post-date {
    color: #272727;
    font-size: 11.5px;
    font-family: "Montserrat Regular";
}

.post-body img {
    max-width: 100%;
    height: auto;
}

.post-body > p:nth-child(1) img {
    display: none !important;
}
/*
.post-body > p:nth-child(2) em {
    display: none !important;
}
*/

.post-body {

    /* font-size: 13px;
    padding-top: 10px;
    color: #464646;
    font-family: "Montserrat Regular"; */
}

.post-social span {
    color: #272727;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 0px 5px 0px;
    font-style: normal;
}

.post-social img {
    padding: 0px 5px;
}

.related-article-header {
    font-size: 20px;
    font-family: 'Myriad Pro Bold';
}

.related-article-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: 50% 0;
}

.related-article-title a {
    color: #000;
    text-decoration: none;
    line-height: 1.2 !important;
    font-size: 13px;
    font-family: Myriad Pro Bold;
}

/***** NEWS CATEGORY SECTION *****/
.section-header {
    font-size: 20px;
    text-transform: uppercase;
    background: #464646;
    padding: 10px 10px 10px 10px;
    color: white;
    text-decoration: none;
    margin-bottom: 21px;
    font-weight: 600;
    font-family: "Myriad Pro Bold";
}

/***** PROFILE PAGE SECTION *****/
/* bootstrap lg screen size */
@media only screen and (min-width: 992px) {

    .profile-name {
        font-family: 'Big Noodle Tilting';
        color: #0095e1;
        font-size: 80px;
        letter-spacing: 5px;
    }

    .profile-divider {
        display: block;
        color: #464646;
        border-style: solid;
        border-width: 2px;
        margin-left: 15px;
    }
}

/* bootstrap md screen size */
@media only screen and (max-width: 991px) {
    .profile-name {
        font-family: 'Big Noodle Tilting';
        color: #0095e1;
        font-size: 40px;
        letter-spacing: 5px;
        text-align: center;
    }

    .profile-divider {
        display: block;
        color: #464646;
        border-style: solid;
        border-width: 2px;
    }
}

.profile-panel {
    background-color: #fff;
    border-radius: 4px;
}

.bio {
    font-family: "Myriad Pro Bold";
    color: #626262;
    font-size: 18.6px;
}

.bio-description {
    font-family: "Myriad Pro Bold";
    color: #3c3c3c;
    font-size: 14px;
    text-align: justify;
    text-justify: inter-word;
}

.profile-avatar {
    width: 100%;
    height: 262.48px;
    object-fit: cover;
    object-position: 50% 0%;
}

.event-profile-name {
    font-size: 14px;
    font-weight: 700;
    color: #464646;
}

/***** SIDEBAR SECTION *****/
.sidebar-header {
    font-size: 20px;
    text-transform: uppercase;
    background: #464646;
    padding: 10px 10px 10px 10px;
    color: white;
    text-decoration: none;
    margin-bottom: 14px;
    font-weight: 600;
    font-family: "Myriad Pro Bold";
}

/***** FOOTER SECTION *****/
#footer-top {
    color: #fff;
    margin-top: 10px;
    font-size: 13pt;
    font-family: "Myriad Pro Condensed";
    font-size: 11pt;

    background-image: -webkit-linear-gradient(top, #4a4a4a 0%, #191919 100%);
    background-image: linear-gradient(to bottom, #4a4a4a 0%, #191919 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a4a4a', endColorstr='#191919', GradientType=0);

    /* background-color: #f59bbb; */
}

#footer-top a {
    text-decoration: none;
    color: white;
}


#footer-social-media {
    font-size: 26px;
    font-weight: bold;
    margin-left: 5px;
    font-family: "Myriad Pro Condensed";
}

#footer-bottom {
    background-color: #fff;
    color: #000;
    padding: 20px 20px;
    font-size: 9pt;
    font-weight: bold;
    font-style: italic;
}

#footer-bottom a {
    color: #000;
    text-decoration: none;
}

#footer-logo {
    max-width: 400px;
}

/* bootstrap md screen size */
@media (min-width: 995px) {
    #footer-social-media {
        margin-top: 10px;
        margin-bottom: 40px;
    }

    #footer-email-contact {
        font-size: 25px;
        margin-top: 10px;
    }

    #footer-top .right,
    #footer-top .right strong {
        text-align: right;
        font-family: "Montserrat Regular";
        font-size: 15px;
    }
}

/* bootstrap sm screen size */
@media (max-width: 994px) {
    #footer-social-media {
        margin-top: 10px;
    }

    #footer-top {
        margin-top: 30px;
        padding-bottom: 15px;
        border-top: none;
    }

    #footer-top .right,
    #footer-top .right strong {
        text-align: left;
        margin-top: 5px;
        font-family: "Montserrat Regular";
        font-size: 12px;
    }

    #footer-bottom {
        text-align: center;
        margin-bottom: 10%;
    }

    #footer-email-contact {
        font-size: 17px;
        margin-top: 5px;
    }

    #footer-social-media-username {
        font-size: 17px;
        margin-left: 0px;
    }

    #footer-logo {
        /* max-width: 345px; */
        max-width: 290px;
    }

    #footer-devider-mobile {
        height: 1px;
        overflow: hidden;
        background-color: #000000;
        position: relative;
        left: 60px;
        top: 16px;
        width: 73%;
    }
}

/***** EVENT *****/

.top-title-event {
    font-family: 'Myriad Pro Bold', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: #464646;
}

.main-title-event {
    font-family: 'Playfair Display', serif;
    font-size: 350%;
    line-height: 100%;
    font-weight: bold;
}

.event-description {
    font-family: 'Roboto', sans-serif;
    list-style-type: none;
    color: #333;
    padding: 0px 30px;
}

/* bootstrap lg screen size */
@media (min-width: 992px) {
    .headline-event-content {
        width: 65%;
        margin-left: 5%;
        padding: 5%;
        background-color: #fff;
        position: relative;
        margin-top: -10%;
    }
}

/* bootstrap md screen size */
@media (max-width: 991px) {
    .headline-event-content {
        padding: 5%;
        background-color: #fff;
        position: relative;
    }
}

/***** EVENT MENU ITEM *****/
/* bootstrap md screen size */
@media (min-width: 995px) {
    #custom-event-menu .navbar-nav>li>a {
        color: #ffffff;
        padding-left: 25px;
        padding-right: 25px;
        font-family: "Bebas Neue";
        font-size: 18pt;
    }
}

/* bootstrap sm screen size */
@media (max-width: 994px) {
    #custom-event-menu .navbar-nav>li>a {
        font-family: "Bebas Neue";
        font-size: 20px;
        padding: 2px 2px;
    }
}

#custom-event-menu {
    margin-bottom: 15px;
}

#custom-event-menu .nav>li>a:focus,
#custom-event-menu .nav>li>a:hover {
    text-decoration: none;
    color: #ffffff;
}

#custom-event-menu .navbar-brand {
    font-family: "Bebas Neue";
    font-size: 20px;
    color: #464646;
}

#custom-event-menu {
    font-size: 15px;
    background-color: rgba(248, 248, 248, 0);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 248, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 248, 0) 100%);
    border-width: 1px;
    border-radius: 0px;

    border-bottom: 1px solid #0095e1;
}

#custom-event-menu .navbar-nav>li>a {
    color: #0095e1;
    background-color: rgba(255, 255, 255, 1);
}

#custom-event-menu .navbar-nav>li>a:hover,
#custom-event-menu .navbar-nav>li>a:focus {
    color: rgba(51, 51, 51, 1);
    background-color: rgba(248, 248, 248, 0);
}

#custom-event-menu .navbar-nav>.active>a,
#custom-event-menu .navbar-nav>.active>a:hover,
#custom-event-menu .navbar-nav>.active>a:focus {
    color: rgba(85, 85, 85, 1);
}

#custom-event-menu .navbar-toggle {
    border-color: #fff;
}

#custom-event-menu .navbar-toggle:hover,
#custom-event-menu .navbar-toggle:focus {
    background-color: #fff;
}

#custom-event-menu .navbar-toggle .icon-bar {
    background-color: #888;
}

#custom-event-menu .navbar-toggle:hover .icon-bar,
#custom-event-menu .navbar-toggle:focus .icon-bar {
    background-color: #888;
}

/***** EVENT GALLERY *****/

.my-gallery {
    width: 100%;
    text-align: left;
    position: relative;
}

.my-gallery figure {
    padding: 0;
    border: #ececec;
    border-style: solid;
    border-width: thin;
}

/*.my-gallery figure:after {*/
/*content: "";*/
/*display: inline-block;*/
/*width: 100%;*/
/*}*/

.my-gallery figcaption {
    display: none;
}

.gallery-container {
    position: relative;
    width: 100%;
}

.photo-gallery-list-frame {
    /*width: 100%;*/
    /*height: 30vmax;*/
    margin: 0 10px 0 10px;
    height: 200px;
    border: 0px solid #939598;
    white-space: nowrap;
    text-align: center;
    position: relative;
    margin-bottom: 1em;
}

.photo-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 50%;
}

.photo-gallery-label3 {
    /* font-family: "Roboto Regular"; */
    position: absolute;
    bottom: 0;
    font-size: 9pt;
    /* font-weight: 600; */
    margin: 0;
    right: 0;
    left: 0;
    text-align: center;
    color: black;
    /*background: rgba(254, 242, 0, 1);*/
    background: rgba(0, 0, 0, 0.44);
    padding: 5px 2px 5px 2px;
}

.photo-gallery-tag {
    padding: 5px !important;
    margin: 2px 2px !important;
}

.btn {
    border-radius: 0 !important;
}

/***** EVENT RESULTS *****/
/* bootstrap xs screen size */
@media (max-width: 575px) {
    .event-result-tabs .nav-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .event-result-tabs .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        width: 100%;
        text-align: center;
        color: #495057;
        background-color: #fff;
        border-color: #dee2e6 #dee2e6 #dee2e6;
    }
}

.event-result-tabs .nav-tabs a {
    color: #0095e1;
}

/***** GENERAL ITEM *****/
.m-t-10 {
    margin-top: 10px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.btn-group-xs>.btn,
.btn-xs {
    /*padding  : .25rem .4rem;*/
    font-size: .875rem;
    line-height: .5;
    border-radius: .2rem;
}


/* LOAD MORE BUTTON */
.loadseemore {
    cursor: pointer;
    color: #fff;
    margin: 30px 0;
    -webkit-transition: all ease-out .4s;
    -moz-transition: all ease-out .4s;
    -o-transition: all ease-out .4s;
    transition: all ease-out .4s;
    background-color: var(--main-bg-blue);
}

.loadseemore-progress-image {
    margin: 30px 0;
}

/*title top & bottom*/
#firstHeadlineText .headline-title-top {
    font-size: 15px;
    color: white;
    font-family: Myriad Pro Bold;
    text-shadow: 2px 2px 4px #000000;
    margin-top: 8px;
}

#firstHeadlineText .headline-title-bottom {
    font-size: 15px;
    color: white;
    font-family: Myriad Pro Bold;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 8px;
}

/*latest post sidebar*/
#latestPostSidebar {
    padding-left: 20px;
}

#latestPostSidebar>li {
    color: #f7941d;
    border-bottom: 1px #909090 solid;
    padding: 2px 0;
    margin: 7px 0;
    font-size: 24px;
    line-height: 14px;
}

#latestPostSidebar>li .title-latest-post {
    color: rgb(82, 82, 82);
    font-weight: 600;
    font-size: 13px;
}

#latestPostSidebar>li .title-top-latest-post {
    color: rgb(82, 82, 82);
    font-weight: 600;
    font-size: 11px;
}

#latestPostSidebar>li .author-latest-post {
    font-size: 10px;
    color: rgb(82, 82, 82);
}

/***** Custom Pagination *****/
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 2;
    color: #ffffff;
    background-color: #000000;
    border-color: #ffffff;
    border-radius: 0px;
    cursor: default;
}

.pagination>li>a {
    background: #fafafa;
    color: #666;
    border-color: #000000;
    color: #ffffff;
    border-radius: 0px;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    margin: 2px 2px;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #337ab7;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    margin-left: -1px;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #000000;
    background-color: #ffffff;
    border-color: #000000;
    border-radius: 0px;
    cursor: not-allowed;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.pagination>li>a {
    background: #ffffff;
    color: #666;
    border-color: #000000;
    color: #ffffff;
    border-radius: 0px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #ffffff;
    background-color: #000000;
    border-color: #ffffff;
}

.page-item:first-child .page-link {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #0095e1;
    border-color: #0095e1;
}

/***** OVERRIDE PAGINATION NAVIGATION DESIGN *****/
.pagination>.active>span {
    background-color: #000000;
    border-color: #ffffff;
}

.pagination>li>a {
    color: #000000;
}

/***** LOGIN PAGE *****/

.btn-black,
.btn-black:hover,
.btn-black:active,
.btn-black:visited,
.btn-black:focus {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.box-title {
    text-align: center;
    font-family: "Myriad Pro Bold";
}

.email-login-popup>input {
    border-radius: 0;
    margin-bottom: 10px;
}

.password-login-popup>input {
    border-radius: 0;
}


#wrap_register {
    text-align: center;
    width: auto;
}

#btn-login,
#goToLoginFromRegister,
#btn_register,
.btn-black-popup,
#register_form {
    color: white;
    background: black;
    border-radius: 0;
    width: auto;
    font-weight: 600;
}

#wrap_login {
    text-align: right;
}


.register-validate {
    border-radius: 0;
}

/***** BOOTSTRAP 4 *****/
/* bootstrap xl screen size */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* bootstrap sm screen size */
@media (max-width: 994px) {
    .container {
        width: 100%;
        max-width: none;
    }
}

/* bootstrap xs screen size */
@media (max-width: 575px) {
    .adsContainerWeb {
        display: none;
    }

    .adsContainerMobileLandscape {
        display: none;
        text-align: center;
    }

    .adsContainerMobile {
        display: block;
    }
}


/* bootstrap sm screen size */
@media (min-width: 576px) {
    .adsContainerWeb {
        display: none;
    }

    .adsContainerMobileLandscape {
        display: block;
        text-align: center;
    }

    .adsContainerMobile {
        display: none;
    }
}


/* bootstrap md screen size */
@media (min-width: 995px) {
    .adsContainerWeb {
        display: block;
    }

    .adsContainerMobileLandscape {
        display: none;
        text-align: center;
    }


    .adsContainerMobile {
        display: none;
    }
}

/* START Video */
.play-button {
    width: 80px;
    height: 50px;
    background-color: #ff0000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.7;
    border-radius: 6px;
}

.play-button:before {
    content: "";
    border-style: solid;
    border-width: 12px 0 12px 20.0px;
    border-color: transparent transparent transparent #fff;
}

.play-button {
    cursor: pointer;
}

.play-button,
.play-button:before {
    position: absolute;
}

.play-button,
.play-button:before {
    top: 50%;
    left: 52%;
    transform: translate3d(-50%, -50%, 0);
}

.ZL6cRd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.87;
    z-index: 2;
    width: 48px;
    height: 48px;
    background-size: 48px 48px;
}

.Yv4wBf {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMjQgNEMxMi45NSA0IDQgMTIuOTUgNCAyNHM4Ljk1IDIwIDIwIDIwIDIwLTguOTUgMjAtMjBTMzUuMDUgNCAyNCA0em0tNCAyOVYxNWwxMiA5LTEyIDl6Ii8+PC9zdmc+) no-repeat;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, .12));
    perspective: 1000px;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

/* bootstrap xs screen size */
@media (max-width: 575px) {

    .videoContainer {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 35px;
        height: 0;
        overflow: hidden;
    }


    .videoContainer iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 95%;
    }


}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .videoContainer {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 35px;
        height: 0;
        overflow: hidden;
    }

    .videoContainer iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 90%;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 995px) {
    .videoContainer {
        position: relative;
        padding-bottom: 33.25%;
        padding-top: 35px;
        height: 0;
        overflow: hidden;
    }

    .videoContainer iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 350px;
    }

    /* END Video */
}

.icon-triangle {
    border-left: 6px solid transparent; 
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--main-bg-black);
}

.search-box-home {
    position: fixed;
    z-index: 9999;
    background-color: var(--main-bg-blue);
    padding: 10px;
    border-radius: 25px;
}

.footer-logo {
    text-align: center;
    padding-top: 12px;
    margin-bottom: -15px;
}

.img-footer-logo {
    height: 40px;
    display: inherit;
}

.footer-social-media {
    text-align: center;
    padding: 30px 0 30px 0;
}

.footer-social-media > a.social-media-icon {
    margin-right: 15px;
    color: var(--main-bg-green);
    text-decoration: none;
    font-size: 1.5em;
}

.footer-text-about {
    font-size: 10px;
    color: var(--main-bg-green);
    vertical-align: text-top;
}

@media (max-width: 994px) {
    .d-none-mobile {
        display: none !important;
    }

    .footer-logo {
        text-align: center;
        padding-top: 12px;
        margin-bottom: 15px;
    }
}

.content-post-large-image img {
    /* height: 350px; */
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 0;
}

.content-post-large-description {
    background-color: #fff;
    height: auto;
    /* margin-top: -45px; */
    position: relative;
    /* margin-right: 5%; */
    padding: 16px;
}

.content-post-large-description > .content-post-category {
    font-size: 14px;
    color: var(--main-bg-blue);
    text-transform: uppercase;
}

.content-post-large-description > .content-post-title > a {
    color: black;
    font-weight: 700;
    text-decoration: none;
    font-size: 18pt;
    line-height: 1.2em;
}

.content-post-large-description > .content-post-author {
    font-size: 12px;
}

.content-post-large-description > .content-post-author > .date {
    margin-left: 15px;
    color: gray;
}

.content-post-large-description > .content-post-description {
    font-size: 14px;
    text-overflow: ellipsis;
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 300;
    color: black;
}

.content-post-small-image img {
    /* height: 140px; */
    max-height: 140px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 0 !important;
}

.content-post-small-description {
    background-color: #fff;
    height: auto;
    /* margin-top: -20px; */
    position: relative;
    /* margin-right: 6%; */
    padding: 8px;
}

.content-post-small-description > .content-post-category {
    font-size: 12px;
    color: var(--main-bg-blue);
    text-transform: uppercase;
}

.content-post-small-description > .content-post-title > a {
    color: black;
    font-weight: 700;
    text-decoration: none;
    font-size: 11pt;
}

.content-column-header {
    color: #F03E3E;
    font-weight: 700;
    font-size: 18pt;
    padding: 1px 35px 1px 10px;
    width: max-content;
}

.content-column-title {
    font-weight: 700;
    font-size: 14pt;
    line-height: 1.2em;
    padding-top: 15px;
}

.content-column-title > a {
    color: black;
    text-decoration: none;
}

.content-column-author {
    font-size: 11px;
    position: absolute;
    bottom: 0;
}

.content-column-author > .date {
    margin-left: 15px;
    color: gray;
}

.content-column-line {
    border-bottom: 1px solid #dcdcdc;
    display: block;
    width: 100%;
    margin-top: 12px;
}

.content-news > .content-news-title {
    line-height: 1.2em;
}

.content-news > .content-news-title > a {
    color: black;
    font-weight: 700;
    text-decoration: none;
    font-size: 12pt;
    line-height: 1.5em;
}

.content-news > .content-news-author {
    font-size: 12px;
}

.content-news > .content-news-author > .date {
    margin-left: 15px;
    color: grey;
}

.content-news > .content-news-description {
    font-size: 14px;
    text-overflow: ellipsis;
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 300;
    color: black;
}

.content-post-xl-image > img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 0;
}

.content-post-xl-description {
    background-color: #fff;
    height: auto;
    /* margin-top: -90px; */
    position: relative;
    /* margin-right: 5%; */
    padding: 16px;
}

.content-post-xl-description > .content-post-category {
    font-size: 10px;
    color: var(--main-bg-blue);
    text-transform: uppercase;
}

.content-post-xl-description > .content-post-title > a {
    color: black;
    font-weight: 700;
    text-decoration: none;
    font-size: 30pt;
    line-height: 1.2em;
}

.content-post-xl-description > .content-post-author {
    font-size: 11px;
}

.content-post-xl-description > .content-post-author > .date {
    font-size: 11px;
    margin-left: 15px;
    color: gray;
}

.content-post-xl-description > .content-post-description {
    font-size: 12pt;
    /* text-overflow: ellipsis;
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
    font-weight: 300;
    color: black;
}

.latest-post {
    line-height: 1.2em;
}

.latest-post > .content-post-category {
    font-size: 12px;
    color: var(--main-bg-blue);
    text-transform: uppercase;
}

.latest-post > .title-latest-post {
    border-bottom: 1px solid #dcdcdc;
}

.latest-post:last-child > .title-latest-post {
    border-bottom: none;
}

.latest-post > .title-latest-post > a {
    color: black;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.content-column-header-event {
    color: #F03E3E;
    font-weight: 700;
    font-size: 24pt;
    padding: 1px 35px 1px 10px;
    width: max-content;
}

@media (max-width: 575px) {
    .content-post-large-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .content-column-author {
        position: unset;
        margin-top: 8px;
    }

    .content-post-xl-image > img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 0;
    }

    .content-post-xl-description {
        background-color: #fff;
        height: auto;
        /* margin-top: -50px; */
        position: relative;
        /* margin-right: 5%; */
        padding: 16px;
    }

    .content-post-xl-description > .content-post-title > a {
        font-size: 20pt;
    }

    .post-image {
        height: 100% !important;
    }

    .content-column-header-event {
        font-size: 18pt;
    }
}

.post-body > p:first-child:has(img) {
    display: none !important;
}

.btn-latest-news {
    background-color: #e5e5e5;
    border: #e5e5e5;
    border-radius: 14px !important;
    color: black;
    font-weight: 700;
    font-size: x-small;
}
