/*******************************/
/********* General CSS *********/
/*******************************/
.navbar-nav a .active{
    color:blue;
}
body {
    color: black;
    background: #ffffff;
    font-family: poppins;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins';
    word-break:break-word;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #aa9166;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #006ae0;
    color: #ededed;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    border-radius:50px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #aa9166;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 50px;
    background: #106eea;
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: #aa9166;
    font-size: 75px;
    line-height: 55px;
    font-weight: 800;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90px;
    padding: 0 20px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text h2 {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 25px;
    margin: 0;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 13px;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 90px;
    font-size: 0;
    justify-content: flex-end;
}

    .top-bar .social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 36px;
        font-size: 17px;
        color: #ffffff;
        border-right: 1px solid rgba(255, 255, 255, .15);
        border-radius: 50px;
        margin-top: -24%;
        border: 1px solid white;
        margin-right: 3%;
    }

.top-bar .social a:first-child {
    /*border-left: 1px solid rgba(255, 255, 255, .15);*/
}

.top-bar .social a:hover {
    color: #aa9166;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
    
    .top-bar .social {
        display: none;
    }
}

/*p::first-letter {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: italic;
    color: #121518;
    font-size:50px;
}*/
/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.search{
    padding:7px;
}
.nav-bar {
    position: relative;
    padding: 20px 0;
    transition: .3s;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: black;
    font-weight:bold;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #006ae4;
        transition: none;
        border-bottom: 2px solid;
    }

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #f1926f;
    border-radius: 0;
}

    .nav-bar .btn:hover {
        background: #f1926f;
    }

@media (min-width: 992px) {
    .nav-bar {
        padding: 7px 60px;
    }
    
    .nav-bar.nav-sticky {
        padding: 10px 60px;
    }

        .nav-bar,
        .nav-bar .navbar {
            background: white !important;
        }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        /*text-transform: uppercase;*/
    }
}

@media (max-width: 991.98px) {
    .nav-bar,
    .nav-bar .navbar {
        padding: 3px 0;
        background: #006ae4 !important;
        margin-top: -1%;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 21px;
    margin-bottom: 25px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border: 2px solid #aa9166;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 20px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 12px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 6px 0;
    text-align: center;
    /*background: #ea3322;*/
    background-image: url('../img/Home_New/bg.png');
    /*background-image: url('../img/aboutbanner.webp');*/
}

.page-header h2 {
    position: relative;
    color: 
        white;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: white;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: white;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: white;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    /*white-space: nowrap;*/
    z-index: 1;
}

.section-header h2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    top: 21px;
    background: transparent;
    /*border-top: 1px solid #aa9166;
    border-bottom: 1px solid #aa9166;*/
    z-index: -1;
}

.section-header h2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    bottom: 20px;
    background: transparent;
    /*border-top: 1px solid #aa9166;
    border-bottom: 1px solid #aa9166;*/
    z-index: -1;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/******** Top Feature CSS ******/
/*******************************/
.feature-top {
    position: relative;
    background: #121518;
    margin-bottom: 45px;
}

.feature-top .col-md-3 {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 575.98px) {
    .feature-top .col-md-3:nth-child(1n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-top .col-md-3:nth-child(2n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:nth-child(3n),
    .feature-top .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .feature-top .col-md-3 {
        border-bottom: none;
    }
    
    .feature-top .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

.feature-top .feature-item {
    padding: 30px 0;
    text-align: center;
}

.feature-top .feature-item i {
    color: #aa9166;
    font-size: 35px;
    margin-bottom: 10px;
}

.feature-top .feature-item h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
}

.feature-top .feature-item p {
    color: #999999;
    margin: 0;
    font-size: 18px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

    .about .about-img {
        position: relative;
        height: 100%;
        padding: -1px;
        /* background: #121518; */
        /*opacity: 0.6;*/
    }

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
}

    .about .about-text a.btn {
        position: relative;
        margin-top: 15px;
        padding: 15px 35px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #f1926f;
        border: 2px solid #f1926f;
        border-radius: 0;
        background: #37297c;
        transition: .3s;
    }

.about .about-text a.btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

    .service .service-item {
        position: relative;
        width: 100%;
        text-align: center;
        background: #37297c;
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .service .service-icon {
        height: 200px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #37297c;
        border-radius:10px;
    }

.service .service-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    /*color: #aa9166;
    background: #121518;*/
    transition: .5s;
}

.service .service-item:hover .service-icon i {
    margin-top: -15px;
}

    .service .service-item h3 {
        margin: 0;
        padding: 25px 15px 15px 15px;
        font-size: 30px;
        font-weight: 600;
        color: #f1926f;
    }

.service .service-item p {
    margin: 0;
    color: white;
    padding: 0 25px 25px 25px;
    font-size: 18px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-icon {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121518;
}

.feature .feature-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #000000;
    transition: .5s;
}

.feature .feature-item:hover .feature-icon i {
    margin-right: -15px;
}

.feature .feature-item h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
}

.feature .feature-item h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #aa9166;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

.feature .feature-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

.feature .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 50px 15px 30px 15px;
    text-align: center;
    background: #121518;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.team .team-text p {
    margin: 0;
    color: #999999;
}

.team .team-social {
    position: absolute;
    width: calc(100% - 60px);
    height: 50px;
    top: -25px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #aa9166;
    font-size: 0;
    transition: .5s;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    text-align: center;
    color: #121518;
    transition: .3s;
}

.team .team-social a:last-child {
    margin-right: 0;
}

.team .team-social a:hover {
    color: #ffffff;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .faqs-img {
    position: relative;
    height: 100%;
    /*padding: 10px;*/
    background: #121518;
}

.faqs .faqs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 767.98px) {
    .faqs .faqs-img {
        margin-bottom: 30px;
        height: auto;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding-top: 15px;
    border: none;
    border-radius: 0;
    border-top: 1px solid #aa9166;
}

.faqs .card:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #aa9166;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
}

    .faqs .card-header a span {
        display: inline-block;
        width: 40px;
        height: 40px;
        margin-right: 10px;
        text-align: center;
        background: #006ae0;
        color: #ededed;
        font-weight: 700;
        border-radius: 40px;
    }

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0 0 0;
    font-size: 16px;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    /* border: 6px solid #fff9f6; */
    border-radius: 0;
    background: #0066db;
    transition: .3s;
    border-radius: 7px;
}

.faqs a.btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

    .testimonial .testimonial-item {
        height:280px;
        position: relative;
        margin: 0 15px;
        padding: 20px;
        background: white;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        margin-bottom: 5%;
        margin-top: 5%;
        border-radius: 10px;
    }

        .testimonial .testimonial-item i {
            position: absolute;
            top: 13px;
            right: 11px;
            color: #333333;
            font-size: 60px;
            transform: rotate(45deg);
            z-index: 1;
            font-size: 21px;
        }

.testimonial .testimonial-item .col-12 {
    margin-top: 20px;
}

.testimonial .testimonial-item img {
    width: 100%;
    border-radius:10px;
}

.testimonial .testimonial-item h2 {
    color: #aa9166;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;

}

        .testimonial .testimonial-item p {
            color: #0066db;
            font-size: 22px;
            margin: 0;
            word-break: break-word;
        }

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

    .testimonial .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #0066db;
    }

.testimonial .owl-dot.active {
    background: #121518;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: #ffffff;
    overflow: hidden;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-item img {
    width: 100%;
    margin-bottom: 25px;
}

.blog .blog-item h3 {
    font-size: 25px;
    font-weight: 600;
}

.blog .blog-item .meta {
    padding: 0 0 15px 0;
}

.blog .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-item .meta i:first-child {
    margin-left: 0;
}

.blog .blog-item p {
    font-size: 16px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 10px;
}

.blog .blog-item a.btn:hover {
    color: #121518;
}

.blog .owl-nav,
.blog .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.blog .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aa9166;
}

.blog .owl-dot.active {
    background: #121518;
}

.blog .pagination .page-link {
    color: #121518;
    border-radius: 0;
    border-color: #aa9166;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #121518;
    background: #aa9166;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Timeline CSS ********/
/*******************************/
.timeline {
    position: relative;
    padding: 45px 0;
}

.timeline .timeline-start {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.timeline .timeline-container {
    padding: 0 15px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-top: -5px;
}

.timeline .timeline-container.left {
    left: 0;
}

.timeline .timeline-container.right {
    left: 50%;
}

.timeline .timeline-container::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::before {
    top: 0;
    right: 0;
}

.timeline .timeline-container.right::before {
    bottom: 0;
    left: 0;
}

.timeline .timeline-container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::after {
    bottom: 0;
    right: 0;
}

.timeline .timeline-container.right::after {
    top: 0;
    left: 0;
}

.timeline .timeline-container:first-child::before,
.timeline .timeline-container:last-child::before {
    display: none;
}

.timeline .timeline-container .timeline-content {
    padding: 30px;
    background: #121518;
    position: relative;
    border-right: 5px solid #aa9166;
}

.timeline .timeline-container.right .timeline-content {
    border-left: 5px solid #aa9166;
}

.timeline .timeline-container .timeline-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.timeline .timeline-container .timeline-content h2 span {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 10px;
    color: #121518;
    background: #aa9166;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}

.timeline .timeline-container .timeline-content p {
    margin: 0;
    font-size: 16px;
    color: #999999;
}

@media (max-width: 767.98px) {
    .timeline .timeline-container {
        width: 100%;
        margin-top: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }
    
    .timeline .timeline-container:last-child {
        padding-bottom: 0;
    }
    
    .timeline .timeline-container.right {
        left: 0%;
    }

    .timeline .timeline-container.left::after, 
    .timeline .timeline-container.right::after,
    .timeline .timeline-container.left::before,
    .timeline .timeline-container.right::before {
        width: 5px;
        height: 35px;
        left: 15px;
    }
    
    .timeline .timeline-container.left .timeline-content,
    .timeline .timeline-container.right .timeline-content {
        border-left: 5px solid #aa9166;
        border-right: none;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #aa9166;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #121518;
    border: 2px solid #aa9166;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #aa9166;
    color: #121518;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #121518;
    background: #aa9166;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .5s;
}

.portfolio .portfolio-item:hover {
    margin-top: -10px;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.portfolio figure {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0), rgba(0, 0, 0, 1) 90%);
}

.portfolio figure p {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
}

.portfolio figure p::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

.portfolio figure a {
    font-family: 'Poppins';
    color: #aa9166;
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
    transition: .3s;
}

.portfolio figure a:hover {
    text-decoration: none;
    color: #ffffff;
}

.portfolio figure span {
    position: relative;
    color: #999999;
    font-size: 16px;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

    .contact .contact-info {
        position: relative;
        margin-bottom: 30px;
        width: 100%;
        padding: 30px;
        background: #37297c;
    }

    .contact .contact-item {
        position: relative;
        margin-bottom: 30px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        border: 2px solid #f1926f;
    }

        .contact .contact-item i {
            display: inline-block;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #f1926f;
            border: 2px solid #f1926f;
        }

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 15px;
}

.contact .contact-text h2 {
    color: white;
    font-size: 25px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: white;
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    margin-bottom: 30px;
}

.contact .contact-form input {
    height: 60px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

.contact .contact-form textarea {
    height: 190px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

    .contact .contact-form .btn {
        padding: 16px 35px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #ffffff;
        background: #3a2679;
        border: 2px solid #3a2679;
        border-radius: 0;
        transition: .3s;
    }

        .contact .contact-form .btn:hover {
            color: #121518;
            background: #ea3322;
        }


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    margin: 10px 0 15px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    max-width: 900px;
    margin: 45px auto -140px auto;
    padding: 30px 15px;
    background: #aa9166;
    z-index: 1;
}

.newsletter .section-header {
    margin-bottom: 25px;
}

.newsletter .section-header h2::before,
.newsletter .section-header h2::after {
    border-color: #ffffff;
}

.newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border-radius: 0;
    border: 2px solid #aa9166;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 180px;
    background: #cbdbf1;
    color: #141414;
}

    .footer .footer-about,
    .footer .footer-link,
    .footer .footer-contact {
        position: relative;
        margin-bottom: 45px;
        color: black;
        float: right;
        margin-left:-3%;
    }

    .footer .footer-about h2,
    .footer .footer-link h2,
    .footer .footer-contact h2 {
        position: relative;
        margin-bottom: 30px;
        font-size: 25px;
        font-weight: 600;
        color: #0066db;
    }

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: black;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

    .footer .footer-link a:hover {
        color: #f1926f;
        letter-spacing: 1px;
    }

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

    .footer .footer-social a i {
        margin-right: 15px;
        font-size: 18px;
        color: #0066db;
        border: 1px solid black;
        height: 40px;
        width: 40px;
        padding: 10px;
        border-radius: 40px;
    }

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    background: #000000;
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #999999;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu .f-menu a:hover {
    color: #aa9166;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

    .footer .copyright p a {
        color: #f1926f;
        font-weight: 500;
        letter-spacing: 1px;
    }

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}
.img_client {
    width: 50%;
    margin: 17px 0px 0px 40px;
}
.card_1 {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    height: 7rem;
}
.img1_client {
    width: 88%;
    margin: 9px 0px 0px 0px;
}
.img2_client {
    width: 88%;
    margin: -9px 0px 0px 0px;
}
.img3_client {
    width: 92%;
    margin: 38px 0px 0px 10px;
}
.logoo {
    /*border-radius: 100px;*/
    width: 150px;
    height: 100px;
}
.mail {
    font-size: 14px;
    color: #ffffff;

}
.card_p {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    margin-top: 13%;
    color: black;
    padding: 10px;
    height: 600px;
    line-height: 28px;
    padding: 28px;
    border-radius:10px;
}
    .card_p:hover {
        box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
        margin-top: 13%;
        color: black;
        padding: 10px;
        height: 600px;
        line-height: 28px;
        padding: 28px;
        border-radius: 10px;
        background-color: dodgerblue;
        color: white;
        line-height: 28px;
    }
/*.card_2 {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    background: white;
    height: 170px;
    width: 200px;
    border-radius: 10px;
}*/
@media only screen and (max-width:600px){
    .card12 {
        border-radius: 8px;
        margin-bottom: 15%;
        height: 316px;
        width: 69%;
        box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
        cursor: pointer;
    }
    .card_1 {
        box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
        height: 4rem;
        width: 8rem;
    }
    .img1_client {
        width: 55%;
        margin: 3px 0px 0px 19px;
    }
    .img_client {
        width: 38%;
        margin: 6px 0px 0px 40px;
    }
    .col-sx-6{
        width:50%;
        padding:10PX;
    }
    .img3_client {
        width: 79%;
        margin: 14px 0px 0px 10px;
    }
    .img2_client {
        width: 65%;
        margin: -9px 0px 2px 21px;
    }
    .top-bar {
        position: relative;
        height: 1px;
        background: #ffffff;
    }
    .about {
        display:none;
    }
    .about1 {
        display: ;
    }

    .home_products {
        width: 127%;
        margin-left: -17%;
        border-radius: 3px px 5px 0px 0px;
        height: 142px;
        margin-top: -14%;
        margin-bottom: 5%;
    }
}
.about{
    display:contents;
}
.about1{
    display:none;
}
.mobile {
    color: white;
    margin-top: 9%;
    margin-left: -15rem;
}
.btn_1 {
    border: 2px solid white;
    height: 32px;
    background-color: white;
    color: black;
    border-radius: 5px;
    margin-top:1%
}
.hyderbad {
    color: darkred;
    margin-left: 38%;
    /* margin-top: -15%; */
    font-size: 14px;
}
.Govardhanam {
    margin-left: -5%;
    margin-top: 0%;
    font-size: 31px;
    margin-bottom: -3%;
}




.video {
    width: 124%;
    height: 254%;
    margin-left: -113px;
}

.when {
    margin-left: 10px;
}

.ghee {
    height: 280%;
    /*width:280%;*/
}

.card_1 {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: initial;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    height: 200px;
}

.prices {
    color: white;
    margin-right: -10px;
    margin-top: 70px;
}

.logo_1 {
    height: 84px;
    width: 105%;
    margin-top: 5px;
}

.logo_0 {
    /*    width:8%;
*/ height: 93px;
    margin-top: 5px;
}

.button {
    width: 95%;
    /* height: 102%; */
    font-family: 'Poppins';
    margin-left: 10px;
    border-radius: 4px;
    /* margin-top: -7px; */
    margin-bottom: 3%;
    padding: 10px;
    background-color: #006ae4;
    color: white;
    border: none;
}

.button_1 {
    width: 80%;
    /* height: 102%; */
    font-family: 'Poppins';
    margin-left: 10px;
    border-radius: 4px;
    /* margin-top: -7px; */
    margin-bottom: 3%;
    padding: 10px;
    background-color: #006ae4;
    color: white;
    border: none;
}

.anchor {
    margin-top: -43px;
}

.button_2 {
    width: 62%;
    height: 184%;
    font-family: 'Poppins';
    margin-left: 23px;
    border-radius: 20px;
    margin-top: -5px;
}

.qr {
    margin-left: 70px;
    width: 61%;
}

.button_3 {
    width: 53%;
    height: 9%;
    font-family: 'Poppins';
    margin-left: 35px;
    border-radius: 25px;
    margin-top: -3px;
    font-size: 20px;
}

.card_2 {
    padding: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: initial;
    border-radius: 0.25rem;
    /*box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;*/
}

.card_3 {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: initial;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    height: auto;
    padding: 10px;
    height: 754px;
    margin-bottom: 5%;
}

.card_4 {
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: initial;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    height: auto;
    padding: 10px;
    height: 754px;
}

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #80808024;
    margin-top: -40px;
}

    ul.breadcrumb li {
        display: inline;
        font-size: 18px;
    }

        ul.breadcrumb li + li:before {
            padding: 8px;
            color: black;
            content: "/\00a0";
        }

        ul.breadcrumb li a {
            color: #0275d8;
            text-decoration: none;
        }

            ul.breadcrumb li a:hover {
                color: #01447e;
                text-decoration: underline;
            }

.info {
    font-family: 'Poppins';
    font-size: 15px;
    padding: 10px;
}

.info_1 {
    font-family: 'Poppins';
    font-size: 18px;
}

.info_2 {
    font-family: 'Poppins';
    font-size: 15px;
    /*margin-top: -33px;*/
    padding: 10px;
}

.img-fluid_1 {
    width: 73%;
    height: 99%;
    margin-left: 170px;
}

.box {
    width: 120%;
}

.box_1 {
    margin-top: -10%;
}

.box_2 {
    width: 97%;
    height: 86%;
}

.box_3 {
    width: 111%;
}

.box_0 {
    width: 139%;
}

.box_4 {
    width: 120%;
    height: 86%;
}

.fluid {
    width: 100%;
    height: 194px;
}

.ex1 {
    height: 400px;
    width: 280px;
    overflow-y: auto;
}

@media only screen and (max-width:600px) {
    .card_3 {
      
        word-wrap: break-word;
        background-color: #fff;
        background-clip: initial;
        border: 1px solid rgba(0,0,0,.125);
        border-radius: 0.25rem;
        box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px, rgb(0 0 0 / 30%) 0px 3px 7px -3px;
        height: auto;
        padding: 10px;
        height: auto;
        margin-bottom: 5%;
        width: auto;
    }
    .footer {
        position: relative;
        margin-top: 45px;
        padding-top: 180px;
        background: white;
        color: #141414;
        padding: 10px;
        height:100px;
    }
    .qr {
        margin-left: 1px; 
        width: 61%;
    }
    .video_0 {
        width: 150%;
    }

    .img-fluid_1 {
        width: 110%;
        height: 99%;
        margin-left: 1px;
    }

    .icon-box {
        margin-left: 20px;
    }

    .button {
        width: 80%;
    }

    .button_1 {
        width: 80%;
    }

    .box_a {
        width: 105%;
    }

    .logo_0 {
        width: 60px;
        height: 60px;
        margin-top: 5px;
    }

    .logo {
        font-size: 15px;
    }
}


.card-title {
    margin-bottom: 0.5rem;
    font-size: 17px;
    color: dodgerblue;
    height: 38px;
}

.card-text {
    height: 76px;
    font-size: 13px;
}

.card_p {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    /*border-bottom: 2px solid #e15621;
    border-left: 2px solid #e15621;*/
    word-wrap: break-word;
    background-color: #fff;
    margin-bottom: 5%;
}

.card-img-top {
    height: 180px;
    width: 100%;
}

.hyderbad {
    font-size: 12px;
    text-align: end;
    color: brown;
}

.icon-box:hover {
    color: white
}

.card_2 img {
    border-radius: 10px;
    width: 90%;
}

.mobile {
    display: block;
}

@media only screen and (max-width:600px) {
    #topbar .contact-info i {
        font-style: normal;
        color: #fff;
        font-size: 11px;
        margin-left: -3%;
    }

    ul.breadcrumb li {
        display: inline;
        font-size: 12px;
    }

    #header .logo {
        font-size: 15px;
        margin-left: -10%;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0.8px;
        font-family: "Poppins", sans-serif;
    }

    .mobile {
        display: none;
    }
}

.logo_footer {
    width: 30%;
    margin-top: -5%;
}

.diabetic {
    margin-left: 26%;
    margin-top: 12%;
    width: 100%;
}

.dia_img {
    border-radius: 0px 50px 0px 50px;
    width: 150%;
}

.dia_img1 {
    width: 150%;
    margin-top: 27%;
}

.lheight1 {
    line-height: 22px;
}

.lheight {
    line-height: 27px;
}

.card12 {
    border-radius: 8px;
    margin-bottom: 15%;
    height: 201px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
}

.img_1 {
    width: 105px;
    height: 115px;
    margin-top: 8%;
    border-radius: 10px;
}

.flow-name {
    padding-left: 5%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-top: 5%;
    color: #026ce5
}

.enqui {
    border-radius: 3px;
    border: 1px solid purple;
    color: black;
    padding: 3px;
    width: 72%;
    background-color: white;
}
@media only screen and (max-width: 600px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 10px 10px 8px 10px;
        color: #fdfdfd;
        font-weight: bold;
    }
}
.pleft-1{
    padding-left: 1.5rem !important;
}
.mleft-5 {
    margin-left: 3.5rem !important;
}

.mtop-1 {
    margin-top: -2.75rem !important;
}
.mbot-2 {
    margin-bottom: -2.5rem !important;
}

@media screen and (max-width: 600px) {

    .mleft-5 {
        margin-left: 3rem !important;
        line-height:19px;
    }
    .pleft-1 {
        padding-left: 2.5rem !important;
    }
    .mtop-1 {
        margin-top: -2.75rem !important;
    }
    .mgtop-1 {
        margin-top: -1.75rem !important;
    }
    .home_products {
        width: 119%;
        margin-left: -12%;
        border-radius: 3px 5px 0px 0px;
        height: 142px;
        margin-top: -7%;
        margin-bottom: 5%;
    }
      .carousel {
        position: relative;
        width: 100%;
        height: calc(53vh - 170px);
        margin: 0 auto;
        text-align: center;
        overflow: hidden;
    }
    .carousel .carousel-caption h1 {
        color: #ffffff;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 7px; 
        margin-top: -73%;
    }
    .roww {
        width: 50%;
    }

    .card12 {
        border-radius: 8px;
        margin-bottom: 15%;
        height: 192px;
        width: 107%;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .img_1 {
        width: 90px;
        height: 90px;
        margin-top: 8%;
    }

    .flow-name {
        padding-left: 5%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding-top: 5%;
    }

    .enqui {
        border-radius: 3px;
        border: 1px solid purple;
        color: black;
        padding: 3px;
        width: 79%;
        background-color: white;
    }

    .iframewidth {
        width: 307px;
        height: 185px;
    }
    .card_p {
        box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
        margin-top: 13%;
        color: black;
        padding: 10px;
        height: auto; 
        line-height: 28px;
        padding: 28px;
        border-radius: 10px;
    }
    .faqs .card-body {
        padding: 15px 0 0 0;
        font-size: 11px;
        border: none;
        background: #ffffff;
    }
    .faqs .card-header a {
        display: block;
        width: 100%;
        color: #121518;
        font-size: 11px;
        line-height: 42px;
    }
    .testimonial .testimonial-item img {
        width: 100%;
        /*margin-left: -107%;*/
    }
    .testimonial .testimonial-item p {
        color: #0066db;
        font-size: 18px;
        margin: 0;
    }
    .testimonial .testimonial-item {
         height: auto; 
        position: relative;
        margin: 0 15px;
        padding: 20px;
        background: white;
        overflow: hidden;
        box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
        margin-bottom: 5%;
        margin-top: 5%;
        border-radius: 10px;
    }
    .Govardhanam {
        margin-left: -5%;
        margin-top: -12%;
        font-size: 12px;
        margin-bottom: -12%;
        color: white;
    }
    .logoo {
        border-radius: 100px;
        width:60px;
        height: 60px;
        margin-bottom: 7%;
    }
    .copyright {
        margin-top: -64%;
    }
    .aim {
        width: 100%;
        margin-top: 10%;
        border-radius: 35px 0px 35px 0px;
    }
    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
        color: #ffffff;
        transition: none;
    }
    .aim {
        width: 100%;
        margin-top: 10%;
        border-radius: 35px 0px 35px 0px;
    }
    body {
        max-width: 100%; /* Ensure images don't exceed their container's width */
        height: auto; /* Maintain aspect ratio */
        overflow-x:hidden;
    }
    .footer .footer-about, .footer .footer-link, .footer .footer-contact {
        position: relative;
        margin-bottom: 45px;
        color: black;
        float: left;
         margin-left: 0%; 
    }
    .hyderbad {
        font-size: 12px;
        /* text-align: -webkit-right; */
        color: #006ae4;
        margin-left: -3%;
    }
    .go_1{
        display:none;
    }
}

.iframewidth {
    width: 261px;
    height: 150px;
}

.pachagavya_img {
    width: 90%;
    margin-bottom: 8%;
    border-radius: 10px;
}
.donation_img {
    margin-left: -57%;
    margin-top: -8%;
    border-radius: 10px;
    width: 174%;
}
.aim {
    width: 100%;
    margin-top: 10%;
    border-radius: 35px 0px 35px 0px;
}
.video_p {
    width: 100%;
    height: 400px;
}
.donatee{
    display:none;
}
@media (max-width: 768px) {
    body {
        max-width: 100%; /* Ensure images don't exceed their container's width */
        height: auto; /* Maintain aspect ratio */
        overflow-x: hidden;
    }
    .rams {
        width: 50%;
        margin: 1rem 0px 0px 5rem;
        border-radius: 10px;
    }
}

.rams {
    width: 50%;
    margin: -1rem 0px 0px 3rem;
    border-radius: 10px;
}

.button-30 {
    align-items: center;
    appearance: none;
    background-color: #0066db;
    border-radius: 4px;
    border-width: 0;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 18px;
    border:none;
    float:right;
    padding:10px;
}

.button-30:focus {
    box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.button-30:hover {
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    transform: translateY(-2px);
}

.button-30:active {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}
.donate_dr {
    margin-left: -91%;
    margin-top: -39%;
}
.widgetPosition-Bottom-Right {
    position: fixed;
    bottom: 11px;
    right: 58px;
}

.whatsappWidget {
    height: 3.7em;
    width: 3.7em;
    border-radius: 50%;
    z-index: 11;
    color: #fff;
    text-align: center;
    display: table;
    transition-property: top;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}

    .whatsappWidget .whatsappIcon {
        width: 100%;
    }
    @media only screen and (max-width:600px){
        .top-bar{
            display:none;
        }
        .rams {
            width: 50%;
            margin: 1rem 0px 0px 5rem;
            border-radius: 10px;
        }
    }



.home_products {
    width: 127%;
    margin-left: -13%;
    border-radius: 3px 5px 0px 0px;
    height: 142px;
    margin-top: -14%;
    margin-bottom: 5%;
}
.title1 {
    font-size: 17px;
    font-weight: bold;
}