@import url("../elements/icons/style.css") all;

:root{
    --black-color: #000000;
    --main-text-color: #333333;
    --color-6: #666666;
    --color-9: #999999;
    --color-c: #cccccc;
    --main-red: #d10000;
    --hover-red: #e83131;
    --white-color: #ffffff;
    --blue-color: #093b5c;
    --hover-blue: #3c5b7c;
    --violet-color:#d41040;
    --fb-color:#fBfBfB;
    --f7-color:#f7f7f7;

    --waiting-color:#8fa1c0;
    --muted-waiting-color:#b6c2d6;
    --max-muted-waiting-color:#ebeff6;
    --danger-color:#ff8080;
    --success-color:#4fc2a0;
    --strong-success-color:#31a180;
    --work-color:#fadb5d;
    --test-color: #0ea9f7;

    --white-color:#ffffff;
    --black-color:#000000;
    --lightgrey-color:#f7f7f7;
    --mutedgrey-color:#f0f0f0;
    --middle-grey:#999999;
    --c-grey:#cccccc;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    opacity: 0.5;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);

}

:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

input, select, textarea, button {
    font-family: 'Montserrat', verdana, arial!important;
    outline: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

div, section, nav, header, footer, li, ul, article, blockquote {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body, html {
    background: var(--white-color);
    padding: 0px;
    margin: 0px;
    font-family: 'Montserrat', verdana, arial!important;
    color: var(--main-text-color);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

a, button, img, a{
    transition: 0.3s;
}

a{
    color:var(--blue-color);
}
a.no-decor{
    text-decoration: none;
}
a:hover{
    color: var(--hover-red);
}

.bold{
    font-weight: bold;
}
.extra-bold{
    font-weight: 900;
}

header{
    position: fixed;
    top:0;
    z-index: 10;
    left:0;
    width:100%;
    padding:15px 0;
    transition: 0.3s;
}
header.sticky{
    background:var(--white-color);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

nav.personalmenu{
    display: none;
    position: fixed;
    bottom:0;
    left:0;
    width:100%;
    height:40px;
    z-index:10;
}
nav.personalmenu button{
    width:100%;
    height:40px;
}
nav.personalmenu button.personal,
button.personal{
    background: var(--blue-color);
    color:var(--white-color);
    border:0;
    font-size:0.9rem;
    font-weight: 500;
}
button.register{
    background: var(--violet-color);
    color:var(--white-color);
    border:0;
    font-size:0.9rem;
    font-weight: 500;
}

.mob-menu svg{
    width:2rem;
    height:2rem;
}

header .logo{
    display: flex;
    align-items: center;
}
header .logo .logo-signature{
    margin-right:10px;
}
header .logo .logo-signature .sign-bold{
    color:var(--blue-color);
    font-weight:900;
    font-size: 1.3rem;
    text-transform: uppercase;
}
header .logo .logo-signature .sign-name{
    color:var(--color-6);
    font-weight:900;
    font-size: 0.82rem;
    text-transform: uppercase;
}
header .logo img{
    width:70px;
    margin-right: 15px;
}
header .logo img.logo-text{
    height:70px;
    width:auto;
    margin:0;
}

header .lk-button{
    border:solid 1px var(--blue-color);
    color:var(--blue-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}
header .lk-button svg{
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 5px;
}
header .lk-button svg path{
    fill:var(--blue-color);
}
header .lk-button:hover{
    background: var(--hover-blue);
    color:var(--white-color);
}
header .lk-button:hover svg path{
    fill:var(--white-color);
}

.register-btn{
    background:var(--violet-color);
    color:var(--white-color);
    border:solid 2px var(--violet-color);
    min-width: 180px;
    font-size: 0.9rem;
}
.register-btn:hover{
    background: var(--main-red);
    color:var(--white-color);
}

main{
    overflow: hidden;
}

nav.main-menu ul{
    display: flex;
    margin:0;
    padding:0;
    justify-content: end;
}
nav.main-menu ul li{
    padding:5px 12px;
    list-style: none;
    font-weight:bold;
    color:var(--blue-color);
    text-transform: uppercase;
    cursor:pointer;
}
nav.main-menu ul li:hover{
    color:var(--violet-color);
}

section.hero{
    position: relative;
    height:100%;
    min-height:800px;
    background:var(--f7-color);
    overflow: hidden;
}
section.hero:after{
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4rem;
    content: '';
    z-index: 4;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(251,251,251,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(251,251,251,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(251,251,251,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#fbfbfb',GradientType=0 );
}

section.hero figure.blackgroud{
    position: absolute;
    width: 100%;
    height:100%;
    z-index:1;
    top:0;
    left:0;
    opacity:0.8;
}
section.hero .container{
    position: relative;
    z-index:3;
    height: 100%;
    padding:120px 0;
}
section.hero .container .row{
    height:100%;
}

section.hero .hero-organiser{
    font-size:1.2rem;
    font-weight:bold;
    text-transform: uppercase;
    color:var(--blue-color);
    margin:1rem 0;
    line-height: 1.2;
}

section.hero .hero-title{
    font-size:3.5rem;
    margin:3rem 0 0.5rem 0;
    color:var(--violet-color);
    font-weight: 900;
    text-transform: uppercase;
}
section.hero .hero-subtitle{
    font-size:3rem;
    margin-bottom:4rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color:var(--blue-color);
}

section.hero .hero-date{
    font-size:2rem;
    font-weight:900;
    text-transform: uppercase;
    color:var(--main-red);
    line-height: 1.2;
}
section.hero .hero-date .hero-date-time{
    font-size: 1.8rem;
    font-weight: 700;
    color:var(--main-text-color);
}
section.hero .hero-location{
    font-size:1rem;
    margin:3rem 0 2rem 0;
    display: flex;
    font-weight: 500;
}
section.hero .hero-location .hero-address{
    font-size: 1.5rem;
    font-weight: bold;
    color:var(--main-red);
}
section.hero .hero-location svg{
    width:4rem;
    height:4rem;
    margin-right:1rem;
}
section.hero .hero-location svg path{
    fill:var(--blue-color);
}
section.hero .hero-format{
    font-weight: bold;
}
section.hero .hero-format b{
    font-size:1.5rem;
    color:var(--blue-color);
    text-transform: uppercase;
    display: block;
}

section.hero .fly-heart{
    position: absolute;
    right:-2rem;
    top:50%;
    transform: translate(0, -50%);
    z-index:2;
    opacity:0.8;
}

section.hero .index-video-box img.register-logo{
    width:100px;
}
section.hero .index-video-box{
    width:90%;
    float:right;
    height:auto;
    background:var(--white-color);
    box-shadow: -25px 25px 30px rgba(0, 0, 0, 0.2);
    position:relative;
    z-index:4;
    border-radius: 15px;
    margin-bottom:40px;
    margin-top:80px;
    background:var(--f7-color);
    transform: rotate(3deg);
    transition:0.3s;
}
section.hero .index-video-box:hover{
    transform: scale(1.05);
}
section.hero .index-register-box{
    padding:30px;
    height:500px;
    border-radius: 15px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: -moz-linear-gradient(top,  rgba(234,232,234,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(234,232,234,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom,  rgba(234,232,234,1) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eae8ea', endColorstr='#00ffffff',GradientType=0 );
    position:relative;
}
section.hero .index-register-box figure{
    position:absolute;
    top:1px;
    left:50%;
    transform: translate(-50%,-100%);
    width:240px;
}
section.hero .index-register-box figure img{
    width:100%;
}

section.hero .hero-website{
    margin-bottom: 1rem;
    font-weight:500;
    position: relative;
    padding-left:4rem;
    line-height: 1.2;
}
section.hero .hero-website .svg{
    width:3.3rem;
    height:3.3rem;
    position: absolute;
    left:0;
    top:50%;
    transform: translateY(-50%);
    border-radius: 1.75rem;
    background: var(--violet-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.hero .hero-website svg{
    width:2.3rem;
    height:2.3rem;
}
section.hero .hero-website svg path{
    fill:var(--white-color);
}
section.hero .hero-website a{
    display:block;
    font-size:1.4rem;
    font-weight:bold;
}

section.hero .hero-alfamed{
    font-weight:500;
    font-size:0.9rem;
    margin-top:2rem;
}
section.hero .hero-alfamed img{
    width:210px;
}


section.appeal{
    background:var(--fb-color);
    padding:5rem 0;
}
section.appeal .appeal-face{
    padding:2rem;
    max-width: 400px;;
    background:var(--white-color);
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin:2rem auto 0 auto;
}
section.appeal h2{
    font-size:2.5rem;
    font-weight:900;
}


section.team{
    padding:4rem 0;
}

section.team .team-master{
    margin:2rem 0;
    padding-left:120px;
    position: relative;
}
section.team .team-master figure{
    width: 100px;
    height: 100px;
    margin:0;
    overflow: hidden;
    border-radius: 75px;
    position: absolute;
    top:0;
    left:0;
}
section.team .team-master figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.team .team-master .name{
    font-size:1.2rem;
    line-height: 1;
}
section.team .team-master .subname{
    font-size:0.8rem;
    margin-top:5px;
    color:var(--color-6);
}
section.team .team-master .desctiption{
    margin-top:0.5rem;
    font-size:.85rem;
}

section.team .team-member{
    padding:1rem;
}
section.team .team-member.f7{
    background-color: var(--f7-color);
}
section.team .team-member figure{
    width:80px;
    height:80px;
    border-radius: 40px;
    overflow: hidden;
    margin:0;
}
section.team .team-member figure img{
    width: 100%;
    height:100%;
    object-fit: cover;
}
section.team .team-member .name{
    font-size:1.2rem;
    line-height: 1.1;
    min-width:220px;
}
.team-basic-members .team-member:nth-child(even){
    background:var(--f7-color);
}

section.team h2{
    font-size:2.5rem;
    font-weight:900;
}
section.team h3{
    font-size:1.6rem;
}

section.team ul.team-members{
    padding:0;
    margin:0;
    -moz-column-count: 3;
    -moz-column-gap: 20px;
    -webkit-column-count: 3;
    -webkit-column-gap: 20px;
    column-count: 3;
    column-gap: 20px;
}
section.team ul.team-members li{
    list-style: none;
    padding:5px 12px;
}
section.team ul.team-members li:hover{
    background: var(--f7-color);
}
section.team .team-members-line{
    padding:0;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
section.team .team-members-line-item{
    padding:.5rem 1.2rem;
    background:var(--f7-color);
    margin:5px;
    font-weight:500;
    border-radius:7px;
    color:var(--blue-color);
    transition: all 0.3s ease;
    font-size:1.1rem;
}

section.terms{
    padding:5rem 0;
    background:var(--fb-color);
    position: relative;
}
section.terms .container{
    position: relative;
    z-index:2;
}
section.terms:after{
    background:var(--white-color);
    width:100%;
    height:12rem;
    position: absolute;
    z-index:1;
    top:0;
    left:0;
    display: none;
    content:'';
}
section.terms .terms-main{
    border-radius: 30px;
    padding:3rem 5rem 7rem 5rem;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2);
}
section.terms h2{
    font-size:2.6rem;
    margin-bottom:3rem;
}
section.terms h3{
    font-size:1.2rem;
}
section.terms h3 b{
    font-size:1.8rem;
}

section.terms .terms-numbers{
    display:flex;
    justify-content: space-between;
}
section.terms .terms-number{
    font-size:1.2rem;
    text-align: center;
}
section.terms .terms-number .number{
    font-size:3rem;
    text-align: center;
}
section.terms .terms-number .number .sm{
    font-size:1.2rem;
    font-weight: 400;
}

section.terms .terms-boxes{
    position: relative;
    width:100%;
}
section.terms .term-box{
    padding:2rem;
    min-height: 380px;
    border-radius: 15px;
    background:var(--white-color);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}
section.terms .term-box:hover{
    transform: scale(1.1);
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.2);
}
section.terms .term-box h3{
    font-size:1.4rem;
    font-weight: bold;
}

section.partners-info{
    padding:4rem 0;
}

section.partners-info .info-download,
section.terms .info-download{
    display: flex;
    align-items: center;
    margin:2rem 0;
}
section.partners-info .info-download img,
section.terms .info-download img{
    width:100px;
}
section.partners-info .info-download img:hover,
section.terms .info-download img:hover{
    transform: scale(1.1);
}
section.partners-info .info-download-text a,
section.terms .info-download-text a{
    font-size:1.2rem;
    text-transform: uppercase;
    display: block;
    color:var(--blue-color);
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}
section.partners-info .info-download-text a:hover,
section.terms .info-download-text a:hover{
    color:var(--hover-red);
}
section.partners-info .info-download-text small,
section.terms .info-download-text small{
    color:var(--color-6);
}


section.partners{
    padding:4rem 0;
}

section.partners .partner{
    padding:1rem 1.5rem;
    border:solid 1px var(--color-c);
    border-radius: 12px;
    text-align: center;
    margin:1rem 0;
    transition: 0.3s;
    min-width: 300px;
}
section.partners .partner.active{
    cursor: pointer;
}
section.partners .partner:hover{
    border-color:var(--white-color);
    box-shadow: 12px 12px 25px rgba(0,0,0,.1);
    transform: translate(-10px, -10px);
}
section.partners .partner .type-title{
    color:var(--blue-color);
    font-weight: 700;
    text-transform: uppercase;
}
section.partners .partner.general .type-title{
    color:var(--violet-color);
}
section.partners .partner.simple .type-title{
    color:var(--waiting-color);
}
section.partners .partner .image-box{
    width:100%;
    height:200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
section.partners .partner .image-box b{
    display: block;
    font-weight:900;
    font-size:1.8rem;
    line-height:1.1;
}
section.partners .partner .image-box img{
    object-fit: contain;
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height: 100%;
}



section.contacts{
    padding-bottom:5rem;
}
.fb-form{
    padding:3rem;
    border-radius: 30px;
    background: -moz-linear-gradient(top,  rgba(212,234,246,1) 0%, rgba(160,210,229,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    background: linear-gradient(to bottom,  rgba(212,234,246,1) 0%,rgba(160,210,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4eaf6', endColorstr='#a0d2e5',GradientType=0 );
}

.fb-form-inputs{
    margin-top:2rem;
    margin-bottom:2rem;
}

.form-input{
    margin-bottom:20px;
    position:relative;
}
.form-input.required input{
    padding-right:30px;
}
.form-input.required:after{
    content:'\2731';
    position:absolute;
    color:var(--main-red);
    right:12px;
    font-size:1rem;
    top:12px;
}
.form-input input, .form-input textarea{
    width:100%;
    min-height:50px;
    padding:5px 20px;
    border-radius:25px;
}
.form-input textarea{
    height:190px;
    padding:20px;
}
.form-input input:focus, .form-input textarea:focus{
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.form-input.error, .form-input.error input{
    border-color:var(--bs-danger);
    color:var(--bs-danger);
}
.form-input.error .input-error{
    display: block;
}
.form-input .input-error{
    position:absolute;
    display:none;
    left:0px;
    top:55px;
    padding:5px;
    border-radius:5px;
    background: var(--bs-danger);
    color:#ffffff;
    z-index:3;
}
.form-input .input-error:after{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 6px 7px;
    border-color: transparent transparent var(--bs-danger) transparent;
    left:15px;
    top:-6px;
    content:'';
    position:absolute;
}

.contacts-person{
    display: flex;
    margin:2rem 0;
}

.contacts-person figure{
    width:100px;
    height:100px;
    overflow:hidden;
    border-radius: 50px;
    margin-right: 15px;
}
.contacts-person figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contacts-person .contacts-person-name{
    font-size:1.4rem;
    font-weight: bold;
    margin:0.5rem 0;
    color:var(--blue-color);
}
.contacts-person a{
    font-size:1.3rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

.modal {
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.6);
}

.modal-body .btn-close {
    position: absolute;
    right: 1.1rem;
    top: 1.1rem;
}


.map{
    position: relative;
    margin-bottom:30px;
}
.map-container{
    height:600px;
    border-radius: 30px;
    overflow: hidden;
}
.map-contacts{
    width:450px;
    position:absolute;
    right:-30px;
    top:50%;
    transform: translateY(-50%);
    z-index:4;
    background:var(--white-color);
    padding:3rem;
    box-shadow: 12px 12px 22px rgba(0, 0, 0, 0.2);
}

.btn-long{
    height:50px;
}

footer{
    background:var(--f7-color);
    padding:3rem 0;
    font-size:0.8rem;
}
.footer-logo{
    width:160px;
}

.underlined-h{
    position:relative;
    margin-bottom:4rem;
}
.underlined-h:after{
    background:var(--main-red);
    left:0px;
    bottom:-20px;
    width:90px;
    height:6px;
    border-radius:3px;
    position: absolute;
    content:'';
}
.underlined-h.text-center:after{
    left:50%;
    margin-left:-45px;
}

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

.red-underline span{
    padding:5px 0;
    border-bottom:solid 3px var(--main-red);
}

.dashed-link{
    text-decoration: none;
    border-bottom: dashed 1px var(--blue-color);
}
.dashed-link:hover{
    border-bottom: solid 1px var(--hover-red);
}


.mob-menu{
	padding:0;
	margin:30px 0;
}
.mob-menu li{
	list-style: none;
	padding:10px 0;
}
ul.mob-menu li a{
	padding: 0.2rem 1rem;
	color:var(--blue-color);
	text-decoration: none;
	text-transform: uppercase;
	font-size:1rem;
	font-weight: bold;
}
ul.mob-menu li a:hover{
	color:var(--hover-red);
}


@keyframes flyHeartAnimation {
    from{
        transform: translate(100%, -50%) scale(0.2);
    }
    to {
        transform: translate(0, -50%) scale(1);
    }
}
@keyframes heroBackgroundAnimation{
    from{
        transform: scale(1.3) rotate(5deg);
    }
    to{
        transform: scale(1) rotate(0);
    }
}

figure.cover img{
    object-fit: cover;
    width: 100%;
    height:100%;
}

figure.contain img{
    object-fit: contain;
    width: 100%;
    height:100%;
}

.scale-btn:hover{
    transform: scale(1.05);
    transition: 0.5s;
}