:root{
    --start-angle:0deg;
    --angle-180:180deg;
    --radial-gradient-gold:#f2a36600 25deg,#f2a366 43.4deg,#fbe3d100 60deg,#101419cc 0,#fff0 310deg,#101419cc 408.4deg;
    --radial-gradient-blue:#f2a36600 25deg,#a3b8d6 43.4deg,#fbe3d100 60deg,#101419cc 0,#fff0 310deg,#101419cc 408.4deg;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Cera Pro', sans-serif;
    font-size: 16px;
    color: #3d3d3d;
}

ul,ol{
    margin: 0;
    padding: 0;
    list-style: none;
}

a{
    color: #3498db;
}
a:hover,
a:focus{
    color: inherit;
    text-decoration: none;
}


/* PRELOADER */
body.loaded {
    /*overflow: auto;*/
}

body.loaded .animate-fade-up-1s {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

body.loaded .animate-fade-up-2s {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

body.loaded .animate-fade-up-3s {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    z-index: 1001;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0C846E;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #f3f3f3;
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 1000;
}
.loader-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 20rem;
    height: 2rem;
    margin: auto;
    text-align: center;
}
.ball-pulse > div:first-child {
    background-color: #3498db;
}
.ball-pulse > div:nth-child(2) {
    background-color: #eecd5b;
}
.ball-pulse > div:nth-child(3) {
    background-color: #3498db;
}
.pace .pace-progress{
    background-color: #3498db;
}
.pace .pace-progress::after{
    color: #3498db;
}


/* BOOSTRAP */
.container{
    max-width: 1200px;
}
.btn,
.form-control,
.dropdown-menu,
.card,
.card-img,
.card-img-top{
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.form-group{
    margin-bottom: 20px;
}
/*.form-group:last-child{*/
/*    margin-top: 30px;*/
/*}*/
.form-control{
    height: 40px;
    border-color: #E6E8E9;
    border-width: 2px;
}
label{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: #3d3d3d;
}
.btn{
    padding: 8px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-width: 2px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.btn-sm{
    padding: 6px 24px;
}
.btn-xs{
    padding: 4px 12px;
}
.btn-primary{
    background: linear-gradient(90deg, #6e0f56 0%, #bb212f 100%);
    border-image: linear-gradient(to right, #6e0f56 0%, #bb212f 100%) 1;
    color: #ffffff;
}
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle{
    border-color: #3498db;
    background-color: #3498db;
    color: #ffffff;
    opacity: 0.75;
}
.btn-light,
.btn-light-secondary{
    background-color: #ffffff;
    border-color: #ffffff;
    color: #6e0f56;
}
.btn-light:hover,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle{
    background: linear-gradient(90deg, #6e0f56 0%, #bb212f 100%);
    border-image: linear-gradient(to right, #6e0f56 0%, #bb212f 100%) 1;
    color: #ffffff;
}
.btn-light-secondary:hover,
.btn-light-secondary:not(:disabled):not(.disabled).active,
.btn-light-secondary:not(:disabled):not(.disabled):active,
.show>.btn-light-secondary.dropdown-toggle{
    background: linear-gradient(90deg, #c39b00 0%, #ffec00 100%);
    border-image: linear-gradient(to right, #c39b00 0%, #ffec00 100%) 1;
    color: #6e0f56;
}
.btn-secondary{
    background-color: #0C846E;
    border-color: #0C846E;
    color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle{
    background-color: #0C846E;
    border-color: #0C846E;
    color: #ffffff;
    opacity: 0.75;
}
.btn-outline-primary{
    border-color: #3498db;
    color: #3498db;
}
.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle{
    color: #FFFFFF;
    background-color: #3498db;
    border-color: #3498db;
}
.btn-outline-secondary{
    border-color: #eecd5b;
    color: #3d3d3d;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle{
    color: #3d3d3d;
    background-color: #eecd5b;
    border-color: #eecd5b;
}
.btn-outline-light{
    border-color: #ffffff;
    color: #ffffff;
}
.btn-outline-light:hover,
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle{
    color: #3498db;
    background-color: #ffffff;
    border-color: #ffffff;
}
.btn-outline-light:focus{
    color: #ffffff;
}
.btn-outline-light:focus:hover{
    color: #3498db;
}
.dropdown-toggle::after{
    content: '\e9ac';
    font-family: 'boxicons';
    border: 0;
}
.dropdown-menu{
    border: 0;
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.dropdown-item:focus,
.dropdown-item:hover{
    background: none;
}

.card{
    width: 100%;
    border: none;
}
.card-special{
    background: #3498db;
    color: #FFFFFF;
    border: none !important;
}
.card-shadow{
    -webkit-box-shadow: 0 0 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 30px rgba(0,0,0,0.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.card-extra-nav{
    margin-top: -3rem;
}
.card-extra-nav .btn{
    font-size: 0.875rem;
    color: #3498db;
}

.text-primary{
    color: #3498db !important;
}
.text-secondary{
    color: #0C846E !important;
}
.bg-light{
    background-color: #F5F4F2 !important;
}
.bg-light-secondary{
    background-color: #E6E8E9 !important;
}
.bg-primary{
    background-color: #3498db !important;
}
.bg-secondary{
    background-color: #0C846E !important;
}
.bg-primary-gradient{
    background: linear-gradient(90deg, #6e0f56 0%, #bb212f 100%);
}


/* MARGINS & PADDINGS */
.mb-90{
    margin-bottom: 90px;
}


.modal-header,
.modal-footer,
.modal-body{
    padding: 30px;
}
.modal-title{
    font-size: 16px;
    font-weight: 700;
    color: #3d3d3d;
    text-transform: uppercase;
}
.modal-body{
    font-size: 16px;
    font-weight: 500;
}
.close{
    color: #5B6770;
}
.modal-body h4{
    font-size: 24px;
    color: #6e0f56;
}
.modal-body h5{
    color: #bb212f;
}
.modal .close{
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 32px;
}


/* HELPER */
.link-hover {
    position: relative;
    line-height: 1.5;
}
.link-hover .hover-line {
    padding: 10px 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#3d3d3d), to(#3d3d3d));
    background-image: linear-gradient(to right, #3d3d3d 0%, #3d3d3d 100%);
    background-size: 0 2px;
    background-position: 0 95%;
    background-repeat: no-repeat;
    -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.link-hover-white .hover-line{
    background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#ffffff));
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
}
.link-hover-blue .hover-line{
    background-image: -webkit-gradient(linear, left top, right top, from(#3498db), to(#3498db));
    background-image: linear-gradient(to right, #3498db 0%, #3498db 100%);
}
.link-hover:hover .hover-line{
    background-size: 100% 2px;
}

/* HEADER */
.header-fixed .header{
    position: fixed;
    top: 0;
    z-index: 111;
    width: 100%;
}
.header{
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.header.smaller{
    background: linear-gradient(90deg, #6e0f56 0%, #bb212f 100%);
    -webkit-box-shadow: 0 0 30px rgba(61,61,61,0.1);
    -moz-box-shadow: 0 0 30px rgba(61,61,61,0.1);
    box-shadow: 0 0 30px rgba(61,61,61,0.1);
}
.header__btn {
    display: none;
    position: absolute;
    width: 24px;
    height: 22px;
    left: 0;
    box-shadow: none;
    border: none;
    background: none;
}
.header__btn:focus{
     outline: 0;
}
.header__btn span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 3px;
    transition: 0.5s ease;
    opacity: 1;
}
.header__btn span:first-child {
    top: 0;
}
.header__btn span:nth-child(2) {
    top: 10px;
    width: 16px;
}
.header__btn span:last-child {
    top: 20px;
    width: 8px;
}
.header__btn--active span {
    background: #ffffff;
}
.header--active .header__btn span {
    background: #ffffff;
}
.header__btn--active span:first-child {
    transform: rotate(45deg);
    top: 10px;
}
.header__btn--active span:nth-child(2) {
    opacity: 0;
}
.header__btn--active span:last-child {
    width: 24px;
    transform: rotate(-45deg);
    top: 10px;
}
.navbar{
    padding: 30px 0;
}
.logo > img{
    width: 160px;
}
.logo > span{
    margin-left: 20px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.25;
    text-transform: uppercase;
}
.navbar-brand > span{
    color: #3498db;
    width: 120px;
    white-space: normal;
}
.header-fixed .navbar-widget a{
    color: #ffffff;
}
.header-fixed .header.smaller .navbar-widget a{
    color: #3498db;
}
.navbar-menu{
    top: 0;
    z-index: 5;
}
.navbar-menu .nav-item:first-child{
    margin-left: 0;
}
.navbar-menu .nav-item{
    margin-left: 30px;
}
.navbar-menu .nav-link{
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.navbar-menu .nav-link i{
    display: block;
    margin-top: 2px;
    font-size: 32px;
}
.header.smaller .navbar-menu .nav-link{
    /*color: #3d3d3d;*/
}



/* HERO */
.hero{
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-color: #333333;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}
.hero::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 61, 61, 0.25);
}
.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 100%;
    color: #ffffff;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.hero-content h1{
    margin-bottom: 30px;
    font-size: 96px;
    font-weight: 500;
}
.hero-content p{
    margin: 30px 0;
    font-size: 20px;
}
.hero-content i{
    font-size: 64px;
    color: #ffffff;
}
.hero-actions .btn{
    margin-left: 20px;
}
.hero-actions .btn:first-child{
    margin-left: 0;
}
.hero video{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
.hero img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION */
.section{
    padding: 90px 0;
    overflow: hidden;
}
.section-title{
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}
.bg-primary .section-title,
.bg-secondary .section-title{
    color: #FFFFFF;
}
.section-title-line{
    height: 2px;
    width: 100px;
    margin-right: 20px;
    background-color: #3498db;
}
.bg-primary .section-title-line{
    background-color: #FFFFFF;
}
.section-pre{
    position: relative;
    margin-bottom: 90px;
    font-size: 64px;
    font-weight: bold;
    line-height: 1;
}
.section-pre p{
    margin-top: 30px;
    font-size: 16px;
}
.section-element{
    position: absolute;
}
.section-element-container img{
    height: auto;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    vertical-align: middle;
    display: inline-block;
}
.section-element-vector{
    width: 96vw;
    max-width: 96vw;
    top: -24vw;
    right: -36vw;
}
.section-element-vector .section-element-container{
    --e-transform-rotateZ: 45deg;
    --e-transform-flipX: -1;
    --e-transform-flipY: -1;
    transform: perspective(var(--e-transform-perspective, 0)) rotate(var(--e-transform-rotateZ, 0)) rotateX(var(--e-transform-rotateX, 0)) rotateY(var(--e-transform-rotateY, 0)) translate(var(--e-transform-translate, 0)) translateX(var(--e-transform-translateX, 0)) translateY(var(--e-transform-translateY, 0)) scaleX(calc(var(--e-transform-flipX, 1)* var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1)* var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX, 0)) skewY(var(--e-transform-skewY, 0));
    transform-origin: var(--e-transform-origin-y) var(--e-transform-origin-x);
}
.section-element-vector .section-element-container img{
    opacity: 0.25;
}
.section-header,
.section-content,
.section-footer{
    width: 100%;
}
.section-body{
    padding-top: 60px;
}
.section-body h2{
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 900;
}
.section-body h3{
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
}
.section-body p{
    font-size: 18px;
}
.section-body em{
    font-size: 18px;
    font-weight: 500;
}
.section-footer{
    padding: 30px 0;
}


/* COUNTDOWN */
.section-countdown{
    /*padding: 60px 0;*/
    background-image: url('../img/bg/overlay-1.png');
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.countdown-item{
    text-align: center;
}
.countdown-digits{
    margin-bottom: 10px;
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
}
.countdown-label{
    font-size: 24px;
}
.countdown-separator{
    margin: 0 45px;
    font-size: 48px;
    font-weight: bold;
}


/* VOTE */
.section-vote{
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.section-vote:nth-of-type(2n+1){
    background-image: url('../img/bg/bg-1.png');
}
.section-vote:nth-of-type(2n){
    background-image: url('../img/bg/bg-2.png');
}
.card-vote{
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: none;
}
.card-vote::before{
    content: '';
}
.card-vote .card-img{
    height: 320px;
}
.card-vote .card-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-vote .card-btn{
    padding: 20px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;

    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.card-vote .card-btn-result span{
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;

    background-color: #32de84;
    color: #ffffff;
}
.section-vote:nth-of-type(2n+1) .card-vote .card-btn{
    background: linear-gradient(90deg, #c39b00 0%, #ffec00 100%);
    color: #6e0f56;
}
.section-vote:nth-of-type(2n+1) .card-vote .card-btn:hover,
.section-vote:nth-of-type(2n+1) .card-vote .card-btn:focus{
    background: #ffffff;
    color: #6e0f56;
}
.section-vote:nth-of-type(2n) .card-vote .card-btn{
    background: linear-gradient(60deg, #bb212f 0%, #6e0f56 100%);
    color: #ffffff;
}
.section-vote:nth-of-type(2n) .card-vote .card-btn:hover,
.section-vote:nth-of-type(2n) .card-vote .card-btn:focus{
    background: #ffffff;
    color: #6e0f56;
}
.card-vote .card-body{
    padding: 20px 0;
}
.card-vote .card-body li{
    margin-right: 10px;
}
.card-vote .card-body li:last-child{
    margin-right: 0;
}
.card-vote .card-body li a{
    font-size: 32px;
    color: #ffffff;
}

/* PROMO */
.section-promo .section-title{
    /*margin-left: -40%;*/
}
.section-promo .section-body{
    font-size: 20px;
    font-weight: 500;
}
.section-promo .section-body h4{
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #6e0f56;
    text-transform: uppercase;
}
.section-promo .section-body li{
    margin-bottom: 20px;
}
.section-promo .section-body li:last-child{
    margin-bottom: 0;
}
.section-promo .section-body i{
    margin-right: 30px;
    font-size: 48px;
    background: linear-gradient(-90deg, #bb212f 0%, #6e0f56 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-promo .section-img{
    position: relative;
}
.section-promo .section-img:before{
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, #bb212f 0%, #6e0f56 100%);
}
.section-promo .section-img img,
.section-promo .section-img iframe{
    position: relative;
    z-index: 1;
}
.section-promo .section-img i{
    position: absolute;
    z-index: 2;
    font-size: 72px;
    color: #ffffff;
    cursor: pointer;
}
.tickets{
    margin-right: 18px;
}
.tickets img{
    display: block;
    margin-bottom: 10px;
    width: 60px;
    height: auto;
}
.section-promo-videos .section-img{
    margin: 0 20px;
}
.section-promo-videos .section-img:before{
    bottom: -20px;
    left: -20px;
}
.section-promo-videos h5{
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

/* ABOUT */
.section-about .section-title{
    /*font-size: 40px;*/
}
.section-about .about-text img{
    float: right;
    width: 240px;
    margin-left: 30px;
    margin-bottom: 30px;
}
.section-about .about-text + [data-readmore-toggle]{
    color: #6e0f56;
}

/* CONTACTS */
.section-contacts{
    background: #F5F4F2;
}
.contact-card{
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    padding: 40px;
    color: #FFFFFF;
    background: linear-gradient(-90deg, #bb212f 0%, #6e0f56 100%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.contact-card li{
    margin-bottom: 30px;
}
.contact-card li:last-child{
    margin-bottom: 15px;
}
.contact-card h3{
    margin-bottom: 40px;
    font-weight: bold;
}
.contact-card h5{
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
}
.contact-card a{
    display: block;
    font-size: 20px;
    line-height: 1;
    color: #FFFFFF;
}
.contact-card i{
    font-size: 32px;
    margin-right: 20px;
}
.section-contacts iframe{
    border: 0 !important;
    width: 100%;
}

.about-text{
    overflow: hidden;
}
.about-text + [data-readmore-toggle],
.about-text[data-readmore]{
    display: block;
    width: 100%;
}
.about-text + [data-readmore-toggle]{
    margin-top: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3498db;
}

/* FOOTER */
.footer{
    padding: 60px 0 30px;
    color: #ffffff;
}
.footer .logo{
    display: inline-block;
}
.footer .logo img{
    height: 40px;
    width: auto;
}
.footer-nav li{
    margin-left: 20px;
}
.footer-nav li a{
    color: #ffffff;
}

.socials li{
    margin-right: 20px;
}
.socials a{
    font-size: 24px;
    color: #ffffff;
}
.copyright{
    margin-bottom: 0;
    font-size: 14px;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #bb212f;
    z-index: 1001;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #6e0f56;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ffec00;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #f3f3f3;
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


@media (max-width: 767px){

    .btn{
        padding: 6px 20px;
    }
    .logo{
        padding: 20px 0;
    }
    .logo > img{
        width: auto;
        height: 30px;
    }
    .header__btn {
        display: block;
    }
    .navbar{
        align-items: start;
        position: fixed;
        width: 250px;
        top: 70px;
        bottom: 0;
        left: 0;
        background: linear-gradient(-90deg, #bb212f 0%, #6e0f56 100%);
        padding: 30px 15px 0;
        transition: transform 0.5s ease;
        transform: translate3d(-250px, 0, 0);
    }
    .navbar--active{
        transform: translate3d(0, 0, 0);
    }
    .navbar-menu .nav-item{
        margin: 0;
    }
    .navbar-nav{
        width: 100%;
    }

    /* MODAL */
    .modal-body h4{
        font-size: 20px;
    }
    .modal-body h5{
        font-size: 16px;
    }

    /* HERO */
    .hero{
        height: auto;
    }
    .hero video{
        height: auto;
        width: 100%;
    }
    .hero-content h1{
        margin-top: 70px;
        margin-bottom: 0;
        font-size: 24px;
    }
    .hero-content p{
        margin: 20px 0;
        font-size: 16px;
    }
    .hero-actions .btn{
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }

    /* SECTION */
    .section{
        padding: 45px 0;
    }
    .section .btn{
        white-space: nowrap;
    }
    .section-header p:last-child{
        margin-bottom: 0;
    }
    .section-title{
        font-size: 20px;
    }
    .section-title-line{
        width: 20px;
        margin-right: 10px;
    }
    .section-title-line::before{
        width: 30px;
        height: 2px;
    }
    .section-pre{
        margin-bottom: 45px;
        font-size: 32px;
    }
    .section-content{
        padding-top: 0;
    }
    .section-body{
        padding-top: 30px;
    }
    .section-body h2{
        margin-bottom: 15px;
        font-size: 18px;
        line-height: 1.5;
    }
    .section-body h3{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .section-body p{
        font-size: 16px;
    }
    .section-body em{
        font-size: 16px;
    }

    .countdown-digits{
        font-size: 24px;
    }
    .countdown-label{
        font-size: 16px;
    }
    .countdown-separator{
        margin: 0 10px;
        font-size: 24px;
    }

    /*PROMO*/
    .section-promo .section-img{
        margin-bottom: 60px;
    }
    .section-promo .section-img:before{
        width: 90%;
        left: 5%;
        bottom: -20px;
    }
    .section-promo .section-body{
        font-size: 16px;
    }
    .section-promo .section-body i{
        margin-right: 15px;
        font-size: 32px;
    }

    /*VOTE*/
    .section-vote .section-title{
        text-align: center;
    }
    .card-vote{
        padding: 0 30px;
    }
    .card-vote .card-img{
        height: 360px;
    }
    .card-vote .card-title{
        font-size: 20px;
    }

    /*ABOUT*/
    .section-about .about-text img{
        display: block;
        height: 200px;
        width: auto;
        float: none;
        margin-left: 0;
        padding-left: 0 !important;
    }

    /*CONTACTS*/
    .contact-card{
        position: relative;
        margin: 0 15px;
        top: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .contact-card i{
        font-size: 24px;
    }
    .contact-card a{
        font-size: 16px;
    }

    /* FOOTER */
    .footer{
        padding: 30px 0;
    }
    .footer .logo{
        padding: 0;
    }
    .footer .logo img{
        width: 100px;
    }
    .footer .widget{
        margin-top: 0;
    }
    .footer-nav{
        margin-top: 20px;
    }
    .footer-nav li:first-child{
        margin-left: 0;
    }
    .socials{
        margin-bottom: 20px;
    }
    .socials li:first-child{
        margin-left: 0;
    }
    .copyright{
        margin-bottom: 20px;
    }
}

/*@media (max-width: 1640px){*/
/*    .hero video{*/
/*        width: auto;*/
/*        height: 100%;*/
/*    }*/
/*}*/

/*@media (max-width: 1640px) and (max-height: 700px){*/
/*    .hero video{*/
/*        width: 100%;*/
/*        height: auto;*/
/*    }*/
/*}*/

/*@media (max-width: 767px) and (max-height: 700px){*/
/*    .hero video{*/
/*        width: auto;*/
/*        height: 100%;*/
/*    }*/
/*}*/
