:root {
--toastify-color-light: #fff;
--toastify-color-dark: #121212;
--toastify-color-info: #3498db;
--toastify-color-success: #07bc0c;
--toastify-color-warning: #f1c40f;
--toastify-color-error: hsl(6, 78%, 57%);
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
--toastify-icon-color-info: var(--toastify-color-info);
--toastify-icon-color-success: var(--toastify-color-success);
--toastify-icon-color-warning: var(--toastify-color-warning);
--toastify-icon-color-error: var(--toastify-color-error);
--toastify-container-width: fit-content;
--toastify-toast-width: 320px;
--toastify-toast-offset: 16px;
--toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
--toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
--toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
--toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
--toastify-toast-background: #fff;
--toastify-toast-padding: 14px;
--toastify-toast-min-height: 64px;
--toastify-toast-max-height: 800px;
--toastify-toast-bd-radius: 6px;
--toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
--toastify-font-family: sans-serif;
--toastify-z-index: 9999;
--toastify-text-color-light: #757575;
--toastify-text-color-dark: #fff;
--toastify-text-color-info: #fff;
--toastify-text-color-success: #fff;
--toastify-text-color-warning: #fff;
--toastify-text-color-error: #fff;
--toastify-spinner-color: #616161;
--toastify-spinner-color-empty-area: #e0e0e0;
--toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
);
--toastify-color-progress-dark: #bb86fc;
--toastify-color-progress-info: var(--toastify-color-info);
--toastify-color-progress-success: var(--toastify-color-success);
--toastify-color-progress-warning: var(--toastify-color-warning);
--toastify-color-progress-error: var(--toastify-color-error);
--toastify-color-progress-bgo: 0.2;
}
.Toastify__toast-container {
z-index: var(--toastify-z-index);
-webkit-transform: translate3d(0, 0, var(--toastify-z-index));
position: fixed;
width: var(--toastify-container-width);
box-sizing: border-box;
color: #fff;
display: flex;
flex-direction: column;
}
.Toastify__toast-container--top-left {
top: var(--toastify-toast-top);
left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
top: var(--toastify-toast-top);
left: 50%;
transform: translate(-50%);
align-items: center;
}
.Toastify__toast-container--top-right {
top: var(--toastify-toast-top);
right: var(--toastify-toast-right);
align-items: end;
}
.Toastify__toast-container--bottom-left {
bottom: var(--toastify-toast-bottom);
left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
bottom: var(--toastify-toast-bottom);
left: 50%;
transform: translate(-50%);
align-items: center;
}
.Toastify__toast-container--bottom-right {
bottom: var(--toastify-toast-bottom);
right: var(--toastify-toast-right);
align-items: end;
}
.Toastify__toast {
--y: 0;
position: relative;
touch-action: none;
width: var(--toastify-toast-width);
min-height: var(--toastify-toast-min-height);
box-sizing: border-box;
margin-bottom: 1rem;
padding: var(--toastify-toast-padding);
border-radius: var(--toastify-toast-bd-radius);
box-shadow: var(--toastify-toast-shadow);
max-height: var(--toastify-toast-max-height);
font-family: var(--toastify-font-family);
z-index: 0;
display: flex;
flex: 1 auto;
align-items: center;
word-break: break-word;
}
@media only screen and (max-width: 480px) {
.Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
}
.Toastify__toast-container--top-left,
.Toastify__toast-container--top-center,
.Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translate(0);
}
.Toastify__toast-container--bottom-left,
.Toastify__toast-container--bottom-center,
.Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translate(0);
}
.Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
}
.Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
}
}
.Toastify__toast-container[data-stacked="true"] {
width: var(--toastify-toast-width);
}
.Toastify__toast--stacked {
position: absolute;
width: 100%;
transform: translate3d(0, var(--y), 0) scale(var(--s));
transition: transform 0.3s;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed="false"] {
overflow: visible;
}
.Toastify__toast--stacked[data-collapsed="true"]:not(:last-child) > * {
opacity: 0;
}
.Toastify__toast--stacked:after {
content: "";
position: absolute;
left: 0;
right: 0;
height: calc(var(--g) * 1px);
bottom: 100%;
}
.Toastify__toast--stacked[data-pos="top"] {
top: 0;
}
.Toastify__toast--stacked[data-pos="bot"] {
bottom: 0;
}
.Toastify__toast--stacked[data-pos="bot"].Toastify__toast--stacked:before {
transform-origin: top;
}
.Toastify__toast--stacked[data-pos="top"].Toastify__toast--stacked:before {
transform-origin: bottom;
}
.Toastify__toast--stacked:before {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 100%;
transform: scaleY(3);
z-index: -1;
}
.Toastify__toast--rtl {
direction: rtl;
}
.Toastify__toast--close-on-click {
cursor: pointer;
}
.Toastify__toast-icon {
margin-inline-end: 10px;
width: 22px;
flex-shrink: 0;
display: flex;
}
.Toastify--animate {
animation-fill-mode: both;
animation-duration: 0.5s;
}
.Toastify--animate-icon {
animation-fill-mode: both;
animation-duration: 0.3s;
}
.Toastify__toast-theme--dark {
background: var(--toastify-color-dark);
color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light,
.Toastify__toast-theme--colored.Toastify__toast--default {
background: var(--toastify-color-light);
color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
color: var(--toastify-text-color-info);
background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
color: var(--toastify-text-color-success);
background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
color: var(--toastify-text-color-warning);
background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
color: var(--toastify-text-color-error);
background: var(--toastify-color-error);
}
.Toastify__progress-bar-theme--light {
background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
background: var(--toastify-color-transparent);
}
.Toastify__close-button {
color: #fff;
position: absolute;
top: 6px;
right: 6px;
background: transparent;
outline: none;
border: none;
padding: 0;
cursor: pointer;
opacity: 0.7;
transition: 0.3s ease;
z-index: 1;
}
.Toastify__toast--rtl .Toastify__close-button {
left: 6px;
right: unset;
}
.Toastify__close-button--light {
color: #000;
opacity: 0.3;
}
.Toastify__close-button > svg {
fill: currentColor;
height: 16px;
width: 14px;
}
.Toastify__close-button:hover,
.Toastify__close-button:focus {
opacity: 1;
}
@keyframes Toastify__trackProgress {
0% {
    transform: scaleX(1);
}
to {
    transform: scaleX(0);
}
}
.Toastify__progress-bar {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0.7;
transform-origin: left;
}
.Toastify__progress-bar--animated {
animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
right: 0;
left: initial;
transform-origin: right;
border-bottom-left-radius: initial;
}
.Toastify__progress-bar--wrp {
position: absolute;
overflow: hidden;
bottom: 0;
left: 0;
width: 100%;
height: 5px;
border-bottom-left-radius: var(--toastify-toast-bd-radius);
border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp[data-hidden="true"] {
opacity: 0;
}
.Toastify__progress-bar--bg {
opacity: var(--toastify-color-progress-bgo);
width: 100%;
height: 100%;
}
.Toastify__spinner {
width: 20px;
height: 20px;
box-sizing: border-box;
border: 2px solid;
border-radius: 100%;
border-color: var(--toastify-spinner-color-empty-area);
border-right-color: var(--toastify-spinner-color);
animation: Toastify__spin 0.65s linear infinite;
}
@keyframes Toastify__bounceInRight {
0%,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
}
60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
}
75% {
    transform: translate3d(10px, 0, 0);
}
90% {
    transform: translate3d(-5px, 0, 0);
}
to {
    transform: none;
}
}
@keyframes Toastify__bounceOutRight {
20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
}
to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
}
}
@keyframes Toastify__bounceInLeft {
0%,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
}
60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
}
75% {
    transform: translate3d(-10px, 0, 0);
}
90% {
    transform: translate3d(5px, 0, 0);
}
to {
    transform: none;
}
}
@keyframes Toastify__bounceOutLeft {
20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
}
to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
}
}
@keyframes Toastify__bounceInUp {
0%,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
}
60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
}
75% {
    transform: translate3d(0, 10px, 0);
}
90% {
    transform: translate3d(0, -5px, 0);
}
to {
    transform: translateZ(0);
}
}
@keyframes Toastify__bounceOutUp {
20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
}
40%,
45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
}
to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
}
}
@keyframes Toastify__bounceInDown {
0%,
60%,
75%,
90%,
to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
}
60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
}
75% {
    transform: translate3d(0, -10px, 0);
}
90% {
    transform: translate3d(0, 5px, 0);
}
to {
    transform: none;
}
}
@keyframes Toastify__bounceOutDown {
20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
}
40%,
45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
}
to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
}
}
.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
animation-name: Toastify__bounceInUp;
}
.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
animation-name: Toastify__bounceOutDown;
}
@keyframes Toastify__zoomIn {
0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}
50% {
    opacity: 1;
}
}
@keyframes Toastify__zoomOut {
0% {
    opacity: 1;
}
50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
}
to {
    opacity: 0;
}
}
.Toastify__zoom-enter {
animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
animation-name: Toastify__zoomOut;
}
@keyframes Toastify__flipIn {
0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
}
40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
}
60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
}
80% {
    transform: perspective(400px) rotateX(-5deg);
}
to {
    transform: perspective(400px);
}
}
@keyframes Toastify__flipOut {
0% {
    transform: translate3d(0, var(--y), 0) perspective(400px);
}
30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(-20deg);
    opacity: 1;
}
to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(90deg);
    opacity: 0;
}
}
.Toastify__flip-enter {
animation-name: Toastify__flipIn;
}
.Toastify__flip-exit {
animation-name: Toastify__flipOut;
}
@keyframes Toastify__slideInRight {
0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
}
to {
    transform: translate3d(0, var(--y), 0);
}
}
@keyframes Toastify__slideInLeft {
0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
}
to {
    transform: translate3d(0, var(--y), 0);
}
}
@keyframes Toastify__slideInUp {
0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
}
to {
    transform: translate3d(0, var(--y), 0);
}
}
@keyframes Toastify__slideInDown {
0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
}
to {
    transform: translate3d(0, var(--y), 0);
}
}
@keyframes Toastify__slideOutRight {
0% {
    transform: translate3d(0, var(--y), 0);
}
to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
}
}
@keyframes Toastify__slideOutLeft {
0% {
    transform: translate3d(0, var(--y), 0);
}
to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
}
}
@keyframes Toastify__slideOutDown {
0% {
    transform: translate3d(0, var(--y), 0);
}
to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
}
}
@keyframes Toastify__slideOutUp {
0% {
    transform: translate3d(0, var(--y), 0);
}
to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
}
}
.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
animation-name: Toastify__slideInUp;
}
.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
animation-name: Toastify__slideOutLeft;
animation-timing-function: ease-in;
animation-duration: 0.3s;
}
.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
animation-name: Toastify__slideOutRight;
animation-timing-function: ease-in;
animation-duration: 0.3s;
}
.Toastify__slide-exit--top-center {
animation-name: Toastify__slideOutUp;
animation-timing-function: ease-in;
animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-center {
animation-name: Toastify__slideOutDown;
animation-timing-function: ease-in;
animation-duration: 0.3s;
}
@keyframes Toastify__spin {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.site-counter{
    display:flex;
    gap:10px;
    align-items:center;
    font-size:18px;
    font-weight:600;
    color: #fff;
}
/*nav.header {
    display: none;
}*/
.socila__title h1 {
    color: #fff;
}
.about__link {
    position: absolute;
    background: #000;
    opacity: 0.8;
    width: 14%;
    text-align: center;
}
.about__link p {
    font-size: 24px;
    color: #fff;
    padding: 20px 10px;
}
.scroll-to-top {
    background-color: white;
    right: 40px;
    bottom: 40px;
    position: fixed;
    z-index: 2;
    cursor: pointer;
    border-radius: 7px;
    width: 40px;
    height: 40px;
    box-shadow: 0 9px 25px 0 rgba(132, 128, 177, 0.28);
    border: none;
}

.scroll-to-top:active {
    transform: matrix(0.95, 0, 0, 0.95, 0, 0);
}


.about-football{
    background-image: url('/local/templates/footballintellectgame/static/media/fp3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:100px 0;
    color:#fff;
    overflow:hidden;
}

.about-football .container{
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
}

.about-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 80px;
}
.swiper-button-lock {
    display: inline-flex !important;
}
.about-label{
    display:inline-block;
    padding:10px 24px;
    border:1px solid #e10600;
    border-radius:50px;
    color:#e10600;
    font-weight:700;
    letter-spacing:2px;
    font-size: 16px;
    margin-bottom:25px;
}

.about-header h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.about-header h1 span{
    color:#e10600;
}

.about-header p{
    color:#fff;
    font-size:20px;
    line-height:1.8;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-card{
    background: rgba(0, 128, 0, 0.5);
    border:1px solid #232323;
    border-radius:24px;
    padding:35px;
    position:relative;
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
    border-color:#a1e9a1;
}

.about-number{
    font-size:70px;
    font-weight:900;
    color:#e10600;
    opacity:.2;
    margin-bottom:20px;
}

.about-card h2{
    font-size:24px;
    margin-bottom:20px;
    line-height:1.4;
}

.about-card p{
    color:#fff;
    line-height:1.8;
    margin-bottom:20px;
    font-size: 20px;
}

.about-card ul{
    margin:0;
    padding:0;
    list-style:none;
    font-size: 18px;
}

.about-card ul li{
    position:relative;
    padding-left:20px;
    margin-bottom:12px;
    color:#fff;
    line-height:1.6;
}

.about-card ul li:before{
    content:"";
    width:8px;
    height:8px;
    background:#e10600;
    border-radius:50%;
    position:absolute;
    left:0;
    top:10px;
}

.about-cta{
    margin-top:80px;
    text-align:center;
    padding:70px 40px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        #e10600 0%,
        #8b0000 100%
    );
}

.about-cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.about-cta p{
    max-width:800px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:20px;
    color: #fff;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    background:#fff;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    font-size: 18px;
}

.about-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-header h1{
        font-size:42px;
    }

    .about-cta h2{
        font-size:34px;
    }
}


.club-services{
    position: relative;
    background-image: url('/local/templates/footballintellectgame/static/media/fp3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    overflow: hidden;
}

.club-services::before{
    content: "";
    position: absolute;
    top: -250px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.08);
    filter: blur(120px);
}

.club-services::after{
    content: "";
    position: absolute;
    bottom: -250px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.05);
    filter: blur(120px);
}

.club-services .container{
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER
=========================== */

.services-head{
    text-align: center;
    max-width: 950px;
    margin: 0 auto 80px;
}

.services-head span{
    display: inline-block;
    color: #E30613;
    border: 1px solid rgba(227, 6, 19, 0.4);
    padding: 10px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.services-head h2{
    color: #FFFFFF;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.services-head p{
    color: #fff;
    font-size: 20px;
    line-height: 1.8;
}

/* ===========================
   GRID
=========================== */

.services-layout{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

/* ===========================
   CARDS
=========================== */

.service-box{
    background: rgba(0, 128, 0, 0.5);
    border: 1px solid #242424;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.service-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E30613;
}

.service-box:hover{
    transform: translateY(-8px);
    border-color: #E30613;
    box-shadow: 0 0 40px rgba(227,6,19,.15);
}

.service-box--large{
    grid-column: span 2;
}

.service-box--wide{
    grid-column: span 2;
}

.service-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(227, 6, 19, 0.12);
    border: 1px solid rgba(227, 6, 19, 0.25);
    color: #ff4d57;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-box h3{
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-box p{
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===========================
   LIST
=========================== */

.service-box ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-box ul li{
    position: relative;
    color: #fff;
    line-height: 1.8;
    padding: 14px 0 14px 26px;
    border-bottom: 1px solid #202020;
    font-size: 16px;
}

.service-box ul li:last-child{
    border-bottom: none;
}

.service-box ul li::before{
    content:'';
    width: 100px;
    height: 100px;
    background-image: url(/local/templates/footballintellectgame/static/media/ball-new.svg);
    background-repeat: no-repeat;
    position:absolute;
    left:0;
    top:20px;
}

/* ===========================
   MODEL GRID
=========================== */

.model-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 30px;
}

.model-grid div{
    background: #327418;
    border: 1px solid #252525;
    border-radius: 18px;
    padding: 25px;
    transition: .3s;
}

.model-grid div:hover{
    border-color: #E30613;
}

.model-grid strong{
    display: block;
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 12px;
}

.model-grid span{
    color: #fff;
    line-height: 1.7;
    font-size: 14px;
}
.divasoft__logo img {
    width: 20%;
    position: relative;
    top: 3px;
}
.divasoft__logo a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.divasoft__logo {
    display: flex;
    justify-content: end;
    align-items: center;
    background: red;
    gap: 10px;
}
/* ===========================
   FOOTER BLOCK
=========================== */

.services-footer{
    margin-top: 80px;
    background: rgba(0, 128, 0, 0.5);
    border: 1px solid #E30613;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.services-footer h3{
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-footer p{
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.9;
    font-size: 18px;
}

/* ===========================
   BUTTON
=========================== */

.services-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    padding: 18px 40px;
    background: #E30613;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.services-btn:hover{
    background: #ff1e2e;
    transform: translateY(-3px);
}

/* ===========================
   MOBILE
=========================== */

@media(max-width: 1200px){

    .model-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .team-item {
        height: 500px;
    }

}

@media(max-width: 992px){

    .services-layout{
        grid-template-columns: 1fr;
    }

    .service-box--large,
    .service-box--wide{
        grid-column: auto;
    }

    .services-head h2{
        font-size: 46px;
    }
    .team-item {
        height: 550px;
    }

}

@media(max-width: 768px){

    .model-grid{
        grid-template-columns: 1fr;
    }

    .services-head h2{
        font-size: 36px;
    }

    .services-footer{
        padding: 40px 25px;
    }

    .services-footer h3{
        font-size: 30px;
    }
}


.football-test{
    position:relative;
    overflow:hidden;
    background-image: url(/local/templates/footballintellectgame/static/media/fp3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:120px 0;
}

.football-test .container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.football-test__content{
    text-align:center;
}

.football-test__label{
    display:inline-block;
    color:#E30613;
    border:1px solid rgba(227,6,19,.3);
    padding:12px 24px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:700;
    font-size: 18px;
}

.football-test__title{
    font-size:72px;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
    transition:transform .1s linear;
}

.football-test__title span{
    color:#E30613;
}

.football-test__text{
    max-width:850px;
    margin:auto;
    color:#fff;
    font-size:20px;
    line-height:1.8;
}

.football-test__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:80px;
}

.test-item{
    background: rgba(0, 128, 0, 0.5);
    border:1px solid #222;
    border-radius:24px;
    padding:40px;
    transition:.2s;
    transform-style:preserve-3d;
    cursor:pointer;
}

.test-item__icon{
    font-size:48px;
    margin-bottom:20px;
}

.test-item h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
}

.test-item p{
    color:#fff;
    font-size: 20px;
    line-height:1.8;
    font-size: 18px;
}

.football-test__rating{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:60px;
}

.rating-box{
    background: green;
    color:#fff;
    border:1px solid #252525;
    border-radius:18px;
    padding:20px 30px;
    font-size: 20px;
}

.football-test__btn{
    display:inline-flex;
    margin-top:50px;
    background:#E30613;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    font-size: 20px;
}

.football-test__btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(227,6,19,.4);
}

/* Светящиеся шары */

.parallax-ball{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    transition:transform .1s linear;
}

.ball-1{
    width:500px;
    height:500px;
    top:-150px;
    left:-150px;
    background:rgba(227,6,19,.12);
    filter:blur(120px);
}

.ball-2{
    width:400px;
    height:400px;
    right:-100px;
    top:150px;
    background:rgba(227,6,19,.08);
    filter:blur(100px);
}

.ball-3{
    width:450px;
    height:450px;
    bottom:-150px;
    left:40%;
    background:rgba(227,6,19,.10);
    filter:blur(140px);
}

/* Адаптив */

@media(max-width:992px){

    .football-test__title{
        font-size:48px;
    }

    .football-test__grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .football-test{
        padding:80px 0;
    }

    .football-test__title{
        font-size:34px;
    }

    .football-test__text{
        font-size:16px;
    }
}
.analytics-item__table {
    font-size: 16px;
}

.activity{
    padding:120px 0;
    background-image: url(/local/templates/footballintellectgame/static/media/fp3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
    overflow:hidden;
}

.activity::before{
    content:'';
    position:absolute;
    top:-250px;
    right:-250px;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(255,0,0,.12);
    filter:blur(150px);
    pointer-events:none;
}

.activity::after{
    content:'';
    position:absolute;
    bottom:-250px;
    left:-250px;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(255,0,0,.08);
    filter:blur(150px);
    pointer-events:none;
}

.activity .container{
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* =========================
   HERO
========================= */

.activity__hero{
    text-align:center;
    max-width:1000px;
    margin:0 auto 80px;
}

.activity__label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:100px;
    background:rgba(255,0,0,.08);
    border:1px solid rgba(255,0,0,.25);
    color:#ff2b2b;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.activity__hero h2{
    font-size:64px;
    line-height:1.1;
    color:#fff;
    font-weight:900;
    margin:0 0 25px;
}

.activity__hero p{
    font-size:20px;
    line-height:1.8;
    color:#fff;
    margin:0;
}

/* =========================
   EXPERT
========================= */

.activity__expert{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:35px;
    margin-bottom:100px;
}

.activity__expert-content,
.activity__expert-list{
    background: rgba(0, 128, 0, 0.5);
    border:1px solid #1f1f1f;
    border-radius:30px;
    padding:40px;
    transition:.4s;
}

.activity__expert-content:hover,
.activity__expert-list:hover{
    border-color:#ff2b2b;
}

.activity__expert-content h3{
    color:#fff;
    font-size:38px;
    margin:0 0 20px;
}

.activity__expert-content p{
    color:#fff;
    font-size:17px;
    line-height:1.8;
}

.activity__stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.activity__stat{
    background:#437043;
    border:1px solid #252525;
    border-radius:20px;
    padding:25px;
    transition:.4s;
}

.activity__stat:hover{
    transform:translateY(-5px);
    border-color:#ff2b2b;
}

.activity__stat strong{
    display:block;
    color:#ff2b2b;
    font-size:48px;
    font-weight:900;
    margin-bottom:10px;
}

.activity__stat span{
    color:#fff;
    line-height:1.5;
    font-size: 16px;
}

.activity__point{
    position:relative;
    padding:18px 0 18px 30px;
    color:#fff;
    font-size:16px;
    line-height:1.7;
    border-bottom:1px solid #202020;
}

.activity__point:last-child{
    border-bottom:none;
}

.activity__point::before{
    content:'';
    width: 100px;
    height: 100px;
    background-image: url(/local/templates/footballintellectgame/static/media/ball-new.svg);
    background-repeat: no-repeat;
    position:absolute;
    left:0;
    top:28px;
}

/* =========================
   TITLE
========================= */

.activity__title{
    text-align:center;
    margin-bottom:60px;
}

.activity__title h3{
    color:#fff;
    font-size:48px;
    font-weight:800;
}

/* =========================
   CARDS
========================= */

.activity__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.activity-card{
    background: rgba(0, 128, 0, 0.5);
    border:1px solid #1f1f1f;
    border-radius:28px;
    padding:35px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.activity-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:#ff2b2b;
}

.activity-card:hover{
    transform:translateY(-10px);
    border-color:#ff2b2b;
    box-shadow:0 20px 50px rgba(255,0,0,.15);
}

.activity-card__icon{
    font-size:50px;
    margin-bottom:25px;
}

.activity-card h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.activity-card ul{
    margin:0;
    padding-left:20px;
    font-size: 16px;
}

.activity-card li{
    color:#fff;
    line-height:1.8;
    margin-bottom:10px;
}

/* =========================
   ADVANTAGES
========================= */

.activity__advantages{
    margin-top:100px;
    background: rgba(0, 128, 0, 0.5);
    border:1px solid #1f1f1f;
    border-radius:35px;
    padding:60px;
}

.activity__advantages-head{
    text-align:center;
    margin-bottom:45px;
}

.activity__advantages-head span{
    color:#ff2b2b;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:700;
    font-size: 20px;
}

.activity__advantages-head h3{
    color:#fff;
    font-size:48px;
    margin-top:15px;
}

.activity__advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.advantage{
    background:#518737;
    border-left:4px solid green;
    padding:25px;
    border-radius:18px;
    transition:.4s;
}

.advantage:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(255,0,0,.15);
}

.advantage h4{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
}

.advantage p{
    color:#fff;
    line-height:1.8;
}

/* =========================
   QUOTE
========================= */

.activity__quote{
    text-align:center;
    margin-top:120px;
}

.activity__quote h3{
    color:#fff;
    font-size:72px;
    line-height:1.1;
    font-weight:900;
    text-transform:uppercase;
    max-width:1100px;
    margin:0 auto;
}

.activity__quote h3 span{
    color:#ff2b2b;
}

/* =========================
   ANIMATION
========================= */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .activity__grid{
        grid-template-columns:repeat(2,1fr);
    }

    .activity__advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .activity__hero h2{
        font-size:52px;
    }
}

@media(max-width:991px){

    .activity{
        padding:80px 0;
    }

    .activity__expert{
        grid-template-columns:1fr;
    }

    .activity__grid{
        grid-template-columns:1fr;
    }

    .activity__advantages-grid{
        grid-template-columns:1fr;
    }

    .activity__hero h2{
        font-size:40px;
    }

    .activity__title h3,
    .activity__advantages-head h3{
        font-size:34px;
    }

    .activity__quote h3{
        font-size:38px;
    }

    .activity__advantages{
        padding:35px 25px;
    }

    .activity__expert-content,
    .activity__expert-list{
        padding:25px;
    }
    .tab__items {
        grid-template-columns: repeat(2,1fr);
    }
    .portfolio-item {
        width: 100% !important;
    }
}

@media(max-width:576px){

    .activity__hero h2{
        font-size:32px;
    }

    .activity__hero p{
        font-size:16px;
    }

    .activity__stat strong{
        font-size:36px;
    }

    .activity__stats{
        grid-template-columns:1fr;
    }
    .tab__items {
        display: block;
    }
    .about__link {
        width: auto;
    }
    .swiper-wrapper {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    .partners__name {
        width: 100% !important;
    }
    .football__detail {
        display: block;
        padding: 10px;
    }
    .team-item {
        height: 510px;
    }
    .team-item .team-content {
        padding: 0.5rem 0.5rem;
    }
    .sponsor-item img {
        width: 180px !important;
    }
    .home-item .content h1{
        font-size: 5rem;
    }
    .home-item .content p {
        font-size: 18px;
    }
    a.divasoft {
        width: 26%;
    }
    .divasoft__logo img {
        width: 60%;
    }
}
.points-container img {
    width: 100%;
    height: 330px;
    object-fit: fill;
}


.team-name a {
    color: #fff;
    text-decoration: none;
}
.partner-section{
    background-image: url(/local/templates/footballintellectgame/static/media/fp3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color:#fff;
    padding:80px 0;
    font-family:Arial,sans-serif;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.partner-hero{
    text-align:center;
    margin-bottom:60px;
}

.partner-label{
    display:inline-block;
    background:rgba(0,170,90,.2);
    color:#42ff95;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    border:1px solid rgba(66,255,149,.4);
    font-size: 20px;
}

.partner-hero h1{
    font-size:52px;
    margin-bottom:25px;
}

.partner-hero p{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#c8c8c8;
}

.partner-card{
    background: rgba(0, 128, 0, 0.5);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    margin:40px 0;
}

.partner-card h2{
    margin-bottom:20px;
    color:#42ff95;
    font-size: 24px;
}
.partner-card p {
    color: #fff;
    font-size: 20px;
}
.section-title{
    text-align:center;
    font-size:38px;
    margin:70px 0 40px;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.info-box{
    background: rgba(0, 128, 0, 0.5);
    border:1px solid rgba(255,255,255,.08);
    padding:30px;
    border-radius:20px;
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-6px);
    border-color:#42ff95;
}

.icon{
    font-size:42px;
    /*margin-bottom:20px;*/
}

.info-box h3{
    margin-bottom:15px;
    font-size: 24px;
}

.info-box p{
    color:#fff;
    font-size: 20px;
    line-height:1.7;
}

.highlight{
    background:rgba(66,255,149,.08);
    border-left:5px solid #42ff95;
    padding:25px;
    border-radius:15px;
    margin:30px 0;
}

.partner-list{
    list-style:none;
    padding:0;
}

.partner-list li{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size: 18px;
}

.support-block{
    margin-top:70px;
    text-align:center;
    background: rgba(0, 128, 0, 0.5);
    padding:60px 40px;
    border-radius:30px;
}

.support-block h2{
    font-size:42px;
    margin-bottom:25px;
}

.support-block p{
    max-width:800px;
    margin:0 auto 20px;
    color:#d5d5d5;
    line-height:1.8;
    font-size: 18px;
}

.quote{
    margin:40px auto;
    font-size:26px;
    font-weight:700;
    max-width:850px;
}

.partner-btn{
    display:inline-block;
    padding:18px 45px;
    background:#42ff95;
    color:#000;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.3s;
}

.partner-btn:hover{
    transform:scale(1.05);
}

.email{
    margin-top:30px;
    color:#fff;
    font-size:18px;
}

@media(max-width:768px){

    .partner-hero h1{
        font-size:36px;
    }

    .section-title{
        font-size:30px;
    }

    .support-block h2{
        font-size:32px;
    }

}


.contacts-section{
    background-image: url('/local/templates/footballintellectgame/static/media/fp3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:80px 20px;
    color:#fff;
    font-family:Arial,sans-serif;
}

.contacts-container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:450px 1fr;
    gap:50px;
    align-items:center;
}

.contacts-info{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px;
}

.contacts-subtitle{
    display:inline-block;
    color:#69b8ff;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:15px;
}

.contacts-title{
    font-size:34px;
    line-height:1.3;
    margin:0 0 35px;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.contact-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0f2448;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-text strong{
    display:block;
    margin-bottom:8px;
    font-size:18px;
}

.contact-text p{
    margin:0;
    color:#fff;
    line-height:1.7;
    font-size: 20px;
}

.contact-text a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:6px;
    transition:.3s;
    font-size: 20px;
}

.contact-text a:hover{
    color:#fff;
}

.contacts-map{
    height:600px;
    overflow:hidden;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.contacts-map iframe{
    width:100%;
    height:100%;
    border:0;
}

@media(max-width:992px){

    .contacts-container{
        grid-template-columns:1fr;
    }

    .contacts-title{
        font-size:28px;
    }

    .contacts-map{
        height:400px;
    }

}
.heading a {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}
.content {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
div#registerResult {
    color: #fff;
}