@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: "gothic";
    src: url('../fonts/centurygothic.ttf');
}

@font-face {
    font-family: "Tahoma";
    src: url('../fonts/tahoma.ttf');
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    color: inherit;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #888888;
    font-size: 14px;
    font-family: "Tahoma", "Inter", sans-serif;
    overflow-x: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
}

.container {
    padding: 0 50px;
}

.page__box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-box__left {
    width: 30%;
}

.page-box__right {
    width: 50%;
    color: #888888 !important;
    font-size: 14px;
}

.page-box__left .page-gallery {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.page-box__left .page-gallery__main-image {
    width: 100%;
}

.page-box__left .page-gallery__main-image img {
    width: 100%;
}

.page-gallery__sub-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}


.page__title {
    font-size: 48px;
    line-height: 123px;
    color: #0087b5;
    text-align: center;
    font-family: "Arial", sans-serif;
}

.popup-fade {
	display: none;
}
.popup-fade:before {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.7;
	z-index: 9999;
}
.popup {
	position: fixed;
	top: 20%;
	left: 0;
    right: 0;
	padding: 30px;
	width: 570px;
	margin-left: -200px;	
	background: #fff;
	border: 1px solid #fff;
	border-radius: 24px; 
	z-index: 99999;
	opacity: 1;	
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.popup__title {
    text-align: center;
    text-transform: uppercase;
}

.popup__text {
    color: #000;
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
}

.popup__form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-form__input {
    padding: 10px 15px;
    width: 100%;
    border: 1px solid #eee;
    color: #000;
}

.popup-form__input:focus {
    border: 1px solid #0087b5;
}


.popup-close {
	position: absolute;
	top: 30px;
	right: 30px;
    width: 20px;
    height: 20px;
}

.popup-close svg {
    width: 100%;
    height: auto;
}

.popup-form__submit {
    border-radius: 29px;
    background-color: #0087b5;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    padding: 20px;
    cursor: pointer;
}

.popup-form__submit:hover {
    background-color: #00678a;
}

.popup__message {
    position: fixed;
    right: 0;
    background-color: #0087b5;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
}

.popup span {
    text-align: left;
    margin: 10px 0;
    display: block;
    width: 100%;
}

.popup-form__select {
    background: none;
    padding: 10px 15px;
    border: 1px solid #eee;
    width: 100%;
}

.popup-form__textarea {
    border: 1px solid #eee;
    background: none;
    width: 100%;
    resize: none;
    padding: 10px 15px;
    font-family: sans-serif;
    height: 80px;
}

h2 {
    font-family: "Arial", sans-serif !important;
}

@media screen and (max-width: 1000px) {
    .page__box  {
        flex-direction: column;
    }

    .page-box__right {
        width: 100%;
    }

    .page-box__right img {
        width: 100%;
    }


    .popup {
        width: 100% !important;
        top: 5%;
    }

    .popup-close {
        top: 10px;
        right: 20px;
    }
}

@media screen and (min-width: 2000px) {
    .container {
        width: 1500px !important;
        margin: 0 auto !important;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
    }

    .about {
        padding-top: 120px !important;
    }

    .about, .relevance, .news, .courses, .evolution, .heroes, .footer {
        width: 1500px;
        margin: 0 auto !important;
        padding-bottom: 220px !important;
    }

    .about__title:after, .relevance:after,.news:after, .courses:after, .evolution:after, .heroes:after,h2#start:before {
        font-size: 200px !important;
    }

    .footer {
        height: auto !important;
        padding-bottom: 100px !important;
    }

    .page__content {
        width: 1400px;
        margin: 0 auto !important;
    }
}

.page__content {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.grecaptcha-badge {
    display: none !important;
}

.totop {
    width: 60px;
    height: 60px;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 30px;
    background-color: #00779e;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s;
}

.totop_visible {
    opacity: 1;
    visibility: visible;
}

.totop svg {
    width: 40px;
    height: 40px;
}

.totop:hover, .hero__load-btn:hover {
    background-color: #00678a;
}

.course__btn:hover {
    background-color: #eee;
}

.evolution__btn:hover, 
.evolution__btn:hover, 
.news__btn:hover, 
.relevance__link:hover,
.anthem-controls__btn:hover {
    color: #00678a;
	text-decoration: underline;
}

.news__tag:hover, .heroes__control:hover {
    background-color: #dbdbdb;
}

h2#start {
    font-size: 60px;
    text-transform: uppercase;
    color: #0087b5;
    text-align: center;
    position: relative;
    z-index: 10;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 120px;
    margin-top: 80px;
}

h2#start:before {
    content: 'ÄÎÑÀÀÔ 48';
    z-index: -10;
    left: 0;
    right: 0;
    top: -10px;
    position: absolute;
    font-size: 15vw;
    color: #f4f4f4;
    font-weight: bold;
}

@media screen and (max-width: 1000px){
    .page__title {
        font-size: 30px !important;
        line-height: normal !important;
    }

    .page-box__left, .page-box__right {
        width: 100%;
    }
}