/*
Theme Name: AF Beja
Text Domain: afbeja
Author: Webcomum
Author URI: https://www.webcomum.com
Version: 1.0
*/

/* -------------------------------------------*--------------*--------------------------------------------------*/
/*                    -----------------------*   CUSTOM CSS   *------------------------                         */
/* -------------------------------------------*--------------*--------------------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
/*
font-family: 'Ubuntu', sans-serif;
*/

:root {
  --red: #dc0101;
  --dark: #070806;
  --grey: #777;
  --tr: all .3s ease-in-out;
  --tr2: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  --tr3: all .7s cubic-bezier(0.7, 0, 0.3, 1);
  --tr4: all .7s ease-in-out;
}

html,
body {
	overflow-x: hidden;
}

html {
  box-sizing: border-box;
}

body {
	font-family: 'Ubuntu', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--dark);
	margin: 0;
	padding: 0;
	background-color: #fff;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
    -webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: unset;
	color: var(--red);
	font-weight: 700;
	display: inline-block;
}

a:active,
a:focus {
	outline: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Ubuntu', sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: var(--dark);
	margin: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

p {
	margin: 0;
}

input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus,
button:active,
button:focus {
	outline: 0;
}

button {
	border: 0;
    background-color: transparent;
}

.section {
	padding-left: 10%;
	padding-right: 10%;
}

.section-small {
	padding-left: 18%;
	padding-right: 18%;
}

.padding {
	padding-top: 100px;
	padding-bottom: 100px;
}

img {
	width: 100%;
	height: auto;
}

.btn {
	background-color: var(--red);
	color: #fff;
	padding: 9px 25px;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
    align-items: center;
}

.btn-white {
	background-color: #fff;
	color: var(--red);
}

.btn-border {
	background-color: transparent;
	color: var(--red);
	border: 1px solid var(--red);
}

.with-icon {
	padding: 9px 16px;
}

.with-icon:after {
	content: '';
	display: inline-block;
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left: 35px;
}

.btn-arrow:after {
    width: 8px;
    height: 13px;
}

.btn-x:after {
    width: 13px;
    height: 13px;
}

.white-arrow:after {
	background-image: url(assets/img/chevron-white.svg);
}

.red-arrow:after {
	background-image: url(assets/img/chevron-red.svg);
}

.red-x:after {
	background-image: url(assets/img/x-red.svg);
}

header {
	position: relative;
	z-index: 2;
}

.header-top {
	border-bottom: 1px solid #ddd;
	position: relative;
}

.header-top-inner {
	height: 56px;
	display: flex;
	align-items: center;
}

.header-top-inner p {
	color: var(--grey);
	font-size: 12px;
	margin-right: 150px;
}

.header-clubs {
	display: flex;
}

.header-clubs-item {
	display: inline-block;
	margin-right: 80px;
}

.header-clubs-item img {
	height: 30px;
	width: auto;
	display: flex;
}

.header-bottom {
	display: grid;
	grid-template-columns: 1fr 160px 1fr;
	grid-gap: 20px;
}

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

.header-bottom li {
	display: inline-block;
}

.header-bottom a {
	padding: 10px 0;
}

.header-bottom-right {
	text-align: right;
	display: flex;
	justify-content: flex-end;
}

.header-bottom-center {
	width: 154px;
    height: 152px;
    background-color: #fff;
    border-radius: 50%;
    padding: 30px;
    margin-top: -18px;
}

.header-bottom-center img {
	margin-top: -8px;
}

.header-bottom-menu {
	padding-top: 28px;
}

.header-bottom-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--tr);
}

.header-bottom-menu a:hover {
    color: var(--red);
}

.header-bottom-menu .menu-item-has-children > a:after,
.mobile-menu .menu-item-has-children > a:after {
	content: '';
    background-image: url(assets/img/chevron-black.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 11px;
    height: 6px;
    display: inline-block;
    margin-left: 10px;
}

.mobile-menu .menu-item-has-children > a:after {
	filter: invert(1);
}

.header-bottom-left li {
	margin-right: 21px;
}

.header-bottom-right li {
	margin-left: 21px;
}

.header-bottom-right .sub-menu {
	text-align: left;
}

.header-bottom-right .sub-menu li {
	margin-left: 0;
	margin-right: 21px;
}

.menu-item-has-children {
	position: relative;
}

.sub-menu {
	position: absolute;
	left: -18px;
	top: 19px;
	background-color: #fff;
	padding: 17px !important;
	opacity: 0;
	visibility: hidden;
	transition: var(--tr);
	padding-top: 22px !important;
}

.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 29px;
}

.menu-item-has-children:hover > a {
	color: var(--red);
}

.menu-item-has-children:hover > a {
	color: var(--red);
}

.sub-menu li {
	display: block;
}

.sub-menu a {
	display: inline-block;
	padding: 3px 0;
	white-space: nowrap;
}

.sub-menu li:last-child a {
	padding-bottom: 0;
}

.site-content {
	margin-top: -46px;
}

.home-slider {
	position: relative;
	background-color: var(--red);
	overflow: hidden;
}

.home-slider-item {
	padding-top: 220px;
	padding-bottom: 70px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex !important;
	align-items: flex-end;
}

.home-slider-content {
	margin-left: 10%;
	width: 40%;
	color: #fff;
	position: relative;
}

.home-slider-content h1 {
	font-size: 50px;
	color: #fff;
	text-transform: initial;
}

.home-slider-content p {
	text-transform: uppercase;
}

.home-slider-content .btn {
	margin-top: 40px;
}

.home-slider-overlay-red,
.home-slider-overlay-black {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.home-slider-overlay-red {
	background-color: var(--red);
	mix-blend-mode: color;
}

.home-slider-overlay-black {
	background-color: #000;
	mix-blend-mode: multiply;
	opacity: .5;
}

.home-slider .slick-track {
    display: flex !important;
}

.home-slider .slick-slide {
    height: inherit !important;
}

.home-slider .slick-prev {
	display: none !important;
}

.home-slider-nav {
	position: absolute;
    right: -30px;
    bottom: 70px;
    width: 600px;
    display: flex;
    align-items: flex-end;
}

.home-slider-nav-left {
	display: flex;
	color: #fff;
	border-bottom: 1px solid #dddddd;
	width: 35%;
	margin-right: 60px;
	text-transform: uppercase;
	font-weight: 500;
	justify-content: space-between;
	padding-bottom: 10px;
}

.home-slider-nav-right {
	width: 55%;
}

.home-slider-next {
	cursor: pointer;
}

.slider-nav-thumbnails-item {
	cursor: pointer;
}

.home-slider-nav-right .slick-slide {
    margin: 0 10px;
    display: flex !important;
}

.home-slider-nav-right .slick-list {
    margin: 0 10px;
}

.home-slider-pag {
	position: relative;
}

.home-slider-pag:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -12px;
    height: 4px;
    width: 200%;
	background-color: #fff;
}

.news-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 21px;
	margin-top: -25px;
}

.news-item {
	background-color: #fff;
	box-shadow: 0 0 20px 0 rgba(215, 215, 215, 0.5);
}

.home-news-header {
	margin-bottom: 30px;
}

.news-list-cats {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-list-cats li {
	display: inline-block;
}

.news-list-cats li span {
	margin-right: 4px;
	color: var(--red);
}

.news-list-cats li:last-child span {
	display: none;
}

.news-list-cats a {
	font-size: 14px;
	text-transform: uppercase;
}

.news-item-link {
	font-size: 14px;
	margin-top: 25px;
}

.news-item h3 {
	font-size: 25px;
	text-transform: initial;
	margin-top: 15px;
	margin-bottom: 10px;
}

.news-item-content {
	padding: 25px 20px;
}

.slider-arrow {
	width: 30px;
	height: 28px;
	cursor: pointer;
	margin-left: 20px;
}

.slider-arrow-left {
	transform: rotate(180deg);
}

.home-news-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.section-news .news-wrapper {
	display: block;
}

.section-news .slick-slide {
	margin: 0 10px;
}

.section-news .slick-list {
	margin: 0 -10px;
}

.section-news .slick-list {
  box-sizing: initial;
  padding: 25px 0px;
}

.slick-disabled {
	pointer-events: none;
	opacity: .5;
}

.section-multimedia {
	background-color: var(--dark);
	background-size: cover;
	background-position: center;
	position: relative;
}

.section-multimedia-back {
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.section-multimedia-inner {
	position: relative;
}

.section-multimedia h2 {
	color: #fff;
}

.video-iframe {
	display: none;
}

.multimedia-item {
	cursor: pointer;
}

.multimedia-item p {
	font-size: 14px;
	color: var(--grey);
	text-transform: uppercase;
}

.multimedia-item h3 {
	font-size: 16px;
	color: #fff;
	text-transform: initial;
	margin-top: 8px;
	line-height: 1.3;
}

.section-multimedia .slick-slide {
	margin: 0 11px;
}

.section-multimedia .slick-list {
	margin: 0 -11px;
}

.full-screen {
	background-color: rgba(0,0,0,.9);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 3;
}

.full-screen-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.full-screen-inner iframe {
	width: 850px;
    height: 480px;
}

.multimedia-item-img {
	margin-bottom: 12px;
	position: relative;
}

.play-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background-color: rgba(220, 1, 1, .5);
	background-image: url(assets/img/play-white.svg);
	background-size: 12px 16px;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
}

.close-full {
	background-image: url(assets/img/x-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.section-logos .slick-slide {
	margin: 0 11px;
}

.section-logos .slick-list {
	margin: 0 -11px;
}

.section-logos-inner {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 65px;
    grid-row-gap: 48px;
}

.section-logos-inner img {
	height: 50px;
	width: auto;
}

.section-logos {
	margin-top: 80px;
	margin-bottom: 80px;
}

.home-slider-circle-left {
	background-image: url(assets/img/circles-slider-left.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0px;
	left: 0;
	width: 396px;
	height: 669px;
	mix-blend-mode: overlay;
	opacity: .3;
}

.home-slider-circle-right {
	background-image: url(assets/img/circles-slider-right.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0px;
	right: 0;
	width: 441px;
	height: 320px;
	mix-blend-mode: overlay;
	opacity: .3;
}

footer {
	background-color: var(--red);
	padding-top: 60px;
	padding-bottom: 90px;
	position: relative;
	overflow: hidden;
}

.footer-inner {
	position: relative;
}

.footer-header img {
	width: 242px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 80px;
	margin-top: 60px;
}

.footer-content h4 {
	font-size: 14px;
	text-transform: initial;
	color: #fff;
	margin-bottom: 7px;
}

.footer-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-content li a {
	font-size: 14px;
	color: #fff;
	font-weight: 400;
}

.footer-bottom {
	font-size: 12px;
	color: #fff;
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-bottom a {
	color: #fff;
}

.footer-bottom-right {
	padding-left: 30px;
}

footer .home-slider-circle-left {
	width: 330px;
	height: 525px;
}

.single-header {
	background-color: var(--red);
	height: 160px;
}

.news-content {
	background-color: #fff;
	margin: -87px 40px 80px 40px;
	padding: 70px 120px;
}

.news-content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-content-header-left {
	display: flex;
	text-transform: uppercase;
}

.news-content .news-list-cats {
	margin-right: 7px;
}

.news-content .news-list-cats a {
    font-size: 16px;
}

.news-content h1 {
	text-transform: initial;
    font-size: 47px;
    margin-top: 15px;
    line-height: 1.1;
}

.single-excerpt {
	margin-top: 18px;
	font-size: 20px;
	font-weight: 500;
	color: var(--red);
	line-height: 1.5;
}

.single-image,
.single-content {
	margin-top: 60px;
}

.single-related {
	margin-top: 80px;
}

.single-related h3 {
	margin-bottom: 28px;
}

.single-related .news-wrapper {
	margin-top: 0;
}

.page-header {
	background-color: var(--red);
	margin-bottom: 100px;
}

.page-header h1 {
	color: #fff;
	font-size: 40px;
}

.page-header-inner {
	position: relative;
	padding: 60px 0 85px 0;
}

.page-header-inner.simple {
	padding: 60px 0;
}

.page-header-menu {
	position: absolute;
	left: 0;
	bottom: 0;
}

.page-header-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.page-header-menu li {
	display: inline-block;
	margin-right: 5px;
}

.page-header-menu a {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 7px 22px;
	transition: var(--tr);
}

.page-header-menu .current-menu-item a,
.page-header-menu a:hover {
	background-color: #fff;
	color: var(--red);
}

.history-section h2 {
	margin-bottom: 40px;
}

.history-description {
	margin-bottom: 20px;
}

.history-description img {
	margin-bottom: 60px;
}

.history-content {
	position: relative;
	margin-top: 100px;
}

.history-content:before {
	content: '';
	position: absolute;
	left: 0;
	top: -25px;
	width: 365px;
	height: 6px;
	background-color: var(--red);
}

.history-content h3 {
	font-size: 25px;
	color: var(--grey);
	margin-bottom: 40px;
}

.history-content div {
	color: #333333;
	column-count: 2;
    column-gap: 40px;
}

.history-timeline {
	margin-top: 100px;
}

.section-news {
	padding-bottom: 0;
}

.history-timeline-inner {
	border-left: 6px solid var(--red);
	margin-left: 28px;
    margin-top: 80px;
    padding: 25px 0;
}

.history-timeline-item {
	position: relative;
	padding-left: 120px;
	margin-bottom: 18px;
	cursor: pointer;
}

.history-timeline-item:before {
	content: '';
	position: absolute;
	left: -19px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	background-color: var(--red);
	border-radius: 50%;
}

.history-timeline-item:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	background-color: transparent;
	border-radius: 50%;
	border: 5px solid var(--red);
	opacity: 0;
	transition: var(--tr);
}

.history-timeline-item-right {
	box-shadow: 0 0 20px 0 rgba(215, 215, 215, 0.5);
	display: flex;
	margin-right: 40%;
	position: relative;
}

.history-timeline-item-date {
	box-shadow: 7px 2px 10px 0 rgba(0, 0, 0, 0.03);
	padding: 40px 7%;
	display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-wrap: nowrap;
}

.history-timeline-item:hover:after {
	opacity: 1;
	width: 68px;
	height: 68px;
	left: -37px;
}

.history-timeline-item-content {
	padding: 20px 120px 20px 30px;
}

.history-timeline-item-content h4 {
	font-size: 18px;
	margin-bottom: 4px;
	text-transform: initial;
	color: var(--grey);
	transition: var(--tr);
}

.history-timeline-item-content p {
	line-height: 1.5;
	color: var(--grey);
	transition: var(--tr);
}

.history-timeline-item:hover .history-timeline-item-content h4,
.history-timeline-item:hover .history-timeline-item-content p {
	color: var(--dark);
}

.history-timeline-item img {
	width: 10px;
	height: 18px;
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}

.history-timeline-content {
	position: absolute;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
	max-width: 40%;
	opacity: 0;
	visibility: hidden;
	transition: var(--tr);
}

.history-timeline-item:hover .history-timeline-content {
	right: -112px;
	opacity: 1;
	visibility: visible;
}

.history-timeline-content h4 {
	font-size: 25px;
	text-transform: initial;
	margin-bottom: 5px;
}

.section-supporters-block {
	border-top: 6px solid var(--red);
}

.section-supporters-block h2 {
	font-size: 25px;
	color: var(--grey);
	margin-right: 20px;
}

.section-supporters-block-arrow {
	width: 40px;
	height: 40px;
	border: 1px solid var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--tr);
}

.section-supporters-block-arrow svg {
	width: 13px;
	height: 8px;
	transform: rotate(180deg);
	transition: var(--tr);
}

.section-supporters-block-arrow svg path {
	fill: var(--red);
	transition: var(--tr);
}

.section-supporters-block-arrow.active {
	background-color: var(--red);
}

.section-supporters-block-arrow.active svg path {
	fill: #fff;
}

.section-supporters-block-arrow.active svg {
	transform: rotate(0deg);
}

.section-supporters-block-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding-top: 25px;
	padding-bottom: 25px;
}

.section-supporters-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 6%;
	grid-row-gap: 30px;
	margin-top: 30px;
	margin-bottom: 100px;
	display: none;
}

.section-supporters-items.active {
	display: grid;
}

.section-supporters-item {
	display: grid;
	grid-template-columns: 118px 1fr;
	border: 1px solid #ddd;
}

.section-supporters-item-left {
	width: 118px;
	height: 100%;
	overflow: hidden;
	display: flex;
}

.section-supporters-item-left img {
	object-fit: cover;
}

.section-supporters-item-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.section-supporters-item-content h3 {
	color: var(--grey);
	font-size: 20px;
	text-transform: initial;
	margin-bottom: 5px;
}

.section-supporters-item-content p {
	margin-top: auto;
	font-size: 14px;
	color: var(--grey);
}

.section-supporters-block-header-left p {
	color: var(--grey);
	margin-top: 3px;
}

.section-organs .section-supporters-item {
	display: flex;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.section-organs .section-supporters-items {
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 20px;
}

.section-organs .section-supporters-item-content h3 {
	color: var(--red);
}

.section-organs .section-supporters-item-content p {
	font-weight: 700;
	color: var(--dark);
	margin-top: 10px;
}

.section-organs .section-supporters-item-content {
	padding: 27px;
}

.section-referee .history-timeline-inner {
    border: 0;
    margin-left: 0;
    margin-top: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.section-referee .history-timeline-item:before,
.section-referee .history-timeline-item:after {
	content: none;
}

.section-referee .history-timeline-item {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}

.section-referee .history-timeline-item-right {
    margin-right: 0;
}

.section-referee .history-timeline-item-date {
	color: var(--dark);
	display: block;
}

.section-referee .history-timeline-item-date p {
	color: var(--red);
	display: block;
}

.section-referee-title {
	margin-bottom: 50px;
}

.section-referee .section-supporters-block {
	margin-top: 80px;
}

.section-referee .history-timeline-inner {
	margin-top: 50px;
}

.section-referee .history-timeline-item-content h4 {
	font-size: 25px;
}

.section-referee .history-timeline-item a {
	display: block;
}

.history-timeline-item-content p {
	color: var(--dark);
}

.section-referee .history-timeline-item-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-insurance .section-supporters-items,
.section-docs .section-supporters-items {
	display: grid;
}

.section-insurance .section-supporters-block-header {
	pointer-events: none;
}

.section-insurance .section-supporters-item-content {
	padding: 0;
}

.section-insurance .section-supporters-item {
	border: 0;
	box-shadow: none;
}

.section-insurance .section-supporters-item {
	display: block;
}

.section-insurance .section-supporters-item a {
	margin-top: 40px;
}

.section-insurance .section-supporters-item-content h3 {
    font-size: 25px;
}

.section-insurance .section-supporters-item-content p {
    font-size: 20px;
    margin-top: 0;
}

.section-insurance .section-supporters-items {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 6%;
}

.docs-filters {
	position: relative;
	background-position: center;
	background-size: cover;
	margin-top: -100px;
	padding-top: 58px;
	padding-bottom: 58px;
}

.docs-filters:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to left, rgba(48, 0, 0, 0.5) 100%, rgba(80, 0, 0, 0) -28%), linear-gradient(to left, rgba(0, 0, 0, 0) 106%, #300000 0%);
}

.docs-filters-inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.docs-filters-right {
	display: flex;
}

.docs-filters-right select {
	margin-left: 40px;
}

.docs-filters-left h5 {
	color: #fff;
}

.section-docs {
	margin-top: 100px;
}

.section-docs .section-supporters-item {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	padding: 30px;
}

.section-docs .section-supporters-item-content {
    padding: 0;
    margin-bottom: 30px;
}

.section-docs .section-supporters-item-content p {
	font-size: 16px;
	line-height: 1.3;
	margin-top: 4px;
}

.section-docs-date {
	font-size: 12px !important;
	font-weight: 400 !important;
}

.section-docs-subdesc,
.section-docs-date {
	color: var(--grey) !important;
}

.section-docs .section-supporters-item a {
	margin-top: auto;
}

.section-docs .section-supporters-item h3 {
	line-height: 1.3;
	margin-bottom: 3px;
}

.docs-not-found,
.docs-hide {
	display: none;
}

.docs-not-found {
	margin-top: -100px;
}

select {
    width: 200px;
    height: 38px;
    color: var(--red);
    font-size: 18px;
    font-weight: 700;
    padding: 0 17px;
}

option {
    font-size: 16px;
}

select.red-border {
    width: 200px;
    height: 38px;
    color: var(--red);
    font-size: 18px;
    font-weight: 700;
    padding: 0 17px;
}


.home-results-header-left {
	display: flex;
}

.home-results-header-left img {
	height: 60px;
	width: auto;
	margin: 0 8px;
}

.home-results-header {
	display: flex;
	justify-content: space-between;
}

.home-results-goals {
	display: flex;
}

.home-results-goals div {
	margin: 0 5px;
}

.home-results-header-right {
	font-size: 30px;
	font-weight: 700;
	display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
}

.home-results-status {
	background-color: var(--grey);
	font-size: 12px;
	color: #fff;
	padding: 0 4px;
    margin-top: -7px;
    font-weight: 500;
}

.home-results {
	padding: 80px 0 100px 0;
	position: relative;
}

.home-results-header {
	border-bottom: 1px solid #ddd;
	padding-bottom: 27px;
}

.home-results-footer {
	padding-top: 19px;
}

.home-results-footer {
	font-size: 14px;
	line-height: 1.4;
}

.home-results-title {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.2;
}

.home-results-stadium {
	color: var(--grey);
}

.home-results-date {
	margin-top: 15px;
}

.home-results-items .slick-slide {
    margin: 0 9px;
}

.home-results-items .slick-list {
    margin: 0 -9px;
}

.home-results-heading {
	margin-bottom: 70px;
}

.home-results-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.jornada-nav {
    background-color: var(--red);
    color: #fff;
    padding: 9px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jornada-nav .prev-jornada {
    transform: rotate(180deg);
}

.jornada-nav img {
    width: 8px;
    height: 13px;
}

.jornada-nav div {
    display: flex;
    cursor: pointer;
    width: 26px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.jornada-nav p {
    margin: 0 40px;
}

.home-news-header-right {
	display: flex;
}

.jornadas-name,
#jornada-container script {
	display: none !important;
}

.home-results-left {
	background-color: #f2f2f2;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 15%;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	padding-top: 104px;
	z-index: 1;
}

.jornada-divisions div {
	width: 100px;
	height: 100px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: var(--tr);
}

.jornada-divisions div:hover {
	background-color: #fff;
}

.jornada-divisions div.active {
	background-color: #fff;
}

.jornada-divisions div.active:before {
	content: '';
	width: 9px;
	height: 100%;
	background-image: linear-gradient(to bottom, #2dd3ff, #d47fe5);
	position: absolute;
	left: 0;
	top: 0;
}

.jornada-divisions img {
	width: 60px;
	height: 60px;
}

.loading {
	width: 35px;
	height: 35px;
	border: 5px solid var(--red);
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	display: none;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 

.home-results .section-small {
	position: relative;
}

.home-results-items.loading-results,
.comp-results-items.loading-results {
	opacity: 0;
}

.share-post {
	display: flex;
	align-items: center;
}

.share-post img {
	height: 18px;
	width: auto;
}

.share-post a {
	padding-left: 14px;
	display: flex;
}

.share-post p {
	text-transform: uppercase;
	font-size: 14px;
	margin-right: 5px;
}

.news-page-wrapper {
	margin-top: 0;
}

.news-slider-item-left {
	background-color: var(--red);
	padding-top: 120px;
    padding-bottom: 150px;
}

.news-slider-item-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.news-slider-content {
	width: 100%;
	margin-left: 20%;
	padding-right: 30%;
}

.news-slider-item-right {
	background-size: cover;
	background-position: center;
}

.news-slider-content div p {
	text-transform: initial;
	margin-top: 20px;
}

.news-slider-content ul a,
.news-slider-content ul span {
	color: #fff;
	font-weight: 500;
}

.news-slider-inner {
	position: relative;
}

.news-slider-inner .home-slider-nav {
    position: absolute;
    right: auto;
    left: 10%;
    bottom: 70px;
    width: 600px;
    display: flex;
    align-items: flex-start;
}

.news-slider-wrapper .slick-prev {
	display: none !important;
}

.news-page-list {
	margin-top: 100px;
}

.heading {
	margin-bottom: 30px;
}

.news-page-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 22px;
	margin-top: 100px;
}

.news-page-bottom .news-wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.news-page-bottom .news-item {
	display: flex;
}

.news-item-left {
	width: 100%;
	max-width: 25%;
	background-size: cover;
	background-position: center;
}

.news-item-right {
	padding: 25px 20px;
}

.news-item-right h3 {
	font-size: 20px;
	margin: 0;
	line-height: 1.4;
}

.single-selections {
	margin-top: 120px;
	position: relative;
}

.single-selections-players {
	margin-bottom: 120px;
}

.selections-category-slug {
	display: none;
}

.single-selections-players.loading-results,
.clubs-items.loading-results,
.comp-standings-ajax.loading-results {
	opacity: 0;
}

.single-selections .loading {
	top: 0;
}

.selections-current-year {
	display: none;
}

.selections-docs .heading {
	margin-bottom: 50px;
}

.clubs-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
}

.clubs-item {
	box-shadow: 0 0 20px 0 rgba(215, 215, 215, 0.5);
	padding: 20px 25px;
	display: flex;
	align-items: center;
}

.clubs-item-left {
	margin-right: 30px;
}

.clubs-item-left img {
    height: auto;
    width: 50px;
}

.clubs-item-right h3 {
	font-size: 23px;
	text-transform: initial;
	line-height: 1.1;
    margin-bottom: 6px;
}

.clubs-item-right p {
	color: var(--grey);
	font-size: 14px;
	line-height: 1.3;
}

.clubs-filter img {
	height: 70px;
	width: auto;
	margin-right: 45px;
}

.clubs-filter {
	display: flex;
	align-items: center;
	margin-top: -40px;
    margin-bottom: 53px;
}

.clubs-wrapper {
	position: relative;
}

.clubs-wrapper .loading {
	top: 123px;
}

.media-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 23px;
	grid-row-gap: 28px;
}

.media-list h3 {
	color: var(--dark);
}

.short-top {
	margin-top: -33px;
}

.competitions-page .clubs-item p {
	font-weight: 400;
}

.competitions-history .heading {
	margin-bottom: 40px;
}

.competitions-history {
	margin-bottom: 40px;
	display: inline-block;
}

.standings {
	margin-top: -20px;
}

.afb-table img {
	height: 50px;
	width: auto;
}

.afb-table table {
	width: 100%;
	text-align: center;
	border-spacing: 0;
    border-collapse: collapse;
    font-size: 20px;
    font-weight: 500;
}

.afb-table tbody tr {
	background-color: #f2f2f2;
}

.afb-table th {
	padding-bottom: 15px;
	color: var(--red);
}

.afb-table td {
	position: relative;
	padding: 10px;
	padding-bottom: 30px;
	color: var(--grey);
}

.afb-table td:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 20px;
	background-color: #fff;
}

.afb-table .standings-pos {
	background-color: var(--red);
	color: #fff;
	font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.afb-table .standings-name {
    display: grid;
    grid-template-columns: 55px 1fr;
    grid-gap: 15px;
    align-items: center;
    font-size: 21px;
    color: var(--dark);
    font-weight: 700;
    padding: 0 16% 0 10%;
    position: relative;
    text-align: left;
    line-height: 1.3;
}

.afb-table .standings-name:after {
	content: '';
    position: absolute;
    top: -10px;
    right: 8%;
    bottom: 0;
    background-color: var(--red);
    width: 4px;
    height: 140%;
}

.afb-table .standings-points {
	font-weight: 700;
	color: var(--dark);
}

.standings-name div {
	display: flex;
	justify-content: center;
}

.comp-results-item {
	display: grid;
	grid-template-columns: 10% 85% 5%;
	box-shadow: 0 0 20px 0 rgba(215, 215, 215, 0.5);
	line-height: 1.4;
	padding: 23px;
	margin-bottom: 10px;
}

.comp-results-date {
	min-width: 80px;
}

.comp-results-date-day {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
}

.comp-results-date-hour {
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    margin-top: -3px;
}

.comp-results-place {
	font-weight: 500;
	color: var(--grey);
	margin-left: 5%;
	font-size: 14px;
}

.comp-results-center {
	position: relative;
	padding: 0 10% 0 16%;
	display: grid;
	grid-template-columns: 45% 10% 45%;
	grid-gap: 40px;
}

.comp-results-center:before {
	content: '';
    position: absolute;
    top: -23px;
    left: 8%;
    bottom: -23px;
    background-color: var(--red);
    width: 4px;
}

.comp-results-center img {
	height: 53px;
	width: auto;
	margin-right: 15px;
}

.comp-results-left {
	display: flex;
}

.comp-results-home,
.comp-results-away {
	display: flex;
	align-items: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.1;
}

.comp-results-goals {
	display: flex;
	align-items: center;
	font-size: 30px;
	font-weight: 700;
	color: var(--red);
}

.comp-results-goals div {
	margin: 0 10px;
}

.comp-standings-filter {
	margin-bottom: 20px;
}

.contacts-header-right iframe {
	width: 100%;
	height: 100%;
}

.contacts-header-left h1 {
	margin-bottom: 20px;
}

.contacts-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 90px;
	margin-top: 100px;
	margin-bottom: 100px;
}

.contacts-content-item {
	padding: 40px 30px;
	box-shadow: 0 0 20px 0 rgba(215, 215, 215, 0.5);
	border-top: 6px solid var(--red);
}

.contacts-content-item h3 {
	font-size: 20px;
	margin-bottom: 24px;
}

.contacts-content-item-inner {
	margin-bottom: 30px;
	font-size: 14px;
}

.contacts-content-item-inner p {
	color: #333;
	border-bottom: 1px solid #979797;
	padding-bottom: 5px;
	margin-bottom: 8px;
}

.contacts-content-item-inner div {
	color: #333;
	font-weight: 700;
}

.contacts-form {
	background-color: #720307;
	color: #fff;
}

.contacts-form h2 {
	color: #fff;
	margin-bottom: 20px;
}

form input,
form textarea {
	font-family: 'Ubuntu', sans-serif;
	color: #777;
	background-color: transparent;
	border: 2px solid #f2f2f2;
	height: 60px;
	padding: 25px;
	width: 100%;
	font-size: 16px;
}

form input::placeholder,
form textarea::placeholder {
	color: #777;
}

form textarea {
	height: 200px;
}

form label {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 6px;
    display: inline-block;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 40px;
	margin-bottom: 40px;
}

.form-split {
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.form-triple {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 40px;
}

.form-img {
	display: flex;
	flex-direction: column;
}

.form-img img {
	height: 125px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 15px;
}

.contacts-form-inner {
	margin-top: 50px;
}

form input[type="submit"],
form input[type="checkbox"] {
	width: auto;
}

.wpcf7-acceptance label {
	display: flex;
	align-items: center;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.wpcf7-acceptance label input {
	margin-right: 10px;
}

form input[type="submit"] {
	float: right;
	height: auto;
	font-weight: 700;
}

.contacts-form-inner input,
.contacts-form-inner textarea {
	color: #fff;
	border: 2px solid #fff;
}

.contacts-form-inner input::placeholder,
.contacts-form-inner textarea::placeholder {
	color: #fff;
}

.form-bottom {
	margin-top: -40px;
}

.wpcf7-spinner {
	display: none;
}

.header-icons a {
	width: 40px;
	height: 40px;
	background-color: var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-icons img {
	height: 20px;
	width: auto;
}

.header-icons {
	margin-left: 21px;
}

.page-header-title {
	display: flex;
	justify-content: space-between;
}

.private-area h2 {
	margin-bottom: 70px;
}

.private-form-top-left .form-field:first-child {
	margin-bottom: 40px;
}

#directors-table {
	margin-top: 50px;
	border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}

.delete-row {
	width: 18px;
	height: 18px;
	margin-left: 5px;
	cursor: pointer;
	width: 14px;
    height: 14px;
    margin-left: 8px;
    cursor: pointer;
    margin-top: 9px;
}

#directors-table input {
	border: 0;
}

#directors-table td,
#directors-table th {
	border: solid 2px #f2f2f2;
	height: 60px;
	text-align: left;
}

.delete-row-td {
	border: 0 !important;
}

#directors-table th {
	padding: 0 25px;
	font-size: 20px;
	font-weight: 500;
	color: var(--red);
}

.table-add-row {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

.add-row {
    margin-right: 26px;
}

.form-submit {
	display: inline-flex;
	justify-content: flex-start;
	margin-top: 40px;
	height: 47px;
}

.form-submit input {
	float: none !important;
	height: auto !important;
	width: auto !important;
	cursor: pointer;
	font-weight: 500 !important;
	border: 0;
	color: #fff;
	padding: 0 !important;
}

.success-message {
	color: green;
    margin-top: -27px;
    font-weight: 700;
    margin-left: 16px;
}

.private-fields-desc {
	margin-top: -30px;
}

.login-form {
	max-width: 400px;
    margin: 0 auto;
    margin-bottom: 110px;
}

.login-form .form-row {
	margin-bottom: 30px;
}

.login-form .form-submit {
    margin-top: 4px;
}

.private-affi a {
	margin-top: 40px;
	margin-bottom: 40px;
}

.menu-icon {
	display: flex;
	flex-direction: column;
	gap: 3px;
	height: auto;
	width: 19px;
}

.menu-icon div {
	background-color: #fff;
	height: 2px;
	width: 100%;
}

.mobile-menu {
    position: fixed;
    left: -400px;
    width: 400px;
    height: 100%;
    top: 0;
    background-color: var(--red);
    z-index: 4;
    padding: 40px;
    transition: var(--tr3);
    padding-bottom: 70px;
    overflow-y: auto;
}

.mobile-menu.active {
	left: 0;
}

.mobile-menu .footer-header img {
    width: 190px;
    margin-bottom: 30px;
}

.mobile-menu a {
    color: #fff;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .menu-item-has-children:hover > a {
    color: #fff;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.header-bottom-left .header-icons {
	display: none;
}

.mobile-menu .menu-item-has-children:hover .sub-menu {
    top: 0;
}

.mobile-menu .sub-menu {
    position: relative;
    left: 2px;
    top: 0;
    background-color: transparent;
    padding: 17px !important;
    opacity: 1;
    visibility: visible;
    transition: var(--tr);
    padding-top: 22px !important;
    display: none;
}

.mobile-menu .sub-menu.active {
    display: block;
}

.mobile-menu .sub-menu li {
    margin-bottom: 11px;
}

.mobile-menu .sub-menu li:last-child {
    margin-bottom: 0;
}

.mobile-menu .sub-menu a {
    font-weight: 400;
}

.header-bottom-left .header-icons {
	margin-left: 0;
}

.form-bottom .btn {
	color: var(--red);
}

.wpcf7-acceptance label {
	font-size: 14px;
}

.share-post.mobile {
	display: none;
}

.page-header-menu.mobile {
	display: none;
	top: 139px;
	z-index: 2;
}

.page-header-menu.mobile li {
    display: block;
    margin-right: 0;
    display: none;
    cursor: pointer;
}

.page-header-menu.mobile ul {
    background-color: #fff;
    padding-bottom: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.page-header-menu.mobile ul:after {
    content: '';
    background-image: url(assets/img/chevron-red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    top: 19px;
    right: 14px;
    transform: rotate(90deg);
    pointer-events: none;
}

.page-header-menu.mobile a {
	color: var(--red);
	padding-right: 46px;
}

.page-header-menu.mobile .current-menu-item {
	order: -1;
	display: block;
}

.page-header-menu.mobile .current-menu-item a {
	pointer-events: none;
}

.table {
	overflow-x: auto;
}

.comp-results-place {
	display: none;
}

.season-filter select {
	height: 44px;
}








/* -------------------------------------------*-----------------*--------------------------------------------------*/
/*                    -----------------------*   MEDIA QUERIES   *------------------------                         */
/* -------------------------------------------*-----------------*--------------------------------------------------*/



@media (max-width: 1500px) { 

	.wp-menu {
		display: none;
	}

	.header-bottom-left .header-icons {
		display: block;
	}

	.section-small {
	    padding-left: 10%;
	    padding-right: 10%;
	}

	.home-slider-content {
	    margin-left: 6%;
	}

	.news-slider-inner .home-slider-nav {
	    left: 3%;
	}

	.home-results-left {
	    width: 8%;
	}

}

@media (max-width: 1270px) { 

	.page-header-menu.mobile {
		display: block;
	}

	.page-header-menu.desktop {
		display: none;
	}

	.page-header.with-menu .page-header-inner {
	    padding: 60px 0 84px 0;
	}

	.history-timeline-item:hover .history-timeline-content {
	    right: -62px;
	}

	.history-timeline-item-content {
	    padding: 20px 90px 20px 30px;
	}

	.history-timeline-item {
	    padding-left: 80px;
	}

}

@media (max-width: 1199px) { 

	.section-small,
	.section {
	    padding-left: 6%;
	    padding-right: 6%;
	}

	.home-slider-item {
	    padding-top: 150px;
	}

	.home-slider-content {	    
		width: 60%;
	}

	.home-slider-nav {
	    position: absolute;
	    right: auto;
	    left: 6%;
	    bottom: 40px;
	    width: 600px;
	}

	.home-slider-content .btn {
	    margin-bottom: 100px;
	}

	.news-slider-inner .home-slider-content .btn {
        margin-bottom: 0px;
    }

    .news-slider-inner .home-slider-nav {
	    bottom: 70px;
	}

	.news-slider-content {
	    width: 100%;
	    padding-right: 20%;
	}

	.contacts-content {
	    grid-gap: 20px;
	}

	.news-content {
	    margin: -87px 0px 80px 0;
	    padding: 70px 70px;
	}

	.docs-filters-inner {
	    align-items: flex-start;
	    flex-direction: column;
	    gap: 20px;
	}

	.docs-filters-right select {
	    margin-left: 0;
	    margin-right: 20px;
	}

	.section-organs .section-supporters-items {
	    grid-template-columns: 1fr 1fr 1fr;
	}

	.jornada-divisions div {
	    width: 80px;
	    height: 80px;
	}

	.jornada-divisions img {
	    width: 49px;
	    height: 49px;
	}

	.home-results-left {
        width: 79px;
    }

    .home-results {
	    padding-left: 42px;
	}

	.comp-results-home, .comp-results-away {
	    font-size: 20px;
	}


}

@media (max-width: 991px) { 

	.header-bottom-menu {
	    padding-top: 15px;
	}

	.header-bottom-center {
	    width: 138px;
	    height: 133px;
	}

	.header-bottom {
	    grid-template-columns: 1fr 138px 1fr;
	}

	.header-bottom-center img {
	    margin-top: -5px;
	}

	.padding {
	    padding-top: 70px;
	    padding-bottom: 70px;
	}

	.footer-content {
	    grid-template-columns: repeat(3, 1fr);
	    grid-gap: 60px;
	}

	.news-wrapper {
	    grid-template-columns: 1fr 1fr;
	}

	.full-screen-inner iframe {
	    width: 570px;
	    height: 320px;
	}

	.share-post.mobile {
        display: flex;
        margin-top: 30px;
    }

	.share-post.desktop {
		display: none;
	}

	.section-organs .section-supporters-items {
	    grid-template-columns: 1fr 1fr;
	}

	.section-supporters-items {
	    grid-template-columns: 1fr 1fr;
	}

	.history-timeline-content {
	    position: relative;
	    right: auto;
	    top: 0;
	    margin-top: 30px;
	    margin-bottom: 52px;
	    transform: none;
	    max-width: 100%;
	    left: 0;
	    opacity: 1;
	    visibility: visible;
	    display: none;
	}

	.history-timeline-item.active .history-timeline-content {
		display: block;
	}

	.history-timeline-item:before {
	    top: 48px;
	    transform: none;
	}

	.history-timeline-item-right {
	    margin-right: 0;
	}

	.history-timeline-item {
        padding-left: 50px;
    }

    .history-timeline-item:before {
	    content: '';
	    position: absolute;
	    left: -14px;
	    width: 22px;
	    height: 22px;
	}

	.history-timeline-item:after,
	.history-timeline-item:hover:after {
	    width: 48px;
	    height: 48px;
	    left: -27px;
	    top: 36px;
	    transform: none;
	}

	.history-timeline-item.active:after {
	    opacity: 1;
	    visibility: visible;
	}

	.history-timeline-item img {
	    transform: translateY(-50%) rotate(90deg);
	}

	.history-timeline-item-right {
        margin-right: 0;
        border-bottom: 4px solid var(--red);
    }

    .history-timeline-item.active .history-timeline-item-content h4,
    .history-timeline-item.active .history-timeline-item-content p {
    	color: var(--dark);
    }

    .section-referee .history-timeline-item-content h4 {
	    font-size: 20px;
	}

	.clubs-items {
	    grid-template-columns: 1fr 1fr;
	}

	#directors-table th {
	    font-size: 16px;
	    line-height: 1.4;
	}

	.form-triple {
	    grid-template-columns: 1fr;
	}

	.comp-results-center {
		grid-template-columns: 40% 1fr 40%;
	}

	.comp-standings-filter {
	    margin-bottom: 50px;
	}

	.comp-standings-filter select {
		width: auto;
	}

	.afb-table .standings-name {
	    font-size: 17px;
	    padding: 0 16% 0 0;
	}

	.afb-table .standings-pos {
	    font-size: 18px;
	}



}

@media (max-width: 767px) {

    .home-slider-content {
        width: 100%;
        margin-right: 6%;
    }

    .home-slider-content h1 {
	    font-size: 40px;
	}

	.footer-header img {
	    width: 202px;
	}

	.news-slider-item-inner {
	    grid-template-columns: 1fr;
	}

	.news-slider-item-left {
		order: 2;
	}

	.news-slider-item-right {
		order: 1;
		height: 400px;
	}

	.news-slider-inner .home-slider-nav {
        left: 6%;
    }

    .news-slider-item-left {
	    padding-top: 50px;
	    padding-bottom: 140px;
	}

	.news-page-bottom {
	    grid-template-columns: 1fr;
	}

	.contacts-header-left {
        padding-bottom: 70px;
    }

    .contacts-content {
	    grid-template-columns: 1fr;
	}

	.form-split {
	    grid-template-columns: 1fr;	
	}

	.form-row {
	    grid-gap: 20px;
	    margin-bottom: 20px;
	}

	form input[type="submit"] {
	    float: left;
	}

	.media-list {
	    grid-template-columns: 1fr 1fr;
	}

	.news-content {
        padding: 40px 40px;
    }

    .single-image, .single-content {
	    margin-top: 40px;
	}

	.news-content-header-left {
	    flex-direction: column;
	}

	.docs-filters-right {
	    flex-direction: column;
	    gap: 10px;
	    width: 100%;
	}

	select {
	    width: 100%;
	}

	.section-supporters-items {
	    grid-template-columns: 1fr;
	}

	.history-content div {
	    column-count: 1;
	}

	.history-timeline-item-date {
	    padding: 40px 24px;
	}

	.section-referee .history-timeline-inner {
	    grid-template-columns: 1fr;
	    margin-top: 20px;
	}

	.section-insurance .section-supporters-item a {
	    margin-top: 20px;
	    margin-bottom: 20px;
	}

	.clubs-items {
	    grid-template-columns: 1fr;
	}

	.private-menu .page-header-title {
	    display: block;
	}

	.private-menu .btn {
	    margin-top: 10px;
	}

	.private-menu .page-header-menu.mobile {
	    top: 191px;
	}

	.home-results {
        padding-left: 62px;
    }

    .comp-results-goals {
	    font-size: 24px;
	}

	.comp-results-date-day {
	    font-size: 16px;
	}

	.comp-results-date-hour {
	    font-size: 16px;
	}

	.comp-results-item {
	    grid-template-columns: 24px 1fr;
	    padding: 15px;
	}

	.comp-results-center:before {
	    top: -15px;
	    left: 44px;
	    bottom: -15px;
	    width: 2px;
	}

	.comp-results-items-wrapper {
		width: 100%;
		overflow-x: auto;
	}

	.comp-results-items {
		width: 647px;
	}

	.afb-table img {
	    height: 40px;
	}

	.afb-table table {
	    font-size: 18px;
	    width: 662px;
	}

	.afb-table {
		width: 100%;
		overflow-x: auto;
	}

	.afb-table td:after {
	    height: 10px;
	}

	.afb-table td {
	    padding-bottom: 20px;
	}

	afb-table .standings-name:after {
	    height: 62px;
	}


}

@media (max-width: 550px) {

	body {
		font-size: 15px;
	}

    .section-small,
    .section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .home-slider-content {
	    margin-left: 30px;
	}

    .header-bottom-left {
    	order: 2;
    	margin-left: auto;
    }

    .header-bottom-center {
    	order: 1;
    }

    .header-bottom-right {
    	order: 3;
    }

    .header-bottom {
	    display: flex;
	}

	header {
	    height: 102px;
	}

	.mobile-menu {
    	position: fixed;
	    left: -100%;
	    width: 100%;
	    height: 100%;
	    top: 0;
	    background-color: var(--red);
	    z-index: 4;
	    padding: 40px 30px;
	    transition: var(--tr3);
	    padding-bottom: 70px;
	    overflow-y: auto;
	}

	.header-icons {
		transform: scale(.85);
    	transform-origin: top right;
	}

	.header-bottom-menu {
        padding-top: 11px;
    }

    .header-icons {
	    margin-left: 0;
	}

	.header-bottom-center {
        width: 114px;
        height: 101px;
    }

    .header-bottom-center img {
        width: 55px;
	    margin-left: -8px;
	    margin-top: 2px;
    }

    .header-bottom-center {
        width: 98px;
        height: 101px;
        margin-left: -18px;
    }

    .header-bottom a {
	    padding: 0;
	}

	.header-bottom {
		grid-gap: 12px;
	}

	.home-slider-content {
        margin-left: 30px;
        margin-right: 30px;
    }

    .home-slider-content h1 {
	    font-size: 30px;
	}

	.home-slider-item {
        padding-top: 90px;
        padding-bottom: 110px;
    }

    .home-slider-nav-left {
	    width: 25%;
	    margin-right: 20px;
	}

	.mobile-menu .sub-menu {
	    padding: 15px 17px !important;
	    padding-bottom: 3px !important;
	}

	.mobile-menu .sub-menu li {
	    margin-bottom: 5px;
	}

	h1, h2, h3, h4, h5, h6 {
	    font-size: 25px;
	}

	.slider-arrow {
	    width: 20px;
	}

	.padding {
	    padding-top: 50px;
	    padding-bottom: 50px;
	}

	.footer-content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        margin-top: 30px;
    }

    footer {
	    padding-top: 50px;
	    padding-bottom: 60px;
	}

	.footer-bottom {
	    margin-top: 40px;
	}

	.footer-bottom a {
	    color: #fff;
	    margin-top: 4px;
	}

	.footer-bottom-right {
		padding-left: 0;
	}

    .news-slider-inner .home-slider-nav {
        left: 30px;
    }

    .news-wrapper {
	    grid-template-columns: 1fr;
	}

	.news-page-list {
	    margin-top: 50px;
	}

	.news-page-bottom {
	    margin-top: 70px;
	}

	.contacts-content {
	    margin-top: 50px;
	    margin-bottom: 60px;
	}

	.page-header h1 {	    
		font-size: 30px;
	}

	.full-screen-inner {
	    height: 100%;
	    width: 100%;
	    padding: 30px;
	}

	.full-screen-inner iframe {
        width: 100%;
        height: auto;
    }

    .media-list {
	    grid-template-columns: 1fr;
	}

	.page-header {
	    margin-bottom: 70px;
	}

	.news-content h1 {
	    font-size: 30px;
	    line-height: 1.2;
	}

	.single-excerpt {
	    font-size: 16px;
	}

	.news-content-date {
		font-size: 14px;
	}

	.docs-filters {
	    padding-top: 28px;
	    padding-bottom: 40px;
	}

	select {
	    font-size: 16px;
	    padding: 0 12px;
	}

	.docs-filters-left h5 {
	    font-size: 22px;
	}

	.section-docs {
	    margin-top: 40px;
	}

	.section-organs .section-supporters-items {
	    grid-template-columns: 1fr;
	}

    .page-header.with-menu .page-header-inner {
        padding: 60px 0 77px 0;
    }

	.page-header.with-menu .page-header-menu.mobile {
	    top: 124px;
	    width: 100%;
	}

	.page-header.with-menu .page-header-menu a {
	    font-size: 18px;
	    padding: 7px 18px;
	}

	.section-supporters-block h2 {
	    font-size: 22px;
	}

	.single-selections {
	    margin-top: 50px;
	}

	.history-timeline-item-date {
        padding: 0 15px;
    }

    .history-timeline-inner {
	    margin-left: 0;
	    margin-top: 50px;
	    padding: 25px 0;
	}

	.history-timeline-item {
        padding-left: 40px;
    }

    .history-timeline-item img {
	    right: 21px;
	}

	.history-timeline-item-content {
        padding: 20px 43px 20px 21px;
    }

    .history-timeline-item:before {
        top: 68px;
    }

    .history-timeline-item:after, 
    .history-timeline-item:hover:after {
        top: 56px;
    }

    .section-supporters-items {
	    grid-row-gap: 20px;
	}

	.private-header .page-header.with-menu .page-header-menu.mobile {
        top: 176px;
    }

    .table-add-row {
	    justify-content: flex-start;
	}

	.home-results {
	    padding: 50px 0 50px 0;
	    padding-left: 72px;
	}

	.jornada-nav p {
	    margin: 0 20px;
	}

	.home-results-title {
	    font-size: 22px;
	}
							
		
}

@media (max-width: 450px) {

	.news-content {
        padding: 30px;
    }

    .news-content {
        margin: -107px -17px 80px -17px;
        padding: 25px;
    }

    .single-image, .single-content {
        margin-top: 30px;
    }

    .home-results-left {
        width: 59px;
        padding-top: 74px;
    }

    .jornada-divisions div {
        width: 60px;
        height: 60px;
    }

    .jornada-divisions img {
        width: 39px;
        height: 39px;
        position: relative;
        left: 4px;
    }

    .home-results {
        padding-left: 49px;
    }

    .home-results-heading .slider-arrow {
	    margin-left: 10px;
	}

	.home-results-heading {
	    margin-bottom: 45px;
	}

	
}