:root {
    --Black-color: #212721;
    --Green-color: #e50c0c;
    --white-color: #fff;
}

* {
    font-family: 'Montserrat', sans-serif;
}

.intro-image {
    object-fit: cover;
    object-position: center;
    height: 100vh;
    width: 100%;
    position: relative;
}

.social-content {
    position: absolute;
    left: 120px;
    top: 50%;
}

.zoom {
    animation: zoomIn 10s;
    -webkit-animation: zoomIn 10s;
    transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
    -webkit-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
    -moz-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
    -ms-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
    -o-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
    transform-origin: 0% 0% 0px;
}

.cover-vid {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 48.25%;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.cover-vid:hover {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes zoomIn {
    0% {
        transform: translate3d(0px, 0px, 0px);
        transform-origin: 0% 0% 0px;
        -webkit-transform: translate3d(0px, 0px, 0px);
        -moz-transform: translate3d(0px, 0px, 0px);
        -ms-transform: translate3d(0px, 0px, 0px);
        -o-transform: translate3d(0px, 0px, 0px);
    }
}





/* ------------------------------------------------------------- */
@media (min-width: 0px) and (max-width: 480px) {
    .social-content {
        position: absolute;
        left: 30px;
        top: 75%;
    }

    .layer-intro h1,
    .layer-intro h2 {
        color: var(--white-color);
        font-size: 50px !important;
        font-weight: 700;
    }

    .layer-intro a {
        font-size: 10px !important;
    }

}


@media (min-width: 656px) and (max-width: 768px) {
    .social-content {
        position: absolute;
        left: 50px;
        top: 70%;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .social-content {
        position: absolute;
        left: 50px;
        top: 70%;
    }

    .big-font {
        font-size: 40px !important;
    }
}






/* ------------------------------------------------------------- */



.follow {
    transform: matrix3d(0, -1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 0% 0% 0px;

}

.follows {
    transform: matrix3d(0, -1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 16, 10, 0, 2);
    transform-origin: 0% 0% 0px;
    border: 1px solid #aaa;
    height: 2px;
}


.layer-intro {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000008e;
    display: flex;
    align-items: center;
}

.intro-content {
    display: flex;
    justify-content: end;
    align-items: center;
    color: #fff;
    height: 90vh;
    flex-direction: column;
}

.layer-intro h1,
.layer-intro h2 {
    color: var(--white-color);
    font-size: 4.5rem;
    font-weight: 700;
}

.layer-intro h4 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 400;
}

.layer-intro h3 {
    color: var(--white-color);
    font-size: 45px !important;
    font-weight: 700;
    letter-spacing: 5px;
}

.layer-intro p {
    color: var(--white-color);
    font-size: 11px !important;
}

.carousel-control-prev span {
    background-color: var(--white-color);
    color: #e50c0c;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.carousel-control-next span {
    background-color: var(--white-color);
    color: #e50c0c;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}


.navbar {
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.logo {
    width: 120px;
}

.other-color {
    color: var(--Green-color) !important;
    font-weight:600 !important;
}


.social-icon i {
    font-size: 20px !important;
}

.nav-link {
    color: var(--white-color);
    font-size: 17px !important;
    font-weight: 100;
    margin: 0 5px !important;
}

.nav-link:hover {
    color: var(--Green-color);
}

.bars {
    color: var(--Green-color);
}


.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    -webkit-transition: opacity 0.7s ease;
    -moz-transition: opacity 0.7s ease;
    -ms-transition: opacity 0.7s ease;
    -o-transition: opacity 0.7s ease;
}

.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
    opacity: 1;

}


.big-font {
    font-size: 50px;
    font-weight: 500;
}

.fancy {
    background-color: transparent;
    border: 2px solid var(--Green-color);
    border-radius: 0;
    box-sizing: border-box;
    color: var(--Green-color);
    cursor: pointer;
    display: inline-block;
    float: right;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

.fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: var(--white-color);
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-color);
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: var(--white-color);
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: var(--Green-color);
    background: var(--white-color);
}

.fancy:hover::before {
    width: 0.9375rem;
    background: var(--Green-color);
}

.fancy:hover .text {
    color: var(--Green-color);
    padding-left: 1.5em;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

/* Overline Reveal */
.hvr-overline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    /* box-shadow: 0 0 1px rgba(0, 0, 0, 0); */
    position: relative;
    overflow: hidden;
}

.hvr-overline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    background: var(--Green-color);
    height: 4px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-overline-reveal:hover:before,
.hvr-overline-reveal:focus:before,
.hvr-overline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}



.social-icon i {
    font-size: 30px;
    color: #e50c0c;
    padding: 10px 0px;
    cursor: pointer;
}

.fa-xmark {
    color: var(--Green-color);
}

/* Curl Bottom Right */
.hvr-curl-bottom-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    /* box-shadow: 0 0 1px rgba(0, 0, 0, 0); */
    position: relative;
}

.hvr-curl-bottom-right:before {
    pointer-events: none;
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    bottom: 0;
    right: 0;
    background: white;
    /* IE9 */
    background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: width, height;
    transition-property: width, height;
}

.hvr-curl-bottom-right:hover:before,
.hvr-curl-bottom-right:focus:before,
.hvr-curl-bottom-right:active:before {
    width: 25px;
    height: 25px;
}


.bg-color {
    background-color: var(--white-color);
}


.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow: visible;
}

.offcanvas,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm,
.offcanvas-xl,
.offcanvas-xxl {
    --bs-offcanvas-zindex: 1045;
    /* --bs-offcanvas-width: 400px; */
    /* --bs-offcanvas-height: 15vh; */
    --bs-offcanvas-padding-x: 2rem;
    --bs-offcanvas-padding-y: 1rem;
    /* --bs-offcanvas-color: var(--bs-body-color); */
    /* --bs-offcanvas-bg: var(--bs-body-bg); */
    background-color: transparent;
    --bs-offcanvas-border-width: var(--bs-border-width);
    /* --bs-offcanvas-border-color: var(--bs-border-color-translucent); */
    /* --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); */
    border: 0 !important;
    --bs-offcanvas-transition: transform 0.7s ease-in-out;
    --bs-offcanvas-title-line-height: 1.5;
}

.position {
    position: absolute;
    top: 73px;
    right: 50px;
}

.btn-color .btn {
    color: var(--Green-color);
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    /* background-color: var(--bs-offcanvas-bg); */
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
}

/* <!--///////////////////////////////End-Home/////////////////////////////////////////////////////////////-->*/


.about-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}




.fancy {
    background-color: transparent;
    border: 2px solid var(--Green-color);
    border-radius: 0;
    box-sizing: border-box;
    color: var(--Green-color);
    cursor: pointer;
    display: inline-block;
    float: right;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

.fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: var(--Green-color);
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy .abouttext {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--Green-color);
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: var(--white-color);
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: var(--Green-color);
    background: var(--white-color);
}

.fancy:hover::before {
    width: 0.9375rem;
    background: var(--Green-color);
}

.fancy:hover .text {
    color: var(--Green-color);
    padding-left: 1.5em;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}


.floating {
    animation: floating 3s infinite ease-in-out;
}

@keyframes floating {

    from,
    to {
        transform: translate(0, 0)
    }

    65% {
        transform: translate(0, 15px)
    }
}

/* ************************************************************************************* */



.Text h2:first-child {
    color: var(--Green-color);
    letter-spacing: 4px;
}

.Text p:first-child {
    color: var(--Green-color);
    letter-spacing: 4px;
}

/* **************************************************************************************************************** */
.box-Gallery:hover .Gallery {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}

.box-Gallery {
    position: relative;
}

.Gallery {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.layer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.layer-image:hover .glass {
    opacity: 1;
}

.layer-image .glass {
    opacity: 0;
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
}

.box-Gallery:hover .layer-image {
    background-color: #0000004f;
}

.bg-section {
    background: linear-gradient(to right, #fff 40%, rgb(245, 245, 245) 40%);
}

.icon-circle i {
    color: var(--Green-color);
}


.arrow-bg {
    color: var(--Green-color);
    padding: 10px 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.learn-more {
    font-size: 13px;
    color: var(--Black-color);
}

.learn-more:hover .arrow-bg {
    background-color: var(--Green-color);
    color: var(--white-color);
    border: 0;
}

a .arrow-bg {
    color: var(--Green-color);
}

/* 
.arrow-bg:hover,
.arrow-bg:hover a {
    background-color: var(--Green-color);
    color: var(--white-color);
    border: 0;
} */

.arrow-bg {
    border: #ccc 1px solid;
}

/* **********************************Footer************************************************ */



.footer-section {
    background: #e50c0c;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

/*  */
.single-cta  {
    display: flex;
}
.single-cta i {
    color: var(--Black-color);
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 3px;
}

.cta-text span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}


.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    width: 37px;
    text-align: center;
    line-height: 2;
    border-radius: 50%;
    padding-left: 3px;
}



.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: 3px;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--Black-color);
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-widget ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 600;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p,
.copyright-text span,
.copyright-text a {
    margin: 0;
    font-size: 14px;
    color: #878787;
}



.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}


.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.slid {
    line-height: 2;
}

.slid h4 {
    color: var(--Black-color);
    letter-spacing: 3px;
}

.owel-images {
    height: 175px;
    width: 175px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
}

/* .owel-images:hover {
    opacity: 1;
} */

.team-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100px;
    width: 100px;
}

.team-images {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.film-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slid:hover .team-images {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
}

/* ************************************************************************************** */

.about-images {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}


.service-images {
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    position: relative;
}


.layer-intro h3,
.layers-intro h3 {
    color: var(--white-color);
    font-size: 3.5rem;
}

.layer-intro span,
.layers-intro span {
    color: var(--Green-color);
    font-size: 1rem;
    letter-spacing: 3px;
}

.layers-intro {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000008e;
    display: flex;
    justify-content: center;
    align-items: center;
}


.service-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100);
    -webkit-filter: grayscale(100);
}

.serv {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.serv:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.serv:hover .service-image {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}



.serv:nth-last-child(odd) {
    flex-direction: row-reverse;
}




#container {
    margin: auto;
}

.header h1 {
    text-align: center;
    background: -webkit-linear-gradient(#e3ca66, #b48e47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.5em;
    font-family: 'Parisienne', cursive;
    margin-bottom: 15px;
}

.header p {
    text-align: center;
    background: -webkit-linear-gradient(#e3ca66, #b48e47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 20px;
}

/* .grid-item {
    display: inline-block;
    height: 259px;

    overflow: hidden;
    text-align: center;
    width: 400px;
} */

.grid-item {
    filter: grayscale(100);
    transition: 0.9s;
    -webkit-filter: grayscale(100);
    -webkit-transition: 0.9s;
    -moz-transition: 0.9s;
    -ms-transition: 0.9s;
    -o-transition: 0.9s;
}

.grid-item:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}



.filters {
    width: 100%;
    text-align: center;
    padding-bottom: 35px;
    padding-top: 20px;

}

.filters ul {
    list-style: none;
    /* padding: 20px 10px; */
    margin: 0 40px;
    border-radius: 30px;
    display: flex;
    justify-content: center;

}

.filters li {
    margin: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;

}

.filters li a {
    color: var(--Green-color);
    text-decoration: none;
    padding: 10px 25px;
}

.filters li a:hover {
    color: var(--Black-color);
}


.filters li.active a {
    color: #6cca98;
    border: 1px solid #6cca98;
    padding: 10px 25px;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}

.grid-item:hover .overlay {
    opacity: 1;
}


.popupimg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.glass {
    color: var(--Green-color);
}

.card .film-image {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    filter: grayscale(100);
    -webkit-filter: grayscale(100);
}

.card:hover .film-image {
    transform: scale(1.03);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.icon-footer {
    color: var(--Green-color);
}

.contact-boxx a {
    color: var(--Black-color);
}


.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--Green-color);
    outline: 0;
    box-shadow: 0 0 0 0 var(--Green-color);
}


.flag {
    width: 30px;
}


/* Styles for screens larger than 1023px (desktop) */
@media (min-width:991px) and (max-width: 1200px) {
    .nav-link {
        font-size: 17px !important;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        left: -100px;
    }
}

@media (min-width:1201px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {

        left: -100px;
    }
}

.Related {
    color: var(--Green-color);
}



.nav-tabs .nav-item .nav-link {
    color: var(--Green-color);
}





.header {
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-video {
    object-fit: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    transition: none 0s ease 0s;
    text-align: inherit;
    line-height: 0px;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 13px;
    display: block;
    visibility: inherit;
    opacity: 1;
}

.bg-iframe {
    position: relative;
}

.bg-iframe::after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    background-image: url(../images/bg_1.png);
    content: "";
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 14rem 0;
    z-index: -1;
}

.image-proj {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.film-project-featured {
    position: relative;
}

.info {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
}

.info a,
.title {
    color: #Ffff;
    text-decoration: none;
}



.more:hover {
    color: #6cca98;
    border: 1px solid #6cca98;
    padding: 5px;
}

.more {
    border: 1px solid transparent;
    padding: 5px;
}

.film-project-featured:hover .info {
    opacity: 1;
}

.circil {
    height: 42px;
    width: 42px;
    border: 1px solid #cecece;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.circil i {
    color: #202020;
}

.circil:hover,
.circil:hover i {
    background-color: #fff;
    color: #202020;
}

.category:hover a {
    color: #6cca98;
}

.page-loader {
    position: fixed;
    z-index: 20000000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    display: block;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

.page-loader,
.page-loader.visible {
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible
}

.page-loader.p-hidden {
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}

.page-loader div {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #1d1d1d;
    margin-top: -50px;
    display: block
}

.page-loader div p {
    margin-top: 100px;
    font-size: 14px;
    color: #1f1f1f;
    letter-spacing: 1em;
    padding-left: 1em;
    text-transform: uppercase;
    font-family: Roboto, Helvetica, sans-serif;
    font-weight: 300
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--Green-color);
    -webkit-animation: spinr 1.5s linear infinite;
    -moz-animation: spinr 1.5s linear infinite;
    -o-animation: spinr 1.5s linear infinite;
    animation: spinr 1.5s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--Green-color);
    -webkit-animation: spinl .5s linear infinite;
    -moz-animation: spinl .5s linear infinite;
    -o-animation: spinl .5s linear infinite;
    animation: spinl .5s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--Black-color);
    -webkit-animation: spinr 1s linear infinite;
    -moz-animation: spinr 1s linear infinite;
    -o-animation: spinr 1s linear infinite;
    animation: spinr 1s linear infinite;
}

@-webkit-keyframes spinr {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinr {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinr {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinr {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinl {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes spinl {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-o-keyframes spinl {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes spinl {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.video-box {
    margin-top: 30px;
    position: relative;
}

.video-a {
    display: block;
    cursor: pointer;
    position: relative;
}

.video-title {
    background: var(--Green-color);
    padding: 15px;
    font-size: 20px;
    transition: .3s;
}

.video-box:hover .video-title,
.video-box:focus .video-title,
.video-box:active .video-title {
    background: #202020;
}

.video-title a {
    height: 60px;
    overflow: hidden;
    transition: .3s;
    color: #fff;
    text-decoration: none;
}

.video-box:hover .video-title a,
.video-box:focus .video-title a,
.video-box:active .video-title a {
    color: #fff;
}

.video-box .video-play {
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: .6;
    transition: .3s;
    font-size: 54px;
    color: var(--Green-color);
}

.video-box:hover .video-play,
.video-box:active .video-play,
.video-box:focus .video-play {
    opacity: .9;
}

.video-box .modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    outline: none;
}

.video-box .modal-content iframe {
    border: none;
    padding: 0;
    margin: 0;
}

.video-box .close {
    font-size: 80px;
    margin: -20px 0 0 0;
}

.video-box iframe {
    height: 350px;
}


@media only screen and (max-width: 641px) {
    .video-box .modal-body {
        height: 100px;
        padding: 0;
        margin: 0;
    }

    .video-box .modal-content {
        padding: 0;
        margin: 0;
    }

    .video-box .modal-dialog {
        position: relative;
        width: auto;
        margin: 15px;
    }

    .video-box .close {
        margin: -12px 0 0 0;
    }
}

@media only screen and (min-width: 768px) {

    .video-box .close {
        font-size: 30px;
        color: white;
        margin: 30px -43px -20px 100px;
    }
}

@media only screen and (min-width: 992px) {


    .video-box .modal-dialog {
        width: 884px;
    }

    .video-box iframe {
        height: 480px;
    }
}


.bg-styles {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* :where(.col-sm-12)  */
@media (min-width:500px) and (max-width:765px) {
    .section .film-project-featured {
        flex: 0 0 auto;
        width: 70%;
        margin: 6px auto;
    }


}

@media (min-width:0px) and (max-width:499px) {
    .section .film-project-featured {
        flex: 0 0 auto;
        width: 90%;
        margin: 6px auto;
    }

    .img-responsive {
        width: 200px;
    }

}

.carousel-control-next,
.carousel-control-prev {
    width: 7%;
}


@media (max-width:992px) {
    .carousel-item {
        height: 50vh;
    }
}


@media  (max-width:992px) {
    .social-content {
        position: absolute;
        left: 45px;
        top: 45%;
    }
    .layer-intro h1, .layer-intro h2 {
        color: var(--white-color);
        font-size: 2rem;
        font-weight: 700;
    }

    .layer-intro h3 {
        color: var(--white-color);
        font-size: 25px !important;
        font-weight: 700;
        letter-spacing: unset;
    }

    .carousel-control-next span {
        background-color: var(--white-color);
        color: #6cca98;
        width: 40px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }
    .carousel-control-prev span {
        background-color: var(--white-color);
        color: #6cca98;
        width: 40px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }
    .carousel-control-next, .carousel-control-prev{
        width: 5%;
    }

    .intro-content {
        display: flex;
        justify-content: center;
        align-items: end;
        color: #fff;
        height: 40vh;
    }


    .itemclick{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        width: 80svW;
        height: 80vh;
        z-index: 2;
    }

     .intro-image{
        height: 50vh;
    }

    .intro-content {
        display: flex;
        justify-content: end;
        align-items: center;
        color: #fff;
        height: 40vh;
        flex-direction: column;
    }
}