html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Lato', sans-serif;
    background-color: #000000e4;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: currentColor;
}

a:hover {
    text-decoration: none;
    color: currentColor;
}

.ofh {
    overflow: hidden;
}

.commun-heding h3 {
    font-family: 'Roboto Mono', monospace;
    color: #e3e3e4;
    font-size: 16px;
    margin-bottom: 15px;
}

.commun-overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 1024;
}

.commun-overlay.active{
    visibility: visible;
    opacity: 1;
}


/*--- Web loader ---*/
.web-loader {
    background-color: #f58220;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1027;
    /* display: none; */
}

.web-loader span.web-inner {
    width: 150px;
    height: 150px;
    line-height: 150px;
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #fff;
}

.web-loader span.web-inner::after,
.web-loader span.web-inner::before {
    opacity: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 5px solid #fff;
    -webkit-box-shadow: 0 0 50px #fff, inset 0 0 50px #fff;
    box-shadow: 0 0 50px #fff, inset 0 0 50px #fff;
}

.web-loader span.web-inner::before {
    z-index: 2;
    animation: gogoloader 2s infinite;
    -webkit-animation: gogoloader 2s infinite;
    -moz-animation: gogoloader 2s infinite;
    -o-animation: gogoloader 2s infinite;
}

.web-loader span.web-inner::after {
    z-index: 1;
    animation: gogoloader 2s infinite 1s;
    -webkit-animation: gogoloader 2s infinite 1s;
    -moz-animation: gogoloader 2s infinite 1s;
    -o-animation: gogoloader 2s infinite 1s;
}

@-webkit-keyframes gogoloader {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes gogoloader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.deactivate span.web-inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s 0.5s ease-in-out;
    -o-transition: all 0.3s 0.5s ease-in-out;
    transition: all 0.3s 0.5s ease-in-out;
}

.deactivate {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s 1s ease-in-out;
    -o-transition: all 0.3s 1s ease-in-out;
    transition: all 0.3s 1s ease-in-out;
}

/*--- main header ---*/

.main-header {
    padding: 10px 10px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1024;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;    
}

.main-header.scroll {
    background-color: white;
    -webkit-box-shadow: 0px 0px 0px 1px #d3d3d354, rgb(33 35 38 / 10%) 0px 10px 10px -10px;
    box-shadow: 0px 0px 0px 1px #d3d3d354, rgb(33 35 38 / 10%) 0px 10px 10px -10px;
}

/* .main-header .logo-bx {
    width: 120px;
    height: 100px;
    margin: auto;
    display: block;
    background-image: url("/img/logo/logo-wc.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-header.scroll .logo-bx {
    background-image: url('/img/logo/logo.svg');
    width: 100px;
    height: 80px;
} */

/* .main-header .logo-bx img {
    width: 100%;
    display: none;
} */

.main-header .menu-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -50px;
}

.main-header .menu-nav a.menu-link{
    padding: 5px;
    margin: 5px 10px;
    font-weight: 400;
    color: #adadad;
    font-size: 16px;
    position: relative;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    letter-spacing: 0.9px;
}

.main-header.scroll .menu-nav a.menu-link{
    color: #717171;
}

.main-header .menu-nav a.menu-link.active,
.main-header .menu-nav a.menu-link:hover{
    color: #ffa330;
}

.main-header.scroll .menu-nav a.menu-link.active,
.main-header.scroll .menu-nav a.menu-link:hover{
    color: #000;
}

.main-header .menu-nav a.menu-link::after{
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 1.5px;
    background-color: #ffa330;
    -webkit-transform-origin: bottom right;
        -ms-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.33s ease;
    transition: -webkit-transform 0.33s ease;
    -o-transition: transform 0.33s ease;
    transition: transform 0.33s ease;
    transition: transform 0.33s ease, -webkit-transform 0.33s ease;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
}

.main-header.scroll .menu-nav a.menu-link::after{
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 1.5px;
    background-color: #ffa330;
    -webkit-transform-origin: bottom right;
        -ms-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.33s ease;
    transition: -webkit-transform 0.33s ease;
    -o-transition: transform 0.33s ease;
    transition: transform 0.33s ease;
    transition: transform 0.33s ease, -webkit-transform 0.33s ease;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
}

.main-header .menu-nav a.menu-link.home-logo-link::after,
.main-header.scroll .menu-nav a.menu-link.home-logo-link::after{
    content: none;
}

.main-header .menu-nav a.menu-link.active::after,
.main-header.scroll .menu-nav a.menu-link.active::after,
.main-header .menu-nav a.menu-link:hover::after,
.main-header.scroll .menu-nav a.menu-link:hover::after{
    -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
}

.main-header .menu-nav a.menu-link .logo-bx{
    width: 50px;
}


/* logo fillp css */
.home-logo-link{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* justify-content: center; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px; */
}

.home-logo-link img{
    width: 90px;
    /* -webkit-filter: invert(1); */
    /* filter: invert(1); */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;  
    opacity: 0;
    visibility: hidden;
}

.main-header.scroll .home-logo-link img{
    /* -webkit-filter: invert(0); */
            /* filter: invert(0); */
    /* width: 70px; */
    /* left: -9px; */
    opacity: 1;
    visibility:visible;
}

.icon-r-bx {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80px;
    height: 80px;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility:visible;
}

.main-header.scroll .icon-r-bx {
    opacity: 0;
    visibility: hidden;
}


.icon-r-ani {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    perspective: 100px;
    -webkit-perspective: 100px;
    position: relative;
    -webkit-animation: filo-logo 8s infinite;
    animation: filo-logo 8s infinite;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon-r-ani .icons-f,
.icon-r-ani .icons-b {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-r-ani .icons-f {
    background-image: url('/img/logo/icon-wc.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon-r-ani .icons-b {
    background-image: url('/img/logo/icon-wc.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg);
    transform: rotatey(180deg);    
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-header.scroll .icon-r-ani .icons-f {
    background-image: url('/img/logo/icon-b.svg');
}

.main-header.scroll .icon-r-ani .icons-b {
    background-image: url('/img/logo/icon-b.svg');
}

@-webkit-keyframes filo-logo {

    0%,
    5% {
        -webkit-transform: rotatey(0deg);
        transform: rotatey(0deg);
    }

    45%,
    50% {
        -webkit-transform: rotatey(180deg);
        transform: rotatey(180deg);
    }

    100% {
        -webkit-transform: rotatey(360deg);
        transform: rotatey(360deg);
    }
}

@keyframes filo-logo {

    0%,
    5% {
        -webkit-transform: rotatey(0deg);
        transform: rotatey(0deg);
    }

    45%,
    50% {
        -webkit-transform: rotatey(180deg);
        transform: rotatey(180deg);
    }

    100% {
        -webkit-transform: rotatey(360deg);
        transform: rotatey(360deg);
    }
}





/*----- menu icon -----*/
.main-header .menu-icon-bx {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-header .menu-icon-bx svg {
    width: 50px;
    height: 50px;
    fill: #f58220;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite; */
}

.main-header.scroll .menu-icon-bx svg {
    fill: transparent;
    stroke: #000;
    stroke-width: 1px;
}

.main-header .menu-icon-bx:hover svg {
    fill: #f58220;
    stroke: transparent;
}

.menu-icon {
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;

}

.menu-icon span {
    width: 100%;
    height: 2px;
    background-color: #000;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: block;
    border-radius: 30px;
}

.menu-icon:hover span,
.menu-icon.active span {
    background-color: #000;
}

.menu-icon span:nth-child(1) {
    margin-left: auto;
}

.menu-icon span:nth-child(3) {
    margin-right: auto;
}

.menu-icon.active span:nth-child(1) {
    width: 50%;
    margin-left: auto;
}

.menu-icon.active span:nth-child(2) {
    width: 90%;
}

.menu-icon.active span:nth-child(3) {
    width: 50%;
    margin-right: auto;
}

.inquiry-btn{
    font-size: 16px;
    position: absolute;
    right: 90px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    display: block;
    border: 1px solid #fff;
    padding: 5px 17px 7px;
    border-radius: 50px;
    opacity: 0.8;
    transform: scale(1);
}

.inquiry-btn .fa{
    margin-right: 5px;
    position: relative;
    top:0.5px;
}

.main-header.scroll .inquiry-btn{
    color: #000;
    border-color:#000;
}

.main-header.scroll .inquiry-btn:hover,
.inquiry-btn:hover{
    color: #000;
    opacity: 1;
    border-color: #f58220;
    background-color: #f58220;
    transform: scale(1);
}

.main-header.scroll .inquiry-btn:active,
.inquiry-btn:active{
    transform: scale(0.93);
}



.voice-icon-bx {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1;
}

.voice-icon-bx>svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.voice-icon-bx.muted>svg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1px;

}

.voice-icon-bx:hover>svg {
    stroke: transparent;
    fill: #fff;
}

.voice-icon-bx .voice-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.voice-icon-bx .voice-icon svg {
    width: 30px;
    height: 30px;
    fill: #000;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.voice-icon-bx.muted .voice-icon svg {
    fill: #fff;
}

.voice-icon-bx:hover .voice-icon svg {
    fill: #000;
}

.voice-icon-bx .voice-icon svg:nth-child(1),
.voice-icon-bx.muted .voice-icon svg:nth-child(2) {
    display: none;
}

.voice-icon-bx.muted .voice-icon svg:nth-child(1),
.voice-icon-bx .voice-icon svg:nth-child(2) {
    display: block;
}


@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Home Slider css */

.slider-item {
    /* background: lightgray; */
    padding-top: 42%;
    position: relative;
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    border-radius: 20px;
    overflow: hidden;
}

.slider-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #0000002b;
}

.slider-item video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.slider-item img {
    position: absolute;
    left: 30px;
    bottom: 20px;
    width: 70px !important;
    z-index: 1;
}

.slider-item h3 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    /* text-align: center; */
    text-shadow: 0px 0px 13px rgb(0 0 0 / 45%);
    color: white;
    font-weight: 900;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 4rem;
    margin-top: 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s 1s linear;
    -o-transition: all 0.5s 1s linear;
    transition: all 0.5s 1s linear;
}

.owl-item.active .slider-item h3,
.owl-item.center .slider-item h3 {
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
}

/*--- owl button style css ---*/
.owl-style .owl-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0 5px;
}

.owl-style .owl-nav .owl-next,
.owl-style .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #ffffff !important;
}

.owl-style .owl-next svg,
.owl-style .owl-prev svg {
    width: 50px;
    height: 50px;
    position: relative;
    opacity: 0.5;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.owl-style .owl-next svg {
    right: 15px;
}

.owl-style .owl-prev svg {
    left: 15px;
}

.owl-style .owl-next:hover svg {
    opacity: 1;
    right: 5px;
}

.owl-style .owl-prev:hover svg {
    opacity: 1;
    left: 5px;
}

.owl-style-2 .owl-dots,
.owl-style .owl-dots {
    margin-bottom: 20px;
    margin-top: 20px;
}

.owl-style-2 .owl-dots .owl-dot span,
.owl-style .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    display: block;
    background-image: url(/img/dot-unselected.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0px 2px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-style-2 .owl-dots .owl-dot.active span,
.owl-style .owl-dots .owl-dot.active span {
    background-image: url(/img/dot-selected.svg);
    -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

.owl-style-2 .owl-dots,
.owl-style .owl-dots {
    text-align: center;
}


/*--- Home min about section css ---*/
.habout .habout-left h3 {
    font-size: 28px;
    line-height: normal;
    padding: 0 0 15px 0;
    font-weight: 800;
    text-transform: uppercase;
    color: #e3e3e4;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

.color-t1{
    color: #ffa330;
}

.habout .habout-left h3 span:nth-child(1) {
    color: #ffa330;
}

.habout .habout-left h3 span:nth-child(2) {
    color: #6a9591;
}

.habout .habout-left h3 span:nth-child(3) {
    color: #ef7e9a;
}

.habout .habout-left h3 span:nth-child(4) {
    color: #f58220;
}

.habout .habout-right h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
    color: #e3e3e4;
    margin-bottom: 20px;
}

.habout .habout-right p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #e3e3e4;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 20px;
}

/*--- Read More Link Css ---*/

.read-more-link {
    color: #f58220;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: 'Roboto Mono', monospace;
    display: block;
}

.read-more-link svg {
    color: #f58220;
    width: 40px;
    margin-left: 5px;
    position: relative;
    top: -1px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.read-more-link:hover {
    color: #f58220;
}

.read-more-link:hover svg {
    margin-left: 15px;
}



/*--- Media sections css ---*/

.media-item {
    position: relative;
}

.media-text {
    /* position: absolute; */
    left: 0;
    /* bottom: -55px; */
    text-transform: capitalize;
    z-index: 1;
    margin-left: 3px;
}

.media-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 145%;
    position: relative;
    margin-bottom: 5px;
    margin-left: auto;
    border-radius: 20px;
}

.media-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0..3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.media-img:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.media-text h6 {
    font-weight: 400;
    font-size: 16px;
    color: #f58220;
    margin-bottom: 0px;
    margin-top: 15px;
    font-family: 'Roboto Mono', monospace;
}

.media-text p{
    font-weight: 400;
    font-size: 13px;
    color: #e3e3e4;
    margin-bottom: 10px;
    margin-top: 7px;
    line-height: 22px;
    font-family: 'Roboto Mono', monospace;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/*  */

.fwvideo-bx {
    display: block;
    padding-bottom: calc(64% - 13px);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 3px 3px 25px 0px rgb(0 0 0 / 45%);
    box-shadow: 3px 3px 25px 0px rgb(0 0 0 / 45%);
    margin: 0 0 26px 0;
}

.fwvideo-bx::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000073;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fwvideo-bx:hover::after{
    background-color: #00000000;
}

.fwvideo-bx.vartikal-bx {
    padding-bottom: calc(64% - 13px);
}

.fwvideo-bx img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fwvideo-bx iframe,
.fwvideo-bx video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: none;
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
}

.fwvideo-bx h3 {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #e3e3e4;
    letter-spacing: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: none !important;
    z-index: 1;
}

.fwvideo-bx svg {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
    fill: #f58220;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.founder-modal,
.videopopup {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.videopopup .modal-content {
    background-color: transparent;
    border-radius: 0px;
    border: none;
}

.popupvideo-container {
    width: 100%;
    padding-top: 56%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.popupvideo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}


.dismiss {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: 20px;
    top: 25px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 1;
}

.dismiss:hover {
    /* -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); */
    border-radius: 50%;
}

.dismiss svg {
    width: 50px;
    height: 50px;
    fill: #f58220;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.dismiss:hover svg {

    fill: #e3e3e4;
}

.dismiss .closes {
    position: absolute;
    width: 50%;
    height: 2px;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.dismiss.closes-bgcw .closes {
    background-color: white;
}

.dismiss.closes-bgcb .closes {
    background-color: rgb(0, 0, 0);
}

/* .dismiss:hover .closes {
    background-color: rgb(223, 7, 7);
  } */

.dismiss .closes:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dismiss .closes:nth-child(2) {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}



/*--- clients logo section ---*/
.client-bx {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 5px;
    /* text-align: center; */
}

.client-bx::-webkit-scrollbar {
    display: none;
}

.client-bx{
    /* width: 110px; */
    /* height: 110px; */
    border-radius: 50%;
    margin: 0 10px;
    overflow: hidden;
    display: inline-block;
    /* border: 1px solid rgb(238, 238, 238); */
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 3px;
    cursor: pointer;
    background-color: white;
}

.client-bx:hover {
    -webkit-box-shadow: 0 0 5px #00000029;
    box-shadow: 0 0 5px #00000029;
}

.client-bx img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-filter: grayscale(0.2);
    filter: grayscale(0.2);
    opacity: 0.9;
}

.client-bx:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
}

/* footer css */

.main-footer {
    background-color: #f58220;
}

.fbhrtdfhnry:hover {
    text-decoration: underline;
    color: #000;
}

.social-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: -10px;
}

.social-icon a {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border-radius: 50%;
    color: #212529;
    opacity: 0.8;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.social-icon a .fa{
    position: relative;
    z-index: 2;
}

.social-icon a::after{
    content: "";
    position: absolute;
    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.social-icon a:hover {
    opacity: 1;
    -webkit-box-shadow: 0px 0px 5px #00000033;
            box-shadow: 0px 0px 5px #00000033;
}

.social-icon a:hover::after {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.copyright {
    color: #212529;
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
}

.mede-with {
    color: #212529;
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
}

.mede-with a {
    color: #212529;
}

.mede-with a:hover {
    color: #000;
    text-decoration: underline;
}

.icons-box-made {
    width: 13px;
    height: 13px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 2px;
}

.icons-box-made .fa-heart,
.icons-box-made .fa-heart-o {
    position: absolute;
}

.mede-with .fa-heart-o {
    color: #212529;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

.mede-with .fa-heart {
    color: #212529;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mede-with:hover .fa-heart-o {
    opacity: 0;
}

.mede-with:hover .fa-heart {
    opacity: 1;
    color: red;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* main menu css */
.main-menu {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 74%);
    width: 100%;
    height: 100%;
    z-index: 1026;
    opacity: 0 !important;
    visibility: hidden !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.main-menu .res-logo {
    position: absolute;
    left: 25px;
    top: 20px;
    width: 100px;
}

.main-menu .menu-links {
    width: 50%;
    height: 100vh;
    height: calc(100vh - 120px);
    margin-top: 120px;
    padding-left: 10%;
    padding-top: 5%;
    list-style: none;
}

.main-menu .menu-links li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.main-menu .menu-links li a {
    color: #e3e3e4;
    display: block;
    /* width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; */
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 300;
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
    font-family: 'Roboto Mono', monospace;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-menu .menu-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    display: block;
    background-image: url(/img/dot-selected.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0px 2px;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    display: none;
}

.main-menu .menu-links li:hover a {
    color: #ffa330;
}

.main-menu .menu-links li.active a {
    color: #ffa330;
}

.main-menu .menu-links li:hover a::after {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.main-menu .menu-links li.active a::after {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

.main-menu .menu-right {
    padding-right: 10%;
}

.main-menu .menu-right h3 {
    color: #ffa330;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 20px;
}

.main-menu .menu-right>a {
    color: #e3e3e4;
    font-size: 16px;
    display: block;
    font-weight: 300;
    margin: 10px 0 15px;
    letter-spacing: 1px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-menu .menu-right>a:hover {
    color: #ffa330;
}

.main-menu .menu-right>a .fa {
    font-size: 14px;
    margin-right: 8px;
}

.main-menu .menu-right .social-icon a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    color: #e3e3e4;
    font-size: 16px;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-menu .menu-right .social-icon a:hover:nth-child(1),
.social-icon a:hover:nth-child(1){
    color: #3b5998;
}

.main-menu .menu-right .social-icon a:hover:nth-child(2),
.social-icon a:hover:nth-child(2){
    color: #0077b5;
}

.main-menu .menu-right .social-icon a:hover:nth-child(3),
.social-icon a:hover:nth-child(3){
    color: #8a3ab9;
}

.main-menu .menu-right .social-icon a:hover:nth-child(4),
.social-icon a:hover:nth-child(4){
    color: #00aced;
}

.main-menu .menu-right .social-icon a:hover:nth-child(5),
.social-icon a:hover:nth-child(5){
    color: red;
}

.main-menu .menu-right .social-icon a:hover {
    opacity: 1;
}

/* about page css */

h3.page-heading {
    font-family: 'Roboto Mono', monospace;
    color: #f58220;
    font-size: 24px;
    text-align: center;
    margin: auto;
    margin-bottom: 15px;
    display: block;
    max-width: 1250px;
}

p.page-peragraf{
    font-family: 'Roboto Mono', monospace;
    color: #e3e3e4;
    font-size:14px;
    display: block;
    max-width: 1250px;
    margin: auto;
    text-align: center;
}

.founder-messages {
    padding: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.founder-messages .fm-img {
    width: 150px;
    height: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 25px 0px rgb(0 0 0 / 45%);
    box-shadow: 3px 3px 25px 0px rgb(0 0 0 / 45%);
    margin-right: 15px;
}

.founder-messages .fm-img img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.founder-messages:hover .fm-img img {
    filter: grayscale(0);
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.founder-messages .fm-text h3 {
    font-size: 16px;
    color: #f58220;
    margin-bottom: 10px;
}

.founder-messages .fm-text h4 {
    font-size: 20px;
    color: #e3e3e4;
    margin-bottom: 10px;
    font-family: 'Roboto Mono', monospace;
}

.founder-messages .fm-text p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #e3e3e4;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 20px;
    letter-spacing: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 15px;
}


/* founder-popup */
.founder-popup h3 {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.founder-popup span{
    font-size: 16px;
    font-weight: 500;
    color: #f58220;
    text-transform: capitalize;
    margin-bottom: 5px;
    display: block;
}

.founder-popup img {
    width: 150px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 0px 1px #e9e9e954, rgb(0 0 0) 0px 10px 10px -10px;
            box-shadow: 0px 0px 0px 1px #e9e9e954, rgb(0 0 0) 0px 10px 10px -10px;
    float: left;
    margin-right: 16px;
}

.founder-popup p {
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.founder-popup a {
    color: #747474;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid #777777;
    padding: 4px 12px;
    display: inline-block;
    border-radius: 50px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.founder-popup a:hover {
    color: black;
    background-color: #ffa330;
    border-color: #ffa330;
}


/* testimonials-item */

.testimonials-item {
    padding: 20px 0 20px;
    position: relative;
}

.testimonials-item p {
    font-size: 20px;
    color: #e3e3e4;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: auto;
    display: block;
    font-family: 'Roboto Mono', monospace;
}

.testimonials-item img {
    width: 40px !important;
}

.testimonials-item img:nth-of-type(1) {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.testimonials-item img:nth-of-type(2) {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


/* team-item slider */
.team-item{
    cursor: pointer;
    padding-top: 20px;
}

.team-item img{
    width: 85% !important;
    border-radius: 50%;
    margin: auto;
    -webkit-box-shadow: 0 10px 10px #0000001a;
            box-shadow: 0 10px 10px #0000001a;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item:hover img{
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.team-item h5{
    font-size: 14px;
    color: #e3e3e4;
    margin-bottom: 5px;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
    margin-top: 15px;
    font-weight: 300;
    line-height: normal;
}

.team-item p{
    font-size: 11px;
    color: #a9a9a9;
    line-height: normal;
    margin-bottom: 5px;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
    margin-top: 7px;
    font-weight: 300;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item:hover p{
    color: #f58220;
    margin-top: 7px;
}


/* contact us page css */

.contact-detail{
    text-align: center;
    margin-bottom: 40px;
    display: block;
}

.contact-detail img{
    margin: 0 auto 15px;
    display: block;
    width: 40px;
}

.contact-detail p{
    color: #e3e3e4;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Roboto Mono', monospace;
}

.contact-detail p{
    color: #e3e3e4;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Roboto Mono', monospace;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-detail:hover p{
    color: #f58220;
}



/*------ contact-section ------*/
.custom-form {
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
            box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: 5px;
    position: relative;
}

.custom-form__group textarea,
.custom-form__group input {
    font-weight: 400;
    display: block;
    background-color: transparent;
    color: #000;
    border: 0;
    background-color: rgb(255 255 255);
    border: 1px solid rgb(219 219 219);
    padding: 0px 10px 0px 10px;
    height: 50px;
    font-size: 18px;
    width: 100%;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    /* font-family: 'Roboto Mono', monospace; */
    letter-spacing: 0px;
    box-shadow: 0 0 0 30px rgb(255, 255, 255) inset !important;
    -webkit-box-shadow: 0 0 0 30px rgb(255, 255, 255) inset !important;
}

.custom-form__group textarea{
    padding:6px 10px 6px 10px;
    height: auto;
}

.custom-form__group textarea,
.custom-form__group input:focus {
    outline: none;
}

.custom-form__group {
    position: relative;
    margin: 16px 0 25px;
}

.custom-form__group .group__label {
    position: absolute;
    left: 16px;
    top: -6.5px;
    font-size: 14px;
    color: white;
    font-weight: 400;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1) translateY(-18px);
        -ms-transform: scale(1) translateY(-18px);
            transform: scale(1) translateY(-18px);
    font-family: 'Roboto Mono', monospace;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px rgb(255, 255, 255) inset !important;
    -webkit-box-shadow: 0 0 0 30px rgb(255, 255, 255) inset !important;
}

.btn-form{
    background-color: transparent;
    border: 1px solid white;
    padding: 7px 25px 9px;
    color: #ffffff;
    opacity: 0.8;
    margin: auto;
    display: block;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-form:hover{
    background-color: #f58220;
    border-color: transparent;
    opacity: 1;
    color: black;
}

/* portfolip page css */

.m-filters{
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    margin: auto;
    white-space: nowrap;
    padding: 0px 15px;
}

a.m-filter{
    position: relative;
    color: #b1b1b1;
    font-weight: 300;
    margin: 0px 5px 10px;
    display: inline-block;
    padding: 0 5px 3px;
    white-space: nowrap;
    font-family: 'Roboto Mono', monospace;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

a.m-filter::after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background-color: currentColor;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

a.m-filter:hover{
    color: white;
}

a.m-filter.active{
    color: #f58220;
}

a.m-filter.active::after,
a.m-filter:hover::after{
    width: 100%;
}

.m-items .m-item{
    width: 25%;
    padding: 10px;
}

.m-items .m-item .fwvideo-bx{
    margin: 0;
}

/*--- services ---*/
.commun-shadow{
    background: -o-linear-gradient(bottom, rgb(0 0 0 / 90%) 5%, rgb(0 0 0 / 55%) 100%);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(5%, rgb(0 0 0 / 90%)), to(rgb(0 0 0 / 55%)));
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 5%, rgb(0 0 0 / 55%) 100%);
}

.services-item{
    border-bottom: 2px solid #f58220;
    padding: 50px 15px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.services-item{
    border-bottom: 2px solid #f58220;
    padding: 50px 15px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.services-item.bb-n{
    border-bottom: 2px solid transparent;
}

.services-item .si-left{
    width: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
}

.services-item .si-left img{
    width: 50px;
    -webkit-filter: invert(1);
            filter: invert(1);
    margin-bottom: 8px;
    padding: 3px;
}

.services-item .si-left p{
    color: #f58220;
    width: 50px;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 14px;
}

.services-item .si-right h6{
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.services-item .si-right p{
    color: #b3b3b3;
    font-size: 14px;
    margin-bottom: 0;
    letter-spacing: 0px;
    font-family: 'Roboto Mono', monospace;
    line-height: 24px;
}

/* Clients page css */

.cp-icon-bx{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.cp-logo{
    display: inline-block;
    width: 14.2%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2%;
            flex: 0 0 14.2%;
    height: 110px;
    padding: 5px;
    cursor: pointer;
}

.cp-logo .cp-inner{
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 25px 0px rgb(0 0 0 / 45%);
    box-shadow: 3px 3px 25px 0px rgb(0 0 0 / 45%);
}

.cp-logo .cp-inner img{
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: contain;
       object-fit: contain;
}

/*--- Detail Page Css ---*/

.detail-header{
    width: 100%;
    /* height: 540px; */
    background-color: #fcfcfc;
    /* background-image: url("/img/banner/tiffun.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; */
    position: relative;
    overflow: hidden;
    padding-top: 35%;
}

.detail-header .detail-video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
        object-fit: cover;
    -o-object-position: center;
        object-position: center;
}

.detail-header > .cursor-bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.detail-header > .cursor-bg img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
            transform: scale(1.15);
}

.detail-header::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: #00000095; */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #000000b3), to(#00000069));
    background-image: -o-linear-gradient(bottom, #000000b3 20%, #00000069);
    background-image: linear-gradient(0deg, #000000b3 20%, #00000069);
    z-index: 2;
}

.detail-header .container-lg{
    position: absolute;
    z-index: 3;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.detail-header .dh-main-bx{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 40px 0;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.detail-header .dh-main-bx .dh-left{
    height: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 21px 0px #000000a3;
            box-shadow: 0 0 21px 0px #000000a3;
    margin-right: 30px;
}

.res-detail > div .hs-tag,
.detail-header .dh-main-bx .dh-right .hs-tag {
    font-size: 16px;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
}

.res-detail > div .hs-tag{
    color: #fd4f00;
    text-align: center;
}

.res-detail > div .hs-name,
.detail-header .dh-main-bx .dh-right .hs-name {
    font-size: 51px;
    font-weight: 700;
    color: white;
}

.res-detail > div .hs-name{
    color: black;
    text-align: center;
    font-size: 32px;
}

.res-detail > div .hs-dec,
.detail-header .dh-main-bx .dh-right .hs-des {
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-top: 15px;
    width: 100%;
    max-width: 768px;
    line-height: 28px;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.detail-header .dh-main-bx .dh-right .hs-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 15px;
}

.detail-header .dh-main-bx .dh-right .hs-link .hs-play-btn {
    width: 50px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fd4f00;
    font-size: 20px;
    background-color: white;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.detail-header .dh-main-bx .dh-right .hs-link:hover .hs-play-btn {
    color: white;
    background-color: #fd4f00;
}

.detail-header .dh-main-bx .dh-right .hs-link .hs-play-btn::before,
.detail-header .dh-main-bx .dh-right .hs-link .hs-play-btn::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.644);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    opacity: .6;
    z-index: -1;
}

.detail-header .dh-main-bx .dh-right .hs-link .hs-play-btn::after {
    -webkit-animation: button-ripple 4s infinite;
    animation: button-ripple 4s infinite;
}

.detail-header .dh-main-bx .dh-right .hs-link .hs-play-btn::before {
    -webkit-animation: button-ripple 3s infinite;
    animation: button-ripple 3s infinite;
}

@-webkit-keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px currentColor;
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0
    }
}

@keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px currentColor;
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0
    }
}

.detail-header .dh-main-bx .dh-right .hs-link .hs-play-btn .fa {
    position: relative;
    left: 2px;
}

.detail-header .dh-main-bx .dh-right .hs-link .hs-vt {
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.detail-header .dh-main-bx .dh-right .hs-link:hover .hs-vt {
    color: #fd4f00;
}

.detail-inner {
    width: 100%;
    min-height: 450px;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.detail-inner .di-width{
    max-width: 1200px;
    width: 100%;
    display: block;
    margin: auto;
    border-bottom: 1px solid rgb(229, 229, 229);
}

.sborder-none{
    border: none !important;
}

.detail-inner .di-width .di-hed{
    font-family: 'Roboto Mono', monospace;
    color: black;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.detail-inner .di-width .hs-des{
    color: #333333;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin-bottom: 30px;
}

#crewslider .team-item h5,
#castslider .team-item h5{
    color: #000;
    font-weight: 400;
}

#crewslider .team-item p,
#castslider .team-item p{
    color: #838383;
    font-weight: 400;
}



.owl-style-2 .owl-prev,
.owl-style-2 .owl-next {
    width: 35px !important;
    height: 35px !important;
    background-color: rgba(126, 126, 126, 0.7) !important;
    border-radius: 50% !important;
    font-size: 28px !important;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: white !important;
}

.owl-style-2 .owl-nav {
  margin: 0 !important;
}

.owl-style-2 .owl-nav .owl-prev {
  position: absolute;
  left: -15px;
  top: 48%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.owl-style-2 .owl-nav .owl-next {
  position: absolute;
  right: -15px;
  top: 48%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.owl-style-2.g-style-2 .owl-nav .owl-prev,
.owl-style-2.g-style-2 .owl-nav .owl-next {
  top: 55%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.owl-style-2 .owl-next svg {
  width: 20px;
  height: 22px;
  position: relative;
  right: -1px;
}


.owl-style-2 .owl-prev svg {
  width: 20px;
  height: 20px;
  position: relative;
  left: -1px;
}

.owl-style-2 .owl-prev:hover,
.owl-style-2 .owl-next:hover {
  background-color: #ffa330 !important;
  border-color: transparent !important;
  color: white !important;
  opacity: 1;
}


/* gallery item */


.gallery-items {
	width:100%;
	position:relative;
}

.gallery-item{
	width: 20%;
	position:relative;
	float:left;
    padding: 5px 5px 10px 5px;
}

.gallery-item a{
    overflow: hidden;
    border-radius: 5px;
    display: block;
    position: relative;
    padding-top: 60%;
    background: lightgrey;
}

.gallery-item a .gallery-over {
    padding: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -o-radial-gradient(#00000042, #000000bd);
    background-image: radial-gradient(#00000042, #000000bd);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.gallery-item a .gallery-over .fa{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #ffa330;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
}

.gallery-item a:hover .gallery-over {
    opacity: 1;
    visibility: visible;
}

.gallery-item img{
	width: 100%;
	height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
	position:absolute;
    left: 0;
    top: 0;
	z-index:1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-item a:hover img{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.go-top {
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    line-height: 31px;
    font-size: 24px;
    color: #ffa330;
    background-color: white;
    box-shadow: 0 0 10px #00000059;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    visibility:hidden;
    transition: all 0.9s;
    z-index: 10;
 }
 
 .go-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
    right: 25px;
 }

 .go-top:hover{
    color: black;
    background-color: #ffa330;
 }

 

/* ---
Breadcrumb-bx css
----*/

.breadcrumb-bx{
    /* background-color: #e9ecef; */
    padding: 10px 0;
}

.breadcrumb-bx div > a{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #bababa;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.breadcrumb-bx div > a .fa{
    margin-left: 5px;
    /* margin-right: 5px; */
    color: #ffa330;
}

.breadcrumb-bx div > a:hover{
    color: #ffa330;
    text-decoration: underline;
}

.breadcrumb-bx div > a.active:hover,
.breadcrumb-bx div > a.active{
    color: gray;
    font-weight: 400;
    text-decoration: none;
}



/* ---
Blog Css
--- */

.blog-item-bx {
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -o-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    margin-bottom: 40px;
    /* background-color: white; */
}

.blog-item-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 56%;
    position: relative;
    border-radius: 5px;
}

.blog-item-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: top center;
    object-position: top center;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-item-bx:hover .blog-item-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item-txt {
    padding: 10px;
}

.blog-item-txt span.bit-cat {
    font-weight: 400;
    font-size: 11px;
    color: #e3e3e4;
    margin-bottom: 10px;
    margin-top: 7px;
    line-height: 22px;
    font-family: 'Roboto Mono', monospace;
}

.blog-item-txt h3 {
    font-weight: 400;
    font-size: 15px;
    color: #f58220;
    margin-bottom: 0px;
    margin-top: 5px;
    font-family: 'Roboto Mono', monospace;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
}

.blog-item-txt p {
    font-weight: 400;
    font-size: 12px;
    color: #e3e3e4;
    margin-bottom: 13px;
    margin-top: 7px;
    line-height: 22px;
    font-family: 'Roboto Mono', monospace;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* --- upcoming-films --- */
.upcoming-films{
    height: 350px;
    overflow: hidden;
    position: relative;
}

.images-slider-bx{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.images-slider-bx img{
    width: 320px;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.upcoming-text-bx{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.432), black);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upcoming-text-bx .utb-img{
    width: 100px;
}

.upcoming-text-bx .utb-lable{
    color: white;
    font-weight: 500;
    font-size: 16px;
}

.upcoming-text-bx .utb-text{
    color: white;
    font-weight: 600;
    font-size: 36px;
    margin: 20px 0;
    text-align: center;
}