h1 {
    margin: 0;
}

h2 {
    font-size: 20pt;
}

.big-in-center {
    width: 100%;
    margin: 20px 0;
}

.big-in-center img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 710px;
}

.big-in-center figcaption {
    font-family: Arial, sans-serif;
    font-size: 13pt;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.contact-us-wrapper {
    background-color: #6bc9fc;
    padding: 40px 0;
}

.contact-us-wrapper .row-img {
    margin: 0;
    justify-content: center;
}

.contact-us-wrapper p {
    margin: 0;
    font-family: GothamBold;
}

.contact-us-wrapper a {
    background-color: #0c1c5c;
    color: white;
    font-size: 13pt;
    text-decoration: none;
    margin-left: 30px;
    padding: 15px 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.contact-us-wrapper a:hover {
    background-color: #04103e;
}

.row-img {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.bottom-border {
    margin-top: 50px;
    margin-bottom: 10px;
}

.top-border {
    margin-top: 0;
    margin-bottom: 30px;
    border-top-color: black;
}

.news-nav {
    display: flex;
}

.news-nav .previous, .news-nav .next {
    width: 30px;
    height: 30px;
    border: 2px solid black;
    position: relative;
    cursor: pointer;
}

.news-nav .previous {
    margin-right: 10px;
}

.news-nav .previous::before, .news-nav .next::before {
    content: "\00a0";
    position: absolute;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.news-nav .previous::before {
    border-right: 14px solid black;
}

.news-nav .next::before {
    border-left: 14px solid black;
}

.news-nav .previous:hover, .news-nav .next:hover {
    border-color: #333333;
}

.news-nav .previous:hover::before, .news-nav .next:hover::before {
    border-left-color: #333333;
    border-right-color: #333333;
}

.news-nav .disabled {
    cursor: auto;
    border-color: #c2c1c1 !important;
}

.news-nav .disabled::before {
    border-left-color: #c2c1c1 !important;
    border-right-color: #c2c1c1 !important;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.news-dates {
    display: flex;
    align-items: end;
}

.date-info.active-date {
    color: black;
    border-color: black;
    padding: 10px 20px;
    font-size: 13pt;
}

.date-info.active-date::before {
    background-color: black;
    left: -20px;
    height: 55px;
}

.date-info {
    position: relative;
    border-top: 1px solid #9a9a9a;
    border-right: 1px solid #9a9a9a;
    font-size: 12pt;
    padding: 8px 10px;
    margin-left: 40px;
    color: #9a9a9a;
    text-decoration: none;
}

.date-info::before {
    content: "\00a0";
    position: absolute;
    width: 1px;
    height: 50px;
    background-color: #9a9a9a;
    transform: rotate(45deg);
    left: -18px;
    top: -8px;
}

a.date-info:hover {
    color: #5b5b5b;
    border-color: #5b5b5b;
}

a.date-info:hover::before {
    background-color: #5b5b5b;
}

.news-dates .date-info:first-child {
    margin-left: 0;
}

.photo-collage {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.photo-collage img {
    max-width: 450px;
}

.photo-collage img:nth-of-type(even) {
    margin-left: 15px;
}

.photo-collage img:nth-of-type(3), .photo-collage img:nth-of-type(4) {
    margin-top: 15px;
}

@media (min-width: 769px) and (max-width: 992px) {
    .contact-us-wrapper a {
        margin-left: 10px;
        padding: 15px;
        font-size: 12pt;
    }

    .photo-collage img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .contact-us-wrapper {
        padding: 15px 0;
    }

    .contact-us-wrapper a {
        font-size: 11pt;
        margin-left: 10px;
        padding: 10px 0;
        min-width: 130px;
        text-align: center;
    }

    .contact-us-wrapper p {
        text-align: right;
    }

    .big-in-center figcaption {
        font-size: 11pt;
    }

    .big-in-center img {
        max-width: 600px;
    }

    .date-info, .date-info.active-date {
        font-size: 11pt;
        padding: 7px;
        margin-left: 28px;
    }

    .date-info::before, .date-info.active-date::before {
        height: 40px;
        left: -14px;
        top: -6px;
    }

    h2 {
        font-size: 16pt;
    }

    .news-nav .previous, .news-nav .next {
        width: 26px;
        height: 26px;
    }

    .photo-collage img {
        max-width: calc(50% - 5px);
    }

    .photo-collage img:nth-of-type(even) {
        margin-left: 10px;
    }

    .photo-collage img:nth-of-type(3), .photo-collage img:nth-of-type(4) {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .contact-us-wrapper .row-img {
        display: flex;
    }
}

@media (max-width: 530px) {
    .date-info.not-active-date {
        display: none;
    }
}

@media (max-width: 480px) {
    .photo-collage img {
        max-width: 100%;
        margin-top: 5px;
    }

    .photo-collage img:nth-of-type(even) {
        margin-left: 0;
    }

    .photo-collage img:nth-of-type(3), .photo-collage img:nth-of-type(4) {
        margin-top: 5px;
    }
}