/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.header {
    padding: 0 20px;
    z-index: 100;
    width: 100%;
    background: #fff;
}

.header--container {
    max-width: 1366px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

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

.header--container .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header--container .nav li:not(:first-child) {
    margin-left: 30px;
}

.header--container .nav li:last-child {
    margin-left: 60px;
}

.header--container .nav a:not(.btn-contact) {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: .4s;
}

.header--container .nav a:hover {
    color: #0096AA;
    text-decoration: none;
}

.btn-contact {
    font-size: 13px;
    font-weight: 600;
    transition: .4s;
    padding: 15px 20px;
    color: #fff !important;
    background: transparent;
    border: 2px solid #fff;
    text-decoration: none !important;
}

.btn-contact:hover {
    background: #fff !important;
    color: #000 !important;
}

.btn-color {
    background: #0096AA;
    border-color: #0096AA;
}

.btn-color:hover {
    border-color: #fff;
}

.logo img {
    max-width: 200px;
}

.section--container {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.section--section {
    padding: 80px 20px;
    width: 100%;
}

.section--section .section--container h2.section--title {
    font-size: 62px;
    font-weight: 600;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section--section .section--container p.section--subtitle {
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
Video Section
--------------------------------------------------------------*/
.section-video, .section-video > video {
    width: 100%;
    height: 100%;
    position: relative;
    font-size: 0;
}

.section-video {
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-video .section--container {
    height: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.section-video > * {
    width: 50%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
}

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

.section-video .left-side h1 {
    padding: 70px;
}

.section-video .left-side > * {
    position: relative;
    z-index: 2;
}

.section-video h1 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 55px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.section-video .left-side > p {
    color: #1A264A;
    font-size: 25px;
    font-weight: 500;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.section-video .right-side h1 {
    font-size: 130px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
    padding: 100px;
}

.section-video .left-side,
.section-video .right-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-video .boxes {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 100px;
}

.section-video .right-side .boxes {
    margin-bottom: 50px;
    margin-right: 20px;
}

.section-video .boxes div {
    padding: 10px 25px;
}

.section-video .boxes div span {
    font-size: 17px;
}

.section-video .boxes div > *,
.section-video .boxes div span strong {
    color: #fff;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
    font-size: 40px;
}

.section-video .right-side .boxes div span strong {
    font-size: 50px;
}

.section-video .left-side .boxes div {
    background: #3CA5B1;
}

.section-video .right-side .boxes div {
    background: #002D52;
    border-radius: 50px
}

.section-video .list-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}

.section-video .list-buttons > li:first-child {
    margin-right: 30px;
}

.form-container {
    width: 500px;
    background: #002D52;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
}

.form-container .in-form-group {
    display: flex;
}

.form-container .in-form-group:not(:first-child) {
    margin-top: 20px;
}

.form-container .in-form-group .prepend {
    height: 51px;
    border: 1px solid #405457;
    border-bottom: 2px solid #3CA5B1;
    border-right: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    background: #405457;
}

form input.input {
    width: 100%;
    border: 1px solid #405457;
    border-bottom: 2px solid #3CA5B1;
    border-left: 0;
    color: #fff;
    padding: 15px 15px 15px 5px;
    font-size: 14px;
    font-weight: 500;
    height: 51px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #405457;
}

::placeholder {
    color: #C2C8C9;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #C2C8C9;
}

.form-container .in-form-group textarea:focus {
    outline: none !important;
}

form button[type="submit"] {
    background: #3CA5B1;
    width: 100%;
    border-color: #3CA5B1;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

form button .loader-circle {
    width: 20px;
    height: 20px;
    margin: 0 0 0 15px;
    display: none;
}

.form-container button:hover {
    background: #ffffff;
}

form button[disabled] {
    cursor: default;
    background: #E4E6EF !important;
    border-color: #E4E6EF !important;
    color: #A9A8A8 !important;
}

form button[disabled]:hover {
    color: #A9A8A8 !important;
}

form .checkboxes-info span {
    font-size: 11px;
    text-align: left;
    display: inline !important;
    color: #fff;
}

form .checkboxes-info a {
    text-decoration: underline;
    color: #fff;
    transition: .4s;
}

form .checkboxes-info a:hover {
    color: #3CA5B1;
}

form .checkboxes {
    margin-top: 15px;
    margin-left: -3px;
}

form .checkboxes > div:not(:first-child) {
    margin-top: 15px;
}

form .checkboxes input {
    display: none;
}

form .checkboxes label {
    display: flex;
    cursor: pointer;
    align-items: center;
}

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

form .checkboxes label:before {
    content: "\F0131";
    color: #D6D6D6 !important;
}

form .checkboxes label:hover:before {
    content: "\F012E";
    color: #0096AA !important;
}

form .checkboxes input:checked + label:before {
    content: "\F0132";
    color: #0096AA !important;
}

form .checkboxes label p {
    font-size: 0;
    text-align: left;
}

form .checkboxes label p > * {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
}

form .checkboxes label p a {
    text-decoration: underline;
    transition: .4s;
}

form .checkboxes label p a:hover,
form .checkboxes-info a:hover {
    color: #0096AA;
}

form .input-danger > * {
    border-color: red !important;
}

form label.input-danger:before {
    color: red !important;
}

#swal2-content a {
    color: #0096AA;
    font-weight: bold;
    text-decoration: underline;
    font-size: 15px;
}

.form-container .form-select {
    position: relative;
    max-width: 370px;
    width: 100%;
    margin: 0 auto 45px;
}

.custom-select-2 select {
    display: none !important;
}

.select-selected {
    background-color: #fff;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 43%;
    right: 5.5%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-color: #fff transparent transparent transparent;
    z-index: 10;
}

.select-selected:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 63px;
    height: 100%;
    background: #3CA5B1;
    z-index: 5;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 30%;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    color: #405457;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    font-weight: 300;
    font-family: 'Montserrat', serif;
    font-size: 22px;
    text-align: left;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.form-select.input-danger {
    border-color: #f0506e !important;
}

/*--------------------------------------------------------------
Second Section
--------------------------------------------------------------*/
.second--section {
    background: #002D52;
}

.second--section h2 {
    font-size: 45px !important;
    color: #fff;
    font-weight: 700 !important;
    margin-bottom: 30px;
}

.second--section h2 span {
    color: #3CA5B1;
}

/*--------------------------------------------------------------
Jobs Section
--------------------------------------------------------------*/
.jobs--section {
    background: #fff;
}

.jobs--section .section--container {
    overflow-x: auto;
    padding-bottom: 10px;
}

.jobs--section .list-jobs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 1100px;
}

.jobs--section .list-jobs > li {
    width: 30%;
    height: 550px !important;
    background: #002D52;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jobs--section .list-jobs > li .job-img {
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

/*.jobs--section .list-jobs > li .job-img:before {*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(0, 0, 0, .1);*/
/*}*/

.jobs--section .list-jobs > li .job-img strong {
    color: #fff;
    font-size: 50px;
    text-shadow: 0 0 12px rgba(0, 0, 0, .15);
    position: relative;
    z-index: 2;
}

.jobs--section .list-jobs > li .job-content {
    padding: 30px 40px;
    height: calc(100% - 250px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.jobs--section .list-jobs > li .job-content h4 {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

.jobs--section .list-jobs > li .job-content .job-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.jobs--section .list-jobs > li .job-content .job-info li {
    display: flex;
    align-items: center;
}

.jobs--section .list-jobs > li .job-content .job-info li:not(:first-child) {
    margin-top: 15px;
}

.jobs--section .list-jobs > li .job-content .job-info img {
    max-width: 30px;
    height: auto;
}

.jobs--section .list-jobs > li .job-content .job-info > li div {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.jobs--section .list-jobs > li .job-content .job-info > li div span {
    color: #CECECE;
    font-size: 10px;
}

.jobs--section .list-jobs > li .job-content .job-info > li div strong {
    color: #fff;
    font-size: 16px;
}

.jobs--section .list-jobs > li .job-content .job-info + div,
.jobs--section .list-jobs > li .job-content .job-info + div > a {
    width: 100%;
    text-align: center;
}

.jobs--section .list-jobs > li .job-content .job-info + div > a {
    background: #3CA5B1;
    border-color: #3CA5B1;
    border-radius: 3px;
}

/*--------------------------------------------------------------
Third Section
--------------------------------------------------------------*/
.third--section {
    background: #FAFAFA;
    border-top: 1px solid #e5e5e5;
}

.third--section p + h2 {
    color: #00A4B7;
    font-weight: 700 !important;
}

.third--section .section--container > p.section--subtitle {
    margin-bottom: 20px;
    font-size: 35px;
    color: #032C45;
}

.third--section ul {
    margin: 80px -20px -20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}

.third--section ul li {
    max-width: 370px;
    margin: 20px;
    text-align: center;
}

.third--section ul li img {
    max-height: 33px;
}

.third--section ul li h4 {
    color: #042C45;
    margin: 20px 0 25px;
    font-size: 22px;
    font-weight: 600;
}

.third--section ul li p {
    font-size: 17px;
    line-height: 30px;
}

.third--section ul + div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.third--section a {
    background: #042C45;
    border-color: #042C45;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 400;
    padding: 20px 70px;
}

/*--------------------------------------------------------------
Fifth Section
--------------------------------------------------------------*/
.fifth--section {
    background-image: url('../images/sections/s4_1.jpg');
    height: 70vh;
    width: 100%;
    background-attachment: scroll;
    background-size: cover;
    background-position: top left;
    padding: 0 !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 10;
}

.fifth--section .aside-box {
    background: #00A4B7;
    width: 600px;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding: 30px 80px;
    margin-bottom: 40px;
}

.fifth--section .aside-box * {
    color: #fff;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.fifth--section .aside-box p {
    font-size: 38px;
    font-weight: 500;
}

.fifth--section .aside-box p:last-child {
    font-size: 26px;
}

.fifth--section .aside-box h4 {
    font-size: 70px;
    margin-top: 10px;
}

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.footer {
    background: #252B2F;
    width: 100%;
}

.footer .footer-container {
    max-width: 1366px;
    width: 100%;
    padding: 80px 20px 60px;
    margin: 0 auto;
}

.footer .footer-container * {
    color: #fff;
    font-weight: 200;
    font-size: 15px;
}

.footer h6 {
    font-weight: 500 !important;
    margin-bottom: 20px;
    font-size: 18px !important;
}

.footer p {
    max-width: 530px;
    line-height: 28px;
}

.footer .footer-top {
    display: flex;
    align-items: flex-start;
}

.footer .footer-top > div:first-child {
    width: 55%;
    margin-right: 40px;
}

.footer .footer-top p + a {
    margin-top: 25px;
    text-decoration: underline;
}

.footer .footer-bottom {
    border-top: 1px solid #444;
    margin-top: 60px;
}

.footer .footer-bottom ul {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.footer .footer-bottom li strong {
    font-weight: 600 !important;
}

.footer .footer-bottom li:not(:first-child) {
    margin-left: 15px;
}

.footer .footer-bottom li:nth-child(2) {
    margin-left: 30px;
}

.footer .footer-bottom li img {
    max-height: 25px;
    border-radius: 100%;
    transition: .4s;
}

.footer .footer-bottom li:hover img {
    background: #00A4B7;
}

/*--------------------------------------------------------------
FORM CONTACT
--------------------------------------------------------------*/
.form-contact input:not([type="checkbox"]):not(:first-child) {
    margin-top: 15px;
}

.form-contact input:not([type="checkbox"]), .form-contact select {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    color: var(--gray);
    border: 1px solid #e5e5e5;
    background: #fff;
}

.form-contact select:focus {
    outline: none !important;
}

.form-contact .checkboxes, .third--section-form .checkboxes {
    position: relative;
}

.form-contact .checkboxes input, .third--section-form .checkboxes input {
    position: absolute;
    opacity: 0;
}

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

.form-contact .checkboxes label p > * {
    color: #fff;
}

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

.form-contact .checkboxes label:before {
    content: "\F012E";
    color: #fff;
}

.form-contact .checkboxes label:hover:before {
    content: "\F012E";
    color: #fff;
}

.form-contact .checkboxes input:checked + label:before,
.third--section-form .checkboxes input:checked + label:before {
    content: "\F0132";
}

.form-contact .checkboxes i, .third--section-form .checkboxes i {
    margin-right: 5px
}

.form-contact .checkboxes a, .third--section-form .checkboxes a {
    color: var(--boulder);
    text-decoration: underline
}

.form-contact button {
    width: 80%;
    padding: 20px;
    font-size: 15px;
    margin: 30px auto 0;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1);
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.form-contact button div {
    display: none;
}

.form-contact button:hover, .form-contact button:focus {
    background: var(--red-ribbon);
}

.form-contact .input-danger {
    border-color: #f0506e !important;
}

.form-contact .checkboxes label.input-danger:before {
    color: #f0506e !important;
}

/*.modal-body, .modal-header {*/
/*    background: var(--red-ribbon);*/
/*}*/

/*.modal-header {*/
/*    border-bottom: none;*/

/*}*/

/*.modal-title, .close {*/
/*    color: #fff !important;*/
/*}*/

.modal-header > * {
    font-weight: 500 !important;
}

/*--------------------------------------------------------------
Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
    .section-video h1 {
        font-size: 35px;
        line-height: 43px;
    }

    .section-video .left-side h1 {
        padding: 50px !important;
    }

    .section-video .right-side h1 {
        font-size: 100px;
        padding: 70px !important;
    }

    .jobs--section .list-jobs > li .job-content {
        padding: 30px;
    }

    .jobs--section .list-jobs > li {
        width: 32%;
    }

    .jobs--section .list-jobs > li {
        height: 570px;
    }

    .jobs--section .list-jobs > li .job-content h4 {
        font-size: 20px;
    }

    .jobs--section .list-jobs > li .job-content .job-info img {
        max-width: 25px;
    }

    .jobs--section .list-jobs > li .job-content .job-info > li div strong {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .section--section {
        padding: 40px 20px;
    }

    .section-video .boxes div > *,
    .section-video .boxes div span strong {
        font-size: 30px;
    }

    .section-video .right-side .boxes div span strong {
        font-size: 40px;
    }

    .section-video .left-side h1 {
        padding: 30px !important;
        font-size: 30px;
        line-height: 35px;
    }

    .section-video .right-side h1 {
        padding: 50px !important;
    }

    .footer .footer-container {
        padding: 40px 20px 30px;
    }

    .header--container {
        height: auto;
        padding: 20px 0;
    }

    .section-video .section--container {
        flex-direction: column;
    }

    .section-video .left-side {
        margin: 0;
    }

    .form-container {
        max-width: 500px;
        width: 100%;
    }

    form input.input {
        font-size: 12px;
    }

    .second--section h2 {
        font-size: 35px !important;
    }

    .floating {
        animation: none;
    }

    .third--section {
        padding-top: 80px;
    }

    .third--section .section--container > p.section--subtitle {
        font-size: 30px;
        line-height: 42px;
    }

    .section--section .section--container h2.section--title {
        font-size: 45px;
    }

    .third--section ul,
    .third--section ul + div {
        margin-top: 40px;
    }

    .third--section a {
        font-size: 17px;
        padding: 15px 40px;
    }

    .fifth--section {
        height: 50vh;
    }

    .fifth--section .aside-box {
        margin-bottom: -40px;
        padding: 15px 50px;
        width: auto;
    }

    .fifth--section .aside-box p {
        font-size: 18px;
    }

    .fifth--section .aside-box h4 {
        font-size: 35px;
        margin-top: 0;
    }

    .fifth--section .aside-box p:last-child {
        font-size: 14px;
    }

    .section-video {
        height: calc(100vh - 87px);
    }

    .select-items div, .select-selected {
        font-size: 17px;
    }

    .select-selected:before {
        width: 56px;
    }

    .select-selected.select-arrow-active:after {
        top: 24%;
    }
}

@media screen and (max-width: 900px) {
    .section-video {
        display: flex;
        flex-direction: column;
    }

    .section-video {
        height: 100%;
    }

    .section-video > * {
        height: calc(100vh - 87px);
        width: 100%;
    }

    .section-video .left-side h1 {
        font-size: 35px !important;
        line-height: 45px !important;
    }
}

@media screen and (max-width: 768px) {
    .section-video h1 {
        font-size: 35px;
        line-height: normal;
    }

    .footer .footer-container .footer-top {
        flex-direction: column;
    }

    .footer .footer-container .footer-top div:first-child {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .footer p {
        max-width: 100%;
    }

    .footer .footer-container .footer-bottom {
        margin-top: 20px;
    }

    .second--section h2 {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 500px) {
    .section-video h1 {
        font-size: 28px;
    }

    .section-video .left-side > p {
        font-size: 18px;
    }

    .third--section .section--container > p.section--subtitle {
        font-size: 24px;
        line-height: 34px;
    }

    .section--section .section--container h2.section--title {
        font-size: 35px;
    }
}
