/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;

}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;

}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {
    padding: 100px 0;
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

h1 {
    font-size: 26px;
    line-height: 32px;
}

h2 {
    font-size: 22px;
    line-height: 28px;
}

h3 {
    font-size: 18px;
    line-height: 28px;
}

h4 {
    font-size: 18px;
    line-height: 28px;
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 18px;
    line-height: 28px;
}

strong {
    font-weight: 700;
}

a {
    color: #da763a;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #D21113;
    outline: 0;
    text-decoration: none;
}

p {
    color: #000000;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.heading {
    margin: 35px 0 35px 0;
    font-size: 34px;
    line-height: 41px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.button {
    padding: 12px 24px;
    display: table;
    border-radius: 6px;
    font-size: 16px;
    letter-spacing: 0.3px;
    font-weight: 500;
    min-width: 150px;
    text-align: center;
    margin: 0 auto;
    color: #ffffff;
}

.button-primary {
    background: #D21113;
}

.button-primary:hover {
    background: #AF0C1C;
}

.button-secondary {
    background: #000000;
}

.button-secondary:hover {
    background: #282828;
    color: #ffffff;
}


header {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(2, 23, 22, 0.5242471988795518) 0%);
    position: relative;
    z-index: 10001;
    transition: all .6s;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-115%);
    width: 100%;
    background: white;
    display: none;
    box-shadow: 0 7px 10px 0 hsl(0deg 0% 64% / 12%), 0 0 1px 0 hsl(0deg 0% 56% / 25%);
}

header.fixed-block {
    display: block;
}

header.fixed.show {
    transform: translateY(0);

}

header nav {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
}

header nav ul {

}

header nav ul.right-nav {
    text-align: right;
}

header nav ul li {
    display: inline-block;
    padding: 0 21px;
}

header nav ul li a {
    font-size: 17px;
    color: white;
    font-weight: 500;
}

header.fixed nav ul li a {
    color: #000000;
}

header.fixed nav ul li a:hover {
    color: #D21113;
}

header nav ul li img {

}

header nav ul li img.arrow {
    width: 14px;
}

header nav ul li img.arrow.black {
    display: none;
}

header.fixed nav ul li img.arrow.white {
    display: none;
}

header.fixed nav ul li img.arrow.black {
    display: inline-block;
}

header nav ul li img.flag-img {
    width: 24px;
    margin-right: 4px;
}

header nav ul li a.current-language {

}

header .logo {
    display: block;
    text-align: center;
}

header .logo img {
    height: 103px;
    padding: 15px 0;
}

header .logo img.fixed-logo {
    display: none;
}


header.fixed .logo img.normal-logo {
    display: none;
}

header.fixed .logo img.fixed-logo {
    display: inline-block;
}

header nav ul li.dropdown {
    cursor: pointer;
    bottom: 1px;
}

header nav ul li.dropdown ul.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: auto;
    padding: 0;
    margin: 39px -9px 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, rgba(2, 0, 36, 3) 0%, rgba(2, 23, 22, 0.5242471988795518) 0%);
    border: none;
}

header.fixed nav ul li.dropdown ul.dropdown-menu {
    border: 1px solid #707070;
    border-top: none;
    background: white;
    margin-left: -9px;
}

header nav ul li.dropdown ul.dropdown-menu.show {
    display: block;
}

header nav ul li.dropdown ul.dropdown-menu li {
    padding: 0;
    display: block;

}

header nav ul li.dropdown ul.dropdown-menu li:hover {
    background: linear-gradient(90deg, rgba(2, 0, 36, 3) 0%, rgba(2, 23, 22, 0.5242471988795518) 100%);
}

header nav ul li.dropdown ul.dropdown-menu li a {
    padding: 15px 30px;
    display: block;
}

header nav ul li.dropdown ul.dropdown-menu li a img {

}

body.outside-header header {
    background: #ffffff;
}

body.outside-header header nav ul li a {
    color: #000000;
}

body.outside-header header .logo .normal-logo {
    display: none;
}

body.outside-header header .logo .fixed-logo {
    display: inline-block;
}

body.outside-header header nav ul li img.arrow.black {
    display: inline-block;
}

body.outside-header header nav ul li img.arrow.white {
    display: none;
}

body.outside-header header nav ul li.dropdown ul.dropdown-menu {
    background: #ffffff;
}

.intro {
    background: url("../images/intro-bgr.jpg") center no-repeat;
    background-size: cover;
    /*min-height: 1048px;*/
    margin-top: -103px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 100vh;
}

body.nav-open {
    overflow: hidden;
}

header nav.mobile-nav {
    background-color: #fff;
    height: 100%;
    overflow: scroll;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    transform: translateX(100%);
    transition: all .5s;
    width: 100%;
    z-index: 10001;
    right: -100%;
    text-align: center;
}

header nav.mobile-nav.open {
    height: 100%;
    padding-bottom: 80px;
    right: 0!important;
    transform: translateX(0);
}

header nav.mobile-nav .nav-btn {
    top: 0;
    margin: 10px 0 10px auto;
}

/*.intro .scroll-btn {*/
/*    border: none;*/
/*    background: transparent;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 50%;*/
/*    z-index: 10;*/
/*    margin-left: -16px;*/
/*    margin-bottom: 35px;*/
/*}*/

.intro .animate-btn {
    position: absolute;
    bottom: 0;
    width: 33px;
    height: 48px;
    border: 2px solid white;
    left: 50%;
    margin-left: -16px;
    border-radius: 100px;
    margin-bottom: 34px;
}

.intro .animate-btn img {
    display: block;
    margin: 0 auto 0 auto;
    padding: 4px 0;
}

.up-down {
    animation: up-down linear 2s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: up-down linear 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: up-down linear 2s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: up-down linear 2s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: up-down linear 2s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes up-down {
    0% {
        transform: translate(0, 8px);
    }
    24% {
        transform: translate(0, 10px);
    }
    50% {
        transform: translate(0, 17px);
    }
    74% {
        transform: translate(0, 19px);
    }
    100% {
        transform: translate(0, 8px);
    }
}

@-moz-keyframes up-down {
    0% {
        -moz-transform: translate(1px, 0px);
    }
    24% {
        -moz-transform: translate(1px, 10px);
    }
    50% {
        -moz-transform: translate(1px, 20px);
    }
    74% {
        -moz-transform: translate(1px, 22px);
    }
    100% {
        -moz-transform: translate(1px, 0px);
    }
}

@-webkit-keyframes up-down {
    0% {
        -webkit-transform: translate(1px, 0px);
    }
    24% {
        -webkit-transform: translate(1px, 10px);
    }
    50% {
        -webkit-transform: translate(1px, 20px);
    }
    74% {
        -webkit-transform: translate(1px, 22px);
    }
    100% {
        -webkit-transform: translate(1px, 0px);
    }
}

@-o-keyframes up-down {
    0% {
        -o-transform: translate(1px, 0px);
    }
    24% {
        -o-transform: translate(1px, 10px);
    }
    50% {
        -o-transform: translate(1px, 20px);
    }
    74% {
        -o-transform: translate(1px, 22px);
    }
    100% {
        -o-transform: translate(1px, 0px);
    }
}

@-ms-keyframes up-down {
    0% {
        -ms-transform: translate(1px, 0px);
    }
    24% {
        -ms-transform: translate(1px, 10px);
    }
    50% {
        -ms-transform: translate(1px, 20px);
    }
    74% {
        -ms-transform: translate(1px, 22px);
    }
    100% {
        -ms-transform: translate(1px, 0px);
    }
}

.video-cont {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.intro iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}


.video-background {
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -99;
}

.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .video-foreground {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-foreground {
        width: 300%;
        left: -100%;
    }
}

@media all and (max-width: 600px) {
    .vid-info {
        width: 50%;
        padding: 0.5rem;
    }

    .vid-info h1 {
        margin-bottom: 0.2rem;
    }
}

@media all and (max-width: 500px) {
    .vid-info .acronym {
        display: none;
    }
}


/*our-info*/

.our-info {
    background: url("../images/red-bgr.jpg") center no-repeat;
    background-size: cover;
    padding: 35px 0 15px 0;
}

.our-info .count-info-block {
    color: #ffffff;
    text-align: center;
    font-size: 17px;
    line-height: 20px;
    padding: 0 9px;
    margin-bottom: 15px;

}

.our-info .count-info-block span {
    display: block;
    text-align: center;
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
}

.our-info .count-info-block span.count {
    font-weight: 600;
    opacity: 1;
    font-size: 55px;
    line-height: 52px;
    margin-bottom: 10px;

}





/*for-us*/

.effect-bgr {
    position: relative;
}

.effect-bgr:before {
    content: "";
    background: url("../images/effect.svg") center no-repeat;
    width: 13px;
    height: 103px;
    background-size: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -6px;
    z-index: 10;
    display: block;
}

.for-us h2 {

}

.for-us p {
    max-width: 743px;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 3;
}

.for-us:after {
    content: "";
    position: absolute;
    background: url("../images/gray-shape.png") center no-repeat;
    background-size: 100%;
    width: 100%;
    height: 1781px;
    top: 0;
    right: 0;
    z-index: -1;
    max-width: 894px;
}

.for-us .our-companies {
    display: block;
    margin: 13px auto 20px auto;
    max-height: 60px;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}

.for-us .our-companies.havana {
    max-height: 80px;
}

.for-us .our-companies.bulbed {
    width: 180px;
    max-height: 100%;
}


/*services*/

.services {
    padding-top: 0;
    min-height: 810px;
}

.services.effect-bgr:before {
    background: url("../images/decor-img.svg") center no-repeat;
    background-size: 100%;
}

.services .rolet-bgr {
    position: absolute;
    top: 0;
    z-index: 1;
    min-height: 750px;
    max-height: 750px;
    width: 100%;
}


.services h2 {
    color: #ffffff;
    margin-top: 135px;
    position: relative;
    z-index: 10;
}

.services p {
    color: #ffffff;
    margin: 0 auto 45px auto;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.services .service-block {
    text-align: center;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    padding: 0 33px;
    position: relative;
    z-index: 10;
}

.services .service-block.sec,
.services .service-block.fourth {
    margin-top: 45px;
}

.services .service-block.first,
.services .service-block.fifth {
    margin-top: 115px;
}


.services .service-block img {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 80px;
    max-height: 65px;
}




/*team*/

.team {
    z-index: 1;
}


.team .team-person-inf {
    text-align: center;
    margin-top: 20px;
}

.team .team-person-inf h3 {
    color: #D21113;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 3px;
}

.team .team-person-inf .profession {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 15px;
}

.team .team-person-inf img {
    margin-bottom: 8px;
}

.team .team-person-inf a {

}

.team .team-person-inf a img {
    width: 27px;
}

.team .team-person-inf a img.red-img {
    display: none;
}

.team .team-person-inf a:hover img.red-img {
    display: inline-block;
}

.team .team-person-inf a:hover img.white-img {
    display: none;
}


/*careers*/

.careers {

}

.career-and-gallery {
    position: relative;
    padding-top: 150px;
    margin-top: -150px;
}

.career-and-gallery .bgr-effect {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    margin-top: -195px;
    max-height: 3445px;
}

.careers:after {
    content: "";
    background: url("../images/career-decor-min.png") center no-repeat;
    background-size: 100%;
    width: 69px;
    height: 250px;
    position: absolute;
    left: 0;
    top: 23%;
    z-index: -1;
}

.careers:after {
    /*content: "";*/
    /*background: url("../images/6.png") center no-repeat;*/
    /*background-size: 100%;*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*width: 100%;*/
    /*!* max-width: 800px; *!*/
    /*z-index: -1;*/
    /*height: 2880px;*/
    /*margin-bottom: -1250px;*/
}

.careers h2 {
    margin-bottom: 50px;
}


.careers h4 {
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 31px;
    color: #ffffff;
}


.careers ul li {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 17px;
    padding-left: 20px;
    position: relative;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.careers ul li:before {
    content: "";
    position: absolute;
    left: 0;
    background: url("../images/red-before.svg") center no-repeat;
    background-size: 100%;
    width: 12px;
    height: 23px;
    top: 0;
    margin-top: 1px;
}


.careers .apply {
    color: #D21113;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 45px;
}

.careers .apply img {
    vertical-align: text-top;
    margin-top: 14px;
}

.careers .staff-gallery img {
    border-radius: 18px;
}


.careers .career-images {
    margin-left: -55px;
    margin-top: -50px;
}


.careers .career-images .first {
    margin-top: -65px;
}

.careers .career-images .third {
    margin-top: -35px;
}


.free-position {
    margin-top: 65px;
}

.free-position h3 {
    font-size: 27px;
    line-height: 34px;
    color: #ffffff;
}

.free-position .free-position-block {
    /*background: gray;*/
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 8px;
    margin-bottom: 18px;

    /*when add background-effect uncomment bgr*/
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 0%);
}

.free-position .free-position-block h4 {
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 19px;
}

.free-position .free-position-block .region {
    font-size: 17px;
    position: relative;
    padding-left: 20px;
}

.lightbox {
    margin-top: 100px;
}

.free-position .free-position-block .region:before {
    content: "";
    background: url("../images/pin.svg") center no-repeat;
    background-size: 100%;
    width: 14px;
    height: 23px;
    left: 0;
    position: absolute;
}

.free-position .free-position-block .work-time {
    font-size: 17px;
    position: relative;
    padding-left: 25px;
}

.free-position .free-position-block .work-time:before {
    content: "";
    background: url("../images/clock.svg") center no-repeat;
    background-size: 100%;
    width: 17px;
    height: 17px;
    left: 0;
    position: absolute;
    margin-top: 4px;
}

.free-position .free-position-block a.button {
    color: #ffffff;
    margin: 0 0 0 auto;
}

.btn-arrow {
    width: 18px;
    margin: 0 0 0 5px;
}


/*gallery*/

.gallery h2 {
    margin-bottom: 50px;
    color: #ffffff;
}


.gallery.effect-bgr:before {
    background: url("../images/decor-img.svg") center no-repeat;
    background-size: 100%;
}

.gallery .owl-carousel .owl-item {
    opacity: 0.3;
}

.gallery .owl-carousel .owl-item.active {
    opacity: 1;
}

.gallery .owl-carousel .owl-item img {
    border-radius: 18px;
    height: 350px;
    width: auto;
}

.gallery .owl-carousel .owl-dots {
    display: none;
}

.gallery .owl-carousel .owl-nav button span {
    display: none;
}

.gallery .owl-carousel .owl-nav button {
    position: relative;
}

.gallery .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 7%;
    top: 42%;
}

.gallery .owl-carousel .owl-nav button.owl-next:before {
    content: "";
    position: absolute;
    background: url("../images/right-btn-black.svg") center no-repeat;
    background-size: 100%;
    width: 60px;
    height: 60px;
    right: 0;
}

.gallery .owl-carousel .owl-nav button.owl-next:hover:before {
    background: url("../images/right-btn-black.svg") center no-repeat;
    background-size: 100%;
    opacity: .7;
}

.gallery .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 7%;
    top: 42%;
}

.gallery .owl-carousel .owl-nav button.owl-prev:before {
    content: "";
    position: absolute;
    background: url("../images/left-btn-black.svg") center no-repeat;
    background-size: 100%;
    width: 60px;
    height: 60px;
    left: 0;
}

.gallery .owl-carousel .owl-nav button.owl-prev:hover:before {
    background: url("../images/left-btn-black.svg") center no-repeat;
    background-size: 100%;
    opacity: .7;
}


.contacts .gmap_canvas {
    border-radius: 18px;
}

.contacts h2 {
    margin-bottom: 50px;
}

.contacts:after {
    content: "";
    position: absolute;
    background: url("../images/contact-bgr-effect1.png") top center no-repeat;
    background-size: cover;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin-bottom: -7px;
    left: 0;
}

.contacts .location-image {
    text-align: right;
    margin-top: -155px;
    position: relative;
    margin-right: -60px;
}

.contacts .location-image img {
    border-radius: 18px;
    width: 310px;
}

.contacts .contact-block {
    padding: 55px 0 0 55px;
}

.contacts .contact-info {
    margin-bottom: 30px;
}

.contacts .contact-info .contact-icon {
    display: inline-block;
}

.contacts .contact-info .contact-icon img {
    width: 60px;
    margin-right: 10px;
}

.contacts .contact-info .info {
    display: inline-block;
    vertical-align: middle;
    color: #1C0F0F;
    font-size: 17px;
    font-weight: 500;
    line-height: 19px;
}

.contacts .contact-info .info a {
    color: #1C0F0F;
    font-weight: 500;
    font-size: 17px;
}

.contacts .contact-info .info a:hover {
    color: #D21113;
}

.contacts .contact-info .info span {
    display: block;
    font-weight: 500;
    color: #807E7E;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 4px;
}


.contact-with-us {
    margin-top: 110px;
}

.contact-with-us h6 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 34px;
    color: #ffffff;
}

form {

}

form label {
    width: 100%;
}

form input {

}

form textarea {

}

.form-control::placeholder {
    color: #DEDEDE;
}

form .form-group {
    margin-bottom: 25px;
}

.form-control {
    border-radius: 8px;
    padding: 25px 16px;
    font-size: 15px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 0%);
    border: none;
    color: #DEDEDE
}

.form-control:focus {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.4) 0%);
    box-shadow: none;
    color: #DEDEDE
}

textarea.form-control {
    padding: 18px 16px;
    resize: none;
}

.contact-with-us .btn-send button {
    color: #ffffff;
    margin-top: 8px;
    border: none;
}


/*footer*/

footer {
    background: url("../images/footer-bgr.jpg") center no-repeat;
    background-size: cover;
    padding: 60px 0;
}

footer .copyright {
    color: #ffffff;
    font-size: 15px;
}

footer .logo {

}

footer .social-items {
    text-align: right;
}

footer .social-items li {
    display: inline-block;
    margin-left: 15px;
}

footer .social-items li a {

}

footer .social-items li a img {

}

footer .social-items li a img.red-img {
    display: none;
}

footer .social-items li a:hover img.red-img {
    display: inline-block;
}

footer .social-items li a:hover img.white-img {
    display: none;
}


/*careers page*/

.careers-intro {
    background: url("../images/career-intro-bgr2-min.jpg") center no-repeat;
    background-size: cover;
    position: relative;
    min-height: 418px;
    padding: 30px 0 50px 0;
}

.careers-intro h1 {
    color: #ffffff;
    margin-top: 100px;
    font-size: 40px;
    line-height: 58px;
}

.careers-intro:before {
    background: url("../images/decor-img.svg") center no-repeat;
    background-size: 100%;
    margin-top: 15px;

}

.careers-intro .btn-back {
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
}

.careers-intro .btn-back:hover {
    color: #D21113;
}

.careers-intro .btn-back img {
    width: 18px;
    margin-right: 5px;
}

.careers-intro .btn-back img.red-img {
    display: none;
}

.careers-intro .btn-back:hover img.red-img {
    display: inline-block;
}

.careers-intro .btn-back:hover img.white-img {
    display: none;
}

.careers-intro span.time {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.careers-intro .place {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

.position-info {
    position: relative;
    z-index: 1;
}

.position-info h5 {
    color: #1C0F0F;
    font-weight: 600;
    font-size: 20px;
    margin: 35px 0 13px 0;
}

.position-info p {
    text-align: left;
    font-size: 17px;
}

.position-info ul {

}

.position-info ul li {
    color: #1C0F0F;
    font-size: 17px;
    font-weight: 500;
    padding-left: 16px;
    margin-bottom: 10px;
    position: relative;
}

.position-info ul li:before {
    content: "";
    position: absolute;
    left: 0;
    background: url("../images/red-before.svg") center no-repeat;
    background-size: 100%;
    width: 10px;
    height: 21px;
    top: 0;
    margin-top: 2px;
}


.application-form {
    background: url("../images/2.1-min.jpg") center no-repeat;
    background-size: cover;
    margin: -130px 0 0 0;
    padding: 50px 0 50px 0;
    min-height: 990px;
}

.application-form h6 {
    margin-top: 340px !important;
}

.application-form:before {
    background: url("../images/white-decor-effect.svg") center no-repeat;
    background-size: 100%;
    margin-top: 260px;
}


/*file-upload*/

.file-upload {
    display: block;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.file-upload .file-select {
    display: block;
    border: none;
    color: #34495e;
    cursor: pointer;
    height: 50px;
    line-height: 51px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 0%);
    border-radius: 8px;
}

.file-upload .file-select .file-select-button {
    padding: 0 16px;
    display: inline-block;
    height: 50px;
    line-height: 51px;
    border-radius: 0 8px 8px 0;
    position: absolute;
    color: #ffffff;
    font-size: 17px;
    background: #A20D0F;
    font-weight: 500;
    letter-spacing: 0.5px;
    right: 0;
}

.file-upload .file-select .file-select-button img {
    width: 18px;
    margin: -6px 6px 0 0;
}

.file-upload .file-select .file-select-name {
    line-height: 51px;
    display: inline-block;
    padding: 0 16px;
    color: #DEDEDE;
    font-size: 15px;
}

.file-upload .file-select:hover {
    border-color: #34495e;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload .file-select:hover .file-select-button {
    background: #000000;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select {
    border-color: #0DA20F;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select .file-select-button {
    background: #0DA20F;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.file-upload .file-select.file-select-disabled {
    opacity: 0.65;
}

.file-upload .file-select.file-select-disabled:hover {
    display: block;
    border: 2px solid #dce4ec;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #dce4ec;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}

.footer-nav {
    margin: 15px 0 0 0;
}

.footer-nav li a {
    color: #fff;
    opacity: .6;
}

.footer-nav li a:hover {
    opacity: 1;
}
