#articlePage .main-image {
    height: 550px;
    border: 3px solid #C4942F;
    text-align: center;
    margin-top: 80px;
}

#articlePage h1.page-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 100;
    margin-bottom: 50px;
    z-index: 2;
    position: relative;
}

#articlePage h1.page-title::after {
    position: absolute;
    content: "";
    background: #C4942F;
    height: 2px;
    width: 100px;
    top: 30px;
    margin-left: 20px;
}

#articlePage h1.page-title.summer::after {
    display: none;
}

#articlePage h1.page-title.summer #line {
    width: 100px;
    background: #C4942F;
    height: 2px;
    position: relative;
    bottom: 28px;
}

#articlePage .page-subtitle {
    font-family: 'Karla', sans-serif;
    font-size: 22px;
    margin-bottom: 50px;
}

#articlePage .page-content {
    font-family: 'Karla', sans-serif;
    font-size: 18px;
}

#articlePage .page-content a {
    color: #C4942F;
    text-decoration: underline;
}

#articlePage .article-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

#articlePage .article-images img {
    width: 30%;
}

#articlePage .left-side {
    width: 65%;
    display: inline-block;
}

#articlePage .right-side {
    width: 35%;
    display: inline-block;
    padding: 10px;
}

#articlePage .right-side .latest-news h2 {
    font-family: 'Karla', sans-serif;
    font-size: 36px;
    position: relative;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
}

#articlePage .right-side .latest-news h2::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #C4942F;
  height: 2px;
}

#articlePage .right-side .latest-news .single {
    margin-bottom: 30px;
}

#articlePage .right-side .latest-news .single .info,
#articlePage .right-side .latest-news .single .image {
    display: inline-block;
    width: 50%;
}

#articlePage .right-side .latest-news .single .info {
    padding: 5px;
}

#articlePage .right-side .latest-news .single .info h3 {
    font-family: 'Karla', sans-serif;
    font-size: 18px;
}

#articlePage .right-side .latest-news .single .image {
    border-bottom: 10px solid #1c1c1c;
}

#articlePage .right-side .latest-news .single .info p {
    font-family: 'Karla', sans-serif;
    font-size: 14px;
}

#articlePage .social-buttons .social-button {
  background: #C4942F;
  height: 38px;
  width: 38px;
  padding: 6px 7px;
  display: inline-block;
  margin-right: 15px;
}

#articlePage .social-buttons .social-button a {
  color: white;
}

#articlePage .social-buttons .social-button a i {
  font-size: 28px;
}

.gallery-page {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gallery-page .item {
    width: 49%;
    margin-bottom: 20px;
}

.gallery-page .item a .image-wrapper {
    height: unset;
}

#articlePage .main-image.gallery {
    height: unset;
}

#articlePage .page-subtitle-media {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    color: #C4942F;
    margin-top: 10px;
    margin-bottom: 20px;
}

/*********tabs*******/

#articlePage .title-wrapper.news .page-title {
    width: 50%;
    margin-bottom: unset;
}

#articlePage .title-wrapper.news .page-title.summer {
    display: flex;
    justify-content: flex-start;
    align-items: end;
}

#articlePage .title-wrapper.news .page-title.summer p {
    width: fit-content;
}

#articlePage .title-wrapper.news {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#articlePage .tab-buttons {
    display: flex;
    width: 50%;
    justify-content: flex-end;
    margin: 20px 0;
}

#articlePage .tab-buttons a {
    padding: 10px 20px;
    display: block;
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    background: black;
    color: white;
    border: 2px solid transparent;
    transition: all 250ms;
}

#articlePage .tab-buttons a.active {
    background: linear-gradient(90deg, rgba(215, 172, 82,1) 0%, rgba(255, 227, 171,1) 50%, rgba(215, 172, 82,1) 100%);
    color: black;
}

#articlePage .tab-buttons a:hover {
    background: white;
    color: black;
    border: 2px solid #D2A446;
}

#articlePage .tab-buttons a:not(:first-child) {
    margin-left: 10px;
}
@media (max-width: 1400px) {
    #articlePage h1.page-title {
        font-size: 40px;
    }
}


@media (max-width: 768px) {

    #articlePage .tab-buttons {
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column;
    }

    #articlePage .tab-buttons a:not(:first-child) {
        margin-left: 0;
    }

    #articlePage .tab-buttons a {
        margin-bottom: 20px;
    }

    #articlePage .main-image {
        height: unset;
        margin-top: 40px;
    }

    #articlePage .title-wrapper.news .page-title {
        width: 100%;
        font-size: 30px;
    }
}