@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ====================================================
    # Varible CSS
============================================== */

:root {
    --red-color: #C52324;
    --yellow-color: #FFBB03;
    --green-color: #14FF03;
    --blue-color: #036DFF;
    --white-color: #ffffff;
    --black-color: #000000;
    --font-color: rgb(131, 131, 131);
    --section-color: #f1f1f1;
    --primary-font: "Open Sans", sans-serif;
    --secondary-font: 'Lora', serif;
    --tertiary-font: 'Orbitron', sans-serif;
    --footer-color: #191919;
    --box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    --handwriting: 'Courgette', cursive;
    --form-font: "Montserrat", sans-serif;
}

.section-padding {
    padding: 60px 0;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-8 {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ====================================================
      # Normalize CSS
  ============================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.825em;
    font-family: var(--primary-font);
    color: var(--black-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    margin-bottom: 0;
}


p {
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

button:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

/* 
:hover {
    transition: 0.8s ease-in-out;
} */

.form-control:focus {
    box-shadow: none;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 99;
    border: 1px solid var(--yellow-color);
    color: #fff;
    background: var(--yellow-color);
    padding: 10px 12px;
}

#myBtn:hover {
    background: var(--white-color);
    color: #021741;
    border: 1px solid var(--black-color);
}


/*HEADER*/

#background .container-custom {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.header-wrapper.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    background: var(--white-color);
    box-shadow: 0 0 4px;
}

.logos {
    padding: 10px 0;
}

.logos.whitebg {
    background: var(--black-color);
    opacity: 0.9;
}

.header .header-logo {
    position: absolute;
    z-index: 3;
}

.left-logo a h2 {
    font-family: var(--tertiary-font);
    letter-spacing: 3px;
}

.header .header-logo .left-logo,
.header .header-logo .right-logo {
    padding: 0 20px;
}

.header .header-logo .right-logo .btn {
    display: none;
}

.header .header-logo img {
    width: 150px;
}

.bg-light {
    background: transparent !important;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--white-color);
    border-bottom: 2px solid var(--red-color);
    font-size: 14px;
}

.navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--white-color);
    font-size: 14px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--white-color);
    border-bottom: 2px solid transparent;
    font-size: 14px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: var(--white-color);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--white-color);
    border-bottom: 2px solid var(--yellow-color);
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -55px !important;
    background: var(--white-color);
}

.dropdown-item {
    color: var(--red-color);
}

.dropdown-item:hover {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--red-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/*HEADER ENDS*/


/*CAROUSEL*/

.owl-carousel.top-owl .item img,
.owl-carousel.next-owl .item img {
    height: 100vh;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translate(-50%, -50%);
}

.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(-50%, -50%);
}

.owl-nav button.owl-prev span,
.owl-nav button.owl-next span {
    color: var(--white-color);
    font-size: 50px;
    display: none;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    text-decoration: none;
}

.owl-nav button.owl-prev span:focus,
.owl-nav button.owl-next span:focus {
    outline: none;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-carousel.top-owl .owl-dots .owl-dot.active span {
    width: 10px;
    background-color: var(--red-color);
}

.owl-carousel.top-owl .item,
.owl-carousel.next-owl .item,
.owl-carousel.top-owl .item #background-video {
    position: relative;
}

.top-owl .item .caption,
.next-owl .item .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    z-index: 5;
    /* width: 100%; */
}

.top-owl .item .caption h2,
.next-owl .item .caption h2 {
    font-weight: 700;
    font-size: 50px;
    font-family: var(--primary-font)
}

.top-owl .item .caption h6,
.next-owl .item .caption h6 {
    padding: 10px 0;
    line-height: 30px;
    font-family: var(--primary-font);
}

.top-owl .item .caption a,
.next-owl .item .caption a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--yellow-color);
    color: var(--white-color);
    border: 1px solid var(--yellow-color);
}

.top-owl .item .caption a:hover,
.next-owl .item .caption a:hover {
    background: var(--white-color);
    color: var(--yellow-color);
    border: 1px solid var(--yellow-color);
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-carousel.next-owl .item .bread {
    position: relative;
}

.owl-carousel.next-owl .item .bread .breadcrumb-section {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    z-index: 7;
    text-align: center;
}

.caption a.slider-portfolio {
    padding: 0px 21px !important;
}

.breadcrumb-section h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-section span {
    font-weight: 600;
}

.breadcrumb-section span a {
    color: var(--white-color);
}

.breadcrumb-section span a:hover {
    color: var(--yellow-color);
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 50px;
    height: 4px;
    background: var(--white-color);
    display: block;
    transition: opacity .2s ease;
    /* border-radius: 30px; */
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white-color);
}


/*CAROUSEL ENDS*/


/*WHY CHOOSE US*/

.why-us {
    padding: 3rem 0;
}

.why-us-left h2 {
    font-size: 40px;
    color: var(--black-color);
    font-weight: 700;
    position: relative;
    font-family: var(--primary-font);
}

.why-us-left p {
    color: var(--font-color);
    padding: 15px 0;
}

.why-us-left ul li {
    color: var(--black-color);
    position: relative;
    padding-left: 20px;
    line-height: 35px;
    font-family: var(--secondary-font);
    font-style: italic;
}

.why-us-left ul li::before {
    position: absolute;
    content: "\f00c";
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    font-family: "FontAwesome";
    color: var(--yellow-color);
}

.why-us-right img {
    object-fit: cover;
    height: 500px;
    width: 100%;
    border-radius: 10px;
}


/*WHY CHOOSE US ENDS*/


/*OUR VALUES*/

.our-values-section {
    background-color: var(--section-color);
    padding: 3rem 0;
}

.mt-separator-outer {
    overflow: hidden;
}

.mt-separator-outer.separator-left {
    text-align: left;
}

.mt-separator {
    position: relative;
    display: inline-block;
    margin-top: 0px;
    font-size: 18px;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

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

.section-head p:last-child {
    margin-bottom: 0;
}

.author-info {
    display: table;
    width: 100%;
}

.p-t20 {
    padding-top: 20px;
}

.overlay-wraper {
    position: relative;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.video-section-full {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    bottom: -120px;
    margin-top: -100px;
    margin-bottom: 100px;
}

.p-a20 {
    padding: 20px;
}

.m-b30 {
    margin-bottom: 30px;
}

.text-white {
    color: var(--white-color);
}

.bg-dark {
    background-color: var(--black-color);
}

.mt-icon-box-wraper {
    position: relative;
}

.text-white {
    color: var(--white-color);
}

.mt-icon-box-wraper.center {
    text-align: center;
}

.bg-primary {
    background-color: var(--yellow-color);
}

.text-yellow {
    color: var(--yellow-color);
}

.text-blue {
    color: var(--blue-color);
}

.m-b15 {
    margin-bottom: 15px;
}

.font-weight-800 {
    font-weight: 800;
}

.font-30 {
    font-size: 30px;
    line-height: 36px;
}


/* TOOLTIP STARTS */

.progress-line {
    line-height: 52px;
}

.progress-line .progress-title {
    color: var(--black-color);
}

.progress {
    overflow: hidden;
    height: 15px;
    background-color: #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
}

.progress-bar {
    width: 0;
    height: 100%;
    color: #fff;
    text-align: center;
    background-color: var(--yellow-color);
}

.progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
    -moz-animation: progress-bar-stripes 2s linear infinite;
}


/*OUR VALUES ENDS*/


/*TESTIMONIAL*/

.testimonials-section {
    padding: 60px 0;
}

h2.testimonial-heading {
    color: var(--black-color);
    font-weight: 700;
    font-size: 40px;
    position: relative;
    margin-top: 60px;
    display: inline-block;
    text-align: center;
}

.testimonials-section {
    text-align: center;
}


/* h2.testimonial-heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: var(--yellow-color);
    left: 30%;
    top: 50%;
    position: absolute;
} */

.left-testimonial-image img {
    padding: 2rem 0;
}

.testimonials {
    background: #fff;
    text-align: center;
    width: 95%;
    max-width: 600px;
    padding: 2rem;
    margin: 1.5rem auto;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.title {
    font-size: 1.5rem;
    color: var(--black-color);
}

.description {
    font-size: 0.95rem;
    color: var(--font-color);
}

.slider-container {
    margin-top: 2rem;
    margin: 2rem auto 0 auto;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    flex: 0 0 1;
    width: 300%;
    transition: all 0.5s linear;
}

.slide-box {
    padding: 0 80px;
}

.slide-box .comment {
    background-color: #000;
    color: #fff;
    font-size: 0.86rem;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    font-weight: 400;
}

.slide-box .comment::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    height: 20px;
    width: 20px;
    background-color: #000;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.slide-box img {
    max-width: 60px;
    border-radius: 50%;
}

.slide-box .name {
    font-size: 1rem;
    color: var(--black-color);
}

.slide-box .job {
    font-size: 0.7rem;
    color: #8d8e97;
    font-weight: 400;
}

.control-slider {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    background-color: #fff;
    line-height: 40px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.btn-left {
    left: 10px;
}

.btn-right {
    right: 10px;
}

.overall-info {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 20%, rgb(0, 0, 0, 0.4) 30%), url("../images/camera2.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    border-bottom: 1px solid white;
}

.overall-info h4 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    font-weight: 400;
    padding: 3rem 0 2rem 0;
}

.overall-info h4 span {
    font-weight: bold;
}

.overall-info p {
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.overall-info a:hover {
    text-decoration: none;
    color: var(--white-color);
}

.glow-on-hover {
    padding: 10px 20px;
    border: none;
    outline: none;
    color: #fff;
    background: white !important;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 5px;
    margin: 2rem 0 3rem 0;
    left: 42%;
    top: 10%;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    border: 1px solid var(--white-color);
    left: 0;
    top: 0;
    border-radius: 5px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@media screen and (max-width: 500px) {
    .slide-box {
        padding: 0 55px;
    }
}


/*TESTIMONIAL UP DOWN ANIMATION*/

.up-down {
    animation: up-down linear 4s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: up-down linear 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: up-down linear 4s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: up-down linear 4s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: up-down linear 4s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes up-down {
    0% {
        transform: translate(1px, 20px);
    }

    24% {
        transform: translate(1px, 30px);
    }

    50% {
        transform: translate(1px, 12px);
    }

    74% {
        transform: translate(1px, 22px);
    }

    100% {
        transform: translate(1px, 22px);
    }
}

@-moz-keyframes up-down {
    0% {
        -moz-transform: translate(1px, 20px);
    }

    24% {
        -moz-transform: translate(1px, 30px);
    }

    50% {
        -moz-transform: translate(1px, 12px);
    }

    74% {
        -moz-transform: translate(1px, 22px);
    }

    100% {
        -moz-transform: translate(1px, 22px);
    }
}

@-webkit-keyframes up-down {
    0% {
        -webkit-transform: translate(1px, 20px);
    }

    24% {
        -webkit-transform: translate(1px, 30px);
    }

    50% {
        -webkit-transform: translate(1px, 12px);
    }

    74% {
        -webkit-transform: translate(1px, 22px);
    }

    100% {
        -webkit-transform: translate(1px, 22px);
    }
}

@-o-keyframes up-down {
    0% {
        -o-transform: translate(1px, 20px);
    }

    24% {
        -o-transform: translate(1px, 30px);
    }

    50% {
        -o-transform: translate(1px, 12px);
    }

    74% {
        -o-transform: translate(1px, 22px);
    }

    100% {
        -o-transform: translate(1px, 22px);
    }
}

@-ms-keyframes up-down {
    0% {
        -ms-transform: translate(1px, 20px);
    }

    24% {
        -ms-transform: translate(1px, 30px);
    }

    50% {
        -ms-transform: translate(1px, 12px);
    }

    74% {
        -ms-transform: translate(1px, 22px);
    }

    100% {
        -ms-transform: translate(1px, 22px);
    }
}


/*TESTIMONIAL UP DOWN ANIMATION ENDS*/


/*TESTIMONIAL ENDS*/


/*COUNTER SECTION*/


/*COUNTER SECTION ENDS*/


/*FOOTER*/

footer {
    padding: 3rem 0;
    background: var(--footer-color);
    color: var(--white-color);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/*FOOTER FIRST STARTS*/

.footer-col.footer-first .footer-logo a img {
    width: 75%;
}

.footer-col.footer-first p {
    font-size: 14px;
    color: var(--white-color);
    text-align: left;
    padding-bottom: 15px;
}

.footer-col.footer-first ul li {
    margin-right: 20px;
    font-size: 16px;
}

.footer-col.footer-first ul li:last-child {
    margin-right: 0;
}

.footer-col.footer-first ul li a {
    color: var(--white-color);
}

.footer-col.footer-first ul li a i {
    font-size: 20px;
}

.footer-col.footer-first ul li a:hover {
    color: var(--yellow-color);
    transition: 0.2s ease-in-out;
}


/*FOOTER FIRST ENDS*/


/*FOOTER SECOND*/

.footer-col.links-footer {
    padding-top: 25px;
}

.footer-col.links-footer h5 {
    font-weight: 700;
    position: relative;
}

.footer-col.links-footer h5::after {
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--yellow-color);
    width: 20%;
    top: 50px;
    left: 0;
}

.footer-col.links-footer ul {
    padding-top: 50px;
}

.footer-col.links-footer ul li {
    line-height: 35px;
}

.footer-col.links-footer ul li a {
    color: var(--white-color);
    font-weight: 400;
    position: relative;
    padding-left: 10px;
}

.footer-col.links-footer ul li a::before {
    position: absolute;
    content: "-";
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    font-family: "FontAwesome";
    color: var(--white-color);
}

.footer-col.links-footer ul li a:hover::before,
.footer-col.links-footer ul li a:hover {
    color: var(--yellow-color);
    transition: 0.3s ease-in-out;
}

.footer-form {
    padding-top: 50px;
}

.footer-form form input {
    width: 100%;
    border-radius: 0.5rem;
    padding: 3px 0px;
    outline: none;
    border: none;
    text-align: center;
}

.footer-form form input:focus {
    outline: none;
}

.footer-form a {
    display: inline-block;
    background: var(--yellow-color);
    font-size: 14px;
    color: var(--white-color);
    margin-top: 15px;
    border-radius: 0.5rem;
}

.footer-form a:hover {
    background: var(--white-color);
}


/*FOOTER SECOND ENDS*/


/*FOOTER ENDS*/


/*SIDE  NAVBAR */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: var(--black-color);
    transition: 0.5s;
    overflow: hidden;
    padding-top: 60px;
}

.sidenav a {
    padding: 15px 8px 15px 30px;
    text-decoration: none;
    font-size: 20px;
    color: var(--white-color);
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: var(--yellow-color);
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openNav {
    font-size: 30px;
    color: var(--white-color);
    cursor: pointer;
}

.second-bg ul {
    padding-top: 1rem;
}

#mySidenav ul .feat-show.show {
    display: block;
    padding: 0;
}

#mySidenav ul .feat-show.show li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul ul {
    position: static;
    display: none;
}

#mySidenav ul .samachar-show.show1 {
    display: block;
    padding: 0;
}

#mySidenav ul .samachar-show.show1 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .jeewan-show.show2 {
    display: block;
    padding: 0;
}

#mySidenav ul .jeewan-show.show2 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .artha-show.show3 {
    display: block;
    padding: 0;
}

#mySidenav ul .artha-show.show3 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .suchana-show.show4 {
    display: block;
    padding: 0;
}

#mySidenav ul .suchana-show.show4 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .khelkud-show.show5 {
    display: block;
    padding: 0;
}

#mySidenav ul .khelkud-show.show5 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .kala-show.show6 {
    display: block;
    padding: 0;
}

#mySidenav ul .kala-show.show6 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .bichar-show.show7 {
    display: block;
    padding: 0;
}

#mySidenav ul .bichar-show.show7 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul ul li {
    line-height: 42px;
    border: none;
}

#mySidenav ul ul li a {
    font-size: 17px;
    color: var(--white-color);
    padding-left: 50px;
}

#mySidenav ul ul li a:hover {
    color: var(--yellow-color);
}

#mySidenav ul li.active ul li a {
    color: var(--white-color);
    background: var(--black-color);
    border-left-color: transparent;
}

#mySidenav ul li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform 0.4s;
}

#mySidenav ul li a span.rotate {
    transform: translateY(-50%) rotate(-180deg);
}

#mySidenav ul li a {
    position: relative;
    color: var(--white-color);
    text-decoration: none;
    font-size: 18px;
    padding-left: 40px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
}

#mySidenav ul li a:hover {
    color: var(--yellow-color);
    cursor: pointer;
}

.right-logo .side-nav-tab {
    display: none;
}

.right-logo .side-nav-tab {
    /* margin-top: 40px; */
    margin-right: 40px;
}

.btn-warning:focus {
    box-shadow: none;
}


/* SIDE NAVBAR ENDS */

.work-detail a h5,
.work-detail a p {
    color: var(--black-color);
}

.work-detail a:hover p {
    color: var(--black-color);
}

.work-detail a:hover h5 {
    color: var(--yellow-color);
}

.port-image h6 {
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--red-color);
}

.port-image {
    position: relative;
    width: 100%;
}

.image-port {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.port-image:hover .image-port {
    opacity: 0.3;
}

.port-image:hover .middle {
    opacity: 1;
}

.text-image {
    color: var(--red-color);
    font-size: 25px;
    font-weight: 700;
    padding: 16px 32px;
}

h2.section-heading,
.service-heading-first {
    color: var(--black-color);
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    font-family: var(--primary-font)
}


/* h2.section-heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: var(--yellow-color);
    left: 35%;
    top: 50%;
    position: absolute;
} */

#gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

@media (max-width:1200px) {
    #gallery {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

@media (max-width:800px) {
    #gallery {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

@media (max-width:600px) {
    #gallery {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

#gallery img,
#gallery video {
    width: 100%;
    height: auto;
    margin: 4% auto 0;
    box-shadow: -3px 5px 15px #000;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding: 1px;
}

.modal-img,
.model-vid {
    width: 100%;
    height: 500px;
}

.modal-body {
    padding: 0px;
}

.book-now {
    padding: 7px 30px;
    background: var(--red-color);
    border-radius: 0.5rem;
}

.book-now-carousel {
    background: var(--red-color) !important;
    border-radius: 0;
    border: 1px solid var(--red-color) !important;
    color: var(--white-color) !important;
    padding: 0 21px !important;
    margin-left: 20px;
}

.second-bg ul {
    padding-top: 1rem;
}

#mySidenav ul .feat-show.show {
    display: block;
    padding: 0;
}

#mySidenav ul .feat-show.show li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul ul {
    position: static;
    display: none;
}

#mySidenav ul .samachar-show.show1 {
    display: block;
    padding: 0;
}

#mySidenav ul .samachar-show.show1 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .jeewan-show.show2 {
    display: block;
    padding: 0;
}

#mySidenav ul .jeewan-show.show2 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .artha-show.show3 {
    display: block;
    padding: 0;
}

#mySidenav ul .artha-show.show3 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .suchana-show.show4 {
    display: block;
    padding: 0;
}

#mySidenav ul .suchana-show.show4 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .khelkud-show.show5 {
    display: block;
    padding: 0;
}

#mySidenav ul .khelkud-show.show5 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .kala-show.show6 {
    display: block;
    padding: 0;
}

#mySidenav ul .kala-show.show6 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul .bichar-show.show7 {
    display: block;
    padding: 0;
}

#mySidenav ul .bichar-show.show7 li a {
    padding-top: 0;
    padding-bottom: 0;
}

#mySidenav ul ul li {
    line-height: 42px;
    border: none;
}

#mySidenav ul ul li a {
    font-size: 15px;
    color: var(--white-color);
    padding-left: 50px;
}

#mySidenav ul ul li a:hover {
    color: var(--yellow-color);
}

#mySidenav ul li.active ul li a {
    color: var(--white-color);
    background: var(--black-color);
    border-left-color: transparent;
}

#mySidenav ul li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform 0.4s;
}

#mySidenav ul li a span.rotate {
    transform: translateY(-50%) rotate(-180deg);
}

#mySidenav ul li a {
    position: relative;
    color: var(--white-color);
    text-decoration: none;
    font-size: 18px;
    padding-left: 40px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
}

#mySidenav ul li a:hover {
    color: var(--yellow-color);
    cursor: pointer;
}

.view-all-blogs a {
    padding: 10px 30px;
    border: 1px solid var(--yellow-color);
    background: var(--yellow-color);
    color: var(--white-color);
    font-weight: 600;
    display: inline-block;
    border-radius: 0.5rem;
    margin-top: 15px;
}


/*TRUSTED BY START*/

.trusted-by-section {
    padding: 60px 0;
}

.trusted-by .item h4 {
    text-align: center;
}

.partners-wrapper {
    padding: 30px;
}

.partners-wrapper img {
    height: 100px;
    width: 100px;
}


/*TRUSTED BY ENDS*/


/*FLOATING SOCIAL STARTS*/

.floating {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.floating ul li {
    padding: 8px 16px;
    margin-bottom: 5px;
    border-radius: 0.2rem;
}

.floating ul li.f-phone {
    background: var(--red-color);
}

.floating ul li.f-viber {
    background: #7D3DAF;
}

.floating ul li.f-whatsapp {
    background: #1BD741;
}

.floating ul li a {
    color: var(--white-color);
    display: inline-block;
}

.floating ul li a i {
    font-size: 13px;
}


/*FLOATING SOCIAL ENDS*/


/*CALL BACK*/

/*.callback-button {*/
/*    position: fixed;*/
/*    width: auto;*/
/*    left: -63px;*/
/*    top: 50%;*/
/*    z-index: 101;*/
/*    transition: all 0.3s linear;*/
/*    transform: rotate(-90deg);*/
/*}*/
/*test*/
.callback-button a {
    color: var(--white-color);
    background: var(--yellow-color);
    border: 1px solid var(--yellow-color);
    font-size: 12px;
    display: inline-block;
    padding: 5px 16px;
    border-radius: 0.2rem;
}

.callback-button a:hover {
    color: var(--yellow-color);
    background: var(--white-color);
}

.main-title h2 {
    color: var(--black-color);
    font-weight: 700;
    padding-bottom: 0px;
    text-transform: capitalize;
    font-family: var(--primary-font);
    letter-spacing: 3px;
}

.main-title h6 {
    color: var(--primary-color);
}


/*CALL BACK*/

/*.first-image a img{*/
/*    margin-top: 0 !important;*/
/*}*/



/*CHANGES STARTS*/

.callback-button {
    position: fixed;
    width: 200px;
    right: -80px;
    top: 285px;
    z-index: 101;
    transition: all 0.3s linear;
    transform: rotate(-90deg);
    opacity: 1;
}

.floating {
    position: fixed;
    top: 72%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 102;
    opacity: 1;
}

.floating ul li {
    padding: 8px 14px;
    margin-bottom: 5px;
    border-radius: 0.2rem;
}

#gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--white-color);
    display: block;
    transition: opacity .2s ease;
}

.partners-wrapper img {
    height: 100px;
    width: 100px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.nav-pills .nav-link {
    padding: .1rem 0.7rem;
}

.nav-pills .nav-item {
    margin-bottom: 20px;
}

#admission .modal-body h1 {
    font-weight: 900;
    font-size: 2.3em;
    text-transform: uppercase;
}

#admission .modal-body a.pre-order-btn {
    color: #000;
    background-color: gold;
    border-radius: 1em;
    padding: 1em;
    display: block;
    margin: 2em auto;
    width: 50%;
    font-size: 1.25em;
    font-weight: 6600;
}

#admission .modal-body a.pre-order-btn:hover {
    background-color: #000;
    text-decoration: none;
    color: gold;
}

#admission button:focus {
    outline: transparent;
}

#admission .modal-body img {
    width: 100%;
    padding: 20px;
}

#admission .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 800px;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

#admission .modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}

#admission button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    z-index: 100;
    color: black;
    right: 13px;
    top: 10px;
}

#admission button.close {
    opacity: 1;
    padding: 4px;
    background: white;
}

#admission .close:hover {
    color: black;
}

.appointment-form-wrapper {
    width: 60%;
    margin: 0 auto;
}

.appointment-form {
    border-radius: 1rem;
    margin: 0 auto;
    background: var(--white-color);
}

.appointment-form form input,
.appointment-form form textarea {
    border: none;
    border-bottom: 2px solid #9b9b9b;
    border-radius: 0;
}

.appointment-form form input:focus,
.appointment-form form textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: none;
}

.input-container {
    padding-bottom: 1em;
}

.left-inner-addon {
    position: relative;
}

.left-inner-addon input,
.left-inner-addon textarea {
    padding-left: 35px !important;
}

.left-inner-addon i {
    position: absolute;
    padding: 12px 12px;
    pointer-events: none;
    color: #9b9b9b;
}

/*CHANGES ENDS*/

/*PRICING PAGE STARTS*/
.wedding-col {
    background: #E3E3E3;
    padding: 20px;
}

.topic-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.sub-topic-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.inner-pricing-text p {
    font-size: 0.8rem;
    line-height: 34px;
    margin-bottom: 20px;
}

.reception-col {
    background: #252525;
    color: var(--white-color);
    padding: 20px;
}

.engagement-col {
    background: rgba(224, 145, 18, 1);
    /* background: linear-gradient(197deg, rgba(255, 255, 255, 1) 18%, rgba(224, 145, 18, 1) 50%, rgba(255, 255, 255, 1) 74%, rgba(255, 255, 255, 1) 100%); */
    padding: 20px;
    color: var(--white-color);
}

/*PRICING PAGE ENDS*/

/*PRICING STARTS*/

.panel {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 15px 25px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.pricing-table {
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .pricing-table {
        flex-direction: row;
    }
}

.pricing-table * {
    text-align: center;
    text-transform: uppercase;
}

.pricing-plan {
    border-bottom: 1px solid var(--black-color);
    padding: 25px;
}

.pricing-plan:last-child {
    border-bottom: none;
}

@media (min-width: 900px) {
    .pricing-plan {
        border-bottom: none;
        border-right: 1px solid var(--black-color);
        flex-basis: 100%;
        padding: 25px 50px;
    }

    .pricing-plan:last-child {
        border-right: none;
    }
}

.pricing-img {
    margin-bottom: 25px;
    max-width: 100%;
}

.pricing-header {
    color: var(--red-color);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 23px;
}

.pricing-features {
    color: var(--red-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 50px 0 25px;
}

.pricing-features-item {
    border-top: 1px solid var(--black-color);
    font-size: 12px;
    line-height: 1.5;
    padding: 15px 0;
}

.pricing-features-item:last-child {
    border-bottom: 1px solid var(--black-color);
}

.pricing-price {
    color: var(--red-color);
    display: block;
    font-size: 32px;
    font-weight: 700;
}


.public-button {
    display: inline-block;
    color: var(--white-color);
    background: var(--red-color);
    border: 2px solid var(--red-color);
    padding: 10px 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
}

.public-button:hover {
    background: var(--white-color);
    color: var(--red-color);
}

.pricing-list-topic {
    color: var(--red-color);
}

/*PRICING ENDS*/
.floating-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 102;
    height: 230px;
}

.floating-wrapper.hide {
    top: -60%;
}

/*FAQ*/

.faq {
    background-color: var(--white-color);
    border: 1px solid #9fa4a8;
    border-radius: 10px;
    margin: 20px 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.faq.active {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq.active::before {
    color: #3498db;
    top: -10px;
    left: -30px;
    transform: rotateY(180deg);
}

.faq-title {
    margin: 0 35px 0 0;
    font-weight: 500;
    font-size: 18px;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 17px;
    right: 30px;
    width: 30px;
    height: 30px;
}

.faq-toggle:focus {
    outline: none;
}

.faq-toggle .fa-times {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    display: block;
    color: white;
}

.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

.faq.active .faq-toggle {
    background-color: #9fa4a8;
}

.career-list {
    background: var(--section-color);
}

.divider {
    margin-bottom: 20px;
}

/*SERVICE STARTS*/
.service-single {
    margin-bottom: 30px;
}

.service-single h3 a {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black-color);
    display: inline-block;
}

.service-single h3 a:hover {
    color: var(--red-color);
}

.service-image img {
    margin-bottom: 10px;
    object-fit: cover;
    height: 250px;
    width: 100%;
}


.service-desc p {
    text-align: center;
}


/*PORTFOLIO FOLDER PAGE STARTS*/
#gallery .gallery-category-wrapper {
    margin: 4% auto 10%;
}

.gallery-name-top {
    text-align: center;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    position: absolute;
    bottom: -0%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 1);
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-size: 16px;
}

#gallery a:hover h5 {
    color: var(--red-color);
}

/*PORTFOLIO FOLDER PAGE ENDS*/

.test-wrapper {
    position: relative;
}


/*RECENT WORKS STARTS*/
.recent-works .item img {
    height: 90vh;
    object-fit: cover;
}

.owl-carousel.recent-slider .owl-dots .owl-dot.active span {
    width: 10px;
    background-color: var(--red-color);
}

/*RECENT WORKS ENDS*/
.enquiry-page-section {
    padding: 20px 0;
}

.form-label {
    font-family: var(--form-font);
    padding-bottom: 3px;
}
