/*--------------------------------------------------------------
GLOBAL STYLES
--------------------------------------------------------------*/
.relative {
    position: relative
}

section {
    width: 100%
}

.container-fluid {
    max-width: 1366px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 80px 20px !important;
}

h5 {
    font-size: 30px;
    font-weight: bold
}


/*--------------------------------------------------------------
TOP SECTION
--------------------------------------------------------------*/
.top-section {
    width: 100%;
}

.top-section h1 {
    font-size: 54px;
    font-family: Montserrat;
    font-weight: 700;
    color: white;
}

.top-section .button {
    color: #fff;
    background: var(--red-ribbon);
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

.top-section .logo {
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-section .logo img {
    max-width: 240px;
}

.top-section-container {
    height: 650px;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-image: url('../images/bg/bg.png');
    position: relative;
}

.top-section-container:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
}

.top-section-wrapper {
    padding: 40px 240px 60px;
    width: 100%;
    height: 100%;
    position: relative;
}

.top-section-sides {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    align-items: baseline;
}

.top-section .left-side {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.top-section .content {
    margin-top: 60px;
    max-width: 650px;
}

.top-section .content * {
    color: #fff;
}

.top-section .content img {
    max-width: 100%;
    height: auto;
}

.top-section .content p {
    max-width: 688px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    margin-top: 10px;
}

.top-section .btn {
    width: 246px;
    height: 55px;
    text-align: left;
    font: normal normal bold 10px/22px Montserrat;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-ribbon);
    border-radius: 5px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .15);
    transition: .4s;
    font-size: 13px;
}

.top-section .btn:hover {
    opacity: .9;
}

.top-section .buttons-list {
    margin-top: 30px;
}

.top-section .buttons-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-section .buttons-list li {
    margin-top: 20px;
}

.top-section .buttons-list a {
    padding: 15px 30px;
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 500;
    color: #000;
    transition: .4s;
    border-radius: 3px;
    text-decoration: none !important;
}

.top-section .buttons-list a.red, .third-section a {
    color: #fff;
    background: var(--red-ribbon);
    border: 1px solid var(--red-ribbon);
}

.top-section .buttons-list a.transparent {
    border: 1px solid white;
    color: white;
    margin-right: 30px;
}

.top-section .buttons-list a.transparent:hover {
    background: var(--red-ribbon);
    color: #fff;
}

/* FORM */
.top-section .right-side {
    margin-top: 100px;
    z-index: 1;
    margin-left: 40px;
}

form {
    background: var(--white);
    width: 500px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    overflow: hidden;
    padding: 40px 40px;
}

form h4 {
    display: inline-block;
    font-size: 22px;
    margin-bottom: 7px;
}

form span {
    font-size: 14px;
    font-weight: 500;
}

.inputs {
    margin-top: 40px;
}

.inputs div {
    margin-top: 15px;
}

.inputs input, .inputs select {
    font-size: 14px;
    padding: 10px;
    border-radius: 2px;
    width: 100%;
    display: block;
    background: transparent;
    border: 1px solid #e5e5e5;
    font-weight: 500;
    color: #808080;
    transition: .4s;
}

.inputs input:focus {
    background: #f7f5f5;
}

.inputs select {
    padding-left: 6px;
}

.inputs > div {
    position: relative;
}

.inputs > div svg {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 10;
    background: #252A2D;
}

.inputs > div .a {
    fill: #707071;
}

/* CHECKBOXES */
.checkboxes {
    margin-top: 30px;
}

.checkboxes input {
    position: absolute;
    opacity: 0;
}

.checkboxes label {
    display: flex;
    cursor: pointer;
    align-items: center;
    font-size: 11px;
    margin-top: 15px;
}

.checkboxes label * {
    color: #4d4d4d;
}

.checkboxes label:before, .checkboxes label:after {
    font: normal normal normal 24px/1 "Material Design Icons";
    margin-right: 10px;
    transition: 0.4s
}

.checkboxes label:before {
    content: "\F12E";
    border: 1px solid #e5e5e5;
    color: #fff;
    padding: 0;
}

.checkboxes label:hover:before {
    content: "\F12E";
    color: var(--red-ribbon)
}

.checkboxes input:checked + label:before {
    content: "\F132";
    color: var(--red-ribbon)
}

.checkboxes i {
    margin-right: 5px
}

.checkboxes a {
    color: var(--red-ribbon);
    text-decoration: underline
}

form button, .modal .modal-body-content a {
    background: var(--red-ribbon);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 13px;
    transition: .4s;
    margin: 30px auto 0;
    border-radius: 5px;
}

form button:hover, .modal .modal-body-content a:hover {
    opacity: .9;
}

form button span, .modal .modal-body-content a span {
    font-size: 15px;
    font-weight: bold
}

form button i {
    font-size: 25px
}

form button > *, .modal .modal-body-content a span {
    color: var(--white)
}

#preloader {
    display: none;
}

/*--------------------------------------------------------------
FIRST SECTION
--------------------------------------------------------------*/
.first-section {
    width: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    margin-top: 0 !important;
}

.first-section .second-section-wrapper {
    align-items: flex-start;
    text-align: left;
}

.first-section .second-section-wrapper h1 {
    margin-bottom: 60px;
    max-width: 600px;
}

.first-section .second-section-wrapper p {
    margin: 0;
    color: var(--tundora);
}

.first-section ul {
    margin-top: 15px;
    max-width: 550px;
}

.first-section ul li, .modal .modal-body-content ul li {
    margin-top: 10px;
    font-size: 14px;
}

.first-section p {
    max-width: 600px !important;
}

/*--------------------------------------------------------------
SECOND SECTION
--------------------------------------------------------------*/
.second-section {
    width: 100%;
}

.positions-section {
    background: #FAFAFA;
}

.second-section-wrapper {
    padding: 80px 240px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.map-section .second-section-wrapper {
    padding-bottom: 40px !important;
}

.second-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.second-section p {
    font-size: 16px;
    color: #B4B4B4;
    max-width: 800px;
    margin: 0 auto;
    line-height: 24px;
    font-weight: 400;
}

.second-section .positions-list {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
}

.second-section .positions-list li {
    max-width: 100%;
    height: auto;
    margin: 15px;
}

.second-section .positions-list li > div {
    width: 370px;
    background: var(--white);
    border-radius: 5px !important;
    box-shadow: 0 5px 16px -5px rgba(0, 0, 0, .2);
    height: 100%;
}

.second-section .positions-list li > div > img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
}

.second-section .positions-list .position-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.second-section .positions-list .position-content .info {
    text-align: left;
}

.second-section .positions-list .position-content > *:not(:first-child) {
    margin-top: 35px;
}

.second-section .positions-list .position-content .info .top {
    align-items: center;
    display: flex;
    margin-bottom: 10px;
}

.second-section .positions-list .position-content .info .top span {
    font-weight: 500;
    color: #808080;
    font-size: 14px;
    display: block;
    margin-left: 10px;
}

.second-section .positions-list .position-content img {
    max-width: 18px;
    height: auto;
}

.second-section .positions-list .position-content .info strong,
.second-section .positions-list .position-content .info b {
    margin-left: 27px;
    font-size: 18px;
}

.second-section .positions-list .position-content .info b {
    font-size: 15px;
    font-weight: 500;
}

.second-section .positions-list .position-content button, .third-section a {
    border: 2px solid var(--red-ribbon);
    width: 100%;
    height: 45px;
    border-radius: 5px;
    font-size: 14px;
    color: #747474;
    transition: .4s;
}

.second-section .positions-list .position-content button span, .third-section a span {
    font-weight: 500;
}

.second-section .positions-list .position-content button:hover, .third-section a:hover {
    background: var(--red-ribbon);
    color: var(--white);
}

.map-container h1 {
    margin-bottom: 15px;
    color: #404040;
    margin-top: 100px;
}

.map-container p {
    color: #747474;
    max-width: 600px;
}

#map {
    height: 800px;
    width: 100%;
}

/*--------------------------------------------------------------
THIRD SECTION
--------------------------------------------------------------*/
.third-section {
    background: #747474;
    margin-top: 0 !important;
}

.third-section p {
    color: var(--white);
}

.third-section a {
    width: 200px;
    height: 50px;
    color: var(--white);
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    border-radius: 20px;
}

.modal-header .close {
    font-weight: 300;
    font-size: 45px;
    opacity: 1;
    color: var(--red-ribbon);
}

.modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.modal-body {
    padding: 0 3rem 2rem;
}

.modal .modal-info {
    display: flex;
    align-items: center;
}

.modal .modal-info:last-child {
    margin-top: 15px;
}

.modal .modal-info > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .modal-info > div span {
    display: block;
    margin: 0 30px 0 20px;
    color: #808080;
    font-size: 14px;
    font-weight: 500;
}

.modal .modal-info strong {
    font-size: 25px;
}

.modal .modal-info img {
    max-width: 23px;
}

.modal .modal-body-content {
    margin-top: 30px;
}

.modal .modal-body-content p {
    color: #808080;
    font-size: 14px;
    font-weight: 500;
}

.modal .modal-body-content ul {
    max-width: 100%;
    margin-top: 10px;
}

.modal .modal-body-content ul .list-type {
    padding-right: 5px;
}

.modal .modal-body-content a:hover {
    text-decoration: none !important;
}

/*--------------------------------------------------------------
FOURTH SECTION
--------------------------------------------------------------*/
.fourth-section {
    margin-top: 0 !important;
}

.fourth-section .opinions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    margin-top: 0;
    width: 100%;
    margin-bottom: 60px;
}

.fourth-section .opinions li {
    max-width: 100%;
    height: auto;
    position: relative;
    margin: 33px 15px;
}

.fourth-section .opinions li img {
    max-width: 60px;
    border-radius: 100%;
    box-shadow: 1px 3px 6px -2px rgba(0, 0, 0, .25);
    position: absolute;
    left: 9%;
    top: -15%;
    z-index: 1;
}

.fourth-section .opinions li > div {
    height: 100%;
}

.fourth-section .opinions li > div > div {
    background: var(--white);
    box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, .15);
    border-radius: 30px;
    width: 370px;
    padding: 40px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fourth-section .opinions li > div p {
    font-size: 14px;
    color: #747474;
    margin: 15px 0 20px;
}

.fourth-section .opinions li > div h6 {
    font-weight: 700;
    color: #4D4D4D
}

.fourth-section .list-companies {
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.fourth-section .list-companies li {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.fourth-section .list-companies li div {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fourth-section .list-companies li img:first-child {
    width: 40px;
}

.fourth-section .list-companies li img:last-child {
    width: 200px;
}

.fourth-section .list-companies li:not(:first-child) {
    border-left: 1px solid #e5e5e5;
}

.fourth-section .list-companies li h6 {
    font-size: 25px;
    color: #404040;
    font-weight: 600;
    max-width: 422px;
    margin-top: 20px;
}

/*--------------------------------------------------------------
FIFTH SECTION
--------------------------------------------------------------*/
.fifth-section {
    margin-top: 0 !important;
    background: #363636;
    color: var(--white);
}

.fifth-section .second-section-wrapper {
    justify-content: space-between;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    flex-wrap: wrap;
}

.fifth-section .second-section-wrapper > div {
    max-width: 550px;
    width: 100%;
    margin: 15px;
}

.fifth-section .second-section-wrapper > div > div {
    margin-top: 20px;
}

.fifth-section .left-side img {
    max-width: 30px;
}

.fifth-section .right-side {
    font-size: 0;
}

.fifth-section .right-side img {
    max-width: 30px;
}

.fifth-section .second-section-wrapper > div > div * {
    font-size: 14px;
}

.fifth-section .second-section-wrapper > div > div strong {
    margin-bottom: 5px;
    display: block;
}

/*--------------------------------------------------------------
FOOTER SECTION
--------------------------------------------------------------*/
.footer-section {
    background: #363636;
    width: 100%;
    padding: 0 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    border-top: 1px solid #999;
}

.footer-section img {
    max-width: 150px;
}

.footer-section ul {
    display: flex;
    align-items: center;
    width: auto;
}

.footer-section ul.left-side li:not(:first-child) {
    margin-left: 30px;
}

.footer-section * {
    color: #fff;
    font-size: 12px;
}

.footer-section ul.left-side a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
MEDIA QUERIES
--------------------------------------------------------------*/
@media screen and (max-width: 1600px) {
    .second-section-wrapper {
        padding: 80px 140px;
    }

    .top-section-wrapper {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media screen and (max-width: 1460px) {
    .first-section .left-side {
        width: 500px;
    }
}

@media screen and (max-width: 1366px) {
    .second-section {
        margin-top: 40px;
    }

    .second-section-wrapper {
        padding: 80px 40px;
    }
}

@media screen and (max-width: 1280px) {
    .top-section h1 {
        font-size: 35px;
    }

    .top-section .content p {
        margin-bottom: 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1200px) {
    .first-section .left-side {
        width: 400px;
    }

    .first-section .right-side .content {
        margin-left: 200px;
    }

    .first-section ul {
        max-width: 440px;
    }
}

@media screen and (max-width: 1100px) {
    .top-section-wrapper {
        padding: 40px;
    }

    .footer-section {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1070px) {
    .first-section {
        height: auto;
        flex-direction: column-reverse;
    }

    .top-section-wrapper {
        padding: 40px;
    }

    .first-section .left-side {
        width: 100%;
        height: 300px;
    }

    .first-section .right-side {
        width: 100%;
        position: relative;
        height: auto;
    }

    .first-section .right-side .content {
        margin-left: 0;
        padding: 40px 20px;
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .top-section, .top-section-container {
        height: auto;
    }

    .top-section .content {
        margin-top: 30px;
    }

    .top-section .content h1 {
        font-size: 25px;
    }

    .top-section .content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    form {
        border-radius: 0;
    }

    .first-section {
        margin-top: 30px;
    }

    .second-section {
        margin-top: 0;
    }

    .second-section-wrapper {
        padding: 40px 20px;
    }

    .second-section h1 {
        font-size: 25px;
    }

    .second-section p {
        font-size: 14px;
    }

    .third-section .player-video {
        width: 100%;
        height: auto;
    }

    .third-section {
        padding: 20px;
    }

    .first-section ul {
        max-width: 100%;
    }

    .fourth-section .list-companies li img:last-child {
        width: 130px !important;
    }

    .fourth-section .list-companies li h6 {
        font-size: 16px;
    }

    .fourth-section .list-companies li img:first-child {
        width: auto;
    }

    .fourth-section .list-companies li div {
        height: 40px;
    }

    #map {
        height: 400px;
        max-width: 100%;
    }

    .top-section .buttons-list a {
        font-size: 12px;
    }

    .top-section .content {
        max-width: 100% !important;
    }

    .top-section .right-side {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .modal-dialog {
        max-width: 95% !important;
    }

    .modal-body {
        padding: 0 2rem 2rem;
    }

    .modal .modal-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal .modal-info strong {
        font-size: 16px;
    }

    .modal .offer-position, .modal .offer-location {
        margin-left: 43px;
    }

    .top-section .logo img {
        max-width: 120px;
    }
}

@media screen and (max-width: 720px) {
    .fourth-section .list-companies {
        flex-direction: column;
    }

    .fourth-section .list-companies li {
        width: 100%;
    }

    .fourth-section .list-companies li:not(:last-child) {
        border-bottom: 1px solid #e5e5e5;
    }

    .top-section .content h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 700px) {
    .footer-section {
        flex-direction: column-reverse;
        justify-content: center;
        height: auto;
        padding: 10px;
    }

    .footer-section .right-side {
        margin-bottom: 15px;
        align-items: flex-end;
        width: 100%;
    }

    .footer-section ul.left-side {
        margin-bottom: 15px;
    }

    .second-section .positions-list li {
        width: 100%;
    }

    .second-section .positions-list li > div {
        max-width: 100%;
        width: 100%;
    }

    .map-section .second-section-wrapper {
        padding-top: 20px !important;
    }

    .fourth-section .opinions li > div > div {
        max-width: 370px;
        width: 100%;
    }
}
