/********** Template CSS **********/
/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: var(--bs-dark);
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 8rem;
    padding-bottom: 3rem;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}


/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Deal ***/
.deal {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.deal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg-white {
    position: relative;
    z-index: 1;
}

.deal .cdt span {
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 200;
    text-transform: capitalize;
}


/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.how-to-use::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}


/*** Product ***/
.product-item {
    transition: .1s;
}

.product-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.product-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2) !important;
    margin: 0 auto 20px auto;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-dark);
}


/*** Blog ***/
.blog-item {
    transition: .1s;
}

.blog-item:hover {
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.blog-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Newsletter ***/
.newsletter {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, .3);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
    font-size: 15px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: white;
}

.feature-card.reports {
    background:url("../img/Avi-Events-Image.png");
    background-size: cover;
    background-position: center;
    
}

.feature-card.magazines {
    background: url("../img/Avi-Magazine-Image.png");
    background-size: cover;
    background-position: center;
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #2c3e50;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.service-card.global { background: #34495e; }
.service-card.records {
    background:url("../img/background-lines.svg") 0 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-size: 500%;
    }
.service-card.funding { background: #2980b9; }

.service-icon {margin-bottom: 20px;}

.service-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-bar {
    background-color: #38a6c7;
    padding: 10px 0;
}
.social-icons a {
    color: #495057;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #0d6efd;
}
.login-btn {
    font-size: 14px;
    padding: 5px 15px;
}
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    .social-icons, .login-container {
        justify-content: center;
        margin-bottom: 10px;
    }
    .social-icons a {
        margin: 0 8px;
    }

    .member-login {
        display: flex;
        justify-content: flex-end;
    }
}

.btn-outline-custom {
    color: #ffffff;
    border-color: #ffffff;
    border: 2px solid #fff;
}

/** our birds **/

.birds {
     padding-top: 90px;
     background: #ebebea;
}

.birds .titlepage p {
     color: #040101;
     line-height: 30px;
     padding-top: 30px;
     display: block;
}

.our_birds {
     position: relative;
}

.positi_abso {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
}

.padding_01 {
     padding: 0;
}

.our_birds .carousel-item img {
     width: 100%;
}


/* slider bird1 */

#bird1 a.carousel-control-next,
#bird1 a.carousel-control-prev {
     background: #eae5e9;
     width: 67px;
     height: 59px;
     top: 28%;
     opacity: 1;
     font-size: 33px;
     color: #1b2713;
}

#bird1 a.carousel-control-next {
     left: inherit;
     right: -5%;
     z-index: 9;
}

#bird1 .carousel-control-prev {
     display: none;
}

#bird1 a.carousel-control-next:focus,
#bird1 a.carousel-control-next:hover,
#bird1 a.carousel-control-prev:focus,
#bird1 a.carousel-control-prev:hover {
     background: #0e90ed;
     color: #fff;
     opacity: 1;
}


/* end slider bird1 */


/*  slider bird2 */

#bird2 a.carousel-control-next,
#bird2 a.carousel-control-prev {
     background: #b9c2b6;
     color: #1b2713;
     width: 67px;
     height: 59px;
     top: 70%;
     opacity: 1;
     font-size: 33px;
}

#bird2 a.carousel-control-next {
     left: inherit;
     right: 8%;
     z-index: 9;
}

#bird2 .carousel-control-prev {
     display: none;
}

#bird2 a.carousel-control-next:focus,
#bird2 a.carousel-control-next:hover,
#bird2 a.carousel-control-prev:focus,
#bird2 a.carousel-control-prev:hover {
     background: #0e90ed;
     color: #fff;
     opacity: 1;
}


/* end slider bird2 */


/*  slider bird3 */

#bird3 a.carousel-control-next,
#bird3 a.carousel-control-prev {
     background: #b9c2b6;
     color: #1b2713;
     width: 67px;
     height: 59px;
     top: -6%;
     opacity: 1;
     font-size: 33px;
}

#bird3 a.carousel-control-next {
     left: inherit;
     right: 41%;
     z-index: 9;
}

#bird3 .carousel-control-prev {
     display: none;
}

#bird3 a.carousel-control-next:focus,
#bird3 a.carousel-control-next:hover,
#bird3 a.carousel-control-prev:focus,
#bird3 a.carousel-control-prev:hover {
     background: #0e90ed;
     color: #fff;
     opacity: 1;
}


/* end slider bird3 */


/* slider bird4 */

.margin_topmini70p {
     margin-top: -51px;
}

#bird4 a.carousel-control-next,
#bird4 a.carousel-control-prev {
     background: #1d2b12;
     width: 67px;
     height: 59px;
     top: 75%;
     opacity: 1;
     font-size: 33px;
}

#bird4 .carousel-control-prev {
     left: -6%;
     z-index: 9;
}

#bird4 a.carousel-control-next {
     display: none;
}

#bird4 a.carousel-control-next:focus,
#bird4 a.carousel-control-next:hover,
#bird4 a.carousel-control-prev:focus,
#bird4 a.carousel-control-prev:hover {
     background: #0e90ed;
     color: #fff;
     opacity: 1;
}


/* end slider bird4 */
/** end our birds **/

#home {
  clip-path: url(#cache);
}

#red {
  fill: none;
  opacity: 0.15;
  stroke: #90bc79;
  stroke-width: 12;
  stroke-miterlimit:10;
  animation: show 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out; 
}

#blue {
  fill: none;
  opacity: 0.15;
  stroke: #06A1C4;
  stroke-width: 12;
  stroke-miterlimit:10;
  animation: show 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

#light-blue {
  fill: none;
  opacity: 0.15;
  stroke: #06A1C4;
  stroke-width: 6;
  stroke-miterlimit:10;
  stroke-dasharray: 200;
  stroke-dashoffset: 800;
  animation: draw 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;    
}

@keyframes draw {
        to {
            stroke-dashoffset: 0;
        }
    }

@keyframes show {
        0% {
            opacity: 0.15;
        }
        50% {
            opacity: 0.2;
        }
        100% {
            opacity: 0.15;
        }
    }
svg#home-anim {
    position: absolute;
    width: 100%;
    height: auto;
}

a.btn.btn-square.btn-outline-custom.me-1 {
    height: 28px;
    width: 28px;
}

.btn-outline-custom {
    color: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}

.top-bar {
    background-color: rgb(56, 166, 199);
    padding: 5px 0px;
}

.top-bar i.fab {
    font-size: 13px;
}

@media (max-width: 767px) {
    .join-now-btn {
        margin-bottom: 15px !important;
    }
}

.container-fluid.bg-white.footer {
    font-size: 15px !important;
}