:root {
    --dark-blue: #0b4068;
    --blue: #1f5f8d;
    --yellow: #fddf22;
    --dark-yellow: #d3b206;
    --white: #ffffff;
    --black: #000000;
    --grey: #37373b;
    --medium-grey: #d0b8bc;
    --light-grey: #f3f3f3;

    --teko: 'Teko', sans-serif;
    --oswald: 'Oswald', sans-serif;
}

body{
    font-family: var(--oswald);
}

.overflow-hidden {
    overflow: hidden;
}

.opacity-transform {
    opacity: 1;
    transition: opacity .15s;
}

.opacity-transform:hover {
    opacity: 0.7;
    transition: opacity .15s;
}

.header-top {
    position: relative;
    background-color: var(--blue);
    color: var(--yellow);
}

.header-top ul {
    list-style: none;
}

.header-top ul li {
    position: relative;
}

.header-top ul li a,
.header-top ul li span {
    padding: 7px 6px;
    text-decoration: none;
    cursor: pointer;
    font-size: 12px;
    color: var(--white);
    background-color: var(--dark-blue);
    transition: background-color .15s;
}

.header-top ul li:hover a,
.header-top ul li:hover span,
.header-top ul li a:hover,
.header-top ul li span:hover {
    background-color: var(--blue);
    transition: background-color .15s;
}

.header-top ul li:hover ul.dropdown-list {
    display: block;
}

.header-top ul li ul.dropdown-list {
    display: none;
    width: 440px;
    padding: 0;
    position: absolute;
    left: 0;
    z-index: 100;
}

.header-top ul li.right-side ul.dropdown-list {
    left: unset;
    right: 0;
}

.header-top ul li ul.dropdown-list li a {
    padding: 14px 0 14px 14px;
    text-decoration: none;
    font-size: 16px;
    background-color: var(--light-grey);
    color: var(--dark-blue);
}

.header-top ul li ul.dropdown-list li a:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transition: background-color .15s, color .15s;
}

.navigation {
    display: flex;
    justify-content: end;
    align-items: center;
}

.header-bottom {
    position: relative;
    background-color: var(--dark-blue);
    z-index: 1200;
}

.header-bottom .logotype-link {
    top: -45px;
    opacity: 1;
    transition: opacity .15s;
    z-index: 1500;
}

.header-bottom .logotype-link img {
    width: auto;
    height: 90px;
}

.header-bottom-nav {
    list-style: none;
    padding: 0;
}

.header-bottom-nav li {
    position: relative;
    width: max-content;
}

.header-bottom-nav span,
.header-bottom-nav a {
    padding: 15px 23px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--yellow);
    border-bottom: 3px solid var(--dark-blue);
    background-color: transparent;
    transition: background-color .15s, color .15s;
}

.header-bottom-nav li:hover a,
.header-bottom-nav li:hover span,
.header-bottom-nav li a:hover,
.header-bottom-nav li span:hover {
    border-bottom: 3px solid var(--yellow);
    transition: background-color .15s, color .15s;
}

.header-bottom-nav li .dropdown-container {
    display: none;
    position: absolute;
    background-color: var(--dark-blue);
    right: 0;
}

.title-group {
    font-size: 16px;
    text-decoration: underline;
    color: var(--dark-blue);
    padding-left: 20px;
    padding-top: 10px;
}

.header-bottom-nav li .dropdown-container.active {
    display: flex;
}

/*.header-bottom-nav li .dropdown-container.right-side {*/
/*    left: unset;*/
/*    right: 0;*/
/*}*/

.header-bottom-nav li .dropdown-container .dropdown-box {
    border-right: 1px solid var(--dark-blue);
}

.header-bottom-nav li .dropdown-container .dropdown-box:last-child {
    border-right: unset;
}

.header-bottom-nav li .dropdown-container ul.dropdown-list {
    width: 250px;
    list-style: unset;
    padding: 0;
}

.header-bottom-nav li .dropdown-container ul.dropdown-list li {
    width: 100%;
}

.header-bottom-nav li .dropdown-container ul.dropdown-list li a {
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: unset;
    color: var(--yellow);
    background-color: transparent;
    transition: background-color .15s, color .15s;
    border-bottom: unset;
}

.header-bottom-nav li .dropdown-container ul.dropdown-list li a:hover {
    color: var(--blue);
    background-color: var(--dark-blue);
    transition: background-color .15s, color .15s;
    border-bottom: unset;
}

.find-container{
    background-color: transparent;
    color: var(--white);
    transition: background-color .15s, color .15s;
}

.find-icon {
    height: 48px;
}

.find-icon:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    transition: background-color .15s, color .15s;
    cursor: pointer;
}

.find-icon i {
    padding-left: 14px;
    padding-right: 14px;
    border-left: 2px solid var(--white);
}

.find-form {
    display: none;
    right: 0;
}

.active-form {
    display: flex !important;
}

.find-form .find-box {
    height: 48px;
    background-color: var(--white);
}

.find-close,
.find-form .find-box button {
    padding: 0;
    cursor: pointer;
    border: transparent;
    color: var(--dark-blue);
    background: var(--white);
    transition: background-color .15s, color .15s;
}

.find-close:hover,
.find-form .find-box button:hover {
    color: var(--white);
    background: var(--dark-blue);
    transition: background-color .15s, color .15s;
}

.find-close i{
    padding-left: 14px;
    padding-right: 14px;
}

.find-form .find-box input {
    background-color: var(--white);
    border: 1px solid var(--white);
    outline: 0;
    padding: 0 14px;
}

.find-form .find-box input::placeholder {
    font-style: italic;
    color: var(--dark-blue);
}

.find-icon-border {
    border-left: 1px solid var(--dark-blue);
    padding-left: 14px;
    padding-right: 14px;
}

.find-line{
    width: 1px;
    height: 20px;
    background-color: var(--dark-blue);
}

.find-container-xs .find-icon i {
    border-left: unset;
}

.find-form-xs {
    right: unset;
}

.social-media-links a {
    color: var(--yellow);
    font-size: 24px;
    margin-left: 15px;
    margin-bottom: 2px;
}

.search-button {
    color: var(--yellow);
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
}

.header {
    background-color: var(--blue);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: 90%;
}

.bg-shadow {
    height: 300px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.6334908963585435) 0%, rgba(0,0,0,0) 41%);
}

.main-articles {
    padding-top: 144px;
    height: 744px;
}

.main-articles .one-article {
    display: block;
    height: 600px;
}

.main-articles .one-article .one-article-img {
    right: 0;
    width: 1000px;
    height: 600px;
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-articles .one-article .one-article-img.article-page {
    width: 100%;
}

.main-articles .one-article .one-article-info {
    width: 800px;
}

.main-articles .one-article .one-article-info .category {
    padding: 12px 10px;
    background-color: var(--blue);
    text-transform: uppercase;
    color: var(--white);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.8px;
}

.main-articles .one-article .one-article-info a.category {
    text-decoration: unset;
    opacity: 1;
    transition: opacity .15s;
}

.main-articles .one-article .one-article-info a.category:hover {
    opacity: 0.7;
    transition: opacity .15s;
}

.main-articles .one-article .one-article-info .info-box {
    padding: 16px 0 0 12px;
    background-color: rgba(0, 0, 0, 0.6);
}

.main-articles .one-article .one-article-info .info-box .title {
    text-transform: uppercase;
    font-family: var(--teko);
    font-weight: bold;
    font-size: 40px;
    color: var(--white);
}

.main-articles .one-article .one-article-info .info-box .lead {
    width: 100%;
    padding-right: 10px;
    padding-bottom: 20px;
    font-size: 18px;
    color: var(--white);
    box-sizing: border-box;

}

.main-articles .one-article .one-article-info .info-box .more {
    color: var(--white);
}

.main-articles .one-article .one-article-info .info-box .more .icon-more {
    width: 35px;
    height: 50px;
    font-size: 25px;
    background-color: var(--blue);
}

.main-articles .one-article:hover .one-article-info .info-box .title
{
    text-decoration: underline;
}

.main-articles .one-article:hover .one-article-info .info-box .lead {
    text-decoration: underline;
}


.main-articles .one-article:hover .one-article-info .info-box .more {
    text-decoration: underline;
}

.main-articles .one-article.one-article-page:hover .one-article-info .info-box .title
{
    text-decoration: unset;
}

.main-articles .one-article.one-article-page:hover .one-article-info .info-box .lead {
    text-decoration: unset;
}

.main-articles .one-article.one-article-page:hover .one-article-info .info-box .more {
    text-decoration: unset;
}

.main-articles-buttons .one-article-btn {
    width: 24%;
    cursor: pointer;
}

.main-articles-buttons .one-article-btn .title {
    margin-top: 10px;
    margin-bottom: 4px;
    color: var(--dark-blue)
}

.main-articles-buttons .one-article-btn.active .title {
    color: var(--white);
}

.main-articles-buttons .one-article-btn .lines {
    margin-bottom: 12px;
}

.main-articles-buttons .one-article-btn .lines .white,
.main-articles-buttons .one-article-btn .lines .red{
    height: 4px;
}

.main-articles-buttons .one-article-btn.active .lines .white {
    background-color: var(--white);
}

.main-articles-buttons .one-article-btn.active .lines .red {
    background-color: var(--blue);
}

.main-articles-buttons .one-article-btn .lines .white {
    background-color: #711525;
}

.main-articles-buttons .one-article-btn .lines .red {
    background-color: #591823;
}

.main-articles-buttons .one-article-btn .title .small-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-articles-buttons .share-text {
    color: var(--white);
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    text-decoration: unset;
    opacity: 1;
    transition: opacity.15s;
}

.social-media:hover {
    opacity: 0.6;
    transition: opacity.15s;
}

.social-media.facebook {
    background-color: #5580bc;
}

.social-media.twitter {
    background-color: #31c0df;
}

.social-media.instagram {
    background-color: #E1306C;
}

.social-media.website {
    background-color: #27374D;
}

.social-media.mail {
    background-color: #526D82;
}

.bg-navigation {
    display: none;
}

.bg-grey {
    background-color: var(--light-grey);
}

.bg-shadow-2 {
    -webkit-box-shadow: 0 0 31px -9px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 31px -9px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 31px -9px rgba(0, 0, 0, 0.6);
}

.category-btn {
    width: 25%;
    color: var(--white);
    background-color: var(--blue);
    text-transform: uppercase;
    text-decoration: unset;
    font-size: 22px;
    padding: 10px;
    opacity: 1;
    transition: color .15s, background-color .15s;
}

.category-btn:nth-child(2n) {
    background-color: var(--dark-blue);
}

.category-btn:hover {
    color: var(--dark-blue);
    background-color: var(--white);
    transition: color .15s, background-color .15s;
}

.one-small-article {
    height: 100%;
    background-color: var(--white);
    text-decoration: unset;
}

.one-small-article:hover {
    color: var(--grey);
    text-decoration: underline;
}

.one-small-article:hover .article-box .more {
    color: var(--dark-blue);
    text-decoration: underline;
}

.article-box {
    height: 100%;
    color: var(--grey);
    padding: 15px 15px;
    box-sizing: border-box;
    text-decoration: unset;
}

.article-box .category {
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--grey);
    font-size: 16px;
    font-weight: bold;
}

.article-box .title {
    margin-bottom: 6px;
    font-family: var(--teko);
    font-weight: bold;
}

.article-box .lead {
    margin-bottom: 6px;
    font-size: 16px;
}

.article-box .more {
    height: max-content;
    color: var(--dark-blue);
    font-style: italic;
}

.article-box .more .icon {
    color: var(--blue);
    text-decoration: unset;
}

.archive-link {
    color: var(--grey);
    font-size: 18px;
    font-weight: bold;
    text-decoration: unset;
}

.archive-link:hover {
    text-decoration: underline;
}

.main-one-box {
    height: 100%;
    background-color: var(--white);
}

.main-one-box.bg-grey {
    height: 100%;
    background-color: var(--light-grey);
}

.main-one-box h3 {
    margin-bottom: 0;
    padding: 15px 20px;
    color: var(--grey);
    font-weight: bold;
}

.main-one-box .image-link img {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity .15s;
}

.main-one-box .image-link:hover {
    opacity: 0.7;
    transition: opacity .15s;
}

.main-one-box .scores,
.main-one-box .tables {
    padding: 15px;
    box-sizing: border-box;
}

.main-one-box .scores .one-match {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 4px;
}

.main-one-box .scores .one-match:last-child {
    margin-bottom: 0;
}

.main-one-box .scores .one-match .club {
    width: 30%;
    color: var(--grey);
    line-height: 20px;
}

.main-one-box .scores .one-match .club .left-club {
    text-align: right;
}

.main-one-box .scores .one-match .score,
.main-one-box .scores .one-match .date {
    width: 110px;
    margin-left: 10px;
    margin-right: 10px;
    color: var(--dark-blue);
    font-family: var(--teko);
}


.main-one-box .scores .one-match .score span {
    width: 50px;
    height: 35px;
    padding-top: 4px;
    font-size: 33px;
    background-color: var(--light-grey);
}

.main-one-box .scores .one-match .date {
    font-size: 16px;
    line-height: 14px;
    text-align: center;
}

.main-one-box .tables {
    width: 100%;
}

.main-one-box .one-line {
    width: 100%;
}

.main-one-box .one-line:nth-child(2n) {
    background-color: var(--light-grey);
}

.main-one-box .one-line .place {
    width: 25px;
}

.main-one-box .one-line .name {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-one-box .one-line .match {
    padding-left: 10px;
}

.main-one-box .one-line .points {
    width: 35px;
    padding-left: 10px;
}

.partners-container .partners-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px 20px;
}

.partners-container .partners-box img {
    max-width: 250px;
    max-height: 100px;
}

footer {
    padding-top: 50px;
    color: var(--white);
}

.bg-dark-red {
    background-color: var(--dark-blue);
}

.footer-logo {
    width: 75%;
    height: auto;
}

.footer-links-box h3 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.footer-links-box ul {
    padding: 0;
    margin-bottom: 30px;
    list-style: none;
}

.footer-links-box ul li a {
    color: var(--medium-grey);
    text-decoration: none;
}

.footer-links-box ul li a:hover {
    text-decoration: underline;
}

.page-title-bg {
    padding-top: 174px;
    padding-bottom: 40px;
}

.page-title-bg h3 {
    margin-bottom: 20px;
    font-size: 48px;
    font-family: var(--teko);
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--white);
}

.page-title-bg p {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--white);
}

.archive-paginate .active>.page-link,
.archive-paginate .page-link.active {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
}

.archive-paginate .page-link {
    color: var(--white);
    border-color: var(--dark-blue);
    background-color: var(--blue);
}

.archive-paginate .page-link:hover {
    color: var(--white);
    background-color: var(--dark-blue);
}

.archive-paginate .disabled .page-link {
    background-color: var(--white);
    color: var(--dark-blue);
}

.article-container {
    padding: 20px;
}

.article-container .date {
    font-style: italic;
}

.article-container .source-photo {
    font-style: italic;
    color: var(--dark-blue);
}

.article-container .place {
    color: var(--dark-blue);
}

.article-container .content h1,
.article-container .content h2,
.article-container .content h3,
.article-container .content h4,
.article-container .content h5,
.article-container .content h6 {
    font-family: var(--teko) !important;
    font-weight: bold;
}

.article-container .content p {
    font-family: var(--oswald) !important;
    margin: 0;
    padding: 0 0 10px 0;
}

.article-container .content span {
    font-family: var(--oswald) !important;
}

.article-container .content a {
    font-family: var(--oswald) !important;
    color: var(--dark-blue);
    text-decoration: unset;
}

.article-container .content a:hover {
    text-decoration: underline;
}

.article-container .content ul {
    font-family: var(--oswald) !important;
    margin-bottom: 0;
}

.article-container .content blockquote {
    font-family: var(--oswald) !important;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    font-style: italic;
}

.article-container .content img {
    max-width: 100% !important;
    height: auto !important;
}

.article-container .content table {
    max-width: 100% !important;
    border: unset;
}

.article-container .content table tbody tr:nth-child(2n) {
    background-color: var(--light-grey);
}

.article-container .files .title {
    display: block;
    margin-top: 30px;
    color: var(--dark-blue);
    font-family: var(--teko) !important;
    text-transform: uppercase;
    font-size: 20px;
}

.article-container .files {
    margin-bottom: 30px;
}

.article-container .files .files-list .one-file {
    display: flex;
    justify-content: start;
    width: 33%;
}

.article-container .files .files-list .one-file-box {
    margin-bottom: 5px;
    text-decoration: unset;
    opacity: 1;
    transition: opacity .15s;
}

.article-container .files .files-list .one-file-box:hover {
    text-decoration: underline;
    color: unset;
}

.article-container .files .files-list .one-file-box img {
    width: auto;
    height: 60px;
}

.article-container .files .files-list .one-file-box .filename {
    margin-top: 5px;
    color: var(--grey);
    line-break: anywhere;
}

.article-container .files .files-list .one-file-box:hover {
    text-decoration: underline;
    color: unset;
}

.article-container .files .files-list .one-file-box .download-text {
    color: var(--dark-blue);
}

.article-container .files .files-list .one-file-box:hover .download-text {
    text-decoration: underline;
}

.article-container .tags-box .title {
    display: block;
    margin-top: 30px;
    color: var(--dark-blue);
    font-family: var(--teko);
    text-transform: uppercase;
    font-size: 20px;
}

.article-container .tags-box .list a {
    color: var(--dark-blue);
    font-style: italic;
    margin-right: 10px;
    text-decoration: unset;
}

.article-container .tags-box .list a:hover {
    text-decoration: underline;
}

.article-container .content .gallery-container {
    width: 100%;
}

.article-container .content .gallery-container img {
    width: 32%;
    margin: 1px;
    border: 1px solid var(--blue);
    box-sizing: border-box;
    cursor: pointer;
    opacity: 1;
    transition: opacity .15s;
}

.article-container .content .gallery-container img:hover {
    opacity: 0.7;
    transition: opacity .15s;
}

.read-more {
    padding: 10px 20px;
    background-color: var(--blue);
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
}

.breadcrumb-link {
    color: var(--white);
    text-decoration: unset;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.person-title {
    padding: 10px 15px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}

.one-nation-person .person-box {
    padding: 15px 15px;
}

.one-nation-person .name {
    font-weight: bold;
    margin-bottom: 0;
}

.one-nation-person .position {
    text-transform: uppercase;
    font-weight: bold;
}

.one-nation-person a {
    text-decoration: unset;
    font-weight: bold;
    color: var(--black);
}

.one-nation-person a:hover {
    text-decoration: underline;
}

.make-short-name {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.more-table-info {
    color: var(--dark-blue);
    font-style: italic;
    font-size: 14px;
}

.content .one-round {
    border-bottom: 1px solid var(--dark-blue);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.content .one-round:last-child {
    border-bottom: unset;
}

.content .one-round .title {
    font-family: var(--teko);
    font-weight: bold;
}

hr {
    border-top: 1px solid var(--dark-blue) !important;
    opacity: 1;
}

.content .one-round .one-match {
    margin-bottom: 10px;
}

.content .one-round .one-match .home {
    width: 33%;
    font-size: 16px;
    text-align: right;
    line-height: 16px;
}

.content .one-round .one-match .away {
    width: 33%;
    font-size: 16px;
    line-height: 16px;
}

.content .one-round .one-match .score-box {
    width: 110px;
    margin-left: 10px;
    margin-right: 10px;
}

.content .one-round .one-match .score-box {
    width: 104px;
}

.content .one-round .one-match .score-box .score {
    width: 50px;
    height: 38px;
    background-color: var(--light-grey);
    color: var(--dark-blue);
    font-family: var(--teko);
    font-size: 26px;
}

.content .one-round .one-match .date {
    margin-left: 4px;
    width: 111px;
}

.content .one-round .one-match .more-match-info {
    width: calc(66% + 346px);
    font-style: italic;
    color: var(--dark-blue);
}

.content .one-round .one-match .date-xs {
    display: none;
    font-style: italic;
}

.article-container .content .club-logotype {
    width: 400px;
}

.modal-content {
    background-color: var(--blue);
    color: var(--white);
}

.modal-header .btn-close {
    color: var(--white);
}

.gallery-modal-img {
    max-width: 100%;
}

.contact-logo {
    width: 300px;
    height: auto;
    margin-bottom: 50px;
}

.article-container .content .social-media-box a {
    color: var(--black);
    font-size: 24px;
    margin-right: 8px;
}

.cookies-box {
    width: 80%;
    padding: 5px 30px;
    background-color: var(--blue);
    color: var(--white);
}

.cookies-box .close-btn {
    margin-top: 0;
    margin-bottom: -20px;
    margin-right: -15px;
    color: var(--white);
    cursor: pointer;
}

.cookies-box a {
    color: var(--white);
    text-decoration: underline;
}

.next-match-container {
    /*background-color: rgba(197, 9, 40, 0.9);*/
    background-color: var(--blue);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: 90%;

}

.next-match-container .header-title {
    padding: 2px 30px;
    font-size: 30px;
    color: var(--dark-blue);
    background-color: var(--white);
    text-align: center;
    font-weight: bold;
}

.next-match-container .competition-title {
    text-align: center;
    font-size: 16px;
    color: var(--white);
    font-weight: bold;
}

.next-match-container .home,
.next-match-container .away {
    width: 30%;
}

.next-match-container .home .flag,
.next-match-container .away .flag {
    width: 100px;
    height: 100px;
    /*background-color: var(--white);*/
}

.next-match-container .home img,
.next-match-container .away img {
    width: 100px;
    height: auto;
    /*border: 3px solid var(--white);*/
}

.next-match-container .tour img {
    width: 130px;
    height: auto;
}

.next-match-container .home .club,
.next-match-container .away .club {
    color: var(--white);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
}

.next-match-container .date {
    color: var(--white);
    font-weight: bold;
}

.next-match-container .place-box {
    color: var(--white);
    font-weight: bold;
    text-align: center;
}

.next-match-container .ticket-link {
    padding: 3px 8px;
    color: var(--dark-blue);
    font-weight: bold;
    text-align: center;
    background-color: var(--white);
    text-decoration: unset;
}

.next-match-container .ticket-link:hover {
    text-decoration: underline;
}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 5px;
    color: var(--white);
    background-color: var(--blue);
    z-index: 3000;
    cursor: pointer;
    opacity: 1;
    transition: .15s opacity;
}

.scroll-to-top img {
    margin-top: 10px;
    width: 25px;
    height: auto;
}

.scroll-to-top:hover {
    opacity: 0.6;
    transition: .15s opacity;
}

.scroll-to-top.active {
    display: flex;
}

.social-media-container {
    position: fixed;
    top: calc(50vh - (240px / 2));
    z-index: 2000;
}

.social-media-container a {
    width: 45px;
    height: 40px;
    margin-left: -5px;
    padding-left: 5px;
    color: var(--white);
    text-decoration: unset;
    transition: margin-left .15s;
    font-size: 24px;
}

.social-media-container a:hover {
    margin-left: 0;
    transition: margin-left .15s;
}

.social-media-container a.fb {
    background-color: #567fbd;
}

.social-media-container a.ig {
    background-color: #5582a3;
}

.social-media-container a.tt {
    background-color: #31c0e0;
}

.social-media-container a.yt {
    background-color: #ca3032;
}

.social-media-container a.tiktok {
    background-color: #120a17;
}

.social-media-container a.linkedin {
    background-color: #0077B5;
}

.social-media-container.xs-sm {
    position: unset;
    top: unset;
    z-index: 2000;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-media-container.xs-sm a {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 0;
    font-size: 14px;
}

.footer-text {
    color: var(--light-grey);
    font-size: 11px;
}

.main-articles-list {
    width: 70%;
    position: relative;
}

.three-dots {
    display: none;
}

.main-article-one {
    display: none;
    width: 100%;
    height: 525px;
    position: relative;
}

.main-article-one.active {
    display: flex;
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-article-one a {
    text-decoration: unset;
}

.main-article-one h1 {
    color: var(--yellow);
}

.main-article-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 40px;
    box-sizing: border-box;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.6334908963585435) 0%, rgba(0,0,0,0) 40%);
    position: absolute;
}

.main-article-one .category-name {
    padding: 4px 8px;
    background-color: var(--dark-blue);
    color: var(--yellow);
}

.main-article-one .art-date {
    color: var(--yellow);
    font-weight: 300;
    font-size: 13px;
}

.main-articles-list-title {
    width: 30%;
}

.one-main-article-title {
    height: 175px;
    background-color: var(--dark-blue);
    border-left: 5px solid var(--blue);
    cursor: pointer;
}

.one-main-article-title.active {
    background-color: var(--dark-yellow);
    border-left: 5px solid var(--yellow);
}

.one-main-article-title .art-title-date{
    color: var(--dark-yellow);
}

.one-main-article-title h2{
    color: var(--yellow);
}

.one-main-article-title:hover .art-title-date{
    color: var(--yellow);
}

.one-main-article-title.active .art-title-date,
.one-main-article-title.active h2{
    color: var(--dark-blue);
}

.one-main-article-title .title-content {
    width: 80%;
    border-bottom: 1px solid var(--blue);
}

.one-main-article-title:last-child .title-content {
    border-bottom: 0;
}

.one-main-article-title.active .title-content {
    border-bottom: 0;
}

.one-main-article-title {
    height: 175px;
}

.shadow-container {
    -webkit-box-shadow: 0px 0px 15px -6px rgba(11, 64, 104, 1);
    -moz-box-shadow: 0px 0px 15px -6px rgba(11, 64, 104, 1);
    box-shadow: 0px 0px 15px -6px rgba(11, 64, 104, 1);
}

.current-matches-box {
    padding: 15px;
}

.head-title {
    width: 100%;
    background-color: var(--dark-blue);
    color: var(--yellow);
    font-weight: 300;
}

.head-title .h-line {
    width: 6px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--yellow);
}

.current-matches-box .c-one-match {
    width: 33%;
    box-sizing: border-box;
    border-right: 1px solid var(--blue);
    color: var(--dark-blue);
}

.current-matches-box .c-one-match:last-child {
    border-right: unset;
}

.current-matches-box .c-one-match .c-club {
    display: flex;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.current-matches-box .c-one-match .c-club img {
    max-width: 80px;
    max-height: 80px;
    height: auto;
}

.current-matches-box .c-one-match .d-details .c-date {
    font-size: 12px;
}

.current-matches-box .c-one-match .d-details .c-link {
    font-size: 14px;
    text-decoration: unset;
    color: var(--dark-blue);
}

.oa-link {
    text-decoration: unset;
}

.other-article-one .oa-category {
    padding: 2px 4px;
    background-color: var(--dark-blue);
    color: var(--yellow);
}

.oa-date {
    font-size: 12px;
    color: var(--dark-blue);
}

.oa-title {
    font-weight: 300;
    color: var(--dark-blue);
}

.opacity-link {
    opacity: 1;
}

.opacity-link:hover {
    opacity: 0.7;
}

.show-other {
    text-decoration: unset;
    font-size: 16px;
    color: var(--dark-blue);
}

footer {
    border-top: 6px solid var(--yellow);
    background-color: var(--dark-blue);
}

.f-links,
.f-signature-box {
    height: 100px;
}

.f-links a {
    color: var(--yellow);
    font-size: 18px;
    text-decoration: unset;
    font-weight: 300;
}

.f-signature {
    color: var(--yellow);
    font-size: 18px;
    font-weight: 300;
}

.main-table {
    color: var(--dark-blue);
}

.main-table.include {
    width: 500px;
    overflow-x: auto;
}

.main-table .th {
    font-weight: 600;
}


.main-table tr th,
.main-table tr td {
    padding: 4px;
}

.main-table .t-position {
    text-align: right;
    padding: 0 15px;
}

.main-table .t-club {
    width: 90%;
}

.main-table .t-stats {
    padding: 0 15px;
    text-align: center;
}

.main-banner img {
    max-width: 100%;
    height: auto;
}

.sponsors-box .one-sponsor {
    width: 30%;
}

.sponsors-box .one-sponsor a,
.sponsors-box .one-sponsor img {
    max-width: 100%;
    max-height: 220px;
    height: auto;
}

.rugby-academy {
    padding: 20px 15px;
    color: var(--dark-blue);
}

.ra-img {
    width: 300px;
    height: auto;
}

.header-page {
    background-color: var(--blue);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--blue);
    opacity: 0.8;
}

.hp-content {
    color: var(--yellow);
    z-index: 1000;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0;
}

.archive-paginate .active>.page-link, .archive-paginate .page-link.active {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--yellow);
}

.archive-paginate .disabled .page-link {
    border-color: var(--dark-blue);
    color: var(--dark-blue);
    background-color: var(--yellow);
}

.archive-paginate .page-link,
.archive-paginate .page-link:hover {
    color: var(--yellow);
}

.mc-sidebar.current-matches-box .c-one-match {
    width: 100%;
}

.current-matches-box .c-one-match .smc-score {
    font-size: 20px;
}

.hp-category {
    padding: 4px 8px;
    background-color: var(--dark-blue);
    color: var(--yellow);
    text-decoration: unset;
}

.a-tags-box a {
    padding: 4px 8px;
    background-color: var(--dark-blue);
    color: var(--yellow);
    text-decoration: unset;
}

.next-previous-box span {
    color: var(--blue);
}

.next-previous-box a {
    color: var(--dark-blue);
    text-decoration: unset;
    font-size: 22px;
}

.content a {
    color: var(--dark-blue);
}

.link-box a {
    color: var(--dark-blue);
    text-decoration: unset;
}

.color-dark-blue {
    color: var(--dark-blue);
}

.content {
    color: var(--dark-blue) !important;
}

.content .calendar .one-round .title {
    color: var(--dark-blue);
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    text-decoration: underline;
}

.content .calendar .one-round .one-match {
    color: var(--dark-blue);
    font-weight: 300;
}

.content .one-round .one-match .score-box .score {
    background-color: unset;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    font-family: var(--oswald) !important;
    font-weight: bold;
    color: var(--dark-blue);
}

.content p {
    font-family: var(--oswald) !important;
    margin: 0;
    padding: 0 0 10px 0;
    color: var(--dark-blue);
    font-weight: 300;
}

.content span {
    font-family: var(--oswald) !important;
}

.content a {
    font-family: var(--oswald) !important;
    color: var(--dark-blue);
    text-decoration: unset;
}

.content a:hover {
    text-decoration: underline;
}

.content ul {
    font-family: var(--oswald) !important;
    margin-bottom: 0;
}

.content blockquote {
    font-family: var(--oswald) !important;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    font-style: italic;
}

.content img {
    max-width: 100% !important;
    height: auto !important;
}

.content table {
    color: var(--dark-blue);
    max-width: 100% !important;
    border: unset;
    font-weight: 300;
}

.content table tbody tr:nth-child(2n) {
    background-color: var(--light-grey);
}

.people-box {
    color: var(--dark-blue);
    padding-left: 5px;
}

.people-box a {
    color: var(--dark-blue);
    text-decoration: unset;
}

.people-box .phone-number {
    font-weight: 400;
}

.people-box .name {
    font-weight: 400;
}

.people-box .position {
    font-weight: 300;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.os-img-box {
    width: 40%;
}

.one-sponsor-box a {
    color: var(--dark-blue);
    text-decoration: unset;
}

.os-info {
    width: 60%;
    padding: 10px;
    box-sizing: border-box;
}

.content .lead {
    font-weight: 300;
}

/* RWD */

@media (max-width: 1600px) {
    .header-bottom .logotype-link img {
        height: 90px;
    }

    .header-bottom-nav span, .header-bottom-nav a{
        padding: 15px 23px;
    }

    .main-articles {
        height: 604px;
        padding-top: 104px;
    }

    .main-articles .one-article {
        height: 500px;
    }

    .main-articles .one-article .one-article-img {
        height: 500px;
    }

    .page-title-bg {
        padding-top: 134px;
        padding-bottom: 40px;
    }
}

@media (max-width: 1400px) {
    .header-bottom .logotype-link img {
        height: 85px;
    }

    .header-bottom-nav span, .header-bottom-nav a{
        padding: 15px 23px;
    }

    .main-articles {
        padding-top: 104px;
        height: 604px;
    }

    .main-articles .one-article {
        height: 500px;
    }

    .main-articles .one-article .one-article-img {
        height: 500px;
    }

    .main-one-box h3 {
        font-size: 24px;
    }

    .main-one-box .scores .one-match .club {
        width: 35%;
        font-size: 14px;
    }

    .main-one-box .scores .one-match .score,
    .main-one-box .scores .one-match .date {
        width: 65px;
    }

    .main-one-box .scores .one-match .score span {
        width: 30px;
        font-size: 26px;
    }

    .content .one-round .one-match .home {
        width: 29%;
    }

    .content .one-round .one-match .away {
        width: 29%;
    }

    .content .one-round .one-match .more-match-info {
        width: calc(58% + 124px);
    }

}

@media (max-width: 1200px) {

    .header-bottom-nav span, .header-bottom-nav a{
        padding: 15px 18px;
    }

    .main-articles .one-article .one-article-img {
        width: 800px;
    }

    .article-box .title {
        line-height: 28px;
    }

    .content .one-round .one-match .score-box {
        width: 64px;
    }

    .content .one-round .one-match .score-box .score {
        width: 30px;
    }

    .content .one-round .one-match .more-match-info {
        width: calc(58% + 305px);
    }

}

@media (max-width: 991px) {
    .header-bottom .logotype-link img {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .navbar-icon {
        width: 40px;
        height: 40px;
        color: var(--yellow);
        font-size: 26px;
    }

    .navbar-icon .close {
        display: none;
    }

    .navbar-icon.active .open {
        display: none;
    }

    .navbar-icon.active .close {
        display: block;
    }

    .header-bottom-nav li:hover a,
    .header-bottom-nav li:hover span,
    .header-bottom-nav li a:hover,
    .header-bottom-nav li span:hover {
        background-color: transparent;
        color: var(--blue);
    }

    .navigation {
        display: none;
        position: absolute;
        top: 40px;
        right: 0;
    }

    .navigation.active {
        display: block;
        background-color: var(--dark-blue);
        width: 250px;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1400;
    }

    .navigation .header-bottom-nav li {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        color: var(--yellow);
    }

    .navigation .header-bottom-nav {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding-bottom: 10px;
    }

    .navigation .header-bottom-nav span,
    .navigation .header-bottom-nav a {
        width: 100%;
        text-align: start;
        padding: 10px;
        color: var(--yellow);
    }

    .navigation .header-bottom-nav li.active a,
    .navigation .header-bottom-nav li.active span,
    .navigation .header-bottom-nav li.active i {
        color: var(--yellow);
    }

    .navigation .header-bottom-nav li i {
        margin-right: 10px;
    }

    .navigation .header-bottom-nav li.active i {
        transform: rotateZ(-180deg);
    }

    .navigation .header-bottom-nav span:hover {
        background-color: transparent;
    }

    .navigation .header-bottom-nav a:hover {
        background-color: var(--dark-blue);
        color: var(--yellow);
    }

    .navigation .header-bottom-nav li.active .dropdown-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        position: unset;
    }

    .navigation .header-bottom-nav li.active .dropdown-container ul.dropdown-list {
        width: 100%;
    }

    .navigation .header-bottom-nav li.active .dropdown-container .dropdown-box {
        width: 100%;
        border-right: unset;
    }

    .navigation .header-bottom-nav li.active .dropdown-container ul.dropdown-list li a {
        padding-left: 40px;
        width: 100%;
        font-weight: 300;
    }

    .navigation .header-top-list {
        flex-direction: column;
        align-items: start;
        list-style: none;
        padding-left: 0;
        padding-top: 10px;
        border-top: 1px solid var(--blue);
    }

    .navigation .header-top-list li {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        color: var(--blue);
    }

    .navigation .header-top-list li a,
    .navigation .header-top-list li span {
        width: 100%;
        padding: 10px;
        color: var(--blue);
        text-decoration: none;
        cursor: pointer;
        font-size: 16px;
        background-color: transparent;
        transition: background-color .15s, color .15s;
    }

    .navigation .header-top-list li a:hover {
        background-color: var(--dark-blue);
        color: var(--white);
    }

    .header-top-list .dropdown-list {
        display: none;
        width: 100%;
        padding: 0;
    }

    .header-top-list li.active .dropdown-list {
        display: block;
    }

    .header-top-list li.active {
        background-color: var(--white);
    }

    .header-top-list li.active a,
    .header-top-list li.active span,
    .header-top-list li.active i {
        color: var(--dark-blue);
    }

    .header-top-list li i {
        margin-right: 10px;
    }

    .header-top-list li.active i {
        transform: rotateZ(-180deg);
    }

    .header-top-list li .dropdown-list li a {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-top-list li .dropdown-list li a:hover {
        background-color: var(--dark-blue);
        color: var(--white);
    }

    .bg-navigation.active {
        display: block;
        position: fixed;
        top: 78px;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.7);
    }

    .main-articles {
        padding-top: 80px;
        height: calc(100vh - 176px);
    }

    .main-articles .one-article,
    .main-articles .one-article .one-article-img {
        height: calc(100vh - 176px - 78px);
    }

    .bg-shadow {
        background: linear-gradient(0deg, rgba(0,0,0,0.6334908963585435) 0%, rgba(0,0,0,0) 100%);
    }

    .main-articles .one-article .one-article-info,
    .main-articles .one-article .one-article-img {
        width: 100%;
    }

    .main-articles .one-article .one-article-info .category {
        padding: 8px 6px;
        font-size: 16px;
    }

    .main-articles-buttons .one-article-btn {
        width: 100%;
    }

    .main-articles-buttons .one-article-btn .title {
        margin-top: 6px;
    }

    .main-articles-buttons .one-article-btn .lines {
        margin-bottom: 6px;
    }

    .category-btn {
        width: 100%;
    }

    .one-small-article {
        border-bottom: 2px solid var(--grey);
    }

    .read-more-articles .one-small-article {
        border-bottom: unset;
    }

    .main-one-box .image-link {
        width: 100%;
    }

    .page-title-bg {
        padding-top: 114px;
        padding-bottom: 40px;
    }

    .article-container .files .files-list .one-file {
        width: 50%;
    }

    .make-short-name.xl {
        width: 280px
    }

    .header-bottom .logotype-link img {
        height: 70px;
    }

    .title-group {
        padding-left: 10px;
    }

    .next-match-container .home img,
    .next-match-container .away img,
    .next-match-container .tour img {
        width: 60px;
    }

    .next-match-container .home .club, .next-match-container .away .club {
        font-size: 18px;
    }

    .main-articles-list-title {
        display: none;
    }

    .main-articles-list {
        width: 100%;
    }

    .three-dots {
        display: flex;
        flex-direction: column;
        top: 238px;
        right: 10px;
    }

    .td-dots {
        width: 16px;
        height: 16px;
        margin-top: 5px;
        margin-bottom: 5px;
        border-radius: 8px;
        border: 1px solid var(--yellow);
        cursor: pointer;
    }

    .td-dots.active {
        background-color: var(--yellow);
    }

    .current-matches-box .c-one-match {
        width: 100%;
        border-right: unset;
        margin-bottom: 30px;
    }

    .current-matches-box .c-one-match:last-child {
        margin-bottom: 0;
    }

    .hide-900 {
        display: none;
    }

    .sponsors-box .one-sponsor {
        width: 50%;
    }

    .sponsors-box .one-sponsor a, .sponsors-box .one-sponsor img {
        max-height: 150px;
    }

}

@media (max-width: 768px) {
    .main-articles .one-article .one-article-info .category {
        font-size: 14px;
    }

    .main-articles .one-article .one-article-info .info-box .title {
        font-size: 30px;
    }

    .main-articles .one-article .one-article-info .info-box .lead {
        margin-bottom: 0;
        padding-bottom: 0;
        font-size: 16px;
    }

    .main-one-box h3 {
        font-size: 20px;
    }

    .include-table {
        font-size: 13px;
    }

    .make-short-name.xl {
        width: 160px
    }

    .content .one-round .one-match .date {
        display: none;
    }

    .content .one-round .one-match .date-xs {
        display: block;
        text-align: center;
    }

    .content .one-round .one-match .home,
    .content .one-round .one-match .away {
        width: calc(50% - 40px);
    }

    .content .one-round .one-match .score-box {
        width: 70px;
    }

    .content .one-round .one-match .more-match-info {
        width: 100%;
    }

    .next-match-container .header-title {
        padding: 2px 20px;
        font-size: 22px;
    }

    .f-links,
    .f-signature-box {
        height: auto;
    }

    .f-links a {
        margin-bottom: 12px;
    }

    .f-links a:first-child {
        margin-top: 12px;
    }

    .f-signature-box {
        margin-bottom: 12px;
    }

    .one-sponsor-box {
        align-items: center;
    }

    .os-img-box {
        width: 60%;
    }

    .os-info {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .article-container .files .files-list .one-file {
        width: 100%;
    }

    .include-table {
        font-size: 13px;
    }

    .make-short-name.xl {
        width: 75px
    }

    .article-container .content .gallery-container img {
        width: 49%;
    }

    .social-media-container {
        display: none;
    }

    .sponsors-box .one-sponsor {
        width: 100%;
    }

    .sponsors-box .one-sponsor a,
    .sponsors-box .one-sponsor img {
        max-height: 200px;
    }

    .hide-570 {
        display: none;
    }

}

@media (max-width: 450px) {
    .hide-450 {
        display: none;
    }

    .os-img-box {
        width: 90%;
    }
}
