body {
    background-color: var(--light-grey);
}

#home-hero {
    background-color: rgb(240, 246, 241);
    min-height: 800px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /*align-content: flex-start;*/
    justify-content: center;
    align-items: center;
    /*padding: 300px 0 160px 0;*/
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    clip-path: ellipse(120% 80% at 50% 20%);
}

#home-hero:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 29, 36, .5);
    background: -moz-linear-gradient(0deg, rgba(0, 29, 36, .5) 0%);
    background: -webkit-linear-gradient(0deg, rgba(0, 29, 36, .5) 0%);
    background: linear-gradient(0deg, rgba(0, 29, 36, .5) 0%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001d24", endColorstr="#001d24", GradientType=1);
}

#home-hero:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(5, 46, 48);
    background: -moz-radial-gradient(circle, rgba(5, 46, 48, 0.2) 0%, rgba(5, 46, 48, .8) 100%);
    background: -webkit-radial-gradient(circle, rgba(5, 46, 48, 0.2) 0%, rgba(5, 46, 48, .8) 100%);
    background: radial-gradient(circle, rgba(5, 46, 48, 0.2) 0%, rgba(5, 46, 48, .8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#052e30", endColorstr="#052e30", GradientType=1);
}

#home-hero .container {
    position: relative;
    z-index: 2;
}

.hero-buttons {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.hero-buttons .button {
    margin: 0 10px 10px 10px;
}

#video-button .icon {
    position: relative;
    flex-basis: 11px;
    width: 11px;
    height: 12px;
    margin-left: 9px;
}

#video-button .icon:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    flex-basis: 11px;
    width: 11px;
    height: 12px;
    mask: url('../icons/video.svg') no-repeat center;
    -webkit-mask: url('../icons/video.svg') no-repeat center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background-color: var(--white);
    webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

#video-button:hover .icon:before {
    background-color: var(--green);
}

#home-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

#home-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home-hero iframe {
    border: none;
    height: 62vw;
    left: 50%;
    min-height: 101vh;
    min-width: 177.778vh;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    /*transition: opacity .36s ease-in;*/
    width: 100vw;
}

h1 {
    font-size: 60px;
    letter-spacing: 19px;
    line-height: 71px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

h1 span {
    display: block;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    #home-hero {
        /*height: 100vh;*/
        height: 90vh;
        padding: 100px 0;
        min-height: 450px;
    }
}

@media only screen and (max-width: 1199.9px) {
    /*#home-hero {*/
    /*    min-height: auto;*/
    /*    !*padding: 200px 0 150px 0;*!*/
    /*}*/
    h1 {
        font-size: 50px;
        letter-spacing: 10px;
        line-height: 60px;
    }

}

@media only screen and (max-width: 991.9px) {
    #home-hero {
        min-height: auto;

    }

    h1 {
        font-size: 40px;
        letter-spacing: 5px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767.9px) {
    #home-hero {
        min-height: auto;
        padding: 140px 0 80px 0;
    }

    h1 {
        font-size: 32px;
        letter-spacing: 2px;
        line-height: 40px;
    }

    .hero-buttons {
        margin-top: 40px;
    }

    #home-hero p {
        font-size: 20px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 575.8px) {
    h1 {
        font-size: 24px;
        letter-spacing: 0;
        line-height: 30px;
    }

    #home-hero {
        padding: 120px 0 60px 0;
        clip-path: ellipse(160% 80% at 50% 20%);
    }

    .hero-buttons {
        margin-top: 30px;
    }

    #home-hero p {
        font-size: 16px;
        line-height: 20px;
    }
}

/*
========================
HOME PROJECTS
========================
 */
#projects-home {
    position: relative;
    background-color: var(--light-grey);
    padding: 80px 0 40px 0;
}

#project-box-row {
    margin-top: 40px;
    margin-bottom: 15px;
}

.project-box-wrapper {
    width: calc(100% / 7);
    flex-basis: calc(100% / 7);
    padding: 20px 6px;
}

.project-box-link {
    text-decoration-line: none;
}

.project-box-link:hover {
    text-decoration-line: none;
}

.project-box-inner {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    filter: drop-shadow(0px 29px 32.5px rgba(78, 97, 41, 0.16));
    background-color: #ffffff;
    padding: 30px 15px;
    align-items: flex-start;
    position: relative;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    overflow: hidden;
}

.project-box-inner:before {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 53px);
    top: 0;
    height: 4px;
    width: 0;
    background-color: var(--light-green);
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.project-icon {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    height: 80px;
}

.project-text {
    width: 100%;
}

.project-text h5 {
    margin-bottom: 0;

}

.project-box-link:hover .project-box-inner {
    margin-top: -12px;
}

.project-box-link:hover .project-box-inner:before {
    width: 106px;
}

@media only screen and (max-width: 1199.9px) {
    #projects-home p br {
        display: none;
    }

    #projects-home .container {
        padding: 0 30px;
    }

    .project-icon {
        margin: 0 auto 10px auto;
        width: 80%;
    }

    .project-text h5 {
        font-size: 17px;
        line-height: 22px;
    }

    #projects-home {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 991.8px) {
    /*#projects-home {*/
    /*    background-color: var(--white);*/
    /*}*/
    #projects-home .container {
        padding: 0 15px;
    }

    .project-box-wrapper {
        width: calc(100% / 4);
        flex-basis: calc(100% / 4);
        padding: 20px 6px;
    }

    .project-text h5 {
        font-size: 20px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767.8px) {
    #project-box-row {
        margin-top: 10px;
    }

    .project-box-wrapper {
        width: 100%;
        flex-basis: 100%;
        padding: 5px 15px;
    }

    .project-box-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        padding: 20px;
        overflow: inherit;
    }

    .project-box-link:hover .project-box-inner:before {
        display: none;
    }

    .project-box-link:hover .project-box-inner {
        margin-top: 0;
    }

    .project-text {
        order: 1;
        width: calc(100% - 70px);
        flex-basis: calc(100% - 70px);
    }

    .project-text h5 {
        text-align: left !important;
    }

    .project-box-link:hover .project-text h5 {
        color: var(--light-green);
    }

    .project-icon {
        order: 2;
        width: 70px;
        flex-basis: 70px;
        height: 50px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575.8px) {
    .project-icon {
        height: 40px;
    }
}

/*
========================
HOME PROMOTIONS
========================
 */
#promotions-home {
    padding: 40px 0;
    background-color: var(--white);
}

.promotion-container {
    margin-bottom: 40px;
}

.promotion-container:last-of-type {
    margin-bottom: 0;
}

.promotion-container .row {
    align-items: center;
}

.promotion-container:nth-child(odd) .promotion-text-wrapper {
    order: 2;
    padding-left: 115px;
    padding-right: 15px;
}

.promotion-text-wrapper {
    padding-right: 115px;
}

.promotion-container:nth-child(odd) .promotion-image-wrapper {
    order: 1;
    padding-right: 0;
}

.promotion-container:nth-child(even) .promotion-image-wrapper {
    order: 1;
    padding-left: 0;
}

.promotion-image-wrapper .promotion-image-holder {
    margin-left: calc((-100vw + 1260px) / 2);
    width: 50vw;
    height: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.promotion-container:nth-child(even) .promotion-image-wrapper .promotion-image-holder {
    margin-right: calc((-100vw + 1260px) / 2);
    margin-left: auto;
    width: 50vw;
    height: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.promotion-image-wrapper {
    width: 100%;
    height: 465px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.promotion-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.promotion-title-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.promotion-icon {
    width: 115px;
    flex-basis: 115px;
    max-width: 100%;
}

.promotion-title {
    width: calc(100% - 115px);
    flex-basis: calc(100% - 115px);
    max-width: 100%;
}

.promotion-title h3 {
    margin-bottom: 0;
}

.promotion-text {
    margin-bottom: 30px;
}

.promotion-label {
    position: relative;
    border-radius: 5px;
    border-left: 5px solid #9dcc45;
    background-color: #f8ffed;
    padding: 12px 20px;
    display: inline-flex;
}

.promotion-label span {
    color: rgb(115, 175, 79);
}

@media only screen and (max-width: 1199.9px) {
    .promotion-text-wrapper {
        padding-right: 15px;
    }

    .promotion-container:nth-child(odd) .promotion-text-wrapper {
        padding-left: 15px;
    }

    .promotion-image-wrapper .promotion-image-holder {
        margin-left: calc((-100vw + 960px) / 2);
    }

    .promotion-container:nth-child(even) .promotion-image-wrapper .promotion-image-holder {
        margin-right: calc((-100vw + 960px) / 2);
    }
}

@media only screen and (max-width: 991.8px) {
    .promotion-container {
        margin-bottom: 0;
    }

    .promotion-container {
        margin-top: -40px;
    }

    .promotion-container:nth-child(odd) .promotion-image-wrapper,
    .promotion-container:nth-child(even) .promotion-image-wrapper {
        order: 1;
        padding: 0;
    }

    .promotion-container:nth-child(even) .promotion-image-wrapper .promotion-image-holder,
    .promotion-image-wrapper .promotion-image-holder {
        margin-left: calc((-100vw + 720px) / 2);
        margin-right: calc((-100vw + 720px) / 2);
        border-radius: 0;
    }

    .promotion-image-wrapper .promotion-image-holder,
    .promotion-container:nth-child(even) .promotion-image-wrapper .promotion-image-holder {
        width: 100vw;
    }

    .promotion-image-wrapper {
        height: 380px;
    }

    .promotion-image-wrapper img {
        width: 100vw;
    }

    .promotion-text-wrapper {
        padding: 25px 15px;
        background-color: var(--white);
        border-radius: 15px;
        z-index: 2;
        margin-top: -45px;
        order: 2;
    }

    .promotion-icon {
        width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }

    .promotion-title-wrapper {
        margin-bottom: 20px;
    }

    .promotion-title-wrapper,
    .promotion-text {
        padding: 0 15px;
    }

    .promotion-title {
        width: 100%;
        flex-basis: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .promotion-title h3 {
        text-align: center;
    }

    .promotion-text p {
        text-align: center;
    }

    .promotion-label {
        width: 100%;
    }
}

@media only screen and (max-width: 767.8px) {
    .promotion-container {
        margin-bottom: 0;
    }

    .promotion-container {
        margin-top: -40px;
    }

    .promotion-container:nth-child(odd) .promotion-image-wrapper,
    .promotion-container:nth-child(even) .promotion-image-wrapper {
        order: 1;
        padding: 0;
    }

    .promotion-container:nth-child(even) .promotion-image-wrapper .promotion-image-holder,
    .promotion-image-wrapper .promotion-image-holder {
        margin-left: calc((-100vw + 540px) / 2);
        margin-right: calc((-100vw + 540px) / 2);
        border-radius: 0;
    }

    .promotion-image-wrapper .promotion-image-holder,
    .promotion-container:nth-child(even) .promotion-image-wrapper .promotion-image-holder {
        width: 100vw;
    }

    .promotion-image-wrapper {
        height: 380px;
    }

    .promotion-image-wrapper img {
        width: 100vw;
    }

    #promotions-home {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 575.8px) {
    .promotion-image-wrapper {
        height: 350px;
    }

    .promotion-container:nth-child(even) .promotion-image-wrapper .promotion-image-holder, .promotion-image-wrapper .promotion-image-holder {
        margin-left: auto;
        margin-right: auto;
    }
}

/*
=======================
PROJECTS SLIDER
=======================
 */
/*#bottom-holder {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*#projects-slider {*/
/*    padding: 15px 0 0 0;*/
/*    background-color: var(--light-green);*/
/*    border-bottom: 1px solid rgba(12, 88, 78, .1);*/
/*}*/

/*.project-slide-inner {*/
/*    height: 537px;*/
/*    width: 100%;*/
/*    display: flex;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    flex-wrap: wrap;*/
/*    justify-content: flex-start;*/
/*    align-items: flex-end;*/
/*    border-radius: 15px;*/

/*}*/

/*.project-slide-inner:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-image: linear-gradient(4deg, rgba(10, 39, 37, 0.9999999999999999) 0%, rgba(10, 39, 37, 0) 100%);*/
/*    z-index: 1;*/
/*}*/

/*.project-slide-inner img.project-slider-image {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.project-bottom {*/
/*    position: relative;*/
/*    z-index: 4;*/
/*    width: 100%;*/
/*    flex-basis: 100%;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    align-items: center;*/
/*    padding: 35px;*/
/*    -webkit-transition: all .4s ease-out;*/
/*    -moz-transition: all .4s ease-out;*/
/*    -o-transition: all .4s ease-out;*/
/*    transition: all .4s ease-out;*/
/*    opacity: 0;*/
/*}*/

/*.project-info {*/
/*    width: calc(100% - 60px);*/
/*    flex-basis: calc(100% - 60px);*/
/*}*/

/*.project-short-text {*/
/*    margin-bottom: 0;*/
/*}*/

/*.project-link-wrapper {*/
/*    width: 60px;*/
/*    flex-basis: 60px;*/
/*}*/

/*.project-slider-link > * {*/
/*    -webkit-transition: all .4s ease-out;*/
/*    -moz-transition: all .4s ease-out;*/
/*    -o-transition: all .4s ease-out;*/
/*    transition: all .4s ease-out;*/
/*    text-decoration-line: none;*/
/*}*/

/*.project-slider-link:hover {*/
/*    text-decoration-line: none;*/
/*}*/

/*.project-arrow {*/
/*    width: 46px;*/
/*    height: 46px;*/
/*    border-radius: 50%;*/
/*    background-color: var(--light-green);*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    -webkit-transition: all .4s ease-out;*/
/*    -moz-transition: all .4s ease-out;*/
/*    -o-transition: all .4s ease-out;*/
/*    transition: all .4s ease-out;*/
/*}*/

/*.project-slider-link:hover .project-arrow {*/
/*    background-color: var(--green);*/
/*}*/

/*.swiper-slide-active .project-bottom {*/
/*    opacity: 1;*/
/*}*/

/*.projects-slider-bottom {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    padding: 0 30px;*/
/*    position: relative;*/
/*    margin: 30px auto;*/
/*}*/

/*#projects-slider .projects-pagination {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    width: calc(100% - 100px);*/
/*    flex-basis: calc(100% - 100px);*/
/*    position: relative;*/
/*    top: auto;*/
/*    bottom: auto;*/
/*}*/

/*#projects-slider .projects-pagination .swiper-pagination-bullet {*/
/*    width: 11px;*/
/*    height: 11px;*/
/*    border-radius: 50%;*/
/*    background-color: var(--green);*/
/*    opacity: .25;*/
/*    margin: 0 15px;*/
/*}*/

/*#projects-slider .projects-pagination .swiper-pagination-bullet-active {*/
/*    background-color: var(--white);*/
/*    opacity: 1;*/
/*}*/

/*.projects-slider-bottom .project-slider-button {*/
/*    width: 50px;*/
/*    flex-basis: 50px;*/
/*    max-width: 100%;*/
/*    margin: 0;*/
/*    top: 0;*/
/*    position: relative;*/
/*    left: auto;*/
/*    right: auto;*/
/*    height: auto;*/

/*}*/

/*.projects-slider-bottom .project-slider-button span {*/
/*    background: var(--white);*/
/*    display: flex;*/
/*    flex-basis: 30px;*/
/*    width: 30px;*/
/*    height: 21px;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    -webkit-transition: .4s ease-out;*/
/*    -moz-transition: .4s ease-out;*/
/*    -o-transition: .4s ease-out;*/
/*    transition: .4s ease-out;*/
/*}*/

/*.projects-slider-bottom .project-button-next {*/
/*    margin-left: auto;*/
/*    margin-right: 0;*/
/*}*/

/*.projects-slider-bottom .project-button-prev {*/
/*    margin-right: auto;*/
/*    margin-left: 0;*/
/*}*/

/*.projects-slider-bottom .project-button-next span {*/
/*    mask: url('../icons/arrow-right.svg') no-repeat center;*/
/*    -webkit-mask: url('../icons/arrow-right.svg') no-repeat center;*/
/*}*/

/*.projects-slider-bottom .project-button-prev span {*/
/*    mask: url('../icons/arrow-left.svg') no-repeat center;*/
/*    -webkit-mask: url('../icons/arrow-left.svg') no-repeat center;*/
/*}*/

/*.projects-slider-bottom .project-slider-button:hover span {*/
/*    background: var(--green);*/
/*}*/

/*.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,*/
/*.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {*/
/*    display: none;*/
/*}*/

/*@media only screen and (max-width: 767.8px) {*/
/*    .home #projects-slider {*/
/*        padding-top: 80px;*/
/*        margin-top: -30px;*/
/*    }*/
/*}*/