/* ---------------------------------------
******************************************
******************************************
              * Global *
******************************************
******************************************
--------------------------------------- */

/* -------------- Font -------------- */
@import url('https://fonts.googleapis.com/css?family=Libre+Franklin:100,200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');

body {
    /* font-family: 'Lato' !important; */
    font-family: 'Libre Franklin' !important;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
    margin: 0;
    padding: 0;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}



.colors {
    color: #00315e;
    color: #e50019;
    color: #6882a1;
    color: #e0eaef;
    color: #f1f9ff;
}

._c2 {
    color: #002a14 !important;
}
._c1 {
    color: #fff;
}
._c3 {
    color: #747474;
}


.rtl {
    direction: rtl;
}
.ltr {
    direction: ltr;
}

.flex {
    display: flex;
}
.no-margin {
    margin: 0;
}
._mb5  { margin-bottom: 5px; }
._mb10 { margin-bottom: 10px; }
._mb15 { margin-bottom: 15px; }
._mb20 { margin-bottom: 20px; }
._mb25 { margin-bottom: 25px; }
._mb30 { margin-bottom: 30px; }
._mb35 { margin-bottom: 35px; }
._mb40 { margin-bottom: 40px; }
._mb45 { margin-bottom: 45px; }
._mb50 { margin-bottom: 50px; }
._mb55 { margin-bottom: 55px; }
._mb60 { margin-bottom: 60px; }

._mt5  { margin-top: 5px; }
._mt10 { margin-top: 10px; }
._mt15 { margin-top: 15px; }
._mt20 { margin-top: 20px; }
._mt25 { margin-top: 25px; }
._mt30 { margin-top: 30px; }
._mt35 { margin-top: 35px; }
._mt40 { margin-top: 40px; }
._mt45 { margin-top: 45px; }
._mt50 { margin-top: 50px; }
._mt55 { margin-top: 55px; }
._mt60 { margin-top: 60px; }


.p_t_b-70 {
    padding: 70px 0;
}
.p_t_b-20 {
    padding: 20px 0;
}
.p_r_l-60 {
    padding: 0 60px;
}
.p_r_l-30 {
    padding: 0 30px;
}
.padding-2 {
    padding: 2px;
}
.no-padding {
    padding: 0;
}

.no-border {
    border: none;
}

.no-pl {
    padding-left: 0;
}
.no-pr {
    padding-right: 0;
}

.no-border-right {
    border-right: none !important;
}
.no-border-left {
    border-left: none !important;
}


.wood_btn_1 {
    background: #fff;
    border-radius: 0;
    color: #002a14;
    font-weight: 700;
    font-family: 'Lato';
}
.wood_btn_1:hover {
    color: #002a14;
}
.wood_btn_2 {
    background: #002a14;
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    font-family: 'Lato';
    width: 120px;
}
.wood_btn_2:hover {
    color: #fff;
}
.btn:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
}

.topButton {
    position: fixed;
    display: none;
    bottom: 12px;
    z-index: 99;
    right: 10%;
    width: 40px;
    height: 40px;
    border: none;
    background: #002a14;
    color: #fff;
    font-size: 1.4rem;
    transition: 0.4s;
}
.topButton:hover {
    transition: 0.4s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}


.offset-md-3 {
    margin-left: 0;
    margin-right: 25%;
}


.h_100vh { height: 100vh; }
.h_100 { height: 100%; }
.w_100{ width: 100%; }

.pos_relative {
    position: relative;
}

.animatedParent {
    overflow: hidden;
}

.flex_1 {
    flex: 1 0 50%;
}


.countries_section .owl-carousel .owl-nav button.owl-prev:focus,
.countries_section .owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel button.owl-dot:focus {
    outline: none;
}

.form-inline button:focus { outline: none; box-shadow: none;}


.slick-slider {
    /* overflow-x: hidden; */
}


/*----------------- Loader -----------------*/
.loader {
    height: 100vh;
    display: flex;
    align-content: center;
    justify-content: center;
}
.loader img {
    height: auto;
    width: 110px;
    object-fit: contain;
}
.wrapper {
    position: relative;
    display: none;
}



/* -------------- Main Header -------------- */
.main__header {
    position: absolute;
    width: 100%;
    z-index: 99;
}
.main__header .logo {
    width: 70px;
}
.main__header .navbar-nav {
    flex: 1;
    justify-content: center;
}
.main__header .navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff !important;
    transition: 0.4s;
    margin: 0 10px;
    position: relative;
}
.main__header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}
.main__header .navbar-nav .nav-item:hover .nav-link::after ,
.main__header .navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}
.main__header .navbar-nav .nav-link._c2 {
    color: #002a14 !important;
}
.main__header .navbar-nav .nav-link._c2::after {
    background: #002a14;
}

.main__header .form-inline {
    border-bottom: 1px solid #fff;
    margin-left: auto;
}
.main__header .form-inline button {
    color: #fff;
}
.main__header .form-inline input {
    border: none;
    font-size: 0.8rem;
    background: transparent;
    color: #fff;
}
.main__header .form-inline input::placeholder { font-size: 0.8rem; color: #fff; }
form .form-control:focus { outline: none; box-shadow: none; }

.__form.form-inline {
    border-color: #002a14 !important;
}
.__form.form-inline input::placeholder { color: #002a14; }
.__form.form-inline button { color: #002a14 !important; }
/* -------------- Second Header -------------- */



/* ---------------------------------------
******************************************
******************************************
              * Home Page *
******************************************
******************************************
--------------------------------------- */

/* -------------- Main Section -------------- */
@media screen and (max-width: 768px) {
    ._main .home {
        max-width: 100% !important;
    }
    .contact_page .item,
    ._main .home {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    ._main .flex_1 {
        flex: 0 0 100% !important;
    }
}
@media screen and (max-width: 992px) {
    .column-reverse {
        flex-direction: column-reverse !important;
    }
    .column {
        flex-direction: column;
    }
    .aboutus_section .flex img {
        max-width: 100% !important;
    }
    .contact_page .item {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    ._main .flex_1,
    ._main .flex_2 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}
._main .flex_1 {
    flex: 1 0 40%;
    padding: .5rem 1rem;
}
._main .flex_2 {
    flex: 1 0 50%;
    max-width: 55%;
}

._main h1 {
    font-weight: 600;
    font-family: 'Libre Franklin';
    color: #002a14;
}
._main label {
    font-size: 0.8rem;
    color: #707070;
}
._main .form-inline {
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
._main .form-inline button {
    color: #002a14;
    font-size: 1.4rem;
}
form .form-control {
    border: none;
    font-size: 1rem;
    flex: 2;
    color: #002a14;
    border-radius: 0;
}
form .form-control::placeholder { color: #002a14; }
form .form-control:focus {
    border-bottom: 1px solid #002a14;
}
.home .item img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
.home .slick-dots {
    bottom: 10px;
}
.home .slick-dots li button {
    background: #fff;
    color: black;
}
.home .slick-dots li button:before {
    content: '';
    top: 3px;
    left: 2.5px;
    width: 15px;
    height: 15px;
    background: #000;
}

._main ._social li {
    margin: 0 5px;
    z-index: 9;
}
._main ._social a {
    color: #002a14;
    display: block;
    transition: 0.4s;
}
._main ._social a:hover {
    color: #707070;
    transition: 0.4s;
    text-decoration: none;
}
._main ._social a i {
    font-size: 1.5rem !important;
}

._main .fixed_img {
    left: 0;
    bottom: 0;
    height: 250px;
    z-index: -1;
}

/* -------------- Suppliers Section -------------- */
.suppliers__section .item img {
    height: 100px;
    width: 100%;
    object-fit: contain;
}

.__hasBg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.weAre__section {

    background-blend-mode: multiply;
}
.weAre__section .title {
    background-color: rgba(225, 225, 225, 0.3);
    width: fit-content;
    margin: 0 auto 15px;
    padding: 10px 0;
}

.aboutus_section {
    position: relative;
}
.aboutus_section .flex img {
    flex: 1 0 50%;
    object-fit: cover;
    height: 500px;
    max-width: 50%;
}
.aboutus_section .fixed_img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.secTitle_1::before {
    content: '';
    width: 42px;
    height: 39px;
    background-color: rgba(0, 42, 20, 0.4);
    position: absolute;
    top: -9px;

}
.aboutus_section p {
    font-size: 28px;
}
.aboutus_section ul li {
    font-size: 1.1rem;
    font-weight: bold;
    color: #002a14;
    position: relative;
    margin: 10px 0;
    padding: 0 30px;
}
.aboutus_section ul li::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    border: 1.5px solid #002a14;
}


.howWeWork_Section {

    background-blend-mode: multiply;
    position: relative;
}
.howWeWork_Section .secTitle_1::before {
    background: rgba(225, 225, 225, 0.3);
}
.howWeWork_Section p {
    font-size: 4rem;
}
.howWeWork_Section ul li {
    color: #fff;
    margin: 65px 0;
}
.howWeWork_Section ul li span {
    padding: 13.6px 18px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
}
.howWeWork_Section ul li:not(:last-child) span::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #fff;
    left: 50%;
    height: 100%;
    top: 100%;
}
.howWeWork_Section ul li label {
    font-size: 1.2rem;
    margin-left: 10px;
}
.howWeWork_Section .fixed_img {
    top: 30%;
    right: 40px;
}


.latestProjec_section {
    position: relative;
}
.latestProjec_section .fixed_img {
    width: auto !important;
    top: -80px;
    left: 20px;
}
.latestProjec_section .fixed_img._sec {
    top: 85% !important;
    right: 20px ;
    left: auto !important;
}
.latestProjec_section p {
    font-size: 1.7rem;
}
.latestProjec_section img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.__moreProjects {
    background-image: url(../img/more-proj-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: #fff;
    padding: 15px;
}
.__moreProjects p:nth-child(2) {
    letter-spacing: 4px;
}



.fixed_img {
    position: absolute;
}
._sq {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 48.3%;
    top: -7px;
}
._bg1 {
    background: rgba(0, 42, 20, 0.3);
}
._bg2 {
    background: rgba(225, 225, 225, 0.3);
}


/* ---------------------------------------
******************************************
******************************************
            * Footer *
******************************************
******************************************
--------------------------------------- */
footer {
    background-image: url(../img/footer-bg.png), linear-gradient(rgba(64, 43, 36, 0.6), rgba(64, 43, 36, 0.6));
    background-blend-mode: multiply;
    background-position: center top !important;
    align-items: center;
    min-height: 400px;
    padding: 20px 0;
}
footer img {
    width: 150px;
}
footer .fixed_img {
    width: auto !important;
    height: 200px;
}
footer label:first-child {
    margin-left: 0;
}
footer label {
    color: #c29375;
    padding: 7px 14px;
    background-color: rgba(25, 9, 0, 0.6);
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0 5px;
}
footer ._social {
    justify-content: center;
}
footer ._social li {
    margin: 0 5px;
}
footer ._social li a {
    display: block;
    padding: 3px;
    color: white;
}
footer h6 {
    font-size: 1.2rem;
}
footer p {
    float: right;
}
footer span {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
}




/* ---------------------------------------
******************************************
******************************************
            * Products Page *
******************************************
******************************************
--------------------------------------- */
.__slider .item .fixed_img {
    z-index: 1;
    left: auto;
    bottom: 30px;
    right: 20px;
    width: auto;
    height: 150px !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.3);
}


.filter li {
    background: #002a14;
    color: #fff;
    padding: 18px 25px;
    cursor: pointer;
    border-bottom: 1px solid #fff;
}
.filter li i {
    float: right;
    font-size: 0.7rem;
    line-height: 2;
}
.filter .__hasSubMenu {
    overflow: hidden;
    max-height: 0px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}
.filter .__hasSubMenu.show {
    max-height: 320px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}
.filter .__hasSubMenu .custom-control:first-child { margin-top: 0;}
.filter .__hasSubMenu .custom-control {
    background: rgba(0, 42, 20, 0.1);
    color: #002a14;
    padding: 18px 60px;
    margin: 3px 0;
}
.filter .__hasSubMenu .custom-control label {
    display: block;
}
.custom-control-input:checked~.custom-control-label::before {
    border-color: #002a14;
    color: #002a14;
    background-color: #002a14;
}
.custom-control-label::before {
    background-color: transparent;
    border: #002a14 solid 1px;
}

input[type=checkbox]:focus,
input[type=radio]:focus { outline: none; box-shadow: none;}







/* ---------------------------------------
******************************************
******************************************
        * Product Details Page *
******************************************
******************************************
--------------------------------------- */
.productDetails_page ._mainSecond img {
    height: 100%;
}
._mainSecond {
    /* background-image: url(../img/product-details-main.jpg); */
    align-items: center;
}
.productVideo {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
._mainSecond h1 {
    font-family: 'Libre Franklin';
}
._mainSecond .fixed_img {
    right: 40px;
    bottom: 20px;
    height: 160px !important;
}
._venobox {
    color: #747474 !important;
    transition: 0.4s;
    font-size: 1.2rem;
    cursor: pointer;
}
._venobox:hover {
    color: #cfebf8 !important;
    transition: 0.4s;
    text-decoration: none;
}
._venobox i {
    font-size: 4rem !important;
}
a._venobox.playingVideoBtn.hide,
a._venobox.stopingVideoBtn.hide {
    display: none;
}

.products_cards .fixed_img {
    top: 50%;
}
.products_cards .fixed_img._l {
    top: 75%;
}
.prodDetails_section .fixed_img,
.products_cards .fixed_img {
    height: 160px;
    z-index: -1;
}
.prodDetails_section .fixed_img._r,
.products_cards .fixed_img._r {
    right: 150px;
    bottom: -70px;
}
.prodDetails_section .fixed_img._l,
.products_cards .fixed_img._l {
    bottom: -110px;
    left: 10px;
}
.prodDetails_section p {
    font-size: 1.1rem;
}
.prodDetails_section ul {
    display: flex;
    flex-wrap: wrap;
}
.prodDetails_section ul li {
    font-size: 0.9rem;
    flex: 1 0 50%;
    font-weight: bold;
    color: #002a14;
    position: relative;
    margin: 10px 0;
    padding: 0 30px;
}
.prodDetails_section ul li::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    border: 1.5px solid #002a14;
}



.prodDetails_section .item img {
    width: 100%;
}
.prodImgs .item img {
    height: 550px;
    object-fit: cover;
}

.prodImgs_navs {
    margin-left: 70px;
    margin-top: -80px;
}
.prodImgs_navs .slick-list {
    padding: 15px 0;
}
.prodImgs_navs .item {
    padding: 5px;
    border-radius: 2px;
}
.prodImgs_navs .item.slick-slide.slick-current.slick-active {
    /* border: 1px solid #ccc; */
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
    background: #fff;
}
.prodImgs_navs .item img {
    height: 100px;
}

.relatedProj {
    overflow-x: hidden;
}
.relatedProj .slick-list {
    padding: 15px 60px !important;
}
.relatedProj .item {
    padding: 0 15px;
}
.relatedProj .item img {
    height: 300px;
}
a.card:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
}
a.card {
    padding-bottom: 10px;
}





/* ---------------------------------------
******************************************
******************************************
            * Project Page *
******************************************
******************************************
--------------------------------------- */
.allProjects_section .fixed_img {
    right: 20px;
    height: 140px;
    top: 20px;
}
.allProjects_section .fixed_img._b {
    top: auto;
    bottom: 50px;
}
.projects_page ._mainSecond {
    background-image: none;
}
#panorama {
    width: 100%;
    height: 100%;
}


.projects_section {
    height: 100vh;
    margin-top: 10px;
}
.projects_section .projects_slider .item {
    width: 100%;
    height: 100vh;
}
.item h1 {
    margin: 0 215px;
    font-size: 4rem;
    font-weight: 700;
}
.projects_section .projects_slider .item img {
    width: 100%;
    object-fit: cover;
}
.projects_slider .slick-next {
    right: 150px;
}
.projects_slider .slick-prev {
    left: 150px;
}
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.slick-prev::before, .slick-next::before {
    font-family: none !important;
    opacity: 1;
}
/* .projects_slider .slick-next */


.pos_absolute {
    position: absolute;
    bottom: 30px;
}
.projects_section .projects_slider_navs .item {
    padding: 5px;
    margin: 0 3px;
    background: #fff;
}
.projects_section .projects_slider_navs .item img {
    height: 150px;
    width: 100%;
    object-fit: fill;
}


.filterProjectsForm .nice-select {
    flex: 1 0 35%;
    margin-right: 15px;
    border-radius: 0;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.16);
}
.nice-select .list {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}
.filterProjectsForm .wood_btn_2 {
    flex: 1 0 20%;
}




/* ---------------------------------------
******************************************
******************************************
            * Blogs Page *
******************************************
******************************************
--------------------------------------- */
.blogs_page ._mainSecond {
    background-image: url(../img/blog-main-bg.png);
}

.blogCard {
    padding: 20px 0 !important;
}
.blogCard span {
    font-size: 0.8rem;
}
.blogCard_section .fixed_img {
    height: 200px;
}
.blogCard_section .fixed_img._t {
    top: -80px;
    left: 20px;
}

.blogCard_section .fixed_img._b {
    bottom: 20px;
    left: 20px;
}

.blogCard_section .fixed_img._r._c {
    top: 50%;
    right: 20px;
}


/* ---------------------------------------
******************************************
******************************************
            * Blogs Page *
******************************************
******************************************
--------------------------------------- */
.blogSingle_page .home {
    flex: none;
    max-width: 100%;
}
.blogSingle_page .fixed_img {
    bottom: -150px;
    z-index: 1;
}






/* ---------------------------------------
******************************************
******************************************
            * Blogs Page *
******************************************
******************************************
--------------------------------------- */
.article_section {
    padding: 20px 0;
}
.article_section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.moreArticles_section .item {
    padding: 10px;
}





/* ---------------------------------------
******************************************
******************************************
            * About Page *
******************************************
******************************************
--------------------------------------- */
.about_page ._main h1 {
    font-size: 4rem;
}
.about_page ._main h1 em {
    font-size: 37%;
    font-style: normal;
    font-weight: 300;
}
.about_page .item .fixed_img {
    z-index: 1;
    left: auto;
    bottom: 30px !important;
    right: 20px;
    width: auto;
    height: 150px !important;
}
.about_page .weAre__section {
    background-blend-mode: multiply;
    align-items: center;
    height: 450px;
}
.about_page .weAre__section p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 1px;
}
.about_page .aboutus_section p {
    font-size: 23px;
    font-weight: 300;
}


.goal_section {
    height: 450px;
    align-items: center;
    background-position: right top !important;
}
.goal_section p {
    font-size: 1.3rem;
}

.about_page ._main .fixed_img {
    bottom: -150px;
    z-index: 1;
}

.about_page .goal_section img.fixed_img {
    top: -80px;
    height: 200px;
}




/* ---------------------------------------
******************************************
******************************************
            * Contact Page *
******************************************
******************************************
--------------------------------------- */
._contactStaff p,
._contactStaff a {
    color: #002a14;
    font-size: 0.85rem;
}
._contactStaff p i,
._contactStaff a i {
    margin-right: 5px;
    font-size: 1.1rem !important;
}
.contact_page .item {
    flex: 1 0 50%;
    max-width: 55%;
    background-image: url(../img/products-s-1.png);
    align-items: center;
}
.contact_page .item .fixed_img {
    z-index: 1;
    right: 0;
    left: auto;
    height: 160px;
    bottom: 45px;
}
.contact_page ._main .fixed_img._c {
    left: 46%;
    top: 50%;
    height: 140px;
    transform: translate(-58%, -50%);
    z-index: 1;
}





a:hover {
    text-decoration: none;
    transition: 0.4s;
}

/* ---------------------------------------
******************************************
******************************************
                * RTL *
******************************************
******************************************
--------------------------------------- */
html[dir='rtl'] .text-right {
    text-align: left  !important;
}
html[dir='rtl'] .text-left {
    text-align: right !important;
}
html[dir='rtl'] .offset-md-3 {
    margin-left: 25%;
    margin-right: 0;
}
html[dir='rtl'] .nice-select .current {
    float: right;
}
html[dir='rtl'] .nice-select:after {
    right: auto;
    left: 12px;
}
html[dir='rtl'] .rtl {
    direction: ltr;
}
html[dir='rtl'] .ltr {
    direction: rtl;
}





/*
panorama-slider2
*/

.panorama-slider2 {
    position: relative;
    color: #fff;
}

.panorama-slider2__slide {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.panorama-slider2__slide-inner {
    position: relative;
}

.panorama-slider2__subtitle {
    font-size: 20px;
    margin-bottom: 20px !important;
}

.panorama-slider2__title-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
}

.panorama-slider2__title-wrapper > *:first-child {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.panorama-slider2__title {
    font-size: 70px !important;
    line-height: 1 !important;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: -6px;
    font-family: 'Lato' !important;
}

.panorama-slider2__label {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: auto;
    text-align: center;
    padding-bottom: 6px;
}

.panorama-slider2__label-icon {
    font-size: 72px;
    padding-right: 0.3em;
    text-align: center !important;
}

.panorama-slider2__label-value {
    font-size: 0.9rem;
    font-family: 'Lato' !important;
    font-weight: 500;
    line-height: 1;
    margin-top: 20px;
}

.panorama-slider2__text {
    font-size: 20px;
    max-width: 500px;
    margin-bottom: 86px;
    line-height: 1.6;
}

.panorama-slider2__link-wrapper {
    display: inline-block;
    vertical-align: top;
    pointer-events: auto;
}

.panorama-slider2__link {
    color: currentColor;
    font-family: inherit;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    vertical-align: top;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Optima', Helvetica, sans-serif;
    font-size: 30px;
    line-height: 1.4;
}

.panorama-slider2__link:after {
    position: absolute;
    bottom: 2px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: opacity 0.3s;
    opacity: 0;
}

.panorama-slider2__link:hover {
    color: #987627;
}

.panorama-slider2__link:hover:after {
    opacity: 1;
}

.panorama-slider2__link_active {
    color: #987627;
}

.panorama-slider2__link_active:after {
    opacity: 1;
}

.panorama-slider2__link_inverted:after {
    opacity: 1;
}

.panorama-slider2__link_inverted:hover:after {
    opacity: 0;
}

.panorama-slider2__link:after {
    height: 2px;
}

.panorama-slider2__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 20;
}

.panorama-slider2__footer:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    right: 50%;
    background: #fff;
    z-index: 1;
}

.panorama-slider2__footer-inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}

.panorama-slider2__footer-menu {
    min-width: 68%;
    width: 68vmin;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    color: #000;
    background: #fff;
    font-size: 2.2vmin;
    line-height: 1.363636363636364;
    text-transform: uppercase;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.panorama-slider2__footer-item {
    width: 200px;
    height: 16vmin;
    padding-right: 30px;
    padding-top: 5vmin;
}

.panorama-slider2__footer-link {
    text-decoration: none;
    color: currentColor;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.panorama-slider2__footer-link .project-logo {
width: 140px;
}

.panorama-slider2__footer-link:hover {
color: #987627;
}

.panorama-slider2__footer-link span {
    font-size: 70px;
    position: relative;
    top: -20px;
}

.panorama-slider2__footer-link p {
margin-top: -35px;
}

.panorama-slider2__footer-link div {
    position: absolute;
    top: 30px;
    left: 26px;
}

.panorama-slider2__controls {
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    position: absolute;
    top: 50%;
    right: 60px;
    margin-top: -30px;
    z-index: 2;
}

.panorama-slider2__control {
    width: 60px;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 100%;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(255,255,255,0);
    transition: all 0.3s;
    margin-left: 25px;
}

.panorama-slider2__control:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.25);
}

.panorama-slider2 .tparrows {
    display: none;
}

.panorama-slider2 .tp-parallax-wrap {
    min-width: auto !important;
    position: inherit !important;
    top: auto !important;
    left: auto !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}

.panorama-slider2 .tp-loop-wrap,
.panorama-slider2 .tp-mask-wrap {
    position: inherit !important;
}
