@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Roboto-Regular.ttf) format('opentype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Roboto-Bold.ttf) format('truetype');
}


* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto';
    margin: 0;
    background: #0E0E0E;
    font-weight: 400;
    overflow-x: hidden;
}

html {
	overflow-x: hidden;
}

p {
    margin: 0;
    color: #FFFFFF;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

input, textarea {
    border: none;
    outline: none;
    background: transparent;
    color: #FFFFFF;
}

button {
    color: #fff;
    border: none;
    outline: none;
    background: transparent;
    transition: 0.2s;
}

button:enabled {
    cursor: pointer;
}


.content {
    width: 1372px;
    margin: 0 auto;
}

.main {
    background: url(../img/main-background.png);
    background-size: cover;
    width: 100%;
}

header {
    padding-top: 15px;
}


header .content {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    width: 50px;
    max-height: 50px;
}

.logo p {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #F99D1C;
}

header nav {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-left: 85px;
}

header nav a {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #3D3D3D;
}

header button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 219px;
    height: 40px;
    border: 1px solid #F99D1C;
    border-radius: 5px;
    margin-left: auto;
    margin-right: 0;
}

header button svg {
    width: 24px;
    height: 24px;
}

header button svg path {
    fill: #F99D1C;
}

header button p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #F99D1C;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-info .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    color: #FFFFFF;
}

.main-info .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFF0CA;
    max-width: 494px;
    margin-top: 14px;
}

.main-info .title .s {
    color: #F99D1C;
}

.main-image {
    height: 697px;
    display: flex;
    align-items: flex-end;
}

.main-info button {
    width: 219px;
    height: 40px;
    border: 1px solid #F99D1C;
    border-radius: 5px;
    margin-top: 22px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #F99D1C;
}

.main-image img {
    width: 542px;
}

.wave {
    width: 100%;
    height: 157px;
    background: url(../img/wave.svg);
    background-size: cover;
}

.events {
    padding-top: 24px;
    margin-bottom: 197px;
}

.events .pretitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
}

.events .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    color: #FFFFFF;
    text-align: center;
}

.events-content {
    width: 100%;
    height: 581px;
    background: #131313;
    border-radius: 10px;
    margin-top: 52px;

    padding-top: 87px;
    padding-left: 186px;
    padding-right: 110px;

    position: relative;
}

.events-content .name {
    display: flex;
    align-items: center;
}

.events-content .name div {
    margin-top: 30px;
}

.events-content .name p {
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    color: #FFFFFF;
}

.events-content .name p .s {
    color: #F99D1C;
}

.events-content .name svg {
    margin-left: -7px;
}

.events-images img {
    position: absolute;
    pointer-events: none;
}

.events-images img:nth-child(1) {
    top: -141px;
    left: -269px;
}

.events-images img:nth-child(2) {
    top: -141px;
    right: -279px;
}

.events-images img:nth-child(3) {
    bottom: -50px;
    left: -107px;
}

.events-images img:nth-child(4) {
    bottom: -113px;
    right: -66px;
}

.events-list {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 42px;
    margin-right: calc(186px - 110px);
}

.event-item {
    width: 316px;
    height: 117px;
    background: #0E0E0E;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 28px;
}

.event-item img {
    width: 130px;
}

.event-item .item-type {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    color: #515151;
}

.event-item .item-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.event-item button {
    margin-top: 6px;
    width: 82px;
    height: 27px;
    background: #F99D1C;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #0E0E0E;
}


.about {
    margin-bottom: 127px;
}

.about .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-image {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 507px;
    height: 499px;
}

.about-image svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.about-info .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    color: #FFFFFF;
}

.about-info .text {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFF0CA;
    margin-top: 12px;
    max-width: 783px;
}

.about-info button {
    width: 298px;
    height: 66px;
    background: #F99D1C;
    border: 1px solid #F99D1C;
    border-radius: 5px;
    margin-top: 27px;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #0E0E0E;
}


.teams {
    margin-bottom: 134px;
}

.teams .pretitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
}

.teams .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 42px;
}

.teams-list {
    display: flex;
    row-gap: 43px;
    column-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team {
    width: 313px;
    height: 117px;
    background: #131313;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding-left: 23px;
}

.team-image {
    width: 70px;
    max-height: 70px;
}

.team-info {
    margin-left: 30px;
}

.team-info .name {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #FFF0CA;
}

.team-info .value {
    display: flex;
    align-items: center;
    gap: 4px;
}

.team-info .value p {
    font-size: 16px;
    line-height: 19px;
    color: #FFF0CA;
}

.team .vote {
    width: 43px;
    height: 115px;
    background: #F99D1C;
    border-radius: 0px 5px 5px 0px;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team .vote p {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #0E0E0E;
    transform: rotate(-90deg);
}


.mobile {
    margin-bottom: 134px;
}

.mobile .content {
    height: 581px;
    background: #131313;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 89px;
}

.mobile-info .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    color: #FFFFFF;
}

.mobile-info .text {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFF0CA;
    margin-top: 12px;
    width: 602px;
}

.mobile-info button {
    width: 298px;
    height: 66px;
    background: #F99D1C;
    border: 1px solid #F99D1C;
    border-radius: 5px;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #0E0E0E;
    margin-top: 32px;
}

.mobile-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.mobile-image img {
    width: 393px;
}


footer {
    width: 100%;
    border-top: 1px solid #3D3D3D;
}

footer .content {
    height: 272px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-left .address {
    font-size: 16px;
    line-height: 19px;
    color: #3D3D3D;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 35px;
}

.copyright {
    font-size: 16px;
    line-height: 19px;
    color: #3D3D3D;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.footer-right .logos {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.footer-right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #3D3D3D;
}







































.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 169px;
    width: 100%;
    min-height: 100vh;
    background: url(../img/login-background.png);
    background-size: cover;
}

.login-image {
    width: 542px;
}

.login-form {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.login-form .back {
    margin-top: 13px;
}

.login-form-content .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    color: #FFFFFF;
}

.login-form-content .text {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFF0CA;
    margin-top: 20px;
    max-width: 575px;
}

.login-form-content button {
    width: 428px;
    height: 66px;
    background: #F99D1C;
    border: 1px solid #F99D1C;
    border-radius: 5px;
    margin-top: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.login-form-content button svg {
    width: 38px;
    height: 38px;
}

.login-form-content button svg path {
    fill: #0E0E0E;
}

.login-form button p {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #0E0E0E;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes rotating {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@media screen and (max-width: 700px) {
	header .content {
		flex-direction: column;
		gap: 30px;
	}
	header button {
		width: 160px!important;
		margin: auto;
	}
}