@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&subset=latin-ext');

html {
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans';
    font-size: 14.8pt;
    font-weight: normal;
    color: #000;
}

a,
a:hover,
a:visited {
    color: #262261;
    text-decoration: none !important;
}

img, iframe {
    max-height: 100%;
    max-width: 100%;
}

.gm-style img {
    max-height: initial;
    max-width: initial;
}

#Brand {
    text-transform: uppercase;
}

@media(max-width: 1200px) {
    body {
        padding-top: 64px;
    }

    #Header {
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
        background-color: rgb(255,255,255);
        border-bottom: 1px dashed gray;
        height: 64px;
    }

    #Brand {
        font-size: 20pt;
        padding: 17px 0;
        display: inline-block;
        margin: 0;
    }

    @media(max-width: 360px) {
        #Brand {
            font-size: 7.25vw;
            padding: calc((64px - 7.25vw) / 2) 0;
        }
    }

    #Header .logo {
        display: none;
    }

    #FirstRow .headerRight {
        display: none;
    }

    #Content {
        margin-top: 16px;
    }
}

@media(min-width: 1201px) {

    #Header {
    }

        #Header .logo {
            float: left;
            margin-top: -29px;
            width: 130px;
        }

            #Header .logo img {
                width: 115px;
            }

    #FirstRow {
        overflow: hidden;
    }

        #FirstRow h1::after {
            display: block;
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100vw;
            border-bottom: 1px dashed gray;
            clear: both;
        }

        #FirstRow h1 {
            position: relative;
            margin: 0;
            padding: 15px 0;
            font-size: 20pt;
            letter-spacing: 3px;
            font-weight: bold;
            color: #262261;
            display: inline-block;
            margin-left: 130px;
        }

    #Content {
        margin-top: 40px;
    }

    .headerRight {
        float: right;
        padding: 15px 0;
    }

        .headerRight .nav-Menu {
            list-style: none;
            display: flex;
            font-size: 11pt;
            margin: 0;
        }

            .headerRight .nav-Menu li {
                display: block;
                margin-right: 15px;
                padding: 16px 0;
            }

    #Navbar .headerRight {
        display: none;
    }
}


.headerRight .nav-Menu li a {
    color: rgb(173, 155, 68) !important;
    font-weight: bold;
}

    .headerRight .nav-Menu li a::after {
        content: "";
        display: inline-block;
        background-image: url('../Content/arrow_left_gold_pasa.svg');
        margin-left: 10px;
        height: 1em;
        width: 1em;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        vertical-align: bottom;
    }

#Navbar-button {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
}

#Navbar .nav-Menu {
    margin: 0;
    font-size: 11pt;
    list-style: none;
}

#Navbar .headerRight {
    margin: 0 28px;
}
    /*#region Navbar button*/
    #Navbar-button {
        /*padding: 24px 20px;*/
        background-color: transparent;
        background-image: none;
        border: none;
        outline: none !important;
        display: block;
        float: left;
        padding: 0;
    }

    #Navbar-button .icon-bars {
        margin: 24px 20px;
        position: relative;
        height: 16px;
        width: 24px;
    }

        #Navbar-button .icon-bars .icon-bar {
            display: block;
            width: 100%;
            height: 2px;
            border-radius: 1px;
            position: absolute;
            transition: background-color 500ms, transform 500ms;
            -webkit-transition: background-color 500ms, -webkit-transform 500ms;
            margin: -1px;
            background-color: rgb(0,0,0);
        }

            #Navbar-button .icon-bars .icon-bar:nth-of-type(1) {
                top: 0%;
            }

            #Navbar-button .icon-bars .icon-bar:nth-of-type(2) {
                top: 50%;
            }

            #Navbar-button .icon-bars .icon-bar:nth-of-type(3) {
                top: 50%;
            }

            #Navbar-button .icon-bars .icon-bar:nth-of-type(4) {
                bottom: 0;
            }

    #Navbar-button.open .icon-bars .icon-bar {
        background-color: rgb(255,255,255);
    }

        #Navbar-button.open .icon-bars .icon-bar:nth-of-type(1) {
            transform: scaleX(0);
            -webkit-transform: scaleX(0);
        }

        #Navbar-button.open .icon-bars .icon-bar:nth-of-type(2) {
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
        }

        #Navbar-button.open .icon-bars .icon-bar:nth-of-type(3) {
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
        }

        #Navbar-button.open .icon-bars .icon-bar:nth-of-type(4) {
            transform: scaleX(0);
            -webkit-transform: scaleX(0);
        }
/*#endregion*/

@media(min-width: 1201px) {
    #Navbar-button {
        display: none;
    }

    #Navbar {
        margin-left: 120px;
        height: 60px;
        z-index: 1000;
    }

        #Navbar .nav-Menu {
            display: flex;
            padding: 20px 0;
            margin: 0;
            font-size: 11pt;
            justify-content: space-between;
        }

            #Navbar .nav-Menu > li {
                display: block;
                float: left;
                text-transform: uppercase;
                position: relative;
            }

        #Navbar .navbar-wrapper > .nav-Menu > li {
            padding: 0 10px;
        }

        #Navbar .nav-Menu > li.current {
            padding-bottom: 2px;
            border-bottom: 5px solid rgb(38, 34, 98);
        }

        #Navbar .nav-Menu li ul {
            display: block;
            position: absolute;
            padding: 20px 0 10px 0;
            background-color: white;
            visibility: collapse;
            opacity: 0;
            transition-property: opacity, visibility;
            transition-delay: 0ms, 200ms;
            transition-duration: 200ms, 0ms;
            padding-left: 10px;
            margin-left: -10px;
            padding-right: 10px;
            margin-right: -10px;
            border: 1px solid dashed;
            border-top: none;
            z-index: 92;
            min-width: 100%;
            box-sizing: content-box;
        }

        #Navbar .nav-Menu li:hover ul {
            transition-delay: 0ms, 0ms;
            visibility: visible;
            opacity: 1;
        }

        #Navbar .nav-Menu li ul li {
            margin-bottom: 10px;
        }
}

@media(max-width: 1200px) {
    #Navbar-button {
        display: block;
    }

    #Navbar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100vw;
        display: block;
        pointer-events: none;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 100;
        font-size: 12pt;
        margin-right: -18px;
    }

        #Navbar .navbar-wrapper {
            position: absolute;
            right: 0;
            min-height: 100vh;
            width: 52vw;
            min-width: 310px;
            background-color: rgb(38, 34, 98);
            transition: transform 300ms;
            transform: translate3d(100%,0,0);
            -webkit-transition: -webkit-transform 300ms;
            -webkit-transform: translate3d(100%,0,0);
            padding-top: 64px;
            border-left: 1px dashed gray;
        }

        #Navbar ul {
            margin-left: 10vw;
            padding: 0;
        }

            #Navbar ul li {
                margin: 25px 28px;
            }

        #Navbar .navbar-wrapper > ul > li > a {
            font-weight: bold;
        }

        #Navbar ul li a {
            color: rgb(255,255,255);
        }

        #Navbar.open {
            pointer-events: all;
        }

            #Navbar.open .navbar-wrapper {
                transform: translate3d(0,0,0);
                -webkit-transform: translate3d(0,0,0);
            }
}

@media(min-width: 1380px) {
    .container {
        width: 1315px;
    }
}

a.arrow::after {
    display: inline-block;
    content: "";
    background-image: url('../Content/arrow_left_pasa.svg');
    height: 12px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    margin-left: 10px;
}

.sidebarWidget {
    overflow: hidden;
}

/*#region Intro*/

#Intro {
    height: calc(100vh - 120px);
    margin-bottom: 60px;
}

#Intro {
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

    #Intro video {
        position: absolute;
        min-width: 100vw;
        min-height: calc(100vh - 120px);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #Intro .cover {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: rgba(38, 34, 98,0.5);
        background-image: url('../Content/play_pasa.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: 122px 122px;
    }

        #Intro .cover .continueToPage {
            display: block;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translate(-50%,0);
            -webkit-transform: translate(-50%,0);
            margin-bottom: 60px;
            font-size: 20px;
            font-weight: bold;
            color: rgb(255,255,255);
            white-space: nowrap;
        }

            #Intro .cover .continueToPage img {
                display: block;
                margin: 20px auto 0;
                height: 62px;
                width: 43px;
            }

/*#endregion*/

/*#region MainPageNews*/

#BeforeContent {
    overflow: hidden;
}

#MainPageNews {
    height: 660px;
    position: relative;
    border: 1px dashed gray;
    margin-top: 60px;
    overflow: hidden;
}

    #MainPageNews ul {
        display: block;
        padding: 0;
        list-style: none;
    }

@media(min-width: 1201px) {
    #MainPageNews ul {
        width: 415px;
    }
}

#MainPageNews li {
    transition: background-color 300ms, color 300ms;
    transition-timing-function: ease-in-out;
    overflow: hidden;
    height: 16.6666%;
}

    #MainPageNews li a {
        display: block;
        height: 110px;
        border-bottom: 1px dashed gray;
        padding: 10px 10px 5px 10px;
        font-size: 17pt;
        text-transform: uppercase;
        color: inherit !important;
        font-weight: bold;
    }

        #MainPageNews li a .title {
            display: block;
            overflow: hidden;
            max-height: 100%;
        }

    #MainPageNews li:nth-child(6) a {
        border-bottom: none;
    }

    #MainPageNews li .headerImage {
        display: none;
    }

@media(min-width: 1201px) {
    #MainPageNews li .headerImage {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: calc(100% - 415px);
        overflow: hidden;
        pointer-events: none;
    }
}

#MainPageNews li .headerImage img {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    max-height: none;
    max-width: none;
    transform: translate(-50%,-50%);
    transition: opacity 500ms ease-in-out;
}

#MainPageNews ul:not(:hover) li:first-of-type, #MainPageNews li:hover {
    background-color: rgb(38, 34, 98);
    color: rgb(255,255,255);
}

    #MainPageNews ul:not(:hover) li:first-of-type .headerImage img {
        opacity: 1;
    }

    #MainPageNews li:hover .headerImage img {
        opacity: 1;
    }
/*#endregion*/

/*#region Content*/

#Content {
    margin-bottom: 100px;
    overflow: hidden;
}

.withSidebar main {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: rgb(38, 34, 98);
}

h1 {
    font-weight: bold;
    font-size: 20pt;
}

h2 {
    font-size: 18pt;
}

h4, h3 {
    position: relative;
    white-space: nowrap;
}

h3 {
    margin-bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14pt;
    letter-spacing: 2px;
}

h4 {
    font-size: 11pt;
    font-weight: bold;
    text-transform: uppercase;
}

    h4::before, h3::before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        width: 100vw;
        transform: translate(-100%);
        border-bottom: 1px dashed gray;
        margin-left: -10px;
    }

    h4::after, h3::after {
        content: "";
        display: inline-block;
        border-bottom: 1px dashed gray;
        width: 100vw;
        margin-top: -0.5px;
        margin-bottom: 5px;
        margin-left: 10px;
    }

table {
    max-width: 100%;
}

td, th {
    padding: 5px;
}

header h1 {
    margin: 0 0 40px 0;
}

header h2 {
    color: inherit;
    margin-bottom: 40px;
    font-size: 28pt;
}

main p {
    margin: 30px 0;
}

/*#endregion*/

#Sidebar {
    margin-top: 15px;
}

    #Sidebar .cardList .card {
        margin-left: auto;
        margin-right: auto;
    }

@media(min-width: 992px) {
    #Content.withSidebar main {
        display: inline-block;
        width: calc(100% - 445px);
    }


    #Sidebar {
        margin: initial;
        float: right;
        width: 420px;
    }
}

#Sidebar .widget h4 {
    margin-bottom: 50px;
}

/*#region MainPage*/
@media(min-width: 1201px) {
    #MainPage main .mainPageContent {
        border: 1px dashed gray;
        border-top: none;
        border-bottom: none;
        margin: auto;
        width: 865px;
    }
}

#MainPage main .mainPageContent .content {
    padding: 32px 32px 0 32px;
    border-bottom: 1px dashed gray;
}

#MainPage main .mainPageContent h1 {
    margin: 10px 0 30px;
}

#MainPage main {
    border: 1px dashed gray;
}

    #MainPage main .mainPageContent .counters {
        margin: 0;
    }

        #MainPage main .mainPageContent .counters .counter {
            padding: 0;
        }

            #MainPage main .mainPageContent .counters .counter .counterValue {
                font-size: 72pt;
                font-weight: bold;
                text-align: center;
                color: rgb(173, 155, 68);
                margin-top: 85px;
            }

            #MainPage main .mainPageContent .counters .counter .counterTitle {
                text-transform: uppercase;
                text-align: center;
                font-size: 17pt;
                font-weight: bold;
                color: rgb(38, 34, 98);
            }

        #MainPage main .mainPageContent .counters:last-of-type .counter:last-of-type .counterTitle {
            margin-bottom: 115px;
        }

@media (min-width: 992px) {
    #MainPage main .mainPageContent .counters .counter:last-of-type {
        border-left: 1px dashed gray;
    }
}
/*#endregion MainPage*/

/*#region News*/
.news .date {
    display: inline-block;
    font-size: 11pt;
    margin-bottom: 10px;
    color: rgb(38, 34, 98);
}

main.news {
}

    main.news header h1 {
        margin: 0;
    }

    main.news .cardHeaderImage {
    }

    main.news .newsGallery {
        display: flex;
        flex-wrap: wrap;
        margin: -5px;
        justify-content: space-between;
    }

        main.news .newsGallery .galleryItem {
            height: 150px;
            width: 200px;
            position: relative;
            overflow: hidden;
            margin: 5px;
        }

            main.news .newsGallery .galleryItem img {
                position: absolute;
                top: 50%;
                left: 50%;
                min-height: 100%;
                min-width: 100%;
                max-height: none;
                max-width: none;
                transform: translate(-50%,-50%);
            }

.cardList .card {
    display: block;
    padding: 15px;
    border: 1px dashed gray;
    margin-bottom: 15px;
}

    .cardList .card .cardHeaderImage {
        height: 290px;
    }

    .cardList .card .cardHeaderImage {
        height: 290px;
    }

    .cardList .card h2 {
        text-transform: uppercase;
        font-size: 23pt;
        font-weight: bold;
        margin: 10px 0 0;
        max-height: 66px;
        overflow: hidden;
    }

    .cardList .card .date {
        margin: 0;
    }

    .cardList .card a.more {
        font-size: 11pt;
        font-weight: bold;
    }

.cardList {
    margin: auto;
}

    .cardList .card {
        width: 100%;
    }

@media(min-width: 992px) {
    main .cardList .card {
        width: 460px;
        margin: 5px;
    }
}

@media(min-width: 1200px) {
    main .cardList .card {
        width: 370px;
        margin: 5px;
    }
}

@media(min-width: 1380px) {
    main .cardList .card {
        width: 415px;
        margin: 5px;
    }
}

/*#endregion*/


/*#region Trainer*/

.trainer {
}

.trainerList .trainer {
    margin-top: 75px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width: 992px) {
    .trainerList {
        margin-top: -75px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .trainerList .trainer {
            margin-left: 0;
            margin-right: 0;
            width: 415px;
        }
}

.trainer .profilePicture {
    height: 150px;
    width: 150px;
    border-radius: 75px;
    border: 1px dashed gray;
    margin: auto;
    display: block;
}

.trainer .name {
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14pt;
    letter-spacing: 2px;
    margin-top: 60px;
}

.trainer .contact {
    font-size: 14pt;
}
/*#endregion*/

table.prices, .prices table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.prices th {
    padding: 20px;
    text-align: center;
    color: rgb(38, 34, 98);
    border: 1px dashed gray;
}

.prices tbody tr td:first-of-type {
    vertical-align: top;
}

.prices tbody tr td {
    padding: 20px;
    border: 1px dashed gray;
}

    .prices tbody tr td.data {
        text-align: center;
    }

.prices.desktop {
    display: none;
}

.prices.mobile {
    font-size: 11pt;
}

    .prices.mobile th, .prices.mobile td {
        padding: 5px;
    }

    .prices.mobile .days {
        margin-bottom: 5px;
        font-weight: bold;
        color: rgb(38, 34, 98);
    }

@media(min-width: 992px) {
    .prices.desktop {
        display: table;
    }

    .prices.mobile {
        display: none;
    }
}

/*#region ContactPage*/
main.contactPage {
}

    main.contactPage .map {
        height: 630px;
    }

    main.contactPage .detailsContainer .field {
        overflow: hidden;
    }

.field:first-of-type h3 {
    margin-top: 0;
}

.field p:first-of-type {
    margin-top: 0;
}

.field h3:before {
    content: none;
}

@media(max-width: 992px) {
    main.contactPage .map {
        max-height: 100vw;
    }
}

@media(max-width: 992px) {
    main.contactPage .detailsContainer {
        margin-top: 15px;
    }
}

/*#endregion*/


/*#region Footer*/

footer {
    background-color: rgb(38, 34, 98);
    padding: 30px 0 0;
}

    footer ul {
        margin: 0;
    }

@media(min-width: 1380px) {
    footer .footerMenu {
        padding: 0 200px;
        justify-content: space-between;
    }
}

footer .footerMenu {
    color: rgb(255,255,255);
}

    footer .footerMenu nav h5 {
        color: white;
        line-height: inherit;
        font-weight: bold;
        font-size: 12pt;
        margin: 0;
        text-transform: uppercase;
    }

@media(min-width: 640px) {
    footer .footerMenu {
        margin: 0;
        margin-top: -30px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

        footer .footerMenu nav {
            margin-top: 30px;
        }

        footer .footerMenu .nav-Menu > li span {
            height: 22px;
            display: block;
        }

        footer .footerMenu nav.links > .nav-Menu {
            margin-top: 22px;
        }

        footer .footerMenu nav.links > h5 {
            position: absolute;
        }
}

footer .footerMenu .nav-Menu {
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    font-size: 12pt;
    letter-spacing: 2px;
}

footer .footerMenu nav {
    margin-left: auto;
    margin-right: auto;
    width: 295px;
}

footer .footerMenu .nav-Menu a {
    color: rgb(255,255,255);
}

footer .footerMenu .nav-Menu > li {
    margin: 0;
    font-weight: bold;
}

footer .footerMenu nav:not(.links) > .nav-Menu > li:not(:first-of-type) {
    margin: 25px 0;
}

footer .footerMenu .nav-Menu li ul li {
    margin: 2px 0;
    font-weight: normal;
}

footer .footerMenu .nav-Menu li > .nav-Menu, footer .footerMenu .links .nav-Menu {
    text-transform: none;
}

footer .footerMenu nav.links .nav-Menu a {
    color: yellow;
}

@media(max-width: 640px) {
    footer .footerMenu nav.social-widgets {
        margin-top: 30px;
    }

    footer .footerMenu nav:not(.links) {
        margin-bottom: 30px;
    }
}
.social-widgets a {
    margin-right: 8px;
}
.social-widgets img {
    width: 25px;
}

footer .footerBrand {
    text-align: center;
    color: rgb(255,255,255);
    font-size: 11pt;
    margin: 30px 0;
}

    footer .footerBrand a {
        color: rgb(255,255,255);
    }
/*#endregion*/

/*region Gallers*/

.gallery .card {
    height: 426px;
}

    .gallery .card .date {
        margin-top: 5px;
    }

.gallery .cardHeaderImage {
    height: 290px;
    position: relative;
}

    .gallery .cardHeaderImage img {
        opacity: 0;
    }

.imageGallery .card img {
    width: 100%;
}
.videoItem {
    display: block;
    position: relative;
}

.videoItem::after {
    display: block;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    background-image: url('../Content/play_pasa.svg');
    background-position: center;
    background-size: 128px 128px;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 250ms;
}

.videoItem:hover::after {
    opacity: 0;
}

.videoModal::after {
    content: "";
    display: block;
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 5px;
    padding: 1em;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition-delay: 500ms;
    -webkit-transform: scale3d(0.6, 0.6, 1);
    transform: scale3d(0.6, 0.6, 1);
    background-position: center;
    background-image: url(../Content/closeWhite.svg);
    background-size: 30px;
    background-repeat: no-repeat;
}

.in.videoModal::after {
    transform: scale3d(1,1,1);
    opacity: 1;
}

.videoModalContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

    .videoModalContent iframe {
        width: 960px;
        height: 540px;
        max-width: none;
        max-width: none;
    }
/*#endregion*/

.timeTableName, .timeTableCol {
    padding: 5px;
}

.timeTable {
    text-align: center;
    margin-bottom: 10px;
}

.timeTableName {
    font-weight: bold;
    font-size: 14pt;
    color: rgb(255,255,255);
    border: 1px dashed gray;
}

@media(max-width: 1200px) {
    .timeTable {
        border: 1px dashed gray;
        border-bottom: none;
    }

    .timeTableCol {
        border: 1px dashed gray;
        float: left;
        width: 50%;
    }

        .timeTableCol:nth-child(2n+1) {
            border-left: none;
            border-right: none;
        }

        .timeTableCol:nth-child(2n) {
            border-right: none;
        }

        .timeTableCol:nth-child(2n+1):last-of-type {
            width: 100%;
            border-left: none;
            border-right: none;
        }

    .timeTableCol {
        border-top: none;
        margin-top: 1px;
    }

    .timeTableRow {
        border-top: 1px dashed gray;
    }

        .timeTableRow:not(:last-of-type) {
            margin-bottom: 10px;
        }

        .timeTableRow::after {
            display: block;
            content: "";
            clear: both;
        }
}

@media(min-width: 1201px) {
    .timeTable {
        display: table;
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
        border: none;
    }

    .timeTableName {
        display: table-caption;
    }

    .timeTableRow {
        display: table-row;
    }

    .timeTableCol, .timeTableCol:nth-of-type(2n+1):last-of-type {
        display: table-cell;
        border: 1px dashed gray;
        width: initial;
        float: none;
    }

    .timeTableRow .timeTableCol:first-of-type {
        width: 50px;
    }
}

.playAndStayList {
}

    .playAndStayList::after {
        content: "";
        display: block;
        clear: both;
    }

.playAndStayItem {
    border: 1px dashed gray;
    border-bottom: none;
    margin-bottom: 20px;
}

.playAndStayItemHeader {
    text-align: center;
    color: rgb(38, 34, 98);
}

.playAndStayItem h2 {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.playAndStayItemRow {
    border-bottom: 1px dashed gray;
    padding: 10px;
}

    .playAndStayItemRow p:first-of-type {
        margin-top: 0;
    }

    .playAndStayItemRow p:last-of-type {
        margin-bottom: 0;
    }

.playAndStayItemHeaderImage {
    height: 250px;
}

.playAndStayItemPlayGround {
    height: 240px;
}

@media(min-width: 992px) {
    .playAndStayList {
        display: flex;
    }

    .playAndStayItem {
        float: none;
        width: 25%;
        display: table-cell;
    }

        .playAndStayItem:not(:last-of-type) {
            border-right: none;
        }
}
