.page-template-page-home * {
  box-sizing: border-box;
}
.page-template-page-home .content.content_top_margin {
    margin: 0!important;
}
.page-template-page-home footer {
    display: none;
}

.container-home {
    width: 100%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;

}

.banner-section {
    height: 570px;
    background-size: cover;
    background-position: center;
    padding-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
a.banner-link {
    color: rgb(255, 255, 255);
    border-color: rgb(0, 86, 150);
    background-color: rgb(0, 86, 150);
    display: inline-block;
    line-height: 47px;
    font-size: 16px;
    padding: 0 29px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .1s;
    border-radius: 4px;
    font-family: 'Lora', sans-serif;
}
a.banner-link:hover {
    background-color: rgb(44, 121, 180);
}

/* about */

.about-section {
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    font-family: 'Lora', sans-serif;
    color: #fff;
}
.about-section .container-home {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-section p {
    margin-bottom: 10px;
    padding: 0;
    margin-top: 0;
}
.about-col,
.events-col {
    width: 48%;
}
.about-col .h2,
.events-col .h2,
.mobile-events .h2 {
    margin-top: 0;
    border-bottom: 1px solid #fff;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    padding: 0 0 10px;
    margin-bottom: 20px;
}

.events-info .item {
    margin-bottom: 25px;
    max-width: 260px;
    font-size: 15px;
}
.events-info .date {

    margin-bottom: 5px;
}
.events-info strong {
    border-bottom: 1px dotted;
}

.mobile-events {
    display: none;
    padding-top: 40px;
    padding-bottom: 15px;
}

.mobile-events .h2 {
    color: #835d4c;
}

@media screen and (max-width: 1599px){
    .banner-section {
        height: 470px;
        padding-bottom: 120px;
    }
}

@media screen and (max-width: 1199px){
    .container-home {
        max-width: 767px;
    }

    .banner-section {
        height: 570px;
        padding-bottom: 150px;
    }

    .about-col{
        width: 100%;
    }
    .events-col {
        display: none;
    }

    .mobile-events {
        display: block;
    }
}

@media screen and (max-width: 768px){

    .container-home {
        max-width: 460px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .banner-section {
        height: 250px;
        padding-bottom: 40px;
    }
    a.banner-link {
        line-height: 37px;
        font-size: 14px;
        padding: 0 19px;
    }

    .about-col .h2,
    .events-col .h2,
    .mobile-events .h2 {
        font-size: 20px;
    }
}