/* Global CSS */
body {
    font-family: 'Josefin Sans', sans-serif;
}

.field-validation-error {
    color: #aa2b16;
}

.btn-danger {
    background-color: #aa2b16 !important;
    border-color: #aa2b16 !important;
    border-radius: 9999px;
}

.text-danger {
    color: #aa2b16 !important;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #fff;
    border-radius: 0;
    margin-bottom: 0;
    padding: 25px 0;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.3px;
}

    .breadcrumb li a {
        font-weight: 400;
        font-size: 14px;
        letter-spacing: -0.3px;
        color: #4a90e2;
    }

        .breadcrumb li a:hover {
            text-decoration: none;
        }

    .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        color: #4a90e2;
        content: ">";
    }

/* Search Area */
.search-area {
    background-color: #fff;
    box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.5);
    height: auto;
    padding: 30px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: -180px;
    transition: all .3s ease-in-out;
    z-index: 10000;
}

    .search-area.active {
        top: 0;
    }

    .search-area .form-control {
        background-color: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        font-size: 22px;
        font-weight: 600;
        height: 60px;
        padding: 0 65px;
    }

    .search-area span {
        font-size: 32px;
        position: absolute;
        left: 14px;
        top: calc(50% - 16px);
    }

    .search-area .closed {
        color: rgba(0,0,0,.3);
        font-size: 32px;
        position: absolute;
        right: 16px;
        top: calc(50% - 16px);
        transition: all .3s ease-in-out;
    }

        .search-area .closed:hover {
            color: rgba(0,0,0,.8);
        }

.overlay {
    background-color: rgba(0,0,0,.5);
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transition: all .3s ease-in-out;
}

    .overlay.active {
        opacity: 1;
        z-index: 9999;
    }

/* Header */
header {
    border-bottom: rgba(255,255,255,.2) solid 1px;
    padding: 15px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

    header.subpage {
        background-color: #fff;
        border-bottom: #eaeaea solid 1px;
        position: static;
    }

    header .container {
        position: relative;
    }

    header .menu {
        align-items: center;
        display: flex;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        header .menu li {
            padding: 0 20px;
        }

            header .menu li:first-child {
                padding-left: 0;
            }

            header .menu li:last-child {
                padding-right: 0;
            }

            header .menu li > a {
                color: #fff;
                display: block;
                font-size: 18px;
                font-weight: 600;
                text-decoration: none;
                transition: all .3s ease-in-out;
            }

    header.subpage .menu li > a {
        color: #000;
        position: relative;
    }

    header.subpage .menu li.active > a {
        color: #aa2b16;
    }

        header.subpage .menu li.active > a:after {
            content: '';
            background-color: #aa2b16;
            height: 10px;
            width: 100%;
            position: absolute;
            left: 0;
            bottom: -88px;
        }

    header .menu li > a:hover {
        color: #aa2b16;
    }

    header .menu li:nth-child(1) > a {
        font-size: 38px;
        line-height: 1;
    }
    /*header .menu li:nth-child(6) > a{
	font-size: 32px;
	line-height: 1;
}*/
    header .menu li:nth-child(7) > a {
        font-size: 24px;
        line-height: 1;
    }

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

    header .dropdown-menu {
        border: none;
        border-radius: 0;
        box-shadow: 0 10px 28px 0 rgba(0, 0, 0, 0.2);
        padding: 20px 40px 0;
        width: 310px;
    }

        header .dropdown-menu:before {
            content: '';
            width: 0;
            height: 0;
            border-left: 14px solid transparent;
            border-right: 14px solid transparent;
            border-bottom: 14px solid #fff;
            position: absolute;
            left: calc(50% - 7px);
            top: -14px;
        }

    header .dropdown-item {
        border-bottom: #eaeaea solid 1px;
        border-radius: 0 !important;
        color: #424242;
        font-size: 16px;
        font-weight: 600;
        padding: 10px 0;
        transition: all .3s ease-in-out;
    }

        header .dropdown-item:hover {
            padding-left: 10px;
            padding-right: 10px;
        }

        header .dropdown-item.active,
        header .dropdown-item:active {
            background-color: #aa2b16;
            padding-left: 10px;
            padding-right: 10px;
        }

    header .dropdown-item-last {
        border-bottom: 0px !important;
        margin-bottom: 10px !important;
    }

    header .dropdown-item:last-child {
        border-bottom: 0;
    }

    header .dropdown-item-text {
        background-color: #57b7df;
        color: #fff;
        line-height: 80px;
        margin: 0 -40px;
        padding: 0;
    }

        header .dropdown-item-text .weather {
            background-color: #f5f5f5;
            float: left;
            display: inline-block;
            line-height: 80px;
            text-align: center;
            width: 90px;
        }

            header .dropdown-item-text .weather img {
                width: 50%;
            }

        header .dropdown-item-text .degree {
            display: inline-block;
            line-height: 80px;
            text-align: center;
            width: 220px;
        }

    header .language {
        position: absolute;
        right: 0;
        top: 0;
    }

        header .language .btn-link {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            padding-right: 25px;
            text-decoration: none;
        }

    header.subpage .language .btn-link {
        color: #000;
    }

    header .language .btn-link::after {
        content: '';
        display: block;
        background: url(../img/arrow-down.svg) 0 0 no-repeat;
        border: none;
        height: 10px;
        position: absolute;
        right: 0;
        top: calc(50% - 5px);
        width: 16px;
    }

    header .language .btn-link img {
        border: #eaeaea solid 4px;
        border-radius: 12px;
        height: 24px;
        margin-right: 5px;
    }

    header .language .dropdown-menu {
        padding-bottom: 20px;
        padding-left: 30px;
        padding-right: 30px;
        width: auto;
    }

        header .language .dropdown-menu.show {
            display: flex;
            top: 15px !important;
        }

        header .language .dropdown-menu:before {
            left: auto;
            right: 50px;
        }

    header .language .dropdown-item {
        border: none;
        color: #bdbdbd;
        display: inline-block;
        font-size: 14px;
        line-height: 1;
        padding: 0;
        text-align: center;
        width: 99px;
        white-space: normal;
        transition: all .3s ease;
        text-align: center;
        vertical-align: top;
    }

        header .language .dropdown-item:hover,
        header .language .dropdown-item.active {
            background-color: transparent;
            color: #66a022;
        }

        header .language .dropdown-item .flag {
            border: #bdbdbd solid 4px;
            border-radius: 22px;
            display: block;
            height: 46px;
            margin: 0 auto 5px;
            width: 46px;
        }

        header .language .dropdown-item:hover .flag,
        header .language .dropdown-item.active .flag {
            border: #66a022 solid 4px;
        }

/* Promo */
.promo .owl-theme .owl-dots {
    margin: 0 !important;
    position: absolute;
    right: 50px;
    top: calc(50% - 80px);
    width: 24px;
}

    .promo .owl-theme .owl-dots .owl-dot span {
        background: rgba(255,255,255,.2);
        transition: all .3s ease-in-out;
    }

    .promo .owl-theme .owl-dots .owl-dot.active span,
    .promo .owl-theme .owl-dots .owl-dot:hover span {
        background: rgba(255,255,255,1);
    }

.promo .owl-theme .item {
    height: 100vh;
}

    .promo .owl-theme .item:after {
        content: '';
        background-color: rgba(0,0,0,.5);
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
    }

.promo .caption {
    padding: 0 15%;
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    text-align: center;
    z-index: 2;
}

    .promo .caption p {
        text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    }

/* Page Content */

.page-detail-content .photo {
    background-position: center;
    background-size: cover;
    display: block;
    height: 485px;
}

.page-detail-content .details {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

    .page-detail-content .details li {
        border-bottom: 1px solid #ebebeb;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-bottom: 1rem;
        padding-top: 1rem;
    }

        .page-detail-content .details li:last-child {
            border-bottom: none;
        }

        .page-detail-content .details li span {
            background-image: url(../img/place-detail/icons.png);
            background-repeat: no-repeat;
            display: block;
            height: 35px;
            margin-right: 1rem;
            width: 35px;
        }

            .page-detail-content .details li span.address {
                background-position: 50% 0;
            }

            .page-detail-content .details li span.clocks {
                background-position: 50% -35px;
            }

            .page-detail-content .details li span.phone {
                background-position: 50% -70px;
            }

            .page-detail-content .details li span.website {
                background-position: 50% -105px;
            }

        .page-detail-content .details li p {
            font-size: 14px;
            font-weight: 400;
            color: #000;
            margin-bottom: 0px;
        }

.page-detail-content .highlights {
    padding: 15px 25px;
    box-shadow: 0 2px 23px 0 #ededed;
    background-color: #fff;
    margin: 0 0px 0 0px;
}

    .page-detail-content .highlights a {
        text-decoration: none;
    }

    .page-detail-content .highlights .photo {
        background-position: center;
        background-size: cover;
        border-radius: 51px;
        height: 92px;
        width: 130px;
    }

    .page-detail-content .highlights .text {
        color: #000;
        font-weight: 600;
        margin: 0;
        padding-left: 1rem;
        width: 295px;
    }

.page-detail-content a:hover {
    color: #aa2b16 !important;
}

.page-detail-content .progress {
    height: 30px;
    border-radius: 35px;
}

    .page-detail-content .progress .progress-bar {
        border-radius: 35px;
        font-size: 18px;
    }

.page-detail-content .survey-form {
    background-color: #f5f5f5;
    padding: 60px;
    margin-top: 80px;
}

.survey-button {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .survey-button input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.survey-button:hover input ~ .checkmark {
    background-color: #ccc;
}

.survey-button input:checked ~ .checkmark {
    background-color: #00842a;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.survey-button input:checked ~ .checkmark:after {
    display: block;
}

.survey-button .checkmark:after {
    left: 9px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}




/* /Page Content */

/* Help Content */

.help-content .btn {
    width: 100%;
    display: block;
    font-weight: 600;
    color: #000;
    text-align: left;
    border: none;
    padding: 18px;
    font-size: 14px;
    border-radius: 0;
}

.help-content .accordion .card .card-header button:after {
    content: '';
    background-image: url(../img/ok.png);
    background-position: 0 -14px;
    background-repeat: no-repeat;
    width: 17px;
    height: 14px;
    position: absolute;
    right: 25px;
    transition: all .3s ease-in-out;
    transform: rotate(-180deg);
}

.help-content .accordion .card .card-header button.collapsed:after {
    content: '';
    background-image: url(../img/ok.png);
    background-position: 0 -14px;
    background-repeat: no-repeat;
    width: 17px;
    height: 14px;
    position: absolute;
    right: 25px;
    transition: all .3s ease-in-out;
    transform: rotate(0);
}

.help-content .btn:focus {
    box-shadow: none;
}

.help-content .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: #fff;
    border: none;
}

.help-content .card {
    border: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3 !important;
}
/* /Help Content */

/* Explore */
.explore {
    background-color: #aa2b16;
    background-image: url(../img/explore-bg.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
}

    .explore .item a {
        text-decoration: none;
    }

    .explore .item .circle {
        background-color: #fff;
        border-radius: 80px;
        box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.08);
        height: 160px;
        line-height: 160px;
        margin-bottom: 20px;
        text-align: center;
        width: 160px;
    }

        .explore .item .circle img {
            display: inline !important;
            width: 50% !important;
        }

    .explore .item span {
        color: #fff;
        display: block;
        font-size: 20px;
        line-height: 1;
        text-align: center;
    }

    .explore .owl-carousel .owl-nav button.owl-prev,
    .explore .owl-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 20%;
        left: -70px;
    }

    .explore .owl-carousel .owl-nav button.owl-next {
        left: auto;
        right: -70px;
    }

        .explore .owl-carousel .owl-nav button.owl-prev:hover,
        .explore .owl-carousel .owl-nav button.owl-next:hover {
            background-color: transparent;
        }

    .explore .owl-theme .owl-dots {
        margin-top: 30px;
    }

        .explore .owl-theme .owl-dots .owl-dot span {
            background: rgba(255,255,255,.2);
            transition: all .3s ease-in-out;
        }

        .explore .owl-theme .owl-dots .owl-dot.active span,
        .explore .owl-theme .owl-dots .owl-dot:hover span {
            background: rgba(255,255,255,1);
        }

/* Guide */
.guide .item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 440px;
    position: relative;
    width: 100%;
}

    .guide .item:after {
        content: '';
        background-color: rgba(0,0,0,.5);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
    }

    .guide .item span {
        color: #fff;
        display: block;
        font-size: 20px;
        line-height: 1.6rem;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 26px;
        text-align: center;
        padding: 0 30px;
        z-index: 2;
    }

.guide .owl-carousel .owl-nav button.owl-prev,
.guide .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: calc(50% - 20px);
    left: -70px;
}

.guide .owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -70px;
}

    .guide .owl-carousel .owl-nav button.owl-prev:hover,
    .guide .owl-carousel .owl-nav button.owl-next:hover {
        background-color: transparent;
    }

.guide .owl-theme .owl-dots {
    margin-top: 30px;
}

    .guide .owl-theme .owl-dots .owl-dot span {
        background: #b8b8b8;
        transition: all .3s ease-in-out;
    }

    .guide .owl-theme .owl-dots .owl-dot.active span,
    .guide .owl-theme .owl-dots .owl-dot:hover span {
        background: #aa2b16;
    }

/* Guide Page*/
.guide-page .item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 440px;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

    .guide-page .item:after {
        content: '';
        background-color: rgba(0,0,0,.5);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
    }

    .guide-page .item span {
        color: #fff;
        display: block;
        font-size: 20px;
        line-height: 1;
        padding: 5px 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 30px;
        text-align: center;
        z-index: 2;
    }

.guide-page .owl-theme .owl-dots .owl-dot.active span,
.guide-page .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #aa2b16;
}

.guide-page .owl-dots button:focus {
    outline: none;
}

.guide-page .item span {
    color: #fff;
    display: block;
    font-size: 20px;
    line-height: 1.6rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    text-align: center;
    padding: 0 30px;
}

.guide-page .owl-carousel .owl-nav button.owl-prev,
.guide-page .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: calc(50% - 20px);
    left: -70px;
}

.guide-page .owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -70px;
}

    .guide-page .owl-carousel .owl-nav button.owl-prev:hover,
    .guide-page .owl-carousel .owl-nav button.owl-next:hover {
        background-color: transparent;
    }

.guide-page .owl-theme .owl-dots {
    margin-top: 30px;
}

    .guide-page .owl-theme .owl-dots .owl-dot span {
        background: #b8b8b8;
        transition: all .3s ease-in-out;
    }

    .guide-page .owl-theme .owl-dots .owl-dot.active span,
    .guide-page .owl-theme .owl-dots .owl-dot:hover span {
        background: #aa2b16;
    }

/* Activity */
.activity .photo {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 115px;
    width: 210px !important;
}

/* Events */
.jalendar {
    box-shadow: 0 2px 23px 0 #ededed;
    display: block;
    margin: 0 auto 30px;
    width: 390px;
}
/* Contact */
.contact-page .contact-map {
    height: 440px;
}

.contact-page label {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.contact-page .form-control {
    height: calc(3.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 0;
}

.contact-page textarea {
    height: calc(8.25rem + 2px) !important;
}

.contact-page .btn {
    color: #fff;
    border: none;
    padding: 10px 50px;
    font-size: 14px;
    border-radius: 0;
}

.contact-page .address {
    background-color: #f3f3f3;
    padding: 25px;
}

/* /Contact */


/* Map */
.map {
    height: 725px;
    position: relative;
}
    .map .line-list {

    }
    .map .line-list li {
        font-size: 14px;
        line-height: 22px;
    }

    .map .map-click {
        position: absolute;
        top: calc(50% - 50px);
        right: 0;
        z-index: 2;
        height: 62px;
        width: 62px;
    }

    .map .map-open {
        height: 100%;
        width: 330px;
        background-color: #aa2b16;
        opacity: 0;
        position: absolute;
        transition: all .4s ease-in-out;
        z-index: 1;
        right: 0;
        top: 0;
    }

        .map .map-open .card {
            position: relative;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: transparent;
            background-clip: border-box;
            border-bottom: 1px solid #fff !important;
            border-radius: .25rem;
        }

        .map .map-open .card-header {
            padding: 0;
            margin-bottom: 0;
            color: inherit;
            background-color: transparent;
            border-bottom: none;
        }

        .map .map-open .map-link {
            display: block;
            color: #fff;
            font-size: 18px;
            padding: 34px 0 33px 100px;
            text-decoration: none;
        }

        .map .map-open a:not([href]):not([tabindex]):focus,
        .map .map-open a:not([href]):not([tabindex]):hover {
            color: #fff;
            text-decoration: none;
            cursor: pointer;
        }

        .map .map-open .card .map-link::before {
            position: absolute;
            left: 35px;
            top: 25px;
            content: '';
            height: 40px;
            width: 35px;
            background-image: url(../img/place-detail/filter-icons.png);
            background-position: 0px -280px;
            background-repeat: no-repeat;
        }

        .map .map-open .card:nth-child(1) .map-link::before {
            background-position: 0 0;
        }

        .map .map-open .card:nth-child(2) .map-link::before {
            background-position: 0 -40px;
        }

        .map .map-open .card:nth-child(3) .map-link::before {
            background-position: 0 -80px;
        }

        .map .map-open .card:nth-child(4) .map-link::before {
            background-position: 0 -120px;
        }

        .map .map-open .card:nth-child(5) .map-link::before {
            background-position: 0 -160px;
        }

        .map .map-open .card:nth-child(6) .map-link::before {
            background-position: 0 -200px;
        }

        .map .map-open .card:nth-child(7) .map-link::before {
            background-position: 0 -240px;
        }

        .map .map-open .card .card-body .list-group-item {
            color: #fff;
            position: relative;
            display: block;
            padding: 5px 25px;
            margin-bottom: 0;
            background-color: transparent;
            border: none;
        }


    .map .accordion .card:first-child .card-header a:after {
        content: '';
        background-image: url(../img/map-ok.png);
        background-position: 0 -10px;
        background-repeat: no-repeat;
        width: 17px;
        height: 9px;
        position: absolute;
        right: 25px;
        top: 35px;
        transition: all .3s ease-in-out;
        transform: rotate(-180deg);
    }

    .map .accordion .card:first-child .card-header a.collapsed:after {
        content: '';
        background-image: url(../img/map-ok.png);
        background-position: 0 -9px;
        background-repeat: no-repeat;
        width: 17px;
        height: 9px;
        position: absolute;
        right: 25px;
        transition: all .3s ease-in-out;
        transform: rotate(0);
    }

    .map .map-open.opened {
        opacity: 1;
        z-index: 9;
    }

    .map .map-open .closed {
        position: absolute;
        top: calc(50% - 50px);
        left: -25px;
        z-index: 4;
    }

.place-detail .card {
    color: #000;
    height: 335px;
    margin-bottom: 2rem;
    text-decoration: none;
}

.place-detail .photo {
    background-position: center;
    background-size: cover;
    display: block;
    height: 485px;
}

.place-detail .card img {
    height: 232px;
}
/* Footer */
footer .bottom-menu {
    background-color: #f6f6f6;
}

/* Responsive */


@media (max-width: 575.98px) {
    .h1 {
        font-size: 20px;
        line-height: 1;
    }
    .h2 {
        font-size: 18px;
        line-height: 1;
    }
    .h3 {
        font-size: 16px;
        line-height: 1;
    }
    .mb-5 {
        margin-bottom: 30px !important;
    }
    .mt-5 {
        margin-top: 30px !important;
    }
    .py-5 {
        padding: 30px 0 !important;
    }

    header {
        display: none;
    }

    /* Promo */
    .promo .owl-theme .owl-dots {
        bottom: -30px;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        text-align: center;
    }

    .promo .owl-theme .item {
        height: auto;
    }

    .promo .caption {
        padding: 0 15px;
        top: 15px;
    }

        .promo .caption p.display-4 {
            font-size: 18px !important;
        }

        .promo .caption p.h3 {
            font-size: 14px !important;
            margin-bottom: 10px !important;
        }

        .promo .caption .btn-danger {
            font-size: 12px;
        }

    .promo .owl-theme .owl-dots .owl-dot span {
        background: #b8b8b8;
        transition: all .3s ease-in-out;
    }

    .promo .owl-theme .owl-dots .owl-dot.active span,
    .promo .owl-theme .owl-dots .owl-dot:hover span {
        background: #aa2b16;
    }

    /* Explore */
    .explore .item .circle {
        margin: 0 auto 20px;
    }

    .explore .owl-carousel .owl-nav button.owl-prev,
    .explore .owl-carousel .owl-nav button.owl-next {
        left: 0;
    }

    .explore .owl-carousel .owl-nav button.owl-next {
        left: auto;
        right: 0;
    }

    /* Guide */
    .guide .owl-carousel .owl-nav button.owl-prev,
    .guide .owl-carousel .owl-nav button.owl-next {
        left: 0;
    }

    .guide .owl-carousel .owl-nav button.owl-next {
        left: auto;
        right: 0;
    }

    .guide .owl-theme .owl-dots {
        margin-top: 10px;
    }

    /* Activity */
    .activity .photo {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        height: 150px;
        width: 100% !important;
    }

    /* Footer */
    footer .text-right {
        text-align: left !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
}

@media (min-width: 768px) and (max-width: 991.98px) {
}

@media (min-width: 992px) and (max-width: 1199.98px) {
}