html, body {
    overflow-x: hidden;
  }
  

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: #191938
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/* Navbar Start */
.nav-bar {
    background: var(--bs-white);
    
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: #191938;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #191938;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 80px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/* Navbar End */
/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -30px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    height: 50vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;

}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
.breadcrumb-item :hover{
    color: #ffa31a;
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    bottom: 0; 
    left: 0;
    margin-top: 0;
    margin-right: 0; 
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 10px;
    z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
}
/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0%  {width: 100%;}

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.attractions .attractions-item:hover:after {
    height: 100%;
}

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .4);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: #191938;
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team End ***/

/*** Testimonial Start ***/



.testimonial {
    position: relative;
    overflow: hidden;
    background-image: url(../img/carousel-1.jpg); /* Keep the background image */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/carousel-1.jpg); /* Same background image for the zoom effect */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1; /* Ensure the image is behind the content */
    animation: image-zoom 10s infinite alternate; /* Apply zoom animation */
    
}

@keyframes image-zoom {
    0% {
        background-size: 120%; /* Initial zoom-in state */
    }
    100% {
        background-size: 110%; /* Zoom out effect */
    }
}

.testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4); /* Adjusted opacity for the overlay */
    z-index: 0; /* Ensure the overlay is just above the background image */
}

.testimonial .testimonial-carousel .testimonial-item {
    position: relative; /* Ensure the testimonial content is above the overlay */
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2); /* Semi-transparent background for the items */
    z-index: 2; /* Ensure content is above the overlay */
    padding: 20px;
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: -200px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}


/*** Testimonial End ***/


/*** Footer Start ***/

/* Social Media Icons Styling */
.social-media-icons {
    gap: 8px;
}

.social-media-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--bs-light) !important; /* Light background by default */
}

.social-media-icons a i {
    color: var(--bs-primary) !important; /* Orange icon by default */
}

/* Hover State */
.social-media-icons a:hover {
    background: var(--bs-primary) !important; /* Orange background on hover */
}

.social-media-icons a:hover i {
    color: white !important; /* White icon on hover */
}

/* Mobile-specific adjustments */
@media (max-width: 767.98px) {
    .social-media-icons {
        
        margin-top: 20px !important;
    }
    
    .social-media-icons a {
        width: 32px;
        height: 32px;
    }
    
    .social-media-icons a i {
        font-size: 14px;
    }
}
.footer {
    background: #191938;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icons svg {
    width: 40px;
    height: 40px;
}

/* Mobile view adjustments */
@media (max-width: 767.98px) {
    .footer .footer-item {
        padding: 0 15px;
    }
    
    .footer .team-icon {
        justify-content: center !important;
    }
    
    .footer .opening-date {
        width: 100% !important;
    }
    
    .footer .d-flex.align-items-center p {
        font-size: 14px;
    }
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #191938;
}
/*** copyright end ***/


html {
    height: 15px;
}

.flex-box {
    display: flex;
    justify-content: space-between;
}

.flex {
    display: flex;
    justify-content: flex-start;
}

.stroke {
    box-shadow: 0 4px 8px rgba(0, 0, 139, 1);
}

.caller {
    position: fixed;
    top: 30%;
    right: 0;
    background: #F26422;
    color: #fff;
    z-index: 2000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    transform: translatex(67%);
    transition: 0.5s ease;
    border-radius: 0.5rem 0;
}

.caller i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.caller:hover {
    color: #fff;
    transform: translatex(0%);
}

.scroll {
    width: 50px;
    height: 50px;
    background: #E5761D;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    border-radius: 100%;
}

.scroll i {
    color: #fff;
    font-size: 1.5rem;
    margin: 12px 15px;
}

.reright {
    margin: top, 1.5rem;
}

.myflex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp {
    width: 50px;
    height: 50px;
    background-color: #32cc24;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 200;
    border-radius: 100%;
}

.whatsapp i {
    color: #fff;
    font-size: 1.5rem;
    margin: 12px 15px;
}

/* Banner starts here */

.back-btn {
    opacity: 25;
    color: #fff;
    position: absolute;
    top: 60%;
    left: 2rem;
    height: 45px;
    width: 45px;
    font-size: 1.5rem;
    transform: translatex(30px);
    z-index: 10;
}

.next-btn {
    opacity: 25;
    color: #fff;
    position: absolute;
    top: 60%;
    right: 2rem;
    height: 45px;
    width: 45px;
    font-size: 1.5rem;
    transform: translatex(-30px);
    z-index: 10;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-inner .image {
    width: 100%;
    height: 88vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 4rem;
    position: relative;
}

.carousel-inner .img1 {
    background-image: url(../img/banner-1.webp);
}

.carousel-inner .img2 {
    background-image: url(../img/banner-2.jpg);
}

.carousel-inner .img3 {
    background-image: url(../img/banner-3.webp);
}

.carousel {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: 4rem;
}

.carousel-content {
    position: absolute;
    width: 100%;
    height: 88vh;
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel .content {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.carousel-content h2 {
    font-size: 3rem;
    line-height: 4rem;
    color: #fff;
    font-weight: 800;
}

.carousel-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 0.7rem;
    margin-bottom: 1.5rem;
}

.company {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    display: inline-block;
    position: relative;
    top: 1rem;
}

.company span {
    color: #ffa31a;
    font-family: sans-sarif;
    font-weight: 600;
    font-size: 4rem;
}

.company i {
    color: #ffa31a;
    font-family: lato;
    font-weight: 600;
}

/* form-section starts here  */

.form-section {
    width: 100%;
    background: linear-gradient(135deg, #ffa31a, #c7c7c7);
    /*position: relative;*/
    /*top: -1.5rem;*/
}

.relative {
    position: relative;
    top: -1rem;
}

.form-section .inner {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}

.form-section .left {
    width: 100%;
    height: 100vh;
    color: #fff;
    position: relative;
}

.form-section .left .content {
    width: 100%;
    position: absolute;
    bottom: 25%;
    left: 0;
}

.form-section .inner .right input {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #392a57;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.form-section .inner .right .more {
    border: 1px solid #ffa31a;
}

.full-width {
    width: 100%;
}

.city {
    width: 100%;
}

.form-section .inner .right input::placeholder {
    position: relative;
    left: 0.5rem;
}

.focus:focus {
    border: 1px solid #F16623;
    background: none;
    outline: none;
}

.form-section .inner .right {
    width: 100%;
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 1rem;
    margin-left: 10%;
    position: relative;
}

.form-section .inner .right label {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.disabled {
    color: gray;
}

.checked {
    margin-right: 1rem;
    margin-top: 1rem;
}

#checkbox {
    position: relative;
    top: 5rem;
}

.disabled a {
    color: #392a57;
    margin-bottom: 2rem;
}

.form-section .left .content h2 {
    font-size: 3rem;
    font-weight: 700;
}

.form-section .left .content h2 span {
    color: #F16623;
    font-family: "Poppins", sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.form-section .left .content p {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

/*at-bg starts here */

.at-bg {
    width: 100%;
}

.at-bg {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /*background-repeat:no-repeat;*/
}

.image1 {
    background-image: url(../img/at-a.jpg);
}

.image2 {
    background-image: url(../img/at-b.jpg);
}

.image3 {
    background-image: url(../img/at-c.png);
}

.image4 {
    background-image: url(../img/at-4.jpeg);
}

.hidecarousel {
    display: none;
}

#search {
    width: 40%;
    margin: 0 auto;
    padding: 1rem 0;
    border-radius: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.position {
    width: 100%;
    padding-top: 11rem;
}

.padding-contact {
    padding-top: 10rem;
}

.position input::placeholder {
    text-align: center;
}

.position h3 {
    font-size: 2.5rem;
    color: #392a57;
    margin-top: 1rem;
    font-weight: 700;
}

/* Why choose us starts here */

.choose {
    width: 96%;
    padding: 4rem 2rem;
    padding-bottom: 0rem;
    overflow: hidden;
}

.choose .img-content .content {
    position: relative;
    top: 0.5rem;
    left: 1rem;
}

.choose .image {
    width: 50%;
    margin: 0 auto;
}

.choose .img-content {
    box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.8);
    padding: 0rem 1.5rem;
    height: 160px;
    border-radius: 1rem;
}

.choose .title {
    width: 98%;
    margin: 0 auto;
}

.choose .img-content .content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #392A57;
}

.choose .top {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.choose .right {
    margin-left: 2rem;
}

.choose img {
    width: 90px;
    height: 90px;
    objcet-fit: cover;
    position: relative;
    top: 1rem;
}

.choose h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/*FAQ starts here*/

.faq {
    width: 100%;
    padding: 4rem 0;
}

.faq .inner {
    width: 100%;
}

.box {
    width: 100%;
}

.faq-container {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    color: #000000;
    padding: 15px;
    border: none;
    background: none;
    border-bottom: 1px solid #392a57;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: .3s ease all;
}

.faq-question .plus {
    font-size: 20px;
    transition: .3s ease all;
}

.faq-answer {
    display: none;
    background-color: none;
    padding: 15px;
    border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-top: 15px;
    text-align: left;
    transition: .3s ease all;
}

.faq .control {
    width: 100%;
    border-bottom: 1px solid #392a57;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq .control button {
    border: none;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
}

.box {
    display: none;
}

.visible {
    display: block;
}

.active-button {
    background-color: #ffa31a;
    color: #fff;
}

.mytable strong {
    color: #ffa31a;
}

.faq img {
    width: 100%;
    margin-top: 7rem;
}

/* Testimonial part starts here */

.testimonial {
    width: 100%;
    padding: 5rem 0;
    background-color: #f7f7f7;
}

.testimonial .inner {
    width: 82%;
    margin: 0 auto;
}

.testimonial h3 {
    width: 80%;
    margin: 0 auto;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.testimonial .owl-theme {
    width: 100%;
}

.testimonial .item img {
    width: 80%;
}

/* Switch-part starts here */

.switch {
    width: 100%;
    background: #ffa31a;
    color: #fff;
    padding: 4rem 0;
}

.switch .left {
    width: 85%;
    margin: 0 auto;
}

.switch .right {
    width: 85%;
    margin: 0 auto;
}

.switch .left .content {
    text-align: right;
    border-right: 5px solid #fff;
    position: relative;
    padding: 3rem 2.5rem;
}

.switch .right .content {
    text-align: left;
    border-left: 5px solid #fff;
    padding-left: 3rem;
    position: relative;
    left: -1.82rem;
    padding: 3rem 2.5rem;
}

.switch .left img {
    width: 15%;
    margin-bottom: 1rem;
}

.switch .right img {
    width: 15%;
    margin-bottom: 1rem;
}

.switch p {
    font-size: 17px;
}

.switch h4 {
    font-size: 1.8rem;
    font-weight: 800;
}

.switch i {
    font-size: 1.1rem;
    position: relative;
    top: 0.2rem;
}

.switch .title {
    width: 100%;
    margin-bottom: 1.5rem;
}

.switch .title h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

.switch .left .content::after {
    content: "";
    position: absolute;
    right: -1.1rem;
    top: 4rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #ffa31a, #c7c7c7);
    border-radius: 100%;
    z-index: 1;
}

.switch .right .content::before {
    content: "";
    position: absolute;
    left: -1.1rem;
    top: 3.5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #ffa31a, #c7c7c7);
    border-radius: 100%;
    z-index: 1;
}

/* Video part starts here */

.video {
    width: 100%;
}

.video .inner {
    width: 100%;
    padding: 3rem 0;
}

.video h3 {
    width: 100%;
    font-size: 2rem;
    text-align: center;
}

.vedio .left {
    width: 100%;
}

.video .left {
    margin-top: 4rem;
}

.video .right img {
    width: 100%;
    margin-top: 4rem;
}

.video .right {
    width: 80%;
    margin: 0 auto;
    margin-left: 2rem;
}

/*myth-part starts here */

.myth {
    width: 100%;
    background: linear-gradient(135deg, #ffa31a, #c7c7c7);
    padding: 4rem 0;
}

.myth hr {
    height: 2px;
    background: #392a57;
    width: 30%;
    margin: 0 auto;
}

.accordion {
    width: 82%;
    margin: 0 auto;
}

.accordion-button p {
    position: relative;
    top: 0.5rem;
}

.myth .title {
    color: #fff;
    width: 100%;
}

.myth .title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.myth .inner {
    width: 82%;
    margin: 0 auto;
}

.myth .inner .accordion-item {
    margin-top: 2rem;
    border-radius: 0.5rem;
    padding: 0;
}

.myth .inner .answer {}

/*myth-part ends here */

.img-txt {
    width: 100%;
    background-color: #F1F1F1;
}

.img-txt .inner {
    width: 90%;
    margin: 0 auto;
    padding: 4rem 0;
}

.img-txt .inner h3 {
    font-size: 2.4rem;
    font-weight: 700;
}

.img-txt .inner p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.img-txt .item {
    width: 100%;
    position: relative;
}

.img-txt .item img {
    width: 20%;
    border-radius: 50%;
    margin-left: 2rem;
}

.img-txt .item .content {
    position: relative;
    top: 1.3rem;
    left: 1rem;
}

.img-txt .item .image {
    width: 100%;
}

.img-txt .item p {
    background-color: rgb(185, 185, 185);
    color: #000000;
    padding: 2rem 3rem;
    position: relative;
    border-radius: 1rem;
}

.img-txt .item p::after {
    content: "";
    width: 45px;
    height: 45px;
    background-color: rgb(185, 185, 185);
    position: absolute;
    bottom: -0.5rem;
    left: 5rem;
    transform: rotate(45deg);
}

.img-txt .item .content h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.img-txt .item .content span {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    top: -0.5rem;
}

/*Profit starts here */

.profit {
    width: 100%;
    background: linear-gradient(135deg, #392a57, #5abe98);
}

.profit .title {
    width: 100%;
    margin: 0 auto;
    padding-top: 4rem;
    border-top: 1px solid #dfdfdf;
}

.profit .title h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #fff;
}

.profit .inner {
    width: 82%;
    margin: 0 auto;
    padding-bottom: 4rem;
    padding-right: 0;
}

.profit .content-title .image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #392a57;
    justify-content: center;
    position: relative;
    left: 45%;
}

.profit .image img {
    width: 60%;
    position: relative;
    top: 0.7rem;
}

.profit .inner .adjust {
    position: relative;
    top: 0.8rem;
}

.profit .inner .system {
    padding: 4rem 0rem;
    padding-left: 1.5rem;
    border-radius: 0.5rem;
    background-color: #ffff;
    margin-top: 2rem;
    box-shadow: 5px 5px 10px 5px rgba(44, 35, 46, 0.5);
}

.profit .inner .inner-content {
    width: 100%;
}

.profit .inner .inner-content .content {
    border: 1px solid #392a57;
    padding: 2rem 1.5rem;
    height: 40vh;
    border-radius: 0.5rem;
    background: #392a57;
    color: #fff;
}

.profit .inner .content ul {
    padding-left: 0;
}

.profit .inner .content-title {
    width: 60%;
    margin: 0 auto;
}

.profit .inner .content-title h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #392a57;
}

.profit .inner .content p {
    margin-bottom: 2rem;
}

.profit .inner .content h5 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.profit .inner .content ul li {
    list-style: none;
    font-size: 1rem;
    margin-top: 1rem;
}

.profit .inner i {
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.profit .left i {
    color: #FBB042;
}

.profit .middle i {
    color: green;
}

.profit .right i {
    color: red;
}

/* ========About part starts here===========*/

/* Breadcrumb-starts here  */

.breadcrumb {
    width: 100%;
    background-color: none;
    background-position: center top;
    padding-top: 10rem;
}

.breadcrumb .inner {
    width: 100%;
    color: #fff;
}

.breadcrumb .inner h2 {
    font-size: 2rem;
    margin-top: 1rem;
    font-weight: 800;
}

.breadcrumb .inner a {
    color: #ffff;
    text-decoration: none;
}

/* mission-part starts here  */

.mission {
    width: 100%;
    padding: 2rem 0;
    padding-bottom: 0;
    padding-top: 10rem;
}

.mission .inner {
    width: 100%;
}

.mission .right img {
    width: 60%;
    margin-left: 30%;
}

.mission .inner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.mission .bottom h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #ffffff;
}

.mission .inner .left p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.mission .bottom {
    background: #ffa31a;
    padding: 2rem;
    border-radius: 0.5rem;
}

.mission .bottom ul li {
    margin-top: 2rem;
    color: #fff;
}

/*Vital starts here */

.vital {
    width: 100%;
    margin-top: 3rem;
}

.vital .image {
    width: 100%;
    border-radius: 1rem;
}

.vital img {
    width: 100%;
    border-radius: 1rem;
}

.vital .title {
    width: 70%;
    margin: 0 auto;
}

.vital .title h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.expert {
    width: 100%;
    margin: 0 auto;
    background: #ffa31a;
    border-radius: 1rem;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.expert .content {
    width: 82%;
    margin: 0 auto;
}

.expert h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
}

.expert p {
    font-size: 1rem;
    color: rgb(173, 173, 173);
}

/*PM surya starst here */

.surya-pg-1 {
    width: 100%;
    padding-top: 12.5rem;
    padding-bottom: 1rem;
}

.surya-pg-1 .content {
    width: 99%;
    margin: 0 auto;
    overflow: hidden;
}

.surya-pg-1 .content h2 {
    color: #392a57;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    /*animation: moveRight 5s linear infinite;*/
}

/*@keyframes moveRight {*/

/*  0% {*/

/*    transform: translateX(0);*/

/*  }*/

/*  50% {*/

/*    transform: translateX(500px);*/

/*  }*/

/*  100% {*/

/*    transform: translateX(0);*/

/*  }*/

/*}*/

/*}*/

.surya-pg-1 h4 {
    font-size: 1.7rem;
    color: #14532D;
}

.surya-pg-1 p {
    font-size: 1rem;
    text-align: justify;
}

.mytable {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    /*padding-bottom:5rem;*/
}

.mytable .inner {
    width: 82%;
    margin: 0 auto;
    /*padding-top:2rem ;*/
}

.mytable img {
    width: 100%;
    margin-bottom: 2rem;
}

.mytable .table {
    width: 82%;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 4rem;
}

.mytable .table tr {
    border: 2px solid #000000;
}

.mytable .table th {
    width: 33.3%;
    background: #f1f1f1;
}

.mytable .title {
    width: 70%;
    margin: 0 auto;
}

.mytable h4 {
    font-size: 1.8rem;
    /*margin-bottom:rem;*/
    margin-top: 3rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-align: center;
}

#faq {
    margin-top: 2.5rem;
}

#faq h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-align: left;
    line-height: 1.8rem;
}

.mytable ul li {
    margin-top: 1.5rem;
}

.mytable ol li {
    margin-top: 1.5rem;
}

.mytable p {
    line-height: 1.8rem;
}

.scheme {
    width: 100%;
    padding: 1rem 0;
    background-color: whitesmoke;
}

.scheme .inner {
    width: 82%;
    margin: 0 auto;
}

.scheme .card {
    border: 1px solid #fff;
    padding: 1rem;
    background: #ffa31a;
}

.scheme .card P {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.numbered-list {
    list-style-type: none;
    /* Remove default bullets */
    counter-reset: item;
    /* Create a counter named "item" and set it to 0 */
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 10px;
    position: relative;
    font-size: 1rem;
    color: #fff;
}

.numbered-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.scheme .eligible {
    width: 100%;
    padding: 2rem 0;
    margin-left: 0.2rem;
    background-color: rgb(188, 183, 183);
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 1px solid gray;
}

.scheme .eligible h4 {
    font-size: 1.7rem;
    color: #14532D;
}

.scheme .eligible .content {
    padding: 1rem;
}

.scheme .eligible .content2 {
    padding: 1rem;
}

.scheme .application {
    width: 82%;
    margin: 0 auto;
    padding: 2rem 0;
}

.scheme .application h4 {
    font-size: 1.7rem;
    color: #14532D;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.scheme .application h5 {
    font-size: 1.3rem;
    color: #14532D;
    margin-bottom: 1rem;
    background-color: #F0FDF4;
    display: inline;
    padding: 0.8rem 1rem;
    border-bottom: 3px solid #14532D;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.scheme .application hr {
    background-color: gray;
    width: 100%;
    height: 1px;
    position: relative;
    top: -4px;
}

.scheme .application ul {
    margin-left: 1rem;
}

.scheme .application ul li {
    list-style: none;
    font-size: 1rem;
    margin-top: 1rem;
}

.scheme .application p {
    font-size: 1rem;
}

.scheme .application p a {
    text-decoration: none;
    color: #14532D;
    font-weight: 700;
}

.scheme .application span {
    font-weight: 600;
}

.meeting {
    width: 100%;
    padding: 1rem 0;
}

.meeting .title {
    width: 82%;
    margin: 0 auto;
}

.meeting .title h3 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.meeting .title p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.meeting .inner {
    width: 100%;
    margin: 0 auto;
}

.meeting .inner img {
    width: 100%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.meeting .inner h5 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.meeting .inner p {
    /*color:rgb(173, 173, 173);*/
}

/*contact-part starts here*/

/*.contact{*/

/*    width:100%;*/

/*    background-image: url(../img/contact-bg.png);*/

/*    background-position: center top;*/

/*    background-size: cover;*/

/*    color:#fff;*/

/*    padding:5rem 0;*/

/*    position: relative;*/

/*    top:-1rem;*/

/*}*/

/*.contact .inner{*/

/*    width:82%;*/

/*    margin:0 auto;*/

/*}*/

/*.contact .inner .left label{*/

/*    margin-top:1.5rem;*/

/*    margin-bottom:0.5rem;*/

/*}*/

/*.contact .inner .left {*/

/*    width:80%;*/

/*}*/

/*#email{*/

/*    width:95%;*/

/*    display:inline;*/

/*}*/

/*#name{*/

/*    width:95%;*/

/*    display:inline;*/

/*    margin-left:5%;*/

/*}*/

/*.name{*/

/*    margin-left:0.8rem;*/

/*}*/

/*.form-group{*/

/*    width:100%;*/

/*}*/

/*.contact .inner input{*/

/*    background: none;*/

/*    border:none;*/

/*    border-bottom: 1px solid whitesmoke;*/

/*    border-radius: 0;*/

/*    color:#fff;*/

/*}*/

/*.contact .inner input::placeholder{*/

/*    color:rgb(173, 173, 173);*/

/*}*/

/*.contact .inner input:focus{*/

/*    outline: 0;*/

/*}*/

/*.contact .inner textarea{*/

/*    background: none;*/

/*    border:none;*/

/*    border-bottom: 1px solid whitesmoke;*/

/*    border-radius: 0;*/

/*}*/

/*.contact .inner textarea::placeholder{*/

/*    color:rgb(173, 173, 173);*/

/*}*/

/*.contact .inner .left button{*/

/*    width:100%;*/

/*    height:2.5rem;*/

/*    border:none;*/

/*    background:#F16623;*/

/*    font-size: 1rem;*/

/*    border-radius:1rem;*/

/*    color:#fff;*/

/*    margin-top:1.8rem;*/

/*}*/

/*.contact .inner .right i{*/

/*    color:#5abe98;*/

/*}*/

/*.contact .inner .right h3{*/

/*    font-size: 3rem;*/

/*    margin-bottom:2rem;*/

/*}*/

/*.contact .inner .right h5{*/

/*    font-size:1.5rem;*/

/*    margin-left:0.4rem;*/

/*}*/

/*.contact .inner .right p{*/

/*    color:rgb(173, 173, 173);*/

/*    margin-bottom:1.5rem;*/

/*}*/

/*.contact .inner .right a{*/

/*    color:#fff;*/

/*    text-decoration: none;*/

/*}*/

/* Testimonial part starts here */

.img-txt2 {
    width: 100%;
}

.contact-form {
    padding-top: 10rem;
}

.img-txt2 .inner {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
    padding-top: 0;
}

.img-txt2 .inner h3 {
    font-size: 2.4rem;
    font-weight: 700;
}

.img-txt2 .inner p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.img-txt2 .item {
    width: 100%;
    position: relative;
}

.img-txt2 .item img {
    width: 20%;
    border-radius: 50%;
    margin-left: 2rem;
}

.img-txt2 .item .content {
    position: relative;
    top: 1.3rem;
    left: 1rem;
}

.img-txt2 .item .image {
    width: 100%;
}

.img-txt2 .item p {
    background-color: rgb(185, 185, 185);
    color: #000000;
    padding: 2rem 3rem;
    position: relative;
    border-radius: 1rem;
}

.img-txt2 .item p::after {
    content: "";
    width: 45px;
    height: 45px;
    background-color: rgb(185, 185, 185);
    position: absolute;
    bottom: -0.5rem;
    left: 5rem;
    transform: rotate(45deg);
}

.img-txt2 .item .content h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.img-txt2 .item .content span {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    top: -0.5rem;
}

.testimonial2 {
    width: 100%;
    padding: 3rem 0;
    background-color: #f7f7f7;
}

.testimonial2 .inner {
    width: 82%;
    margin: 0 auto;
}

.testimonial2 h3 {
    width: 80%;
    margin: 0 auto;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.testimonial2 .owl-theme {
    width: 100%;
}

.testimonial2 .item img {
    width: 80%;
}

.errors {
    /*padding:1rem 0;*/
    color: #ff0000;
}

.show {
    display: block;
}

/* only content starts here  */

.only-content {
    width: 100%;
    padding: 3rem 0;
}

.only-content .h-title {
    margin-top: 8rem;
}

.only-content .inner {
    width: 95%;
    margin: 0 auto;
}

.only-content img {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.only-content h1 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffa31a;
}

.only-content h4 {
    display: flex;
    justify-content: space-between;
}

.normal {
    transform: rotate(0deg);
    position: relative;
    top: 0.5rem;
}

.hover {
    position: relative;
    top: -0.1rem;
    transform: rotate(180deg);
}

.only-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
    /*color: #ffa31a;*/
}

.only-content ul li {
    margin-top: 1rem;
}

.only-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.4rem;
    color: #ffa31a;
    /*display:inline-block;*/
    text-align: center;
}

.only-content p {
    font-size: 1rem;
    line-height: 1.8rem;
    text-align: justify;
}

.success {
    width: 400px;
    height: 600px;
    text-align: center;
    position: absolute;
    top: 10%;
    left: 55%;
    color: #000;
    padding: 8px 0;
    z-index: 9999;
    font-weight: 700;
}

.alert {
    width: 400px;
    height: 600px;
    background: yellow !important;
    text-align: center;
    position: absolute;
    top: 10%;
    left: 55%;
    color: red;
    padding: 8px 0;
    z-index: 9999;
}


/***extra extra 




/*** Service Start ***/
.service1 {
    position: relative;
    overflow: hidden;
    background-image: url(../img/servicebg2.jpeg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.service1::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service1 .service1-section {
    position: relative;
    z-index: 5;
}

.service1 .service1-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service1 .service1-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service1 .service1-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: -1;
}

.service1 .service1-item:hover:after {
    height: 100%;
}

.service1 .service1-item i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service1 .service1-item:hover i {
    color: var(--bs-white);
}

.service1 .service1-item .service-content {
    position: relative;
    z-index: 3;
}

.service1 .service1-item .service1-content p {
    transition: 0.5s;
}

.service1 .service1-item:hover .service1-content p {
    color: var(--bs-white);
}

.service1 .service1-item .service1-content a.h4 {
    transition: 0.5s;
}

.service1 .service1-item:hover .service1-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/
