/*
*****************************
**          FONTS          **
*****************************
*/
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.eot');
    src: url('fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-Light.woff') format('woff'),
    url('fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.eot');
    src: url('fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-Regular.woff') format('woff'),
    url('fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Bold.eot');
    src: url('fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-Bold.woff') format('woff'),
    url('fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-ExtraBold.eot');
    src: url('fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-ExtraBold.woff') format('woff'),
    url('fonts/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Medium.eot');
    src: url('fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-Medium.woff') format('woff'),
    url('fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-SemiBold.eot');
    src: url('fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-SemiBold.woff') format('woff'),
    url('fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
/*font-family: 'Gilroy';*/
/*
**************************
**      KEYFRAMES       **
**************************
*/
@keyframes move {
    from { background-position: -1000px 100%, 0 0;}
    to { background-position: 0 100%, 0 0; }
}
@-webkit-keyframes move {
    from { background-position: -1000px 100%, 0 0;}
    to { background-position: 0 100%, 0 0; }
}
@keyframes moven {
    from { background-position: 1000px 100%, 0 0;}
    to { background-position: 0 100%, 0 0; }
}
@-webkit-keyframes moven {
    from { background-position: 1000px 100%, 0 0;}
    to { background-position: 0 100%, 0 0; }
}
/*
**************************
**         BODY         **
**************************
*/

html {
    width: 100%;   
    overflow-x: hidden;
    overflow-y: auto;
}
body {
    width: 100%;
    height: 100vh; 
    margin:0px; 
    padding:0px; 
    background-color: #003593!important;  
    font-family: 'Gilroy'!important;
    /*overflow-x: hidden;*/
}
a, a:hover { 
    text-decoration: none !important;    
}
ul,ol {
    list-style: none;
}
.scrollup{
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    z-index: 999999;
    background: url('img/gototop.png') no-repeat;    
    background-size: 100%;  
}
.page-content {
    height: 100%;
    width: 100%;
}
/*
**************************
**         MENU         **
**************************
*/
ul.menu {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 100px;
}
.menu li {
    padding: 0;
    width: 100%;
    margin: 0 0 5px;
}
.menu li a {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: .5px;
}
.menu li a:hover, .menu li a.active-link {
    color: #00AEEF;
    transition: all .2s ease;    
}
@media (max-width: 991px) {
    .menu-wrap {
        position: fixed;
        top: 0;
        height: 100%;
        width: 280px;
        left: -280px;
        overflow-x: hidden;
        overflow-y: auto;
        transition: .25s;
        z-index: 10;
    }
    .menu-show {
        left: 0;
        box-shadow: 4px 0px 15px #fff;
        background: #003593;
    }
    .menu-sidebar {
        margin: 0;
        position: relative;
        top: 70px;
    }
    .menu-sidebar li {
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #fff;
    } 
    .menu-sidebar li a {
        padding: 10px 25px;
        display: block;
    }
    .load-btn {
        border-radius: 0 !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin-left: 0 !important;
    }    
}
/*Hamburger Button*/
@media (min-width: 992px) {
    .toggle-button {
        display: none;
    }
}
.toggle-button {
    position: fixed;
    width: 45px;
    height: 33px;
    top: 15px;
    left: 15px;
    transition: .25s;
    z-index: 15;
    background: #003593;
    padding: 10px;
}
.toggle-button:hover {
    cursor: pointer;
}
.toggle-button .menu-bar {
    position: absolute;
    border-radius: 0;
    width: 25px;
    transition: .5s;
}
.toggle-button .menu-bar-top {
    border: 2px solid #fff;
    border-bottom: none;
    top: 10px;
}
.toggle-button .menu-bar:hover {
    opacity: .8;
}
.toggle-button .menu-bar-middle {
    height: 2px;
    background-color: #fff;
    margin-top: 4px;
    margin-bottom: 4px;
    top: 12px;
}
.toggle-button .menu-bar-bottom {
    border: 2px solid #fff;
    border-top: none;
    top: 22px;
}
.button-open {
    position: fixed;
    top: 20px;
    left: 235px;
    background: transparent;
}
.button-open .menu-bar {
    width: 25px;    
}
.button-open .menu-bar-top {
    border-color: #fff;
    transform: rotate(45deg) translate(8px, 8px);
    transition: .5s;
}
.button-open .menu-bar-middle {
    background-color: #fff;
    transform: translate(230px);
    transition: .1s ease-in;
    opacity: 0;
}
.button-open .menu-bar-bottom {
    border-color: #fff;
    transform: rotate(-45deg) translate(0px, -1px);
    transition: .5s;
}
/*
**************************
**        HEADER        **
**************************
*/ 
header {
    position: fixed;
    top: 0px;
    bottom: 0;
    width: 150px;
    height: 100%;
    background: #003593;
    padding: 50px 0 100px 25px;
    display: flex!important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 1;
}
.logotype {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding-right: 15px;  
}
.logotype a {
    margin-bottom: 30px;
}
.logotype img {
    width: 126px;
    max-width: 100%;
}
.load-btn {
    background: #000;
    padding: 2px 15px;
    border: none;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: -15px;
}
/*
**************************
**         MAIN         **
**************************
*/ 
main {
    width: calc(100% - 150px);
    position: relative;
    left: 150px;
    position: relative;
    z-index: 3;
    background: #003593!important;
}
#home {
    padding: 50px 0 25px 150px;
    background-color: #003593;
    height: 80vh; 
}
.banner {
    position: relative;
    height: 100%;
}
.banner img {
    height: 55vh;
}
.banner p {
    color: #fff;
    font-size: 18px;
    line-height: 23px;
    font-weight: 300;
    padding-left: 5vh;
    margin: 5px 0 25px;
}
.arr-down {
    margin-left: 200px;
    display: block;
    width: 35px;
    height: 28px !important;
    text-align: center;
    position: absolute;
    bottom: 0;
}
.arr-down img {
    height: 28px !important;    
}
.soc-links {
    position: absolute;
    bottom: 0;
    right: 35px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}
.soc-links a {
    display: flex;
    color: #fff;
    font-size: 25px;
    margin-left: 10px;
    line-height: .7;
}
.soc-links a:hover {
    color: rgba(255,255,255,.7);    
}
#konkurs {
    padding: 60px 50px 100px 200px;
    background: #fff url(img/bg1.png) no-repeat; 
    background-size: 100% auto;
    background-position: 65px 100%;
    /*margin-bottom: 15px;*/
    height: 106vh;
}
.title-block {
    width: 100%;
}
.title-block h2 {
    color: #003593;
    font-size: 40px;
    line-height: 23px;
    font-weight: normal;
    margin: 0 0 30px;
    text-transform: uppercase;
}
.content-block {
    width: 50%;
    margin: 100px 0 40px;
    position: relative;
}
#conditions .content-block {
    margin: 0 0 40px;
    position: relative;
}
.content-block p {
    color: #003593;
    font-size: 16px;
    line-height: 23px;
    font-weight: 300;
    margin: 0 0 20px;
}
.content-block span{

    font-weight: 600;
    letter-spacing: .3px;
}

.content-block a {
    color: #00AEEF;
    font-weight: 600;
    letter-spacing: .3px;
}
.content-block a:hover {
    color: #00AEEF;
    opacity: .8;    
}
.main-btn {
    background: #003593;
    color: #fff;
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
    letter-spacing: .3px;
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 60px;
    margin: 0 0 80px;
}
.main-btn:focus {
    outline: 0;
    background: #00AEEF;
}
.main-btn:hover {
    background: #00AEEF;
    color: #fff;
}
#gifts {
    padding: 20px 50px 100px 200px;
    background: #fff url(img/bg2.png) no-repeat; 
    background-position: 120px 100%;
    /*margin-bottom: 15px;*/
    height: 100vh;
    position: relative;
}
#gifts .title-block h2 {
    margin: 0 0 60px;
}
#gifts .img-block {
    position: absolute;
    top: 70px;
    left: 53%;
    z-index: 1;
}
.content-block h3 {
    color: #003593;
    font-size: 20px;
    line-height: 23px;
    font-weight: 700;
    letter-spacing: .3px;
    margin: 0;
    text-transform: uppercase;
}
.content-block span.big {
    font-size: 20px;
    line-height: 23px;
    font-weight: 700; 
    letter-spacing: .3px;
    color: #003593;  
}
strong {
    font-weight: 700 !important;
    letter-spacing: .3px;
    font-size: 16px;
    line-height: 23px;    
}
.content-block table {
    width: 100%;
    position: relative;
    z-index: 2;    
}
.content-block table tr td:first-child {
    width: 30%;
    padding: 0;
    vertical-align: baseline;
}
.content-block table tr td:nth-child(2) {
    width: 70%;    
}
#juri {
    padding: 70px 0 25px;
    /*margin-bottom: 25px;*/
    height: 100vh;
    background: #fff;
}
.juri-block {
    padding: 50px 0 0;
    background: #fff;
    height: 94vh;
}
.juri-block .img-block {
    margin-bottom: 2rem;
}
.juri-block .img-block img {
    max-width: 100%;
}
.juri-block .title-block {
    padding: 0 50px 0 200px;
    margin-bottom: 4rem;
}
#juri .title-block {
    padding: 0 50px 0 200px;
    margin-bottom: 4rem;
}
.juri {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 50px 0 100px;
}
.juri-memeber {
    margin: 0 0 25px;
}
.juri-block .juri-memeber img {
    height: auto;
}
.juri-memeber img {
    max-width: 100%;
    width: auto;
    margin: 0 auto 30px;
    height: 165px;
}
.juri-memeber span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700; 
    color: #009FE4;
    margin: 0 0 5px; 
    display: block;   
}
.juri-memeber h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700; 
    letter-spacing: .5px;
    color: #003593;
    margin: 0 0 5px;    
}
.juri-memeber p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400; 
    color: #003593;
    margin: 0;    
}
.after-text {
    padding: 30px 50px 0 100px;
}
.after-text p {
    font-size: 20px;
    line-height: 23px;
    font-weight: 400; 
    color: #003593;
    margin: 0 0 2rem;
}
#conditions {
    padding: 50px 50px 60px 200px;   
    height: 48vh; 
    background: #fff;
}
#conditions .main-btn {
    width: 320px;
    font-size: 18px;
    text-transform: capitalize;
}
#conditions .main-btn:hover {
    color: #fff;
}
#load {
    padding: 50px 50px 100px 200px;
    background: #003593 url(img/eye.png) no-repeat;
    background-position: 165% -70px;
    margin-bottom: 95px;
    height: calc(52vh - 145px);
}
.load {
    padding: 50px 50px 100px 200px;
    background: #003593 url(img/eye.png) no-repeat;
    background-position: 165% -70px;
    margin-bottom: 95px;
}
.white-bg {
    background: #fff;
    color: #003593;
    width: 320px;
    font-size: 18px;
    text-transform: capitalize;
}
.white-bg:hover {
    color: #fff;
}
.white-bg:focus {
    color: #fff;
}
/*
**************************
**        FOOTER        **
**************************
*/ 
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;    
}
.footer-bg {
    width: 100%;
    height: 100px;
    background: url(img/people2.png) repeat-x top left;    
    animation: move 100s linear infinite;
    -webkit-animation: move 100s linear infinite;
}
.footer-bg-2 {
    width: 100%;
    height: 100px;
    background: url(img/people3.png) repeat-x top left;    
    animation: moven 100s linear infinite;
    -webkit-animation: moven 100s linear infinite;
    position: relative;
}
.hero {
    position: absolute;
    bottom: 0;
    left: 35%;
    height: 100px;
    padding: 0 15px;
    background: #003593;
    width: 90px;
    display: flex;
    align-items: flex-end;
    z-index: 5;
}
.hero img {
    height: 95px;
}
.modal .main-btn {
    margin: 20px 0 0;
    height: 50px;
}
.fade {
    background: rgba(0, 53, 147, .7) !important;
}
.modal-dialog {
    max-width: none !important;
    margin: 0 !important;
    height: 100vh !important;
    width: 100% !important;
    position: relative;
    left: 0;
}
.modal-content {
    border: none!important;
    border-radius: 0!important;
    outline: 0!important;
    height: 100%!important;
    background: url(img/singleman.png) no-repeat bottom left;
    background-position-x: 2%;
}
.modal-content::after {
    content: '';
    position: absolute;
    bottom: 126px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: #fff;
    transform: rotate(45deg);
}
.modal-header {
    padding: 0 !important;
    border-bottom: none !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    position: absolute;
    bottom: 145px;
    z-index: 5;
}
.modal-header .close {
    padding: 0!important;
    margin: 0!important;
}
.close {
    font-size: 18px!important;
    font-weight: 700;
    line-height: 21px!important;
    color: #00AEEF!important;
    text-shadow: none!important;
    opacity: 1!important;
}
.close:focus {
    outline: 0;
}
.modal-body {
    padding: 2rem 5rem 1rem 5rem!important;
}
.modal-body h2 {
    color: #003593;    
    font-size: 40px;
    line-height: 23px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.form-group {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px!important;
    position: relative;
}
.form-group label { 
    color: #003593;    
    font-size: 20px;
    line-height: 23px;
    font-weight: 400;  
    margin: 0;
}
.form-control {
    border-top: none!important;
    border-right: none!important;
    border-left: none!important;
    border-bottom: 2px dotted #00aef2!important;
    border-radius: 0 !important;
    font-size: 16px;
    height: 30px;
    color: #000;
}
.form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: .375rem .75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-group2 {
    flex-wrap: wrap;
    margin-top: 20px;
}
.form-group2 label {
    width: 100%;
}
.form-check {
    padding-left: 0!important;
}
.checkbox-text { 
    color: #003593;    
    font-size: 20px;
    line-height: 23px;
    font-weight: 400;  
    margin: 0;
}
.custom-control {
    padding-left: 30px!important;
}
.custom-control-label::before {
    top: 0.1rem!important;
    left: -30px!important;
    width: 20px!important;
    height: 20px!important;
}
.custom-checkbox .custom-control-label::before {
    border-radius: 0!important;
    border: 2px dotted #00aeef!important;
}
.custom-control-input:checked~.custom-control-label::before {
    border-color: #003593!important;
    background-color: #003593!important;    
}
.custom-control-label::after {
    position: absolute;
    top: .1rem!important;
    left: -30px!important;
    width: 20px!important;
    height: 20px!important;    
}
.box {
    font-size: 1.25rem;
    /*background-color: #fff;*/
    position: relative;
    width: 100%;    
}
.box__input {
    display: flex;
    align-items: center;
    position: relative;
    height: 80px;
    width: 100%;
    margin: 10px 0;
    outline: 2px dotted #00aef2;
    outline-offset: 0;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
}


.box.is-dragover .box__input {
    outline-offset: -20px;
    outline-color: #c8dadf;
    background-color: #fff;
}
.box__dragndrop,
.box__icon {
    display: none;
}
.box.has-advanced-upload .box__dragndrop {
    display: inline;
    margin-right: 7px;
}
.smalltext {
    font-size: 16px;
    text-align: left;
}
.box.has-advanced-upload .box__icon {
    width: 100%;
    height: 80px;
    fill: #92b0b3;
    display: block;
    margin-bottom: 40px;
}
.box.is-uploading .box__input,
.box.is-success .box__input,
.box.is-error .box__input {
    visibility: hidden;
}
.box__uploading,
.box__success,
.box__error {
    display: none;
}
.box.is-uploading .box__uploading,
.box.is-success .box__success,
.box.is-error .box__error {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY( -50% );
    transform: translateY( -50% );
}
.box__uploading {
    font-style: italic;
}

@-webkit-keyframes appear-from-inside {
    from    { -webkit-transform: translateY( -50% ) scale( 0 ); }
    75%     { -webkit-transform: translateY( -50% ) scale( 1.1 ); }
    to      { -webkit-transform: translateY( -50% ) scale( 1 ); }
}
@keyframes appear-from-inside {
    from    { transform: translateY( -50% ) scale( 0 ); }
    75%     { transform: translateY( -50% ) scale( 1.1 ); }
    to      { transform: translateY( -50% ) scale( 1 ); }
}
.box__success {
    -webkit-animation: appear-from-inside .25s ease-in-out;
    animation: appear-from-inside .25s ease-in-out;
}
.box__restart {
    font-weight: 700;
}
.box__restart:focus,
.box__restart:hover {
    color: #39bfd3;
}
.box__file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.box__file + label {
    max-width: 100%;
    width: 100%;
    height: 40px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.box__file + label:hover strong,
.box__file:focus + label strong,
.box__file.has-focus + label strong {
    color: #39bfd3;
}
.box__file:focus + label,
.box__file.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}
.box__file + label * {
    /* pointer-events: none; */ /* in case of FastClick lib use */
}
.no-js .box__file + label {
    display: none;
}
.no-js .box__button {
    display: block;
}
.box__button {
    font-weight: 700;
    color: #e5edf1;
    background-color: #39bfd3;
    display: none;
    padding: 8px 16px;
    margin: 40px auto 0;
}
.box__button:hover,
.box__button:focus {
    background-color: #0f3c4b;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}


.inputfile + label {
    cursor: pointer; /* "hand" cursor */
}
.inputfile + label * {
    pointer-events: none;
}

.box__input .fa-plus {
    position: relative;
    left: -20px;
    font-size: 30px;
    color: #007bff;
}
.top-block {
    padding: 60px 50px 60px 200px;
    background: #fff;
    height: auto;
}
.top-block p {
    color: #003593;
    font-size: 16px;
    line-height: 23px;
    font-weight: 300;
    margin: 0 0 20px;
}
@media (max-width: 991px) {
    .top-block {
        padding: 60px 100px 62px;
        background-position: 0 100%;
        height: auto;
    }
}
@media (max-width: 767px) {
    .top-block {
        padding: 60px 60px 52px;
    }
}
@media (max-width: 479px) {
    .top-block {
        padding: 35px 15px 33px;
    }
    .small-caption {
        font-size: 66%;
    }
    .top-block p {
        margin: 0 0 8px;
    }
}