/*! HTML5 Boilerplate v7.1.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}




/* ==========================================================================
   Author's custom styles
   ========================================================================== */
















/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    /* 1 */
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
    visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap&subset=cyrillic');

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #484848;
}

h1,
h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

input:focus {
    outline: 0;
    box-shadow: none !important;
}

button:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn-primary {
    background: #f68e56;
    border: 1px solid #f68e56;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 20px;
}

.btn-primary:hover {
    background: #28497a;
    border: 1px solid #28497a;
}

.form-control:focus {
    border-color: #f68e56;
}

/* HEADER */

.top-nav {
    background-color: #28497a;
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.top-nav .navbar-nav .nav-link {
    color: white;
    padding-right: 20px;
}

.top-nav .navbar-nav .nav-link:hover {
    color: #f68e56;
}

.top-nav .navbar-nav .nav-link-contacts {
    font-size: 18px;
    padding-right: 0px;
}

.top-nav .navbar-nav .nav-link-contacts i {
    color: #f68e56;
    margin-right: 5px;
    font-size: 25px;
}

.top-nav .top-nav-container {
    align-items: center;
}

.middle-nav {
    align-items: center;
}

.middle-nav .logo-bar h1 {
    color: #28497a;
    font-size: 32px;
    margin-bottom: 0px;
}

.middle-nav .logo-bar p {
    font-size: 22px;
    margin-bottom: 0px;
}

.middle-nav .logo-bar {
    display: flex;
    align-items: center;
}

.middle-nav .logo-bar .logo {
    z-index: 10;
    margin-top: -45px;
}

.search-bar .form-control {
    border: 1px solid #d7d7d7;
}

.search-bar .btn-outline-secondary {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
}

.search-bar .btn-outline-secondary:hover {
    color: #f68e56;
}

.search-bar input {
    height: 45px;
}

.search-bar .btn-outline-secondary {
    padding-left: 15px;
    padding-right: 15px;
}

.search-bar .btn-outline-secondary i {
    font-size: 20px;
}

.main-nav {
    background-color: #f3f3f3;
    padding-top: 0;
    padding-bottom: 0;
}

.main-nav .nav-link {
    color: #484848;
    font-size: 18px;
    font-weight: 700;
    padding-top: 23px;
    padding-bottom: 23px;
}

.main-nav .nav-link:hover {
    background-color: #28497a;
    color: white;
}

.main-nav .nav-link:hover i {
    color: white
}

.main-nav .nav-justified li.show {
    background-color: #28497a;
    color: white;
}

.main-nav .nav-justified li.show i {
    color: white;
}

.main-nav .nav-justified li.show .nav-link {
    color: white;
}

.main-nav .dropdown-menu {
    margin: 0px;
    border: none;
    border-radius: 0;
    background-color: #28497a;
    padding: 0;
    min-width: 24rem;
    border-top: 1px solid #337a95;
}

.main-nav .dropdown-menu .dropdown-item {
    padding: 18px 0 18px 50px;
    color: white;
    font-size: 18px;
    font-weight: 400;
}

.main-nav .dropdown-item:hover {
    background-color: #536d95;
}

.main-nav .dropdown-menu .sub-dropdown {
    text-align: start;
}

.main-nav .dropdown-menu .sub-dropdown .nav-link {
    padding: 18px 0 18px 50px;
    font-weight: 400;
}

.main-nav .dropdown-menu .sub-dropdown .nav-link:hover {
    background-color: white;
    color: #28497a;
}

.main-nav .dropdown-menu .sub-dropdown .nav-link:hover i {
    color: #28497a;
}

.main-nav .dropdown-menu .sub-dropdown .nav-link i {
    margin-left: 20px;
}

.main-nav .sub-dropdown ul.show {
    background-color: #1b2d48;
    border-top: none;
}

.main-nav .sub-dropdown ul.show>a {
    padding-left: 70px;
}

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

.main-nav .dropdown-toggle i {
    color: #484848;
    font-size: 18px;
    margin-left: 5px;
}

.pages-img {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 450px;
}

.img-text {
    position: absolute;
    top: 50%; /* top: 43%; */
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-text h1 {
    color: white;
    font-size: 55px;
}

/* HOME */

.middle-container {
    padding-left: 0px;
    padding-right: 0px;
}

.activities-card h1 {
    font-size: 40px;
    color: #484848;
}

.activities-card {
    top: -80px;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    border: none;
}

.show-more a {
    color: #f68e56;
    font-size: 15px;
    text-decoration: none;
}

.show-more a i {
    color: #f68e56;
    font-size: 15px;
    margin-left: 10px;
    vertical-align: text-bottom;
}

.activities-card .card-header {
    background-color: white;
    padding: 0;
    border-bottom: 1px solid #f68e56;
    margin: 30px 40px 30px 40px;
}

.activities-card .card-body {
    padding: 0px;
    margin: 0px 40px 40px 40px;
}

.activities-card .card-body a {
    text-decoration: none;
}

.activities-card .activities-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: white;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
}

.activities-box p {
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 500;
    color: #484848;
}

.activities-box>div {
    text-align: center;
}

.activities-box img {
    width: 110px;
    height: 110px;
}

.header-box {
    border-bottom: 1px solid #f68e56;
    margin-bottom: 30px;
}

.news {
    background-color: #f3f3f3;
    margin-top: -150px;
    padding-top: 100px;
    padding-bottom: 30px;
}

.news-card {
    border: none;
    margin-bottom: 30px;
}

.news-card .card-body {
    min-height: 340px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e1e1e1;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-group-addon {
    margin-left: 10px;
}

.input-group-addon i {
    font-size: 22px;
}

.news-card .card-title {
    font-weight: 700;
    font-size: 26px;
}

.news-card .card-text {
    font-weight: 400;
    font-size: 16px;
}

.news-card .card-body a {
    font-size: 16px;
    color: #f68e56;
    text-decoration: none;
}

.news-card .card-img-top {
    height: 230px;
}

.news-card .news-img-holder {
    width: 100%;
    height: 230px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-box-white {
    border-color: white;
    color: white;
}

.about a {
    text-decoration: none;
}

.about {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    padding-top: 30px;
}

.about-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: white;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    height: 100%;
}

.about-box p {
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 500;
    color: #484848;
    line-height: 24px;
}

.about-box>div {
    text-align: center;
    align-self: flex-start;
}

.about-box img {
    width: 90px;
    height: 90px;
}

.subscribe {
    background: linear-gradient(to right,
            white 0%,
            white 50%,
            #f3f3f3 50%,
            #f3f3f3 100%);
}

.subscribe-row {
    position: relative;
}

.subscribe-line {
    position: absolute;
    width: 100%;
    top: 54px;
    background-color: #f68e56;
    height: 1px;
    margin-left: 15px;
    margin-right: 15px;
}

.subscribe-box {
    padding-right: 60px;
}

.subscribe .title {
    font-size: 40px;
}

.subscribe .description {
    margin-top: 30px;
    margin-bottom: 50px;
}

.subscribe .description p {
    font-size: 20px;
    margin-bottom: 0px;
}

.subscribe-box .form-group {
    margin-bottom: 50px;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: #28497a;
    border-color: #28497a;
}

.question-box .custom-control {
    margin-bottom: 10px;
}

.question-box .description {
    margin-top: 30px;
    margin-bottom: 0px;
}

.question-box .answer {
    margin-top: 35px;
    margin-bottom: 40px;
}

.question-box {
    padding-left: 60px;
}

.subscribe-container {
    padding-top: 30px;
    padding-bottom: 130px;
}

.fc-unthemed td.fc-today {
    background: #f3f3f3 !important;
}

.fc-button-primary {
    margin-right: 2px !important;
    background-color: #b7b6b6 !important;
    border-color: #b7b6b6 !important;
}

.fc-button-primary:hover {
    background-color: #484848 !important;
    border-color: #484848 !important;
}

.event-date {
    color: #b7b6b6;
    font-size: 22px;
}

.event img {
    border-radius: 10px;
}

.event-content a {
    font-size: 16px;
    color: #f68e56;
    text-decoration: none;
}

.event {
    border-top: 1px solid #f68e56;
    margin-top: 40px;
}

.event-date {
    padding-top: 30px;
    padding-bottom: 30px;
}

.slick-prev:before,
.slick-next:before {
    color: #f68e56 !important;
    font-size: 25px !important;
    opacity: 1 !important;
}

.slick-prev:before,
.slick-prev:before {
    color: #f68e56 !important;
    font-size: 25px !important;
    opacity: 1 !important;
}

.partners {
    margin-bottom: 75px;
}

/* FOOTER */

.footer-bg {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4fb2db+0,47aad3+0,44aad2+0,47add5+1,43abd2+2,45a8d1+6,3fa0cb+15,3e96c4+20,3c94c2+24,3a8cbc+28,3581b5+37,3277ae+42,3477ae+43,2d6ea6+52,2f6ca5+54,2a609c+64,2c609c+66,295c9b+68,245091+83,234f90+85,264f91+86,234a8d+91,21468c+100 */
    background: #4fb2db;
    /* Old browsers */
    background: -moz-linear-gradient(top, #4fb2db 0%, #47aad3 0%, #44aad2 0%, #47add5 1%, #43abd2 2%, #45a8d1 6%, #3fa0cb 15%, #3e96c4 20%, #3c94c2 24%, #3a8cbc 28%, #3581b5 37%, #3277ae 42%, #3477ae 43%, #2d6ea6 52%, #2f6ca5 54%, #2a609c 64%, #2c609c 66%, #295c9b 68%, #245091 83%, #234f90 85%, #264f91 86%, #234a8d 91%, #21468c 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #4fb2db 0%, #47aad3 0%, #44aad2 0%, #47add5 1%, #43abd2 2%, #45a8d1 6%, #3fa0cb 15%, #3e96c4 20%, #3c94c2 24%, #3a8cbc 28%, #3581b5 37%, #3277ae 42%, #3477ae 43%, #2d6ea6 52%, #2f6ca5 54%, #2a609c 64%, #2c609c 66%, #295c9b 68%, #245091 83%, #234f90 85%, #264f91 86%, #234a8d 91%, #21468c 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #4fb2db 0%, #47aad3 0%, #44aad2 0%, #47add5 1%, #43abd2 2%, #45a8d1 6%, #3fa0cb 15%, #3e96c4 20%, #3c94c2 24%, #3a8cbc 28%, #3581b5 37%, #3277ae 42%, #3477ae 43%, #2d6ea6 52%, #2f6ca5 54%, #2a609c 64%, #2c609c 66%, #295c9b 68%, #245091 83%, #234f90 85%, #264f91 86%, #234a8d 91%, #21468c 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4fb2db', endColorstr='#21468c', GradientType=0);
    /* IE6-9 */
}

.footer-logo {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-logo img {
    margin-right: 10px;
    max-width: 135px;
}

.footer-logo h1 {
    color: white;
    font-weight: 700;
    font-size: 22px;
}

.footer-logo p {
    color: white;
    font-size: 12px;
}

.footer-items {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.footer-items li>a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.footer-items li {
    padding-bottom: 8px;
}

.footer-logo {
    padding-bottom: 15px;
}

.footer-top {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-items-right {
    padding-left: 50px;
}

.footer-nav {
    background-color: white;
}

.footer-nav .nav-link {
    color: #234c8f;
    font-size: 18px;
    padding-left: 0px;
    padding-right: 0px;
}

.footer-nav .nav-link:hover {
    color: #f68e56;
}

.footer-nav .nav {
    justify-content: space-between;
}

/* CONTACTS PAGE */

.structure-tree {
    margin-bottom: 50px
}

.structure-tree ul.structure-list {
    list-style: none
}

.structure-tree>ul {
    padding: 0
}

.structure-tree table {
    margin-bottom: 0 !important
}

.structure-tree .panel {
    margin-bottom: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3)
}

.structure-tree .panel .panel-heading {
    padding: 0
}

.structure-tree .panel .panel-heading h4 {
    font-size: 16px;
    font-weight: 400;
    background-color: #f4f4f4;
    margin: 0
}

.structure-tree .panel .panel-heading h4 a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    color: #28497a;
}

.structure-tree .panel .panel-heading h4 a:hover {
    color: #28497a;
    text-decoration: none;
}

.structure-tree .panel .panel-heading h4 a:focus {
    text-decoration: none
}

.structure-tree .panel .panel-heading h4 a[aria-expanded=true] {
    background-color: #28497a;
    color: #fff
}

.structure-tree .panel .panel-body p {
    font-size: 13px;
    font-weight: 400;
    color: #28497a;
    margin: 0
}

.structure-tree .structure-list a.send-message i {
    color: #f68e56;
}

.structure-tree .panel [class^=icon-] {
    vertical-align: middle
}

.structure-tree .panel .stable {
    display: table;
    width: 100%
}

.structure-tree .panel .stable label {
    margin: 0
}

.structure-tree .panel .stable .srow {
    display: table-row
}

.structure-tree .panel .stable .srow>div {
    display: table-cell;
    padding: 8px 14px;
    border-bottom: 1px solid #ddd
}

.structure-tree li {
    margin: 0;
    list-style-type: none;
    position: relative;
    padding: 20px 0 0 5px
}

.structure-tree li::before {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    right: auto;
    left: -20px;
    border-left: 1px solid #ccc;
    bottom: 50px
}

.structure-tree li::after {
    content: '';
    position: absolute;
    top: 40px;
    width: 25px;
    height: 20px;
    right: auto;
    left: -20px;
    border-top: 1px solid #ccc
}

.structure-tree>ul>li::after,
.structure-tree>ul>li::before {
    border: 0
}

.structure-tree li:last-child::before {
    height: 40px
}

.structure-tree li a:hover+ul li::after,
.structure-tree li a:hover+ul li::before,
.structure-tree li a:hover+ul ul::before,
.structure-tree li a:hover+ul::before {
    border-color: #94a0b4
}

/* MEDIA GUERY */

/* // Extra large devices (large desktops, 1200px) */
@media (max-width: 1200px) {
    .middle-nav .logo-bar .logo {
        z-index: 0;
        margin-top: 0;
    }

    .footer-items-right {
        padding-left: 0px;
    }
}

/* // Large devices (desktops, 992px) */
@media (max-width: 992px) {
    .top-nav-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-direction: inherit;
        flex-direction: inherit;
        justify-content: center;
    }

    .top-nav .navbar-nav .nav-link {
        font-size: 14px;
    }

    .middle-nav .logo-bar {
        justify-content: center;
    }

    .main-nav {
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 28px;
        background-color: white;
    }

    .activities-box {
        margin-bottom: 30px;
    }

    .no-margin {
        margin-bottom: 0px !important;
    }

    .question-box {
        padding-left: 0;
        padding-top: 30px;
    }

    .footer-nav .nav {
        justify-content: center;
    }

    .footer-nav .nav .nav-link {
        padding-right: 15px;
        font-size: 14px;
    }

    .subscribe {
        background: linear-gradient(to bottom,
                white 0%,
                white 45%,
                #f3f3f3 45%,
                #f3f3f3 90%);
    }

    .question-box .title {
        border-bottom: 1px solid #f68e56;
    }

    .subscribe-box .title {
        border-bottom: 1px solid #f68e56;
    }

    .event-content h1 {
        margin-top: 30px;
    }

    .subscribe-line {
        display: none;
    }

    .structure-tree .panel .stable {
        display: block
    }

    .structure-tree .panel .stable .srow {
        display: block;
        border-bottom: 1px solid #ccc;
        padding: 5px 0
    }

    .structure-tree .panel .stable .srow.sthead {
        display: none
    }

    .structure-tree .panel .stable .srow>div {
        display: block;
        padding: 3px 14px;
        border: none
    }

    .structure-tree .panel .stable .srow>div .person-name {
        font-weight: 700
    }
}

/* // Medium devices (tablets, 768px) */
@media (max-width: 768px) {
    .img-text h1 {
        font-size: 45px;
    }

    .activities-card h1 {
        font-size: 30px;
    }
}

/* Small devices (landscape phones, 576px) */
@media (max-width: 576px) {
    .middle-nav .logo-bar h1 {
        font-size: 26px;
    }

    .middle-nav .logo-bar p {
        font-size: 18px;
    }

    .main-nav {
        margin-left: 0px;
    }

    .img-text h1 {
        font-size: 40px;
    }

    .show-more {
        padding-bottom: 10px;
    }

    .news-card .card-img-top {
        height: auto;
    }

    .subscribe-box {
        padding-right: 0px;
    }

    .slick-slide img {
        margin: 0 auto;
    }

    .slick-next {
        right: 0 !important;
    }

    .slick-prev {
        left: -0 !important;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-items {
        text-align: center;
    }

    .footer-items-right {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .middle-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .submit-form-mobile {
        flex-direction: column;
    }
}

.input-group.dateonly {
    align-items: center !important;
}

.floated {
    float: left;
    margin-right: 13px;
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width:1200px) {
    .hidden-lg {
        display: none !important
    }
}