
/*** Spinner Start ***/
#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: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    /* background: white; */
    /* background: rgb(255,255,255);
    background: linear-gradient(24deg, rgba(255,255,255,1) 23%, rgba(7,192,210,1) 100%); */
    background-image: url('../../img/hero-header-bg.jpg');
    background-size: fill;
    transition: 1s;
    font-size: 16px;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 40px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    color: black; 
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    color: black;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color:  #FF7800;
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 10px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        /* width: 100%; */
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        /* background: var(--bs-white); */
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.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 .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 5px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        /* width: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: var(--bs-white); */
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        /* background: var(--bs-light); */
        transition: .5s;
        opacity: 1;
        font-size: 16px;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
/* .header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
} */
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    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);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.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: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.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);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

/* crousel */
.carousel slide
{
    height: 100vh;
}
.carousel-item
{ 
    height: calc(100vh - 110px);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
}
.carousel .carousel-indicators button {
   width: 10px;
   height: 10px;
   border-radius: 100%;
   background-color: #FF7800;
   top: 20px;
 }
 @media (min-width: 992px) {
       .carousel-indicators {
        width: initial; /* initial resets css to default */
        margin-left: initial;
        left: 310px;
        top: initial;
        right: initial; /*horizontal position */
        bottom: 100px; /* vertical position */
    }
}

/* crousel */


/* custom wafiya color */
.wafiyaorangebg
{
    background-color: #FF7800;
}
.wafiyaorangefont
{
    color: #FF7800;
}
.wafiyabluebg
{
    /* background-color: #001441; */
    background-color: #011C39;
}
.wafiyabluefont
{
    color: #011C39;
}
.wafiyaskybg
{
    background-color: #27AAE1;
}
.wafiyaskyfont
{
    color: #27AAE1;
}
.wafiyagreenbg
{
    background-color: #007059;
}
.wafiyagreenfont
{
    color: #007059;
}
.diamondgoldbg
{
    background-color: #CF9A2C;
}
.diamondgoldfont
{
    color: #CF9A2C;
}
.diamondgoldborder
{
    border-color: #CF9A2C;
}
/* custom wafiya color */


/* card hover */
.cardhover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier( .25, .8, .25, 1);
    position: relative;
    margin-bottom: 2em;
  }
  
  .cardhover:hover {
  box-shadow: 0 14px 20px rgba( 0, 0, 0, 0.1 ), 0 10px 10px rgba( 0, 0, 0, 0.1 );
    transition: .3s;
  }
  
  /* card hover */



  /* card badge */
.badge1 {
    position: absolute;
    background-color: #007059;
    text-align:center;
    line-height:30px;
    width:45%;
    height:30px;
    color:white;
    font-size: 12px;
  }
  
  .badge1:after {
    content:"";
    position: absolute;
    top: 0px;
    transform: skew(-20deg);
    left:-15px;
    width:30px;
    height:inherit;
    background-color:#007059;
    border-radius: 4px 0px 0px 4px;
  }
  .badge1:before {
    content:"";
    position: absolute;
    top: 7px;
    transform: skewY(-30deg);
    right:0px;
    width:20px;
    height:inherit;
    background-color:black;
    z-index:-10;
  }
  .badge1 {
    top: 5px;
    right: -6px;
  }



  .badge2 {
    position: absolute;
    background-color: #FF7800;
    text-align:center;
    line-height:30px;
    width:45%;
    height:30px;
    color:white;
    font-size: 12px;
  }
  
  .badge2:after {
    content:"";
    position: absolute;
    top: 0px;
    transform: skew(-20deg);
    left:-15px;
    width:30px;
    height:inherit;
    background-color:#FF7800;
    border-radius: 4px 0px 0px 4px;
  }
  .badge2:before {
    content:"";
    position: absolute;
    top: 7px;
    transform: skewY(-30deg);
    right:0px;
    width:20px;
    height:inherit;
    background-color:black;
    z-index:-10;
  }
  .badge2 {
    top: 5px;
    right: -6px;
  }
  
  
  
  .badge3 {
    position: absolute;
    background-color: #007059;
    text-align:center;
    line-height:30px;
    width:45%;
    height:30px;
    color:white;
    font-size: 12px;
  }
  
  .badge3:after {
    content:"";
    position: absolute;
    top: 0px;
    transform: skew(-20deg);
    left:-15px;
    width:30px;
    height:inherit;
    background-color:#007059;
    border-radius: 4px 0px 0px 4px;
  }
  .badge3:before {
    content:"";
    position: absolute;
    top: 7px;
    transform: skewY(-30deg);
    right:0px;
    width:20px;
    height:inherit;
    background-color:black;
    z-index:-10;
  }
  .badge3 {
    top: 5px;
    right: -6px;
  }
  
  
  .badge4 {
    position: absolute;
    background-color: #CF9A2C;
    text-align:center;
    line-height:30px;
    width:45%;
    height:30px;
    color:white;
    font-size: 12px;
  }
  
  .badge4:after {
    content:"";
    position: absolute;
    top: 0px;
    transform: skew(-20deg);
    left:-15px;
    width:30px;
    height:inherit;
    background-color:#CF9A2C;
    border-radius: 4px 0px 0px 4px;
  }
  .badge4:before {
    content:"";
    position: absolute;
    top: 7px;
    transform: skewY(-30deg);
    right:0px;
    width:20px;
    height:inherit;
    background-color:black;
    z-index:-10;
  }
  .badge4 {
    top: 5px;
    right: -6px;
  }
  
  
  
  
  
  .footer-link
  {
    color: rgb(156, 155, 155);
    transition: all 0.5s ease;

  }
  .footer-link:hover
  {
    color: #FF7800;
    letter-spacing: 0.7px;
  }

  .footer-social
  {
    padding: 5px;
  }
  
/* card badge */

/* social icon */
.icon-button {
	background-color: #1b3061;
	border-radius: 2rem;
	cursor: pointer;
	display: inline-block;
	font-size: 1.2rem;
	height: 2rem;
	line-height: 2rem;
	margin: 0 5px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 2rem;
}

/* Circle */
.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 0;
}
.icon-button:hover span {
	width: 2rem;
	height: 2rem;
	border-radius: 2rem;
	margin: -1rem;
}
.facebook span {
	background-color: #168AFF;
}

.whatsapp span {
	background-color: #25D366;
}
.messenger span {
	background-color: #168AFF;
}

/* Icons */
.icon-button i {
	background: none;
	color: white;
	height: 2rem;
	left: 0;
	line-height: 2rem;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 2rem;
	z-index: 10;
}
.icon-button .fa-facebook {
	color: #168AFF;
}
.icon-button .fa-facebook-messenger {
	color: #168AFF;
}
.icon-button .fa-whatsapp {
	color: #25D366;
}

.icon-button:hover .fa-whatsapp,
.icon-button:hover .fa-facebook,
.icon-button:hover .fa-facebook-messenger
{
	color: white;
}
/* social icon */


/* map with comments */
.map-container {
    padding: 3.2rem .8rem;
    position: relative;
    display: inline-block;
    img {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
      }
    .point {
        cursor: pointer;
        position: absolute;
        width: 1.6rem;
        height: 1.6rem;
        background-color:  #27AAE1;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 50%;
        transition: all .3s ease;
        will-change: transform, box-shadow;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 rgba(#27AAE1, 0.4);
        animation: pulse 2s infinite;
    }
}

.map-container .point:hover
{
    animation: none;
    transform:  translate(-50%, -50%) scale3D(1.85, 1.85 ,1);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(1, 44, 68, 0.4);
      }
      100% {
        box-shadow: 0 0 0 15px rgba(2, 73, 114, 0);
      }
  }
  
/* map with comments */

/* Popover */
.popover {
    border: 2px solid #27AAE1;
  }
  


  
/* header call button */
.callbtn button {
    /* Generic styles for a button */
    width: 250px;
    margin: 0px auto;
    font-size: 1em;
    color: white;
    background-color: transparent;
    border: 0.1em solid white;
    padding: .5em 0em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 25px;
  }
  
  .callbtn button:hover {
    /* Generic Hover style for a button */
    color: black;
    border: 0.1em solid white;
  }
  
  .callbtn button::after {
    /* Adds the overlay for creating slide effect */
    content: '';
    position: absolute;
    background-color: white;
    z-index: -1;
    padding: 0.25em 0.5em;
    display: block;
    transition: all 0.35s;
  }
  
  .callbtn button:hover::after {
    /* Hover effect for the overlay slide effect */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.35s;
  }
  
  .top-slide::after {
    top: -100%;
    bottom: 100%;
    left: 0;
    right: 0;
  }
/* header call button */



/* custom ribbon */
/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 14px;
    color: #fff;
  }
  .ribbon {
    --f: .5em; /* control the folded part */
    
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-image: conic-gradient(#0008 0 0) 51%/var(--f);
    clip-path: polygon(
      100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
    transform-origin: 0% 100%;
    background-color: #FF7800; /* the main color  */
  }


  .ribbon1 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
  }
  .ribbon1 {
    --f: .4em; /* control the folded part */
    --r: .8em; /* control the cutout */
    
    width: 120px;
    height: 90px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: calc(-1*var(--f));
    padding: .7em;
    border: solid #0000;
    border-width: 0 0 var(--r) calc(2*var(--f));
    background: 
      radial-gradient(50% 100% at bottom,#0005 98%,#0000 101%) 
      0 0/calc(2*var(--f)) var(--f) no-repeat border-box;
    background-color: #007059;
    border-radius: var(--f) var(--f) 0 0;
    clip-path: polygon(0 0,100% 0,100% 100%,calc(50% + var(--f)) calc(100% - var(--r)),calc(2*var(--f)) 100%,calc(2*var(--f)) var(--f),0 var(--f));
  }



  .ribbon2 {
    font-size: 14px;
    color: #fff;
  }
  .ribbon2 {
    --r: .8em; /* control the cutout */
    
    border-block: .5em solid #0000;
    padding-inline: .5em calc(var(--r) + .25em);
    line-height: 1.8;
    clip-path: polygon(100% 0,0 0,0 100%,100% 100%,calc(100% - var(--r)) calc(100% - .25em),100% 50%,calc(100% - var(--r)) .25em);
    background:
     radial-gradient(.2em 50% at left,#000a,#0000) border-box,
     #CF9A2C padding-box; /* the color  */
    width: fit-content;
  }



  .ribbon3 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
  }
  .ribbon3 {
    --f: .4em; /* control the folded part */
    --r: .8em; /* control the cutout */
    
    width: 120px;
    height: 90px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: calc(-1*var(--f));
    padding: .7em;
    border: solid #0000;
    border-width: 0 0 var(--r) calc(2*var(--f));
    background: 
      radial-gradient(50% 100% at bottom,#0005 98%,#0000 101%) 
      0 0/calc(2*var(--f)) var(--f) no-repeat border-box;
    background-color: #007059;
    border-radius: var(--f) var(--f) 0 0;
    clip-path: polygon(0 0,100% 0,100% 100%,calc(50% + var(--f)) calc(100% - var(--r)),calc(2*var(--f)) 100%,calc(2*var(--f)) var(--f),0 var(--f));
  }



  /* HTML: <div class="ribbon">Your text content</div> */
.ribbon4 {
    font-size: 14px;
    color: #fff;
  }
  .ribbon4 {
    --r: .8em; /* control the cutout */
    
    border-block: .5em solid #0000;
    padding-inline: .5em calc(var(--r) + .25em);
    line-height: 1.8;
    clip-path: polygon(100% 0,0 0,0 100%,100% 100%,calc(100% - var(--r)) calc(100% - .25em),100% 50%,calc(100% - var(--r)) .25em);
    background:
     radial-gradient(.2em 50% at left,#000a,#0000) border-box,
     #CF9A2C padding-box; /* the color  */
    width: fit-content;
  }



  
  .ribbon5 {
    font-size: 14px;
    color: #fff;
  }
  .ribbon5 {
    --f: .5em; /* control the folded part*/
    --r: .8em; /* control the ribbon shape */
    position: absolute;
    top: 10px;
    right: calc(-1*var(--f));
    padding-inline: 2em;
    line-height: 1.9;
    background: #007059;
    border-bottom: var(--f) solid #0005;
    border-left: var(--r) solid #0000;
    clip-path: 
      polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%,
        calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)),
        var(--r) calc(50% - var(--f)/2));
  }

  .ribbon6 {
    font-size: 14px;
    color: #fff;
  }
  .ribbon6 {
    --f: .5em; /* control the folded part*/
    --r: .8em; /* control the ribbon shape */
    position: absolute;
    top: 10px;
    right: calc(-1*var(--f));
    padding-inline: 2em;
    line-height: 1.9;
    background: #CF9A2C;
    border-bottom: var(--f) solid #0005;
    border-left: var(--r) solid #0000;
    clip-path: 
      polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%,
        calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)),
        var(--r) calc(50% - var(--f)/2));
  }
/* custom ribbon */




/* animation in hajj details page header */
.hajjdetailsheader {
    position: relative;
    animation: mymove 1.5s;
    z-index:-1;
  }
  @keyframes mymove {
    0% { opacity: 0; top:200px;}
    10% { opacity: 0.1;}
    20% { opacity: 0.2; }
    30% { opacity: 0.3; }
    40% { opacity: 0.4; }
    50% { opacity: 0.5; }
    60% { opacity: 0.6; }
    70% { opacity: 0.7; }
    80% { opacity: 0.8; }
    90% { opacity: 0.9; }
    100% { opacity: 1; top:0px;}
  }
/* animation in hajj details page header */


/* hajj details page feature card hover */


.featurecard {
    display: block;
    top: 0px;
    position: relative;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    border: 1px solid #33007d;
    transition: all 0.3s ease-out;
    cursor: pointer;
  
    &:hover {
      transition: all 0.2s ease-out;
      box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
      top: -4px;
      border: 1px solid #007059;
      background-color: white;

      img{
        transform: scale(1.3);
        transition: all 0.3s ease-out;
      }
    }
  
    &:before {
      content: "";
      position: absolute;
      z-index: -1;
      height: 32px;
      width: 32px;
      border-radius: 32px;
      transform: scale(2);
      transform-origin: 50% 50%;
      transition: transform 0.15s ease-out;
    }
  
    &:hover:before {
      transform: scale(2.15);
    }
  }
  
/* hajj details page feature card hover */


/* custom accordion */
.accordion {
    max-width: 100%;
    margin: 40px auto 0;
  }
  
  .at-tab {
    display: none;
    padding: 15px;
    border: 1px solid #dddddd;
    border-top: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin:0 20px;
  }
  
  .at-title {
    cursor: pointer;
    background-color: #ffffff;
    position: relative;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #dddddd;
    border-radius: 25px;
  }
  
  
  .at-title:hover {
    background-color: #e0e0e0;
    border-bottom: 1px solid #dddddd;
  }
 
  .at-title:after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: all 0.3s ease;
    font-size: 24px;
    color:#33007d;
  }

  .at-title.active
  {
    background-color: #33007d;
    color:rgb(255, 255, 255);
  }

  .at-title.active h2
  {
    color:white;
  }

  .at-title.active img {
    width:30px;
    padding:5px;
    background-color:white;
  }
  
  
  .at-title.active:after {
    content: "-";
    color:white;
  }
  
  .at-item {
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .at-title h2 {
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 15px;
    margin: 0px 0px 0px 30px;
    color:rgb(75, 74, 74);
  }


  .at-title img {
    width:30px;
    padding:5px;
    /* background-color:rgb(226, 250, 238); */
    border:1px solid #5001c5;
  }
  
  
/* custom accordion */

/* image overlay in exclusive offer section in air ticket */
.single-img {
    position: relative;
    float: left;
    margin: 0 1%;
  }
  
  .image {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #07C0D2;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
  }
  
  .single-img:hover .img-overlay {
    height: 100%;
  }
  
  .text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: poppins;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
  }
  .text span{
    font-weight: 300;
  }



  .single-img1 {
    position: relative;
    float: left;
  }
  
  .image1 {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .img-overlay1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(7, 192, 210, 0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
  }
  
  .single-img1:hover .img-overlay1 {
    height: 100%;
  }
  
  .text1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: poppins;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
  }
  .text1 span{
    font-weight: 300;
  }
/* image overlay in exclusive offer section in air ticket */

	/* Custom style */
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
        transform: scale(.7) !important;
      }
      .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
      }


      img {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
        
      }