/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.header--container {
    max-width: 1366px;
    padding: 0 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

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

.header--container .logo {
    max-width: 180px;
}

.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 a {
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 500;
    color: #858585;
    transition: .4s;
}

.header--container .nav a:hover {
    color: var(--red-ribbon);
}

.header--container .nav li.button a {
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid var(--red-ribbon);
    text-decoration: none !important;
}

.header--container .nav li.button.red a {
    color: #fff;
    background: var(--red-ribbon);
}

.header--container .nav li.button.transparent a {
    border: 1px solid #858585;
}

.header--container .nav li.button.transparent a:hover {
    background: var(--red-ribbon);
    color: #fff;
}


/*--------------------------------------------------------------
First Section
--------------------------------------------------------------*/
.first--section {
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    min-height: 800px;
    background-image: url('../images/bg/bg-02.jpg');
    background-position: center top;
}

.first--section::after {
    content: '';
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: rgba(0, 0, 0, .35);
}

.first--section .section--container {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 800px;
    z-index: 11;
}

.first--section .left-side {
    position: absolute;
    bottom: 30%;
    left: 0;
    z-index: 10;
}

.first--section h6 {
    font-size: 26px;
    font-family: Montserrat;
    font-weight: 300;
    color: #747474;
    margin-bottom: 10px;
}

.first--section h1 {
    font-size: 45px;
    font-family: Montserrat;
    font-weight: 700;
    color: #fff;
    max-width: 700px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .15);
}

.first--section p {
    color: #fff;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    max-width: 600px;
    margin-top: 30px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .15);
}

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

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

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

.buttons-list a {
    padding: 15px 30px;
    font-size: 15px;
    font-family: Montserrat;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    transition: .4s;
    border-radius: 5px;
    text-decoration: none !important;
}

.buttons-list a.btn-big {
    padding: 20px 50px;
    font-size: 17px;
}

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

.buttons-list a.transparent {
    border: 1px solid #858585;
}

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

.first--section .right-side {
    float: right;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.first--section .right-side .main-img {
    height: 600px;
}

.first--section .right-side .logo-section {
    height: 90px;
}

.first--section .abs-img {
    position: absolute;
    bottom: 9%;
    left: 120px;
    max-width: 220px;
}

.first--section .abs-img-2 {
    position: absolute;
    bottom: -10%;
    left: 0;
    max-width: 88px;
    z-index: 11;
}


/*--------------------------------------------------------------
Second Section
--------------------------------------------------------------*/
.second--section {
    width: 100%;
    background: #FAFAFA;
    padding: 120px 20px;
    text-align: center;
    box-shadow: inset 0 3px 9px -1px rgba(0, 0, 0, .2);
}

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

.second--section h6 {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 300;
    color: #747474;
    margin-bottom: 10px;
}

.second--section h2 {
    font-size: 30px;
    font-family: Montserrat;
    font-weight: 600;
    color: #404040;
}

.second--section .list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
}

.second--section .list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    flex-direction: column;
}

.second--section .list li div.list-icon {
    width: 65px;
    height: 65px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--red-ribbon);
}

.second--section .list li:nth-child(2) div.list-icon {
    background: #858585;
}

.second--section .list li img {
    max-width: 40px;
}

.second--section .list li div.list-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.second--section .list li div.list-content h5 {
    font-size: 18px;
    font-family: Montserrat;
    font-weight: 600;
    color: #4D4D4D;
    margin: 15px 0;
}

.second--section .list li div.list-content p {
    color: #747474;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    max-width: 400px;
}


/*--------------------------------------------------------------
Third Section
--------------------------------------------------------------*/
.third--section {
    width: 100%;
    padding: 70px 20px;
    text-align: center;
}

.third--section .section--container {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.third--section .person-img {
    max-width: 500px;
    border-radius: 15px;
}

.third--section .content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 120px;
    text-align: left;
}

.third--section .content h6 {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 300;
    color: #747474;
    margin-bottom: 20px;
}

.third--section .content h2 {
    font-size: 35px;
    font-family: Montserrat;
    font-weight: 600;
    color: #404040;
}

.third--section .content ul.list {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: 30px;
}

.third--section .content ul.list li:not(:first-child) {
    margin-top: 10px;
}

.third--section .content ul.list li span {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 500;
    color: #747474;
}

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

.why--container {
    flex-direction: row-reverse;
}

.why--container .content {
    margin-right: 120px;
    margin-left: 0 !important;
}


/*--------------------------------------------------------------
Fourth Section
--------------------------------------------------------------*/
.fourth--section {
    width: 100%;
    padding: 120px 20px;
    text-align: left;
    background-image: url('../images/bg/fourth-section.jpg');
    background-position: center;
    background-size: cover;
}

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

.fourth--section h6 {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.fourth--section h2 {
    font-size: 35px;
    font-family: Montserrat;
    font-weight: 600;
    color: #fff;
}

.fourth--section ul.list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
    max-width: 600px;
}

.fourth--section ul.list li:not(:first-child) {
    margin-top: 7px;
}

.fourth--section ul.list li span {
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 400;
    color: #fff;
}

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

.fourth--section .buttons-list a.transparent {
    border-color: #fff;
    color: #fff !important;
}


/*--------------------------------------------------------------
Fifth Section
--------------------------------------------------------------*/
.fifth--section {
    width: 100%;
    background: #FAFAFA;
    padding: 80px 20px;
    text-align: center;
    box-shadow: inset 0 3px 9px -1px rgba(0, 0, 0, .2);
}

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

.fifth--section h6 {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 300;
    color: #747474;
    margin-bottom: 20px;
}

.fifth--section h2 {
    font-size: 35px;
    font-family: Montserrat;
    font-weight: 600;
    color: #404040;
}

.fifth--section .section--container img {
    max-width: 100px;
}

.fifth--section .section--container ul.list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    margin-top: 70px;
}

.fifth--section .section--container ul.list h5 {
    font-size: 23px;
    font-family: Montserrat;
    font-weight: 600;
    color: #4D4D4D;
    margin: 40px 0 20px;
}

.fifth--section .section--container ul.list p {
    color: #747474;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    max-width: 400px;
}


/*--------------------------------------------------------------
Sixth Section
--------------------------------------------------------------*/
.sixth--section {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 0;
}

.sixth--section .slider, .sixth--section .content {
    height: 100%;
    width: 50%;
}

.sixth--section .content {
    height: 100%;
    position: relative;
}

.sixth--section .content img {
    opacity: .1;
}

.sixth--section .content > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 120px;
}

.sixth--section h6 {
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 300;
    color: #747474;
    margin-bottom: 20px;
}

.sixth--section h2 {
    font-size: 35px;
    font-family: Montserrat;
    font-weight: 600;
    color: #404040;
}

.sixth--section p {
    color: #000;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    margin-top: 40px;
}

.sixth--section p a {
    color: var(--red-ribbon);
}


/*--------------------------------------------------------------
Seventh Section
--------------------------------------------------------------*/
.seventh--section {
    width: 100%;
    padding: 70px 20px;
    text-align: left;
    background: #363636;
    border-bottom: 1px solid #e5e5e5;
}

.seventh--section .section--container {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.seventh--section .section--container div {
    margin-top: 20px;
}

.seventh--section .section--container div img {
    max-width: 30px;
    margin-bottom: 15px;
}

.seventh--section .section--container div img.logo-footer {
    max-width: 180px;
}

.seventh--section h5 {
    font-size: 17px;
    font-family: Montserrat;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.seventh--section p {
    color: #fff;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    max-width: 600px;
}


/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.footer {
    background: #363636;
    width: 100%;
    padding: 20px;
}

.footer .footer-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1024px;
    margin: 0 auto;
}

.footer .footer-container ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer .footer-container ul a {
    font-size: 13px;
    font-family: Montserrat;
    font-weight: 400;
    color: #fff;
}

.footer .footer-container ul a:hover {
    text-decoration: underline;
}


/*--------------------------------------------------------------
FORM CONTACT
--------------------------------------------------------------*/
.form-contact {
    background: #858585;
}

.form-contact .section--container {
    max-width: 600px;
    margin: 0 auto;
}

.form-contact .section--container h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.form-contact input:not([type="checkbox"]):not(:first-child),
.form-contact select {
    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 {
    position: relative;
}

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

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

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

.form-contact .checkboxes label:before, .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 {
    content: "\F0132";
}

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

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

.form-contact button {
    width: 100%;
    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;
    background: var(--red-ribbon);
    border: 1px solid var(--red-ribbon);
    border-radius: 5px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .15);
}

.form-contact button:hover,
.form-contact button:focus,
.buttons-list a:hover,
.header--container .nav li.button a:hover {
    background: var(--white);
    color: var(--red-ribbon);
}

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

.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;
}


/*--------------------------------------------------------------
Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 1600px) {
    .sixth--section .content > div {
        max-height: 500px;
        overflow-y: auto;
        padding: 10px 30px !important;
        display: block;
    }
}

@media screen and (max-width: 1366px) {
    .first--section .right-side {
        margin-top: 13px;
    }

    .first--section .right-side .main-img {
        height: 500px;
    }

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

@media screen and (max-width: 1240px) {
    .first--section .right-side {
        margin-top: 30px;
    }

    .first--section .right-side .main-img {
        height: 400px;
    }

    .sixth--section .content > div {
        padding: 40px;
    }
}

@media screen and (max-width: 1200px) {
    .second--section {
        margin-top: 0;
        padding: 50px 20px;
    }

    .second--section .list {
        flex-direction: column;
        align-items: center;
    }

    .second--section .list li {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .second--section .list li:not(:first-child) {
        margin-top: 30px;
    }

    .second--section .list li div.list-content {
        text-align: center;
        margin-left: 0;
    }

    .second--section .list li div.list-content p {
        max-width: 600px;
    }

    .second--section img.floating {
        animation-name: none;
    }

    .fifth--section .section--container ul.list p {
        max-width: 300px;
    }
}

@media screen and (max-width: 1100px) {
    .header--container .nav li:not(.button) {
        display: none;
    }

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

    .first--section .left-side {
        position: relative;
        padding-bottom: 40px;
    }

    .first--section .abs-img-2 {
        display: none;
    }

    .first--section .abs-img {
        left: 20px;
    }

    .first--section {
        min-height: 500px;
        display: flex;
        align-items: center;
    }

    .first--section .section--container {
        min-height: auto;
    }

    .seventh--section {
        padding: 40px 20px;
    }

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

    .seventh--section .section--container div {
        text-align: center;
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 1024px) {
    .first--section h1,
    h2 {
        font-size: 27px !important;
    }

    .first--section p {
        font-size: 16px;
    }

    .third--section, .fourth--section {
        padding: 40px 20px;
    }

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

    .third--section .person-img {
        max-width: 90%;
    }

    .third--section img.floating {
        animation-name: none;
        margin-bottom: 20px;
    }

    .third--section .content {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        align-items: center;
    }

    .fifth--section {
        padding: 50px 20px;
    }

    .fifth--section .section--container ul.list {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fifth--section .section--container ul.list li:not(:first-child) {
        margin-top: 40px;
    }

    .fifth--section .section--container ul.list p {
        max-width: 600px;
    }
}

@media screen and (max-width: 980px) {
    .header--container .nav li.button, .sixth--section .slider, .sixth--section .content img {
        display: none;
    }

    .sixth--section .content {
        width: 100%;
        background-image: url('../images/bg/sixth-section.jpg');
        background-size: cover;
        background-position: center;
    }

    .sixth--section .content > div {
        position: relative;
    }
}

@media screen and (max-width: 700px) {
    .footer .footer-container ul {
        flex-direction: column;
    }

    .footer .footer-container ul li:not(:first-child) {
        margin-top: 5px;
    }
}

@media screen and (max-width: 500px) {
    .header--container .nav li.button {
        display: none;
    }
}
