body {
    font-family: 'Verdana', sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
    transition: color .5s;
}

/**a:not(.nav-link,.button,.button-special,.dropdown-item):visited{
    color: #0026ff !important;
}**/

#header {
    background-color: #2fa0e6;
    padding: 10px 0;
}

#header .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

#header .navbar-brand img {
    display: inline-block;
    margin-right: 10px;
}

.brand-title-upper {
    color: #FFF;
    font-size: 15px;
    line-height: 14px;
}

.brand-title-lower {
    color: #FFF;
    font-size: 30px;
}

.navbar {
    background-color: #2c61a3;
    padding: 0;
}

.navbar .nav-item.dropdown {
    position: static;
}

.dropdown-menu h5 {
    padding: 0 15px;
}

.dropdown-menu a {
    color: #2fa0e6;
    font-size: 12px;
}

.dropdown-menu ul.subcategory {
    list-style-type: none;
    padding: 0;
}

ul.subcategory ul {
    list-style-type: none;
    display: none;
}


.dropdown-menu > ul > li > a,
.dropdown-menu > ul > li > a.active,
.dropdown-menu > ul > li > a:active {
    color: #000000;
    display: inline-block;
}

.dropdown-menu > ul > li > a:hover {
    color: #2c61a3;
}

.has-items > a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    background-image: url(../icons/chevron-right.svg);
    background-repeat: no-repeat;
    margin-left: 4px;
    transition: transform .5s;
}

.has-items > a.dropdown-item:focus::after, .has-items > a.dropdown-item:hover::after {
    background-image: url(../icons/chevron-right-active.svg);
}

.has-items.expanded > a::after {
    transform: rotate(90deg);
    background-image: url(../icons/chevron-right-active.svg);
}

.has-items.expanded > a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.dropdown-menu[data-bs-popper] {
    width: 100%;
    right: 0;
    background-color: rgba(225, 225, 225, .9);
    margin-top: 0;
    border: 1px solid #FFF;
}

.dropdown-item:focus a, .dropdown-item:hover a {
    color: #000000;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
}


.navbar .nav-link {
    color: #FFF;
}

div#mainNavigation {
    position: relative;
}


.carousel-inner {
    height: 250px;
    overflow-y: hidden;
}

.carousel-inner img {
    width: 100%;
}

.important-message-line {
    background-color: #be0101;
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    height: 20px;
}

.marquee {
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    font-size: 14px;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 30px;
    font-size: 14px;
}

.navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle.show {
    background-color: rgba(255, 255, 255, .9);
    color: #2c61a3;
}

.dropdown-toggle::after {
    display: none;
}

section h1 {
    color: #000000;
    font-weight: 300;
    background-color: rgb(235, 235, 235);
    padding: 10px;
    font-size: 18px;
    margin-bottom: 12px;
}

.road-news h2 {
    color: #000000;
    font-weight: 600;
    background-color: rgb(235, 235, 235);
    padding: 10px;
    font-size: 18px;
}

#home-news .news-text,
#home-news .news-date,
#home-news .small-news-date,
#home-news .small-news a {
    text-align: center;
}

.news {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.news a {
    display: block;
}

.news img {
    transition: transform .5s ease-out;
}

.news a:hover img {
    transform: scale(1.05);
}

.news > a > div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .6);
    padding: 20px 10px;
}

.news-date {
    display: inline-block;
    background-color: #2fa0e6;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    margin-right: 20px;
}

.news-text {
    padding-right: 10px;
    color: #FFF;
    font-weight: 500;
    text-align: left;
    font-size: 14px;
}

.small-news-title {
    text-align: justify;
}

.small-news-group {
    margin-top: 12px;
    padding: 24px 0;
    border-top: 4px solid #2fa0e6;
}

.small-news-date {
    font-size: 14px;
    font-weight: 300;
    color: #2c61a3;
}

.small-news a {
    display: block;
    color: #000;
    line-height: 1.4;
    transition: color .5s;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.small-news a:hover {
    color: #2c61a3;
}

.small-news > a .small-news-image {
    overflow: hidden;
    position: relative;
}

.small-news > a .small-news-image img {
    transition: transform .5s ease-out;
}

#home-news .small-news > a .small-news-image {
    margin: 10px 0;
}

.small-news > a:hover .small-news-image img {
    transform: scale(1.05);
}

.news.has-gallery a::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 32px;
    background-image: url(../icons/gallery-white.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: 5px;
}

.small-news.has-gallery .small-news-image::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 24px;
    background-image: url(../icons/gallery-white.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: 5px;
}

.news.has-video a::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 32px;
    background-image: url(../icons/video-white.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: 5px;
}

.small-news.has-video .small-news-image::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 24px;
    background-image: url(../icons/video-white.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: 5px;
}

.has-video.has-gallery::after {
    background-image: url(../icons/video-white.svg);
}

.has-video.has-gallery .small-news-image::before {
    background-image: url(../icons/gallery-white.svg);
    content: "";
    display: inline-block;
    width: 32px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: 42px;
    z-index: 2;
}

.grey-bg {
    background-color: #f5f5f5;
}

section {
    padding: 12px 0;
}

.section-title {
    display: flex;
    align-items: center;
}

.section-title h2 {
    font-weight: 300;
    padding-right: 12px;
    font-size: 18px;
}

.underline {
    flex: 1;
    height: 3px;
    background-color: #000000;
}

.road-news a {
    color: #000000;
}
.road-news a:hover {
    color: #2c61a3;
}

.road-news small {
    font-weight: bold;
    display: block;
}

.road-news h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.road-news p {
    height: 200px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.panel-group .mx-3 {
    margin-right: 12px !important;
    margin-left: 12px !important;
}

#road-news h5,
#road-news p,
#road-news small,
#home-blocks .panel-group-title,
#home-blocks .panel-group ul li a {
    text-align: justify;
}

#road-news .panel-group-title{
    max-height: 130px;
    overflow: hidden;
}

.button {
    display: inline-block;
    font-size: 14px;
    padding: 8px 24px;
    transition: background-color .5s;
}

.button-solid {
    font-weight: 500;
}

.button-primary {
    background-color: #2fa0e6;
    color: #FFF !important;
}

.button-primary:hover {
    background-color: #2c61a3;
    color: #FFF !important;
}

.button-secondary {
    background-color: #2fa0e6;
    color: #FFFFFF !important;
}

.button-secondary:hover {
    background-color: #2c61a3;
}

.button-block {
    display: block;
    text-align: center;
}

.button + .button:not(.home-rbc-node) {
    margin-top: 20px;
}

.navbar-secondary .navbar-nav .nav-link {
    padding: 10px;
    font-size: 13px;
}

.navbar-secondary .navbar-nav .nav-link:hover {
    background-color: #000000;
}

.panel-group {
    background-color: #FFF;
    position: relative;
    padding-bottom: 12px;
}

.panel-group-header {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.panel-group-title {
    font-size: 14px;
    font-weight: 700;
    margin: 10px 20px;
    min-height: 30px;
    white-space: nowrap;
}

.panel-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.panel-group ul li {
    padding: 10px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: normal;
    height: 120px;
}

.panel-group ul li:last-child {
    margin-bottom: 12px;
}

.panel-group ul li a {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: black;
    max-height: 120px;
    overflow: hidden;
}

.panel-group:not(.rbc) ul li a:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 24px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
}

.panel-group ul li a:hover {
    color: #2c61a3;
}

#home-blocks a.button-secondary {
    position: relative;
}

.button-special {
    display: block;
    padding: 10px 10px 10px 42px;
    background-color: rgba(15, 48, 87, .15);
    border: 1px solid #000000;
    border-radius: 5px;
    text-align: left;
    background-image: url(/assets/icons/logo-blue.svg);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 22px;
    color: #000000;
    transition: box-shadow .5s, background-color .5s;
}

.button-special:hover {
    box-shadow: 0 2px 5px rgba(15, 48, 87, .5);
    background-color: rgba(15, 48, 87, .25);
    color: #000000;
}

.button-special + .button-special {
    margin-top: 20px;
}

.panel-title {
    text-align: center;
    margin: 12px 0;
}


.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
    margin: 0;
}

.hero .hero-text {
    max-width: 50%;
    padding: 20px;
}

.hero .hero-text h3 {
    color: #FFF;
}

.hero .hero-text.with-cover {
    background-color: rgba(50, 50, 50, .5);
}

.single-news {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.single-news .row {
    align-items: flex-start;
}

.single-news .date {
    margin: 0;
}

.single-news h5 {
    font-size: 16px;
}

.single-news .gallery.cboxElement {
    margin-right: 10px;
    margin-bottom: 10px;
}

#single-news p, .single-news p {
    font-size: 14px !important;
}

footer {
    background-color: #2c61a3;
    color: #FFF;
    padding: 30px 0;
}

footer h4 {
    font-size: 18px;
}

footer > div {
    font-size: 14px;
}

footer div + h4 {
    margin-top: 30px;
}

.social {
    margin-left: 10px;
}

.social a {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
}

.social a + a {
    margin-top: 5px;
}

.search-submit {
    border: none;
    outline: none;
    background-color: #000000;
    width: 35px;
    height: 25px;
}

.search-submit i {
    color: #FFF;
}

#header form {
    display: flex;
}

#search {
    height: 25px;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, .9);
    border: 1px solid #FFF;
    font-size: 13px;
}

.phone {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone a {
    color: #FFF;
}

.phone span {
    font-size: 12px;
    color: #FFF;
}

.hero-banner {
    height: 250px;
    overflow-y: hidden;
}

.hero-banner-inner {
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-banner-inner h1 {
    color: #FFF;
    font-weight: 300;
}

.news-panel {
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.news-panel a {
    display: flex;
    align-items: center;
    transition: box-shadow .5s;
    height: 230px;
    color: #000000;
}

.news-panel-image {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-left: 15px;
    width: 360px;
    height: 200px;
    overflow: hidden;
    justify-content: center;
}

.news-panel-image img {
    transition: transform .5s;
    min-height: 200px;
    width: 100%;
    height: auto;
}

.news-panel a:hover {
    box-shadow: 0 2px 5px rgba(50, 50, 50, .25);
}

.news-panel a:hover img {
    transform: scale(1.05)
}

.news-panel-text {
    width: calc(100% - 500px);
    display: inline-block;
}

.news-panel-copy {
    flex: 1;
    color: #565656;
    font-size: 18px;
    line-height: 32px;
    margin-top: 10px;
}

.page-link {
    color: #2fa0e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #2fa0e6;
    border-color: #2fa0e6;
}

.date {
    font-size: 13px;
    font-weight: bold;
    color: #565656;
    margin: 24px 0;
}


p {
    font-size: 16px;
    line-height: 20px;
}

p + p {
    margin-top: 24px;
}

.yt-player {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0;
}

.yt-player #player {
    width: 560px;
    height: 315px;
}

.btn:focus, .btn:active, button:focus, button:active {
    outline: none !important;
    box-shadow: none !important;
}

#image-gallery .modal-footer {
    display: block;
}

.thumb {
    margin-top: 15px;
    margin-bottom: 15px;
}


.docs-list ul {
    list-style-type: none;
    padding: 0;
}

.docs-list ul li {
    margin-bottom: 5px;
}

.docs-list ul li a {
    text-decoration: none;
    padding: 0 0 5px 34px;
    display: block;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 29px;
    background-image: url(/assets/icons/default.png);
}

.docs-list ul li a[href$=".pdf"], .docs-list ul li a.is-pdf {
    background-image: url(/assets/icons/pdf.png);
}

.docs-list ul li a[href$=".doc"], .docs-list ul li a.is-doc {
    background-image: url(/assets/icons/doc.png);
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    background: rgba(235, 235, 235, .95);
}

.third-menu-items {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.third-menu-items li {
    width: 33%;
    padding: 15px;
}

.third-menu-items li a {
    display: block;
    text-align: center;
}

.gj-datepicker-bootstrap [role=right-icon] button {
    border: none;
    background-color: #2fa0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 0 5px 5px 0;
}

#general_search_form {
    padding: 20px;
    background-color: #efefef;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgb(50 50 50 / 25%);
    margin: 24px 0;
}

.gj-datepicker-bootstrap [role=right-icon] button i {
    color: #FFF;
}

.gj-datepicker-bootstrap [role=right-icon] button:hover {
    background-color: #2c61a3;
}

ul.archive {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

ul.archive li {
    margin-bottom: 14px;
    background-image: url(/assets/icons/archive.svg);
    background-position: center left;
    background-repeat: no-repeat;
    padding: 0 0 0 36px;
    width: 25%;
    height: auto !important;
    border-bottom: none;
}

.archive-cta {
    padding: 14px;
    background-color: rgb(235, 235, 235);
    box-shadow: 0 2px 10px rgba(50, 50, 50, .25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 680px;
    margin: 24px auto;
    color: #000;
}

.archive-cta a {
    background-color: #0d6efd;
    color: #FFF;
    padding: 5px 12px;
    transition: background-color .5s;
}

.archive-cta a:hover {
    background-color: #FF8800;
}

nav ol.breadcrumb {
    margin-bottom: 0;
    padding: 0;
}

li.breadcrumb-item a {
    font-size: 14px;
    line-height: 1;
    padding: 5px 10px;
    text-decoration: none;
}

.main-banner {
    height: 420px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.owl-carousel .owl-item .item figcaption {
    display: flex;
    height: 100%;
    align-items: center;
}

.owl-carousel .owl-item .item figure {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
    margin: 0;
}

.owl-dots-container {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
}

ul#carousel-custom-dots {
    display: flex;
    align-items: center;
    list-style-type: none;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

ul#carousel-custom-dots a{
    color:#FFF !important;
}

li.owl-dot.active {
    border-top: 1px solid #2c61a3;
}

li.owl-dot {
    color: #FFF;
    cursor: pointer;
    padding: 10px 50px;
    background-color: rgba(0, 0, 0, .4);
    border-top: 1px solid rgba(255, 255, 255, .5);
    flex: 1;
}

.item figcaption h1 {
    color: #FFF;
    font-size: 26px;
    text-align: center;
}

.item figcaption h1 a, .item figcaption h1 a:visited{
    color: #FFF !important;
}

.cta-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c61a3;
    color: #FFF;
    transition: background-color .5s, color .5s;
}

.cta-button a:hover {
    color: #2c61a3;
    background-color: #FFF;
}

.h-services-one {
    width: 100%;
    margin: 60px 0;
}

.h-services-one.banners .h-ser-box {
    min-height: 160px;
}

.h-ser-box {
    width: 100%;
    float: left;
    background: #fff;
    text-align: center;
    padding: 40px 5px;
    border-top: 5px solid #2c61a3;
    box-shadow: 0 0 10px rgba(0, 0, 0, .40);
    text-align: center;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

.h-ser-box:hover {
    border-color: #000000;
}

.h-ser-box:after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0;
    height: 5px;
    background: #2c61a3;
    content: "";
    z-index: 99;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}

.h-ser-box:hover:after {
    width: 100%;
}

.h-ser-box.red .icon-box {
    background: #2c61a3;
}

.h-ser-box .icon-box {
    width: 92px;
    height: 92px;
    border-radius: 100%;
    background: #000000;
    line-height: 101px;
    margin: auto;
    text-align: center;
    color: #091f2f;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}

.h-ser-box h6 {
    font-weight: 700;
    margin: 28px 0 24px;
}

.h-ser-box p {
    margin: 0 0 18px;
}

.h-ser-box .cd {
    text-transform: uppercase;
    color: #999999;
    font-size: 12px;
    font-weight: 600;
}

.h-ser-box:hover .icon-box {
    background: #2c61a3;
    border-radius: 20px;
}

.h-ser-box:hover h6, .h-ser-box:hover .cd {
    color: #2c61a3;
}

.h-ser-box.red:hover .icon-box {
    background: #000000;
}

#logo-block .d-inline-block {
    margin-top: 18px !important;
}

.secondary-menu-links {
    margin: 20px 0;
}

.secondary-menu-links .row:nth-child(n+2) {
    margin-top: 20px;
}

#lang-block {
    padding-bottom: 20px;
}

.youtube {
    margin-right: 10px;
}

.last-news-ttl-wrapper {
    height: 100px !important;
    overflow: hidden;
}

.news-main-image {
    float: left;
    margin: 0 10px 10px 0;
}

.clear {
    clear: both;
}

.crc-front-panel .panel-group-title {
    white-space: inherit;
    text-align: center;
}

.crc-front-panel {
    padding: 10px 20px;
    min-height: 420px;
}

#rbc-archive-list .panel-heading {
    background-color: rgb(235, 235, 235);
    font-weight: bold;
    padding: 10px;
}

#rbc-archive-list .panel-group {
    margin: 10px 0;
    padding: 0 12px;
}

.image-link a {
    display: block;
}

.image-link a img {
    display: block;
    width: 60% !important;
    height: auto;
    margin: auto;
}

.prv-btns-container {
    text-align: center;
    margin: 10px;
}

body[data-browser-type="isIE"] .row {
    margin-left: -12px;
    margin-right: -12px;
}

body[data-browser-type="isIE"] div[class^="col"],
body[data-browser-type="isIE"] .container {
    padding-left: 12px;
    padding-right: 12px;
}

#bottom-banners{
    padding: 24px 0;
    border-top: 4px solid #2fa0e6;
}

#list-pagination{
    margin-top:20px;
}

#crc-region-drop{
    float:right;
    font-size:12px;
}
#crc-region-drop select,
#crc-highway-drop select{
    padding:2px;
    border:1px #333 solid;
}
#crc-region-drop span,
#crc-highway-drop span{
    color:#666;
    font-weight:bold;
    margin-right: 10px;
    display: inline-block;
}
#crc-highway-drop{
    float:right;
    font-size:12px;
    margin-right: 10px;
}

@media screen and (max-width: 1200px) {
    .crc-filters #crc-region-drop,
    .crc-filters #crc-highway-drop{
        float: none;
        text-align: center;
        margin-bottom: 10px;
    }
    #crc-region-drop span,
    #crc-highway-drop span{
        min-width: 70px;
        text-align: right;
    }
    .crc-filters{
        text-align: center;
    }
    #crc-region-drop select,
    #crc-highway-drop select{
        min-width: 140px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px;
    }

    .third-menu-items li {
        width: 50%;
        padding: 15px;
    }

    ul.archive li {
        width: 50%;
    }

    .road-news {
        border-bottom: none;
        margin-bottom: 20px;
    }
    .h-services-one.banners > .row > div {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    ul.third-menu-items {
        padding: 0;
    }

    video {
        width: 100%;
        height: auto;
    }

    .single-news .gallery.cboxElement {
        display: inline-block;
        width: 50%;
        padding: 5px;
        margin: 0;
    }

    .single-news .gallery.cboxElement img {
        width: 100%;
    }

    .news-panel a {
        display: block;
        height: auto;
        position: relative;
    }

    .news-panel a .news-date {
        position: absolute;
        top: 0;
        left: 0;
    }

    .news-panel-image {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .news-panel-text {
        width: 100%;
        margin: 0;
        padding: 20px;
    }

    .main-banner, .owl-carousel .owl-item .item figure {
        height: 300px;
    }

    .brand-title-upper {
        font-size: 8px;
        white-space: break-spaces;
    }

    .brand-title-lower {
        ;
        font-size: 16px;
        white-space: break-spaces;
    }

    #lang-block {
        padding: 20px 0;
    }

    .news, .small-news {
        margin-bottom: 24px;
    }

    .crc-front-panel {
        padding: 10px 20px;
        min-height: auto;
    }

    .road-news p {
        height: auto;
    }

    .button-special {
        margin: 10px 0;
    }

    .small-news-date {
        background-color: #2fa0e6;
        color: #FFF;
        font-size: 14px;
        font-weight: 500;
        padding: 5px 0;
    }

    #home-news .news-text, #home-news .news-date, #home-news .small-news-date, #home-news .small-news a {
        display: block;
        width: 100%;
        margin: 0;
    }

    .last-news-ttl-wrapper .news-text {
        padding: 10px 20px;
    }

    .news > a > div.last-news-ttl-wrapper {
        position: static;
        height: auto !important;
        overflow: unset;
        background: #FFF;
        padding: 0;
    }

    .image-link a {
        display: block;
        text-align: center;
        padding: 10px 0;
    }

    .hero .hero-text {
        max-width: 100%;
    }

    .carousel-inner {
        height: 200px;
    }

    .news > a > div {
        flex-direction: column;
    }

    .news-text {
        color: #565656;
    }

    .third-menu-items li {
        width: 100%;
        padding: 0 5px;
    }

    ul.archive li {
        width: 100%;
    }

    .owl-dots-container {
        display: none;
    }

    .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
        padding: 0;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu div[class^="col"] ul {
        list-style-type: none;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu div[class^="col"] {
        width: 100%;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu a {
        white-space: pre-line;
    }

    p img {
        width: 100% !important;
        height: auto !important;
        float: none !important;
    }
}

@media screen and (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
    .col-md-6 + .col-md-6 {
        margin-bottom: 20px;
    }
    .news-text{
        font-size: 11px;
    }
    .news{
        height: 289px;
    }
    li.owl-dot{
        padding: 10px 40px;
    }
    .crc-front-panel{
        min-height: 382px;
        height: auto;
    }
}

#konpi-table th{
    background-color:#2c61a3;
    color:#FFF;
    text-align: center;
    font-size: 14px;
}
#konpi-table .dec{
    background-color: rgb(235, 235, 235);
    color:#666;
    text-align: center;
    font-size: 12px;
}
#konpi-table .odd{
    text-align: center;
}
#konpi-table .even, #konpi-table .even > .dec{
    /**background-color:#e3f4ff;**/
    text-align: center;
}
#konpi-table ul{
    text-align: left;
}
#konpi-table .letter{
    margin: 0 8px;
    padding: 5px 10px;
}
#konpi-table .letter.active{
    background-color:#2c61a3;
    color:#FFF;
}