/* Fonts */
:root {
    --font-default: "Montserrat", sans-serif;
    --font-default: "Montserrat", sans-serif;
    --font-secondary: "Montserrat", sans-serif;
}

/* Colors */
:root {
    --color-default: #0a0d13;
    --color-primary: #002244;
    --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
    /* background-color: #000; */
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: #406aff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-default);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #001973;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-header1 {
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.section-header1 h2 {
    font-size: 32px;
    font-weight: 600;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-header1 h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-header span {
    position: absolute;
    top: 46px;
    color: rgba(14, 29, 52, 0.06);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 56px;
    text-transform: uppercase;
    line-height: 0;
}

.section-header p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-header span {
        font-size: 38px;
    }

    .section-header1 h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-header1 span {
        font-size: 38px;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
    padding: 140px 0 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
    content: "";
    background-color: rgba(14, 29, 52, 0.8);
    position: absolute;
    inset: 0;
}

.breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
    background-color: #f3f6fc;
    padding: 20px 0;
}

.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
}

.breadcrumbs nav ol a {
    color: var(--color-primary);
    transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
    text-decoration: underline;
}

.breadcrumbs nav ol li+li {
    padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4278cc;
    content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: rgba(13, 66, 255, 0.8);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

/* 
#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
} */

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    background-color: #fff;
    border-bottom: 1px dashed #000;
}

.header.sticked {
    background: #fff;
    padding: 5px 0;
    box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header img {
    max-height: 50px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-default);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 3px 8px 3px 8px;
        font-family: var(--font-default);
        font-size: 16px;
        font-weight: 600;
        color: #032248;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #032248;
        border: 1px solid #032248;
    }

    .navbar .get-a-quote,
    .navbar .get-a-quote:focus {
        margin-left: 30px;
        font-family: var(--color-default);
        display: inline-block;
        padding: 5px 15px;
        font-size: 16px;
        font-weight: 600;
        color: #032248;
        border-radius: 5px;
        /* border: 1px solid #002244; */
        transition: .5s;
        background: #ffffff;
    }

    .navbar .get-a-quote:hover,
    .navbar .get-a-quote:focus:hover {
        color: #fff;
        background: #032248;
        color: #ffffff;
        font-weight: 500;
        border: 2px solid #fff;
        font-family: var(--color-default);
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: var(--color-secondary);
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(14, 29, 52, 0.9);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        font-family: var(--font-default);
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .get-a-quote,
    .navbar .get-a-quote:focus {
        margin-left: 30px;
        font-family: "SourceSerifPro-Regular";
        display: inline-block;
        padding: 14px 35px;
        font-size: 18px;
        font-weight: 600;
        color: #002244;
        border-radius: 5px;
        border: 1px solid #002244;
        transition: .5s;
        background: #ffffff;
    }

    .navbar .get-a-quote:hover,
    .navbar .get-a-quote:focus:hover {
        color: #fff;
        background: rgba(13, 66, 255, 0.8);
        background: -webkit-linear-gradient(-80deg, #253074, #002244);
        transform: scale(1.1);
        color: #ffffff;
        font-weight: 800;
        border: solid 3px #002244;
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #19335c;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: #000000;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(14, 29, 52, 0.8);
        z-index: 9996;
    }
}


.navbar .btn-get-started {
    font-family: "SourceSerifPro-Regular";
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.5s;
    /* letter-spacing: 1px; */
    color: #000000;
    background: -webkit-linear-gradient(30deg, #ffffff, #ffffff);
    border: solid 3px #002244;
}

.navbar .btn-get-started:hover {
    background: -webkit-linear-gradient(-80deg, #253074, #002244);
    transform: scale(1.1);
    color: #ffffff;
    font-weight: 800;
    border: solid 3px #002244;
}

.btn-get-started {
    display: inline-block;
    padding: 14px 35px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #002244;
    border-radius: 5px;
    border: 1px solid #002244;
    transition: .5s;
    background: #ffffff;
}

.btn-get-started:hover {
    background: -webkit-linear-gradient(-80deg, #253074, #002244);
    color: #ffffff;
    font-weight: 800;
    border: solid 3px #002244;
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured-services {
    background-color: #ffffff;
}

.featured-services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

.featured-services .service-item .icon {
    margin-right: 20px;
}

.featured-services .service-item .icon i {
    color: #001f8d;
    font-size: 48px;
    transition: 0.3s;
}

.featured-services .service-item:hover .icon {
    background: #fff;
}

.featured-services .service-item:hover .icon i {
    color: var(--color-primary);
}

.featured-services .service-item .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--color-secondary);
    transition: 0.3s;
}

.featured-services .service-item .description {
    font-size: 15px;
    color: #132848;
    margin-bottom: 10px;
}

.featured-services .service-item .readmore {
    display: flex;
    align-items: center;
    color: var(--color-secondary);
    transition: 0.3s;
    font-weight: 700;
    font-size: 14px;
}

.featured-services .service-item .readmore i {
    margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/

.about {
    background: #ffffff;
}

.about p {
    font-family: var(--font-default);
    font-size: 17px;
    line-height: 25px;
}

.about .content {
    /* background-image: url(../img/container.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat; */
    background-color: #fff;
}

.about .content h3 {
    font-weight: 700;
    font-size: 32px;
    font-family: var(--font-secondary);
    color: #001f8d;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}

.about .content ul i {
    flex-shrink: 0;
    font-size: 48px;
    color: var(--color-primary);
    margin-right: 20px;
    line-height: 0;
}

.about .content ul h5 {
    font-size: 18px;
    font-weight: 700;
    color: #19335c;
}

.about .content ul p {
    font-size: 15px;
}

.about .content p:last-child {
    margin-bottom: 0;
}


.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(13, 66, 255, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.about .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


.cube-parent-container {
    width: 100%;
    max-width: 600px;
    margin: 0;
}

/*  Aspect ratio as 1/1 or square */

.cubeSwiper .swiper-slide {
    aspect-ratio: 1/1;
}

/*  Set slide image to cover */

.cubeSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: solid 6px #002244; */
}

/*  Pagination as three column grid  */
.cubeSwiper .pagination-container {
    padding-top: 25px;
    /*  pagination grid container width set in absolute pixels as using 
      transform scale for responsiveness.  */
    width: 250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    /* Scale down pagination - i.e. bigger or smaller at your break points */
    transform: scale(0.8);
}

/* fraction/slide count */

.cubeSwiper .cube-pagination-fraction {
    color: rgba(255, 0, 255, 0.8);
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
    position: relative;
}

/* prev/next buttons */

.cube-button-prev,
.cube-button-next {
    cursor: pointer;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 500ms ease;
    filter: brightness(0.8);
    letter-spacing: 1px;
    font-weight: 700;
}

.cube-button-prev:hover,
.cube-button-next:hover {
    color: red;
    filter: brightness(0.95);
}




/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/



.services .card {
    border: 1px solid rgba(14, 29, 52, 0.15);
    background: #fff;
    position: relative;
    border-radius: 0;
    height: 100%;
}

.services .card .card-img {
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 0;
}

.services .card .card-img img {
    transition: 0.3s ease-in-out;
}

.services .card h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    padding: 10px 30px;
    text-transform: uppercase;
}

.services .upper-text {

    font-weight: 500;

}

.services .card a {
    color: #001973;
    transition: 0.3;
}

.services .card a:hover {
    color: var(--color-primary);
}

.services .card p {
    /* padding: 0 30px; */
    margin-bottom: 0px;
    color: var(--color-secondary);
    font-size: 15px;
    font-weight: 600;
}

.services .card:hover .card-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../img/cta-bg.jpg") center center;
    background-size: cover;
    padding: 100px 0;
}

@media (min-width: 1365px) {
    .call-to-action {
        background-attachment: fixed;
    }
}

.call-to-action h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: #fff;
}

.call-to-action .cta-btn {
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.call-to-action .cta-btn:hover {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    padding-top: 80px;
    background-color: #ffffff;
}

.features .features-item+.features-item {
    margin-top: 100px;
}

@media (max-width: 640px) {
    .features .features-item+.features-item {
        margin-top: 40px;
    }
}

.features .features-item h3 {
    font-weight: 600;
    font-size: 26px;
    color: #001973;
}

.features .features-item ul {
    list-style: none;
    padding: 0;
}

.features .features-item ul li:last-child {
    padding-bottom: 0;
}

.features .features-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.features .features-item p:last-child {
    margin-bottom: 0;
}



.features .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.features .content ul {
    list-style: none;
    padding: 0;
}

.features .content ul li {
    padding-bottom: 10px;
}

.features .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #cc1616;
}

.about .content p:last-child {
    margin-bottom: 0;
}


.features .content+.content {
    margin-top: 100px;
}

/* .about .content h4 {
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
  } */

/* .about .content p {
    font-size: 19px;
    color: #fff;
    line-height: 24px;
    text-align: justify;
  } */

/* .about .content p span {
    font-size: 19px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    line-height: 22px;
  } */

.features img {
    padding: 10px;
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing {

    background-color: #ffffffe5;
}

.pricing-area {
    /* padding: 115px 0px 120px 0px; */
    background: url(assets/images/pfbg2.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pricing-area .sub-title h5::before {
    left: -204px;
}

.pricing-area .sub-title h5::after {
    left: -240px;
}

.pricing-area .sub-title h5 span::before {
    right: -199px;
}

.pricing-area .sub-title h5 span::after {
    right: -235px;
}

.pricing-area .sub-title h2 {
    color: #fff;
}

.pricing-area .sub-title h5 {
    color: #fff;
}

.single-pricing-box {
    padding: 30px 35px 21px;
    position: relative;
    z-index: 1;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    transition: .5s;
    margin-top: 20px;
    box-shadow: 0 0 5px #000;

}

.pricing-left {
    text-align: center;
    /* padding-left: 40px; */

}

.pricing-left h3 {
    font-size: 22px;
    color: #001973;
    /* text-transform: capitalize; */
    font-weight: 700;
}

.pricing-left p {
    font-size: 30px;
    position: relative;
    /* top: 20px; */
    color: #002244;
    font-weight: 800;
    margin-top: 20px;
}

.pricing-left p span {
    font-size: 30px;
    position: relative;
    /* top: -1px; */
    color: #002244;
}

.pricing-center {
    transition: .5s;
    border-top: none;
    margin-top: 0;
    justify-content: center;
    display: flex;
    border-left: 1px solid #e9ebeb;
    border-right: 1px solid #e9ebeb;
    text-align: center;
}

.pricing-center2 {
    transition: .5s;
    border-top: none;
    margin-top: 0;
    justify-content: center;
    display: flex;
    border-left: 1px solid #e9ebeb;
    border-right: 1px solid #e9ebeb;
    text-align: center;
}

.pricing-center h4 {
    display: block;
    list-style: none;
    font-size: 22px;
    padding: 5px 0 5px;
    color: #001973;
    font-weight: 600;
}

.pricing-center2 h4 {
    display: block;
    list-style: none;
    font-size: 22px;
    padding: 5px 0 5px;
    color: #002244;
    font-weight: 600;
}

.pricing-button {
    position: relative;
    top: 50px;
    text-align: center;
    transition: .5s;

}

@media (max-width: 991px) {

    .pricing-button {
        position: relative;
        top: 0;
        text-align: center;
        transition: .5s;

    }
}


.pricing-button a {
    display: inline-block;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 600;
    color: #002244;
    border-radius: 5px;
    border: 1px solid #002244;
    transition: .5s;
    background: #ffffff;
}

.single-pricings-boxs {
    padding: 30px 35px 21px;
    position: relative;
    z-index: 1;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    transition: .5s;
    margin-top: 20px;
}

.single-pricings-boxs::before {
    content: '* 5 Rating';
    color: #fff;
    background: #ff8800;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    top: 85px;
    left: -53px;
    transform: rotate(90deg);
}

.single-pricings-boxs .pricing-center {
    border-left: 1px solid #002244;
    border-right: 1px solid #002244;
}

.single-pricings-boxs .pricing-button a {
    color: #fff;
    background: linear-gradient(to left, #253074, #002244);
}

.single-pricing-box:hover .pricing-button a {
    background: linear-gradient(to left, #253074, #002244);
    color: #fff;
}

.single-pricings-boxs:hover {
    transform: translate3d(-10px, 0, 0);
}

.single-pricing-box:hover {
    transform: translate3d(-10px, 0, 0);
}

.single-pricing-box:hover .pricing-center {
    border-color: #002244;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-area {
        padding: 65px 0px 70px 0px;
    }

}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    .pricing-area {
        padding: 70px 0px 80px 0px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 599px) {
    .pricing-area {
        padding: 80px 0px 70px 0px;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
    padding-top: 80px;
}

.faq .accordion-item {
    border: 0;
    margin-bottom: 10px;
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 30px 20px 60px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--color-default);
    text-align: left;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    border-bottom: 0;
    box-shadow: none;
}

.faq .question-icon {
    position: absolute;
    top: 14px;
    left: 25px;
    font-size: 20px;
    color: var(--color-primary);
}

.faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
}

.faq .accordion-body {
    padding: 0 30px 25px 60px;
    border: 0;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/awardsbg.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 29, 52, 0.7);
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.6);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
    padding: 30px;
    width: 100%;
}

.stats-counter .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.stats-counter .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.stats-counter .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
    margin: -1px -1px 30px -1px;
}

.team .member .member-content {
    padding: 0 20px 30px 20px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #6c757d;
}

.team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #6c757d;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    color: rgba(14, 29, 52, 0.5);
    transition: 0.3s;
}

.team .member .social a:hover {
    color: var(--color-primary);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
    box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
    padding-bottom: 30px;
    background: #fff;
    height: 100%;
    position: relative;
}

.horizontal-pricing h3 {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 24px;
    color: var(--color-secondary);
}

.horizontal-pricing h4 {
    font-size: 48px;
    color: var(--color-primary);
    font-weight: 400;
    font-family: var(--font-default);
    margin-bottom: 25px;
    text-align: center;
}

.horizontal-pricing h4 sup {
    font-size: 28px;
}

.horizontal-pricing h4 span {
    color: rgba(108, 117, 125, 0.8);
    font-size: 18px;
}

.horizontal-pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #6c757d;
    text-align: left;
    line-height: 20px;
}

.horizontal-pricing ul li {
    padding-top: 15px;
    display: flex;
    align-items: center;
}

.horizontal-pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.horizontal-pricing ul .na {
    color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na i {
    color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na span {
    text-decoration: line-through;
}

.horizontal-pricing .buy-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    font-family: var(--font-default);
}

.horizontal-pricing .buy-btn:hover {
    background: #406aff;
    border-color: #406aff;
}

.horizontal-pricing .featured {
    background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
    color: #fff;
}

.horizontal-pricing .featured .buy-btn {
    background: var(--color-primary);
    color: #fff;
    border-color: #fff;
}

.horizontal-pricing .featured .buy-btn:hover {
    background: #fff;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.get-a-quote .php-email-form {
    background: #f3f6fc;
    padding: 40px;
    height: 100%;
}

@media (max-width: 575px) {
    .get-a-quote .php-email-form {
        padding: 20px;
    }
}

.get-a-quote .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

.get-a-quote .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-a-quote .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-a-quote .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
    border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
    padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
    padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
    background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    font-size: 20px;
    background: var(--color-primary);
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: rgba(13, 66, 255, 0.8);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    padding: 10px 30px;
    border: 1px solid #d3dff3;
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid #c2cbdf;
    margin: 20px 0;
    color: var(--color-secondary);
    transition: 0.3s;
}

.service-details .services-list a.active {
    font-weight: 700;
    border-color: var(--color-primary);
}

.service-details .services-list a:hover {
    border-color: var(--color-primary);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.section-bg {
    background-color: #fff;
}


.hero {
    width: 100%;
    background: linear-gradient(to right, #ffffff 30%, #ffffffd3 45%, #ffffff00 80%), url(../img/bgimage4.jpg);
    /* background-color: var(--color-secondary); */
    background-size: contain;
    background-position: right;
    /* background-attachment: fixed; */
    position: relative;
    padding: 100px 0 40px 0;
    color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px dashed #000000;
    background-repeat: no-repeat;
    /* background-color: #ffffff9f; */

}

.hero2 {
    background-image: linear-gradient(145deg, #ffffff, #ffffff, #ffffff);
    border-bottom: 1px dashed #fff;
}

.hero2 h4 {
    color: #002244;
    font-family: var(--font-default);
    font-weight: 600;
}


.hero1 {
    background-image: linear-gradient(145deg, #002244, #354a9e, #002244);
    border-bottom: 1px dashed #fff;
}

.hero1 h4 {
    color: #fff;
    font-family: var(--font-default);
}
.hero h4 {
    padding: 0;
    /* font-size: 48px; */
    font-weight: 600;
    color: #000;
    font-family: var(--font-default);
}

.hero h4 i {
    font-size: 36px;
    padding: 0;
    /* font-size: 48px; */
    font-weight: 600;
    color: #000;
    padding: 10px;
    font-family: var(--font-default);
}

@media (max-width: 991px) {
    .hero {
        width: 100%;
        min-height: 50vh;
        background: linear-gradient(90deg, #ffffff 60%, #ffffff 60%);
        background-size: cover;
        background-position: center;
        position: relative;
        padding: 80px 0 20px 0;
        color: rgba(0, 0, 0, 0.8)
    }
    .hero h4 {
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-default);
}

.hero h4 i {
    font-size: 16px;
    padding: 0;
    font-weight: 600;
    color: #000;
    padding: 0px;
    font-family: var(--font-default);
}
}

@media (max-width: 771px) {
    .hero h2 {
        font-size: 30px;
    }
    .hero2 h4 {
    color: #002244;
    font-family: var(--font-default);
    font-weight: 600;
    font-size: 15px;
}
}

.hero p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero form {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.hero form .form-control {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    margin-right: 10px;
    border: none !important;
    background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.hero form .btn-primary {
    background-color: var(--color-primary);
    padding: 15px 30px;
}

.hero form .btn-primary:hover {
    background-color: #2756ff;
}

.hero .stats-item {
    padding: 30px;
    width: 100%;
}

.hero .stats-item span {
    font-size: 32px;
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

.hero .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.hero .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
}


#hero .btn-get-started {
    display: inline-block;
    padding: 8px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #002244;
    border-radius: 5px;
    border: 1px solid #002244;
    transition: .5s;
    background: #ffffff;
    font-family: var(--font-default);
}

#hero .btn-get-started:hover {
    background: #002244;
    color: #ffffff;
    font-weight: 600;
    border: solid 3px #fff;
    font-family: var(--font-default);
}

@media(max-width:771px){
    #hero .btn-get-started {
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #002244;
    border-radius: 5px;
    border: 1px solid #002244;
    transition: .5s;
    background: #ffffff;
    font-family: var(--font-default);
}

#hero .btn-get-started:hover {
    background: #002244;
    color: #ffffff;
    font-weight: 600;
    border: solid 3px #fff;
    font-family: var(--font-default);
}
}



#myVideo {
    position: fixed;
    left: 0%;
    /* bottom: 0; */
    width: 100%;
    min-height: 100%;
    z-index: -1;
    top: 0%;
    /* right: -15%; */
    filter: brightness(110%);
}

/* @media(max-width:992px) {
    #myVideo {
        position: fixed;
        right: 0%;
        bottom: 0;
        width: 103%;
        z-index: -1;
        display: none;
    }
} */

/* counter */

.count-bg {
    background-image: linear-gradient(45deg, #e4f1f9, #0ca5e5);
    background-repeat: no-repeat;
    background-size: cover;
}

.counting-number {
    position: relative;
    margin: 10px 0;
    text-align: center;
}

.counting-number p {
    color: #000;
    font-size: 20px;
}

.counting-number span {
    font-weight: bold;
    /* font-size: 35px; */
}

.counting-number>div {
    /* padding: 0 30px; */
    font-size: 45px;
    color: #003e59;
}

.counting-number>div:before {
    content: "";
    color: #003e59;
    width: 1px;
    height: 40%;
    position: absolute;
    right: 0;
    background: #003e59;
    top: 25%;
    /* margin-right: 20px; */
}

.counting-number:last-child>div::before {
    content: "";
    display: none;
}

@media (max-width:991px) {
    .counting-number p {
        font-size: 14px;
    }

    .counting-number span {
        font-size: 16px;
    }

    .counting-number>div {
        padding: 0px;
        font-size: 16px
    }

    .counting-number>div:before {
        content: "";
        margin-right: 0px;
        margin-top: 0;
        /* height: 80%; */
    }
}

@media (max-width:568px) {
    .line>div:before {
        content: "";
        display: none;
    }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: var(--color-secondary);
    padding: 20px 0;
    color: white;
}

.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--font-default);
}

.footer .footer-info p {
    font-size: 14px;
    font-family: var(--font-default);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    color: rgba(13, 66, 255, 0.8);
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #fff;
}

.footer .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

.footer .credits a {
    color: #fff;
}



/* speaker section  */


#speakers {
    width: 100%;
    position: relative;
    background: url(../../assets/img/container.jpg) center center;
    background-size: cover;
    /* background-color: #fafafa; */
    /* padding: 60px 0 0 0; */
    height: 100%;
    /* display: flex; */
    align-items: center;
    /* overflow: hidden; */
    background-attachment: fixed;
}


#speakers .header-container {
    position: relative;
    background-image: linear-gradient(145deg, #354a9e, #002244);
}


#speakers .card1 {
    margin: 10px auto;
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 20px;
}


#speakers .header {
    color: #434343;
    padding: 15px;
    height: 350PX;
    background: none;
    position: relative;
    z-index: 0;
}

#speakers .header>svg {
    cursor: pointer;
}

#speakers .main-heading {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}

#speakers .tag {
    background-color: rgba(255, 255, 255, .35);
    border-radius: 20px;
    font-size: 11px;
    margin-right: 8px;
    padding: 4px 10px;
    text-transform: uppercase;
}

#speakers .stats {
    /* margin-top: 15px; */
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    /* margin-bottom: 12px; */
    font-family: var(--font-default);
}

#speakers .stat-module {
    display: inline-block;
    font-size: 12px;
    margin-right: 20px;
    text-transform: uppercase;
}

#speakers .stat-number {
    display: inline-block;
    font-weight: 600;
    margin-left: 4px;
}

#speakers .overlay-header {
    /* background-color: #002244; */
    background-image: linear-gradient(90deg, #ffffff, #0ca5e5);
    height: 100px;
    margin: -50px 0 0 -25%;
    transform: rotate(-10deg);
    width: 150%;
    z-index: 0;
}

#speakers .body {
    /* background-color: #002244; */
    background-image: linear-gradient(45deg, #354a9e, #002244);
    color: #555;
    /* margin-top: -50px; */
    /* padding: 0 15px 15px; */
    padding: 5px;
    position: relative;
    height: 100%;
}

#speakers img {
    float: left;
    position: relative;
    z-index: 2;
    padding: 10px;
    width: 100%;
    /* border-radius: 50%; */
    /* transform: scale(0.7); */
    filter: drop-shadow(0 0 5px #000428);
}


#speakers .body-stats {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    float: left;
    margin: -14px 0 0 30px;
    position: relative;
    text-transform: uppercase;
    width: 20%;
}

#speakers .body-stats>span {
    display: inline-block;
    font-weight: 900;
    margin-top: 8px;
}

#speakers .body-info {
    clear: left;
    position: relative;
    max-height: 100px;
    overflow: hidden;
    transition: all 600ms ease-out;
}

#speakers .body-more {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(238, 238, 238, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(238, 238, 238, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(238, 238, 238, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#eeeeee', GradientType=0);
    cursor: pointer;
    margin: -57px auto 0px;
    padding: 20px 0 20px;
    position: relative;
    text-align: center;
}

#speakers .body-more span {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
    display: inline-block;
    height: 6px;
    margin-right: 2px;
    width: 6px;
}

.card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .55);
    /* margin-top: 15px; */
    padding: 10px;
    /* padding-bottom: 0px; */
}

.card-heading {
    font-size: 12px;
    text-transform: uppercase;
}

.card-more {
    cursor: pointer;
    float: right;
}

.card-list {
    list-style-type: none;
    margin: 10px 0 0;
    overflow-x: scroll;
    padding: 0;
    white-space: nowrap;
}

.card-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    background-color: #F5F5F5;
}

.card-list::-webkit-scrollbar {
    height: 3px;
    background-color: #F5F5F5;
}

.card-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
    background-color: #ddd;
}

.card-list li {
    display: inline;
    margin-left: 10px;
}

.card-list li:first-child {
    margin-left: 0;
}

.u-clearfix:before,
.u-clearfix:after {
    content: " ";
    display: table;
}

.u-clearfix:after {
    clear: both;
}

/* .u-clearfix {
    *zoom : 1;
  } */

#speakers::before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* opacity: 0.6; */
    z-index: 0;
    margin-top: 0;
    background: linear-gradient(0deg, #ffffffa6, #ffffffa6);
}

@-webkit-keyframes zoomEffect {
    0% {
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
    }

    100% {
        -webkit-transform: scale(1.2) translateX(-360px) translateY(-80px);
        transform: scale(1.2) translateX(-360px) translateY(-80px);
    }
}

@keyframes zoomEffect {
    0% {
        -webkit-transform: scale(1) translateX(0) translateY(0);
        transform: scale(1) translateX(0) translateY(0);
    }

    100% {
        -webkit-transform: scale(1.2) translateX(-360px) translateY(-80px);
        transform: scale(1.2) translateX(-360px) translateY(-80px);
    }
}


/* ket themes area  */

#topics {

    .card {
        margin: 10px auto;
        box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.2);
        border-radius: 6px;
        height: 100%;
        transition: 0.3s;
        background-image: linear-gradient(180deg, #002244 40%, #002244 40%);
        font-family: var(--font-default);
    }

    .card1 {
        margin: 10px auto;
        box-shadow: 2px 2px 4px 0 rgba(0, 0, 0);
        border-radius: 6px;
        height: 100%;
        transition: 0.3s;
        background-color: #fff;
        font-family: var(--font-default);
    }

    .card:hover {
        box-shadow: 1px 10px 16px 0 rgba(0, 0, 0, 0.3);
    }

    .card .card-title {
        text-align: center;
        color: #fff;
        font-weight: bold;
        font-family: var(--font-default);
    }

    .card .card-text {
        font-weight: 600;
        color: #fff;
        font-family: var(--font-default);

    }

    .card .card-text span {
        font-weight: 600;
        color: #fff;
        text-decoration: underline;
        text-decoration-color: #000;
        font-family: var(--font-default);
    }

    .card .card-image {
        text-align: center;
    }

    .card .card-image img {
        max-width: 40%;
    }


    .card .card-text {
        text-align: center;
        font-family: var(--font-default);
    }


    .card1:hover {
        box-shadow: 1px 10px 16px 0 rgba(0, 0, 0, 0.3);
    }

    .card1 .card-title {
        text-align: center;
        color: #002244;
        font-weight: bold;
        font-family: var(--font-default);
    }

    .card1 .card-text {
        font-weight: 600;
        color: #002244;
        font-family: var(--font-default);
        text-align: center;
        padding: 15px;

    }

    .card1 .card-text span {
        font-weight: 600;
        color: #002244;
        text-decoration: underline;
        text-decoration-color: #000;
        font-family: var(--font-default);
    }

    .card1 .card-image {
        text-align: center;
    }

    .card1 .card-image img {
        max-width: 40%;
    }


    .card .card-text {
        text-align: center;
        font-family: var(--font-default);
    }
}


/* who should attend  */


.skills {
    padding: 50px 0px;
}

@media(max-width:771px){
    .skills {
    padding: 0px 0px;
}
}
.skills .skills-flex-attend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}


.skills .skills-flex-attend .box {
    flex: 1 1 40%;
    background-image: linear-gradient(145deg, #354a9e, #002244);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 3px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease-in;
    font-family: var(--font-default);
    border-left: 10px solid #fff;
}

.skills .skills-flex-attend .box .image-attend {
    transition: all 0.3s ease-in-out 0.1s;
}

.skills .skills-flex-attend .box .image-attend img {
    max-width: 75px;
    object-fit: contain;
}

.skills .skills-flex-attend .box .title {
    text-align: center;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-default);
}

/* 
  .skills .skills-flex-attend .box:hover {
    box-shadow: rgba(0, 0, 0, 0.5) 20px 20px 30px;
    transform: scale(1.1);
  } */

/* .skills .skills-flex-attend .box:hover .image-attend {
    transform: scale(1.5) translateY(-20px);
  } */

/* .skills .skills-flex-attend .box:hover .image-attend img {
    animation: bouncing 0.5s 0.3s;
  } */

.skills .skills-flex-attend .box:hover .title {
    letter-spacing: 2px;
}


@media (max-width: 1100px) {
    .skills .skills-flex-attend .box {
        flex: 1 0 25%;
    }
}

@media (max-width: 630px) {
    .skills .skills-flex-attend .box {
        flex: 1 0 35%;
        padding: 5px;
    }

    .skills .skills-flex-attend .box .image-attend img {
        max-width: 50px;
    }
    .skills .skills-flex-attend .box .title {
    text-align: center;
    font-weight: 500;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-default);
}
}

@keyframes bouncing {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}


#about-02 {
    background-color: #e3ecfd;
}

.hover-tab-menu {
    position: relative;
    overflow: hidden;
}

.hover-tab-menu .tab-menu {
    position: relative;
    z-index: 1;
}

.hover-tab-menu .tab-menu li {
    align-items: start;
    padding: 0;
    margin-bottom: 30px;
    cursor: grab;
}

.hover-tab-menu .tab-menu li .menu-thumb {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 50px;
    /* height: 48px; */
}

.hover-tab-menu .tab-menu li .menu-thumb span {
    line-height: 30px;
    /* -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; */
    text-align: center;
    font-size: 20px;
    background-image: linear-gradient(145deg, #354a9e, #002244);
    box-shadow: 3px 3px 0px #fff;
    width: 70px;
    height: 70px;
    display: inline-block;
    color: #ffffff;
    transform: translate(0px, -20px);
}

.hover-tab-menu .tab-menu li .menu-content {
    width: calc(100% - 75px);
    padding-left: 30px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 0px;
    background-image: linear-gradient(145deg, #354a9e, #002244);
    margin-bottom: 20px;
    border-radius: 10px;
    min-height: 150px;
}

.hover-tab-menu .tab-menu li .menu-content .title {
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
    line-height: 24px;
    padding: 5px;
}


.hover-tab-menu .tab-menu li.active .menu-thumb span {
    background: #001973;
    color: #ffffff;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    animation-duration: .5s;
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
}

/* .hover-tab-menu .tab-menu li:nth-child(2) {
  -webkit-transform: translateX(95px);
  -ms-transform: translateX(95px);
  transform: translateX(95px);
} 
@media (min-width: 992px) and (max-width: 1199px) {
  .hover-tab-menu .tab-menu li:nth-child(2) {
      -webkit-transform: translateX(75px);
      -ms-transform: translateX(75px);
      transform: translateX(75px);
  }

  .hover-tab-menu .tab-menu li:nth-child(2) .menu-content {
      max-width: 320px;
  }
}

@media (max-width: 991px) {
  .hover-tab-menu .tab-menu li:nth-child(2) {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .hover-tab-menu .tab-menu li {
      margin-bottom: 50px;
  }
}
*/

@media (max-width: 575px) {
    .hover-tab-menu .tab-menu li {
        margin-bottom: 40px;
    }

    .hover-tab-menu .tab-menu li .menu-thumb {
        width: 50px;
        height: 50px;
    }

    .hover-tab-menu .tab-menu li .menu-thumb span {
        width: 38px;
        height: 38px;
        text-align: center;
        line-height: 38px;
        font-size: 24px;
    }

    .hover-tab-menu .tab-menu li .menu-content {
        padding-left: 15px;
        width: calc(100% - 50px);
    }

    .hover-tab-menu .tab-menu li .menu-content .title {
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
    }
}

.hover-tab-menu .tab-menu li:nth-child(1) .menu-thumb {
    position: relative;
}

.hover-tab-menu .tab-menu li:nth-child(1) .menu-thumb:after {
    bottom: 75%;
    right: 75%;
    /* background: #ffffff; */
    width: 50px;
    height: 50px;
    z-index: -1;
}

.hover-tab-menu .tab-menu li:nth-child(3) .menu-thumb {
    position: relative;
}

.hover-tab-menu .tab-menu li:nth-child(3) .menu-thumb:after {
    top: 75%;
    right: 70%;
    /* background: #ffffff; */
    width: 50px;
    height: 50px;
    z-index: -1;
}

/* .hover-tab-menu .tab-menu li:last-child {
  margin: 3px;
  margin-left: -30px;
} */

.hover-tab-menu::after,
.hover-tab-menu::before {
    width: 400px;
    height: 400px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: -37px;
}

@media (max-width: 1199px) and (min-width: 992px) {

    .hover-tab-menu::after,
    .hover-tab-menu::before {
        width: 680px;
        height: 680px;
        top: -77px;
    }
}

@media (max-width: 991px) {

    .hover-tab-menu::after,
    .hover-tab-menu::before {
        display: none;
    }
}

/* .hover-tab-menu::before {
  right: 75%;
  border: 9px solid #e3ebfc;
} */

/* .hover-tab-menu::after {
  border: 2px dashed #324fb0;
  right: calc(75% + 4px);
  animation: rotate2 2s linear infinite;
} */

.hover-tab-area .tab-area {
    width: 100%;
    height: 400px;
    /* position: relative; */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    /* background-color: rgba(21, 26, 43, 0.102); */
    overflow: hidden;
}

.hover-tab-area .tab-area::after,
.hover-tab-area .tab-area::before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    /* background-color: rgba(197, 197, 197, 0.102); */
}

.hover-tab-area .tab-area::before {
    width: 250px;
    height: 250px;
}

.hover-tab-area .tab-area::after {
    width: 356px;
    height: 356px;
}

.hover-tab-area .tab-area * {
    /* position: relative; */
    z-index: 1;
}

.hover-tab-area .tab-area .tab-item {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.hover-tab-area .tab-area .tab-item img {
    max-height: 250px;
    max-width: 250px;
    z-index: 99;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.hover-tab-area .tab-area .tab-item h6 {
    color: #fff;
    /* position: relative; */
    top: 100%;
    right: 100%;
    font-weight: 500;
    z-index: 99;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.hover-tab-area .tab-area .tab-item img:hover {
    max-height: 200px;
    max-width: 200px;
    transition: all ease 0.3s;
}

.hover-tab-area .tab-area .tab-item.active img {
    visibility: visible;
    opacity: 1;
}

.hover-tab-area .tab-area .tab-item.first {
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

.hover-tab-area .tab-area .tab-item.second {
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

.hover-tab-area .tab-area .tab-item.third {
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

.hover-tab-area .tab-area .tab-item.four {
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

.hover-tab-area .tab-area .tab-item.five {
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

.menu-content-self-1 {
    padding-left: 41px !important;
}

.menu-content-self-3 {
    padding-left: 41px !important;
}

.menu-content-self-5 {
    padding-left: 41px !important;
}

@media (max-width: 768px) {
    .hover-tab-area .tab-area {
        width: 306px;
        height: 306px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .key-dis-point-none {
        display: none;
    }
}

.key-dis-point-none2 {
    display: none;
}

.key-dis-point-none2 div img {
    width: 100%
}

@media (max-width:768px) {
    .key-dis-point-none2 {
        display: block;
    }
}



.hover-tab-menu .tab-menu li:nth-child(1) .menu-thumb:after,
.hover-tab-menu .tab-menu li:nth-child(3) .menu-thumb:after,
.hover-tab-menu::after,
.hover-tab-menu::before,
.hover-tab-area .tab-area .tab-item {
    position: absolute;
    content: '';
}

.hover-tab-menu .tab-menu li {
    display: flex;
    flex-wrap: wrap;
    /* background-color: #001973; */
    margin-bottom: 25px;
}

.hover-tab-area .tab-area::after,
.hover-tab-area .tab-area::before,
.hover-tab-area .tab-area .tab-item img {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    content: "";
}



/* award */

#schedule {
    padding: 60px 0 60px 0;
    background: linear-gradient(90deg, #000000aa, #000000aa), url("../img/elegant-golden-stage.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


#schedule .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #D5AD6D;
    background: -webkit-linear-gradient(#ecd355, transparent), -webkit-linear-gradient(top, #f8e766 0%, #f8e766 26%, rgba(226, 186, 120, 1) 35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1) 100%);
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 55px #000);
}

#schedule .section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #D5AD6D;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}


#schedule .section-header h4,
#schedule .section-header p {
    color: #fff;
    filter: drop-shadow(0 0 55px #000);
}

#schedule .nav-tabs {
    text-align: center;
    margin: auto;
    /* display: block; */
    border-bottom: 0;
    margin-bottom: 40px;
}

#schedule .nav-tabs li {
    display: inline-block;
    margin-bottom: 15px;
}

#schedule .nav-tabs a {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: #0e1b4d;
    color: #fff;
    padding: 10px 20px;
}

@media (max-width: 992px) {
    #schedule .nav-tabs a {
        padding: 8px 60px;
    }
}

@media (max-width: 767px) {
    #schedule .nav-tabs a {
        padding: 8px 50px;
    }
}

@media (max-width: 480px) {
    #schedule .nav-tabs a {
        padding: 8px 30px;
    }
}

/* 
#schedule .nav-tabs a.active {
  background-color: #0e1b4d;
  color: #fff;
} */

#schedule .box-tech .content {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    transition: .3s ease-in-out;
}

#schedule .box-tech .content:hover {
    transform: scale(0.9);
    transition: .3s ease-in-out;
    color: var(--color-secondary);
}

#schedule .box-tech .content h5 {
    font-family: var(--font-default);
    font-weight: 600;
    padding: 10px;
}

#schedule .box-tech img {
    width: 100px;
}

#schedule .sub-heading {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
}

@media (min-width: 992px) {
    #schedule .sub-heading {
        width: 75%;
    }
}


#schedule .tab-pane {
    transition: ease-in-out 0.2s;
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 520px) {


    #schedule .tab-pane {
        transition: ease-in-out 0.2s;
        padding-left: 10px;
        padding-right: 10px;
    }

}

#schedule .schedule-item {
    border: 1px solid #cad4f6;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color ease-in-out 0.3s;
}

#schedule .schedule-item:hover {
    background-color: #000000;

}

#schedule .schedule-item time {
    padding-bottom: 5px;
    display: inline-block;
}

#schedule .schedule-item .speaker {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin: 0 10px 10px 0;
    background: #ffffff;
}

#schedule .schedule-item:hover .speaker {
    background: -webkit-linear-gradient(150deg, #c3a343, #c3a343, #c3a343, #fbf088);
}

#schedule .schedule-item .content1 {
    align-items: center;
    display: flex;
}

#schedule .schedule-item .speaker img {
    height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
    transition: all ease-in-out 0.3s;
}

#schedule .schedule-item a {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    width: calc(100% - 65px);
    color: #fff;
    filter: drop-shadow(0 0 55px #000);
    font-family: var(--font-default);
}

@media(max-width:981) {
    #schedule .schedule-item h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }
}

#schedule .schedule-item h4 span {
    font-style: italic;
    color: #19328e;
    font-weight: normal;
    font-size: 16px;
}

#schedule .schedule-item p {
    font-style: italic;
    color: #152b79;
    margin-bottom: 0;
}

#schedule .section-header1 h2 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #D5AD6D;
    background: -webkit-linear-gradient(#ecd355, transparent), -webkit-linear-gradient(top, #f8e766 0%, #f8e766 26%, rgba(226, 186, 120, 1) 35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1) 100%);
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 55px #000);
}

#schedule .btn-get-started {
    display: inline-block;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    border-radius: 5px;
    border: 1px solid #000000;
    transition: .5s;
    width: 250px;
    background: -webkit-linear-gradient(150deg, #c3a343, #c3a343, #c3a343, #fbf088);
}

#schedule .btn-get-started:hover {
    background: -webkit-linear-gradient(150deg, #c3a343, #c3a343, #c3a343, #fbf088);
    transform: scale(1.1);
    color: #000000;
    font-weight: 800;
    border: solid 3px #000000;
}


.video-box .img-fluid {

    max-width: 100%;
    height: auto;
}



.sponsor {
    box-shadow: 0 0 2px #000;
    border-radius: 8px;
    max-height: 245px;
    transition: .3s ease-in-out;
}

.sponsor:hover {
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.about2 {
    background-color: #e3ecfd;
}

.icon-boxes .icon-box1 {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    transform: scale(1);
    min-height: 200px;
    /* height: 100%; */
}

.icon-boxes .icon-box1:hover {
    /* transform: scale(1.1); */
    transition: 0.3s ease-in-out;
}

.icon-box1 h4 {
    font-size: 18px;
    font-weight: 500;
    transition: .3s ease-in-out;
    text-align: center;
}

.icon-box1 p {
    font-size: 14px;
    font-weight: 500;
    font-family: 'BrandonGrotesque-bolder';
}


/* venue */

.venue .title {
    position: relative;
    font-weight: 700;
    padding: 10px;
    color: #001973;
}

.venue address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
    padding: 10px;
    color: #001973;
}

.venue .title span {
    position: absolute;
    display: block;
    width: 65px;
    height: 5px;
    background-color: #001973;
    /* left: 0;
  bottom: 0; */
}

.venue img {
    padding: 15px;
    background: linear-gradient(45deg, #e4f1f9, #0ca5e5);
}

.points h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.points h4:before {
    content: "";
    width: 10px;

    height: 10px;
    background-color: #003e59;
    position: absolute;
    margin-left: -20px;
    margin-top: 5px;
    /* top: 8px; */
    transform: rotate(-45deg);
}


@media(min-width:991px) {

    .features2 img {
        position: absolute;
        /* padding-top: 30%; */
        width: 30%;
        left: 35%;
        top: 10%;
        z-index: 1;
    }
}

@media(max-width:991px) {
    .features2 img {
        position: absolute;
        /* padding-top: 30%; */
        width: 100%;
        left: 1%;
        top: 40%;
        z-index: 1;
    }
}

.theme-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 25px 15px 5px;
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-bottom: 5px;
    font-size: 24px;
    color: white;
}

.card-number {
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.18);
}

.card-body {
    padding: 0 15px 15px;
    flex-grow: 1;
}

.theme-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.theme-card p {
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-footer {
    padding: 0 25px 25px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.learn-more:hover {
    color: var(--primary-dark);
}

.learn-more i {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

/* Color variations for cards */
.card-1 .card-icon {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
}

.card-2 .card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-3 .card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-4 .card-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.card-5 .card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.card-6 .card-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.card-7 .card-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.card-8 .card-icon {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.card-9 .card-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.card-10 .card-icon {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.category-section {
    padding: 1rem 0;
    /* border-bottom: 1px solid #eaeaea; */
}

#awards {
    background: url(../img/awardsbg3.jpg);
    background-attachment: fixed;
    background-size: cover;
    /* background-position: right; */
    background-repeat: no-repeat;
}

.awards-header {
    color: #D5AD6D;
    background: -webkit-linear-gradient(#ecd355, transparent), -webkit-linear-gradient(top, #f8e766 0%, #f8e766 26%, rgba(226, 186, 120, 1) 35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1) 100%);
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px #000);
    padding: 2rem 0;
    border-bottom: 5px solid var(--gold);
}

.awards-header h2 {
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.awards-header h4 {
    font-weight: 300;
    opacity: 0.9;
}

.category-title {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-title h2 {
    display: inline-block;
    padding: 0 15px;
   color: #D5AD6D;
    background: -webkit-linear-gradient(#ecd355, transparent), -webkit-linear-gradient(top, #f8e766 0%, #f8e766 26%, rgba(226, 186, 120, 1) 35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1) 100%);
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px #000);
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: var(--primary);
    /* text-transform: uppercase; */
}

.category-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    z-index: 0;
}

.award-card {
    /* background: rgba(255, 255, 255, 0); */
    border-radius: 8px;
    box-shadow: inset 0 0px 4px rgba(255, 255, 255, 0.48);
    transition: all 0.3s ease;
    height: 100%;
    padding: 10px;
    border: none;
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.award-card .card-body {
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.award-icon {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #001973;
    font-size: 1.2rem;
}

.award-card h6 {
    margin: 0;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.nominate-btn {
   background-image: radial-gradient( #b8880f, #fff5a2);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nominate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.team-award {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed var(--accent);
}

.team-award .award-icon {
    background: var(--accent);
    color: white;
}

@media (max-width: 768px) {
    .award-card .card-body {
        padding: 0rem;
    }

    .award-icon {
       display: none;
    }
h5{
        font-size: 13px;
    }
    h4{
        font-size: 16px;
    }
    p{
        font-size: 14px;
    }
    h6{
        font-size: 14px;
        font-weight: 500;
    }
    .about p {
    font-family: var(--font-default);
    font-size: 14px;
    line-height: 18px;
}
.card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .55);
    /* margin-top: 15px; */
    padding: 3px;
    /* padding-bottom: 0px; */
}
#speakers .main-heading {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
    padding-top: 0px;
}
#speakers .stats {
    /* margin-top: 15px; */
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    /* margin-bottom: 12px; */
    font-family: var(--font-default);
    margin-bottom: 0px;
}
.card-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-bottom: 5px;
    font-size: 16px;
    color: white;
}

.card-number {
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.18);
}

.card-body {
    padding: 0 5px 5px;
    flex-grow: 1;
}
.single-pricing-box {
    padding: 10px 5px 10px;
    position: relative;
    z-index: 1;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    transition: .5s;
    margin-top: 20px;
    box-shadow: 0 0 5px #000;

}
}