/* Fonts */
:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
    --color-default: #0a0d13;
    --color-primary: #0d42ff;
    --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
    overflow-x: hidden;
}

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;
}

/* .header {
    background: linear-gradient(to right, #000428, #004e92);
} */

.section-header {
    text-align: center;
    padding: 5px 0;
    position: relative;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    background: linear-gradient(to right, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-header span {
    font-size: 32px;
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    padding-bottom: 0;
    background: linear-gradient(to right, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    padding-bottom: 0;
    background: linear-gradient(to right, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    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-header h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    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: 28px;
        margin-bottom: 15px;
    }

    .section-header span {
        font-size: 38px;
    }
}

.section-header1 {
    text-align: center;
    padding: 5px 0;
    position: relative;

}

.section-header1 h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
   color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

/*--------------------------------------------------------------
# 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-default);
}

.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: 8px 0;
    /* background: linear-gradient(to right, #000428, #004e92); */
    background-color: #fff;
}

.header.sticked { 
    /* background: linear-gradient(to right, #000428, #004e92); */
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
    max-height: 80px;
    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: 10px 10px 10px 10px;
        font-family: var(--font-default);
        font-size: 16px;
        font-weight: 600;
        color: #000428;
        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 {
        border-bottom: 2px solid #000428;
    }

    .navbar .get-a-quote,
    .navbar .get-a-quote:focus {
        background: #fff;
        padding: 8px 30px;
        margin-left: 30px;
        border-radius: 8px;
        color: #2756ff;
    }

    .navbar .get-a-quote:hover,
    .navbar .get-a-quote:focus:hover {
        color: #ffffff;
        background-image: linear-gradient(15deg , #F26720, #993300);
        border: 2px solid #fff;
    }

    .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 {
        background: var(--color-primary);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff;
    }

    .navbar .get-a-quote:hover,
    .navbar .get-a-quote:focus:hover {
        color: #fff;
        background: rgba(13, 66, 255, 0.8);
    }

    .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: #fff;
        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;
    }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.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);
}

/* .services {
    background-color: #cbe0ff;
} */

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.section-title1 {
    text-align: right;
}

.section-title1 img {
    max-width: 80px;
}

.section-title1 h1 {
    font-weight: bold;
    position: relative;
    margin-bottom: 10px;
    background: linear-gradient(to right, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.section-title1 h2 {
    font-weight: bold;
    position: relative;
    margin-bottom: 30px;
    background: linear-gradient(to right, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.about{
    border-top-left-radius:10%;
    border-top-right-radius:10%;
}

.about .content h3 {
    font-weight: 600;
    /* font-size: 34px; */
    color: #993300;
    text-align: center;
    margin-bottom: 30px;
}

.about .content p {
    margin-bottom: 30px;
    text-align: justify;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.about .content p span {
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 700;
    background: linear-gradient(to right, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.about .content .about-btn {
    display: inline-block;
    background: #993300;
    padding: 6px 44px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
    position: relative;
}

.about .content .about-btn i {
    font-size: 18px;
    position: absolute;
    right: 18px;
    top: 9px;
}

.about .content .about-btn:hover {
    background: #7bbad7;
}

.section-bg {
    background-color: #eff5fe;
    /* box-shadow: 0 0 5px #000; */
}


/* partner section  */


.partner {
    background-color: #fff;
}

.partner img {
    width: 100%;
    transition: .3s ease-in-out;
}

.partner img:hover {
    transform: scale(1.1);
    transition: .3s ease-in-out;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
    border: 1px solid #0e1d3426;
    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 .card a {
    color: #001973;
    transition: 0.3;
}

.services .card a:hover {
    color: var(--color-primary);
}

.services .card p {
    padding: 0 30px;
    margin-bottom: 30px;
    color: var(--color-secondary);
    font-size: 15px;
}

.services .card:hover .card-img img {
    transform: scale(1.1);
}

.our-team {
    padding: 10px 0;
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 330px;
    border-radius: 10px;
}

.our-team .picture {
    display: inline-block;
    height: 180px;
    width: 180px;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.our-team .picture img {
    width: 100%;
    height: 100%;
    border-radius: 20%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
    filter: drop-shadow(0 0 5px #000428);
    transform: scale(1.1);
    border-radius: 50%;
}

.our-team .title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #000428;
    text-transform: capitalize;
}

.our-team .company {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #000428;
    text-transform: capitalize;
}

.our-team .name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000428;
}

.our-team1 {
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    border-radius: 10px;
    background: linear-gradient(to top, #000428, #004e92);
}

.our-team1 .picture {
    display: inline-block;
    height: 180px;
    width: 180px;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    
}

.our-team1 .picture img {
    width: 100%;
    height: 100%;
    border-radius: 20%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.our-team1:hover .picture img {
    filter: drop-shadow(0 0 5px #fff);
    transform: scale(1.1);
    border-radius: 50%;
}

.our-team1 .title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}

.our-team1 .company {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
    text-transform: capitalize;
}

.our-team1 .name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}



/*--------------------------------------------------------------
# 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;
}

.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 {
    padding-bottom: 10px;
}

.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;
}

.item-wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
    transition: transform 0.4s ease;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/* .pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-default);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-default);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-primary);
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
} */

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
    padding-top: 80px;
}

.faq .accordion-item {
    border: 0;
    margin-bottom: 10px;
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-header {
    padding: 15px 30px 20px 20px;
    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-button1:focus {
    box-shadow: none;
}

.faq .accordion-button1: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-button1: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;
}

.accordion-header .bi {

    color: #023bfe;
    font-size: 25px;
    line-height: 25px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}


.serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #ffffffd1;
    box-shadow: 0px 15px 25px 0px rgba(24, 24, 24, 0.8);
    border-radius: 5px;
    overflow: hidden;
    padding: 30px;
}

.serv-section-2:before {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 0;
    content: " ";
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, #000428, #004e92); */
    color: #000428;
    border-bottom-left-radius: 20%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-2-icon {
    /* position: absolute;
    top: 10px;
    right: 12px; */
    max-width: 60px;
    z-index: 1;
    text-align: center;
}

.serv-section-2-icon i {
    color: #000428;
    font-size: 40px;
    line-height: 45px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
    position: relative;
}

.serv-section-2 h5 {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
    font-weight: 600;
    margin-top: 10px;
    color: #000428;
    /* filter: drop-shadow(0 0 5px #000); */
}

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #000000;
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.serv-section-2 p {
    margin-top: 25px;
    padding-right: 50px;
}

.serv-section-2:hover .serv-section-2-icon i {
    font-size: 50px;
}

/* .serv-section-2:hover:before {
  background: #023bfe;
} */


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/gallery/img14.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.testimonials .section-header h2{
    margin-bottom: 40px;
    color: #fff;
}

.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);
    }
}


.contactdetails i {
    font-size: 32px;
}

.contactdetails h5 {
    line-height: 28px;
}



/*--------------------------------------------------------------
# `ce 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);
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    /* background-image: url("../img/herobg5.jpg"); */
    background-position: center;
    position: relative;
    background-size: cover;
    filter: brightness(1.1);
    color: rgba(255, 255, 255, 0.8);
    /* animation: bg-animation 20s infinite; */
}

@keyframes bg-animation {
    0% {
      background-position: center;
    }
    50% {
      background-position: right;
    }
    100% {
      background-position: center;
    }
  }
  

.hero:before {
    content: "";
    background-size: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #001f4bb5, #001f4bb5);
}

.hero img {
    width: 100%;
    height: auto;
   filter: drop-shadow(-1px 1px 0 #000);
    transform: scale(1.0);
    transition: .3s ease-in-out;
    /* animation: zoomout 40s linear infinite; */
}

.hero-img:hover img{
    transform: scale(0.9);
    transition: .3s ease-in-out;
}

@-webkit-keyframes zoomout {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomout {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.hero h2 {
    margin-bottom: 20px;
    padding: 0;
    font-weight: 600;
    color: #fff;
    filter: drop-shadow( 1px 2px 0 #000);
}

.hero h3 {
    margin-top: 20px;
    /* z-index: 999; */
    position: relative;
    padding: 0;
    /* font-size: 25px; */
    font-weight: 600;
    color: #fff;
    /* background: -webkit-linear-gradient(323deg, #0830e0, #0415b5, #0314b3, #000428);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.hero h3 sup{
    /* background: -webkit-linear-gradient(323deg, #0830e0, #0415b5, #0314b3, #000428);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #fff;
}

.hero h3 i{
    /* margin-top: 20px; */
    /* z-index: 999; */
    position: relative;
    padding: 0;
    font-size: 45px;
    font-weight: 900;
    /* background: -webkit-linear-gradient(23deg, #0830e0, #0415b5, #0314b3, #000428);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #fff;
}

@media (max-width: 575px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 40px;
}


.hero .btn-buy a {
    background: linear-gradient(to right, #000428, #004e92);
    position: relative;
    box-shadow: 0 0 5px #fff;
    padding: 10px 45px 10px 45px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 65px;
    font-family: var(--font-default);
    transition: 0.3s;
}

.hero .btn-buy a:hover {
    background-image: linear-gradient(125deg , #F26720, #993300);
    color: #ffffff;
    filter: drop-shadow(0 0 15px #993300);
    border: 2px solid #fff;
    transform: scale(1.1);
}

/* .hero .btn-buy:hover a {
  background-color: #fff;
  color: #213044;
  border: 2px solid #213044;
} */


.hero .hero-partner {

    /* margin-top: 20px; */
    z-index: 999;
    position: relative;
    padding: 0;
    font-size: 25px;
    font-weight: 700;
    color: #202f43;
}


.whitebg {
    background-image: linear-gradient(-130deg, #02b8fd, #02b8fd, #023bfe, #023bfe, #213044);
}

/*--------------------------------------------------------------
# awards
--------------------------------------------------------------*/

.awards {
    background: radial-gradient(#0e365483, #00000048), url("../img/awardsbg1.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .awards{
  background-image: url('../img/awardsbg.jpg');
  background-size: cover;
  background-attachment: fixed;
} */
.awards p::after {
    content: "";
    width: 100px;
    height: 1px;
    display: inline-block;
    background: #fff;
    margin: 4px 10px;
}

.awards .gold-text {
    color: #c3a343;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(#fbf088, #c3a343);
    background: -o-linear-gradient(#fbf088, #c3a343);
    -webkit-background-clip: text;
    font-weight: 700;
    text-align: center;
    filter: drop-shadow(0 0 3px #000000);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    /* margin-bottom: 20px;
    padding-bottom: 20px; */
    position: relative;
}

.awards h4{
    color: #fff;
    line-height: 40px;
    text-align: center;
}

.awards h5{
    color: #fff;
    line-height: 40px;
    /* text-align: center; */
}

.awards .icon-box {
    /* display: flex; */
    align-items: center;
    padding: 15px;
    min-height: 130px;
    background: #000000ad;
    transition: ease-in-out 0.3s;
    box-shadow: 0 0 3px #fff;
}

.awards .box-shadow{
    box-shadow: 0 0 5px #fff;
    background-color: #00000098;
    padding: 20px;
}

.awards .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
    color: #5578ff;
}

.awards .icon-box img {
    width: 30%;
    height: 100%;
    padding-right: 10px;
    filter: drop-shadow(0 0 2px #fff);
}

.awards .icon-box h5 {
    font-weight: 600;
    padding: 15px;
    text-align: center;
    line-height: 25px;
    /* font-size: 20px; */
    color: #fff;
    transition: ease-in-out 0.2s;
    /* filter: drop-shadow(0 0 5px #001973); */
}

.awards .icon-box:hover h5 {
    color: #001973;
    font-weight: 600;
    filter: drop-shadow(-1px 1px 0 #000);
}

.awards .icon-box:hover img{
    filter: drop-shadow(0 0 8px #001973);
}

.awards .icon-box:hover {
    background: #ffffff;
    box-shadow: 0 0 15px #000;
    transform: scale(0.9);
}

.awards .icon-box:hover .btn-get-started {
    background: #023dfffb;
    color: #fff;
    transform: scale(0.9);
}

.awards .btn-get-started {
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    transition: ease-in-out 0.2s;
    color: #fff;
    background: #023bff59;
}


/*--------------------------------------------------------------
# Why Sponsor

--------------------------------------------------------------*/

#attend1 {
    /* background-image: linear-gradient(225deg , #682c0e, #993300); */
    color: #fff;
    /* background-color: #92befd; */
    font-size: 14px;
}

#attend1 .attend-top {
    padding: 60px 0 10px 0;
}

#attend1 .attend-top .attend-info {
    margin-top: -60px;
    background: white;
    color: #2f4d5a;
    border-top: 4px solid #000428;
    text-align: left;
    padding: 30px;
    box-shadow: 0 0 10px #000428;
}

#attend1 .attend-top .attend-info h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    background: linear-gradient(to right, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    position: relative;
    text-align: center;
}

/* #attend1 .attend-top .attend-info span {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    text-align: center;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    background-image: linear-gradient(15deg , #F26720, #993300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
} */


#attend1 .attend-top .attend-info h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    top: 120%;
    margin: auto;
}

/* #attend1 .attend-top .attend-info h2::after {
    content: "";
    width: 50px;
    height: 3px;
    border-radius: 50px;
    display: inline-block;
    background: -webkit-linear-gradient(23deg, #000428, #004e92);
    margin: 4px 10px;
} */

#attend1 .attend-top .attend-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#attend1 .attend-top .attend-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#attend1 .attend-top img{
    border: 5px solid #fff;

}

#attend1 .attend-top h6 {
    /* font-size: 16px; */
    font-weight: 600;
    background: -webkit-linear-gradient(23deg, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 12px;
}

#attend1 .attend-top .attend-info .color1 {
    background-color: #dbe9ff;
}

#attend1 .attend-top .attend-info .color2 {
    box-shadow: 0 0 3px #000;
}

#attend1 .attend-top .attend-info i {
    font-size: 44px;
    font-weight: 800;
    background: -webkit-linear-gradient(23deg, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 575px) {
    #attend1 .attend-top .attend-info {
        margin: -20px 0 30px 0;
    }
}

/* brands
 */

 #attend2 {
    /* background-color: #fff; */
    /* color: #fff; */
    font-size: 14px;
}

#attend2 .attend-top {
    padding: 60px 0 10px 0;
}

#attend2 .attend-top .attend-info {
    margin-top: -60px;
    background: linear-gradient(to right, #000428, #004e92);
    color: #2f4d5a;
    border-top: 4px solid #000428;
    text-align: left;
    padding: 30px;
    box-shadow: 0 0 10px #000428;
}

#attend2 .attend-top .attend-info img{
    border: 4px solid #fff;
}

#attend2 .attend-top .attend-info h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
   color: #fff;
    position: relative;
    z-index: 2;
    /* margin-bottom: 20px;
    padding-bottom: 20px; */
    position: relative;
    text-align: center;
}


#attend2 .attend-top .attend-info h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
   background-color: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    top: 120%;
    margin: auto;
}

#attend2 .attend-top .attend-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#attend2 .attend-top .attend-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#attend2 .attend-top img{
    background: linear-gradient(to right, #000428, #004e92);
    padding: 10px;
}

#attend2 .attend-top h6 {
    /* font-size: 16px; */
    font-weight: 600;
    background: -webkit-linear-gradient(23deg, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 12px;
}

#attend2 .attend-top .attend-info .color1 {
    background-color: #dbe9ff;
}

#attend2 .attend-top .attend-info .color2 {
    background-color: #ffffff;
}

#attend2 .attend-top .attend-info i {
    font-size: 44px;
    font-weight: 800;
    background: -webkit-linear-gradient(23deg, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 575px) {
    #attend2 .attend-top .attend-info {
        margin: -20px 0 30px 0;
    }
}

.brands .brands-item {
    box-sizing: content-box;
    text-align: center;
    background-color: #fff;
    border-radius: 10%;
    min-height: 130px;
    position: relative;
}

.brands .brands-item .brands-img {
    max-height: 100%;
    max-width: 100%;
    padding: 15px;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


.brands .brands-item .quote-icon-left,
.brands .brands-item .quote-icon-right {
    color: #d5e9f2;
    font-size: 26px;
}

.brands .brands-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.brands .brands-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.brands .brands-item .quote-icon-right1 {
    display: inline-block;
    right: 5px;
    position: relative;
    top: 2px;
    font-size: 18px;
}

.brands .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.brands .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #67b0d1;
}

.brands .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #67b0d1;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
    padding: 20px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.76);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing .closed{
    opacity: 0.5 !important;
    position: relative;
}

.pricing img{
    position: absolute;
    padding-top: 10%;
    width: 250px;
    left: 15%;
    z-index: 1;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 15px 15px;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    /* background: #f8f8f8; */
}

#section-header.section-header h3 {
    font-size: 32px;
    font-weight: 700;
    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 .section-header h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.pricing {
    box-shadow: 0 0 5px #000;
}

.pricing h4 {
    font-size: 36px;
    color: #0b1c7c;
    font-weight: 600;
    font-family: var(--font-default);
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #000000;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
}

.pricing ul li {
    padding-bottom: 16px;
    padding-top: 16px;
    font-size: 22px;
    color: #000;
}

.pricing ul i {
    color: #0b1c7c;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    /* margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8; */
    text-align: center;
}

.pricing .btn-buy {
    background: linear-gradient(to left, #000428, #004e92);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-default);
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background-image: linear-gradient(15deg , #F26720, #993300);
    border: 2px solid #0b1c7c;
    color: #fff;
}

.pricing .featured h3 {
    color: #fff;
    background: linear-gradient(to right, #000428, #004e92);
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #0b1c7c;
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background: linear-gradient(to top, #000428, #004e92);

    /* padding: 50px 0; */
    color: white;
}

.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
}

.footer .footer-info .logo img {
    max-height: 100px;
    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: 20px;
    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;
}


.cta {
    background: linear-gradient(#ffffffa1, #7585b582);
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    color: #023bfe;
    font-size: 32px;
    font-weight: bold;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: none;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 38px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 38px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    background: linear-gradient(to top, #000428, #004e92);
    /* border: 2px solid #02B8FD; */
    color: #fff;
    transition: .3s ease-in-out;
}

.cta-btn:hover {
    border-color: 2px solid #023bfe;
    background-image: linear-gradient(15deg , #F26720, #993300);
    color: #fff;
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.cta .cta-btn:hover {
    border-color: #fff;
}

/* .portfolio {

    background-color: #001a488f;
} */

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
    background: white;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    margin: 0 4px 8px 4px;
    transition: 0.3s;
    border-radius: 50px;
    border: 5px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #4154f1;
    border-color: #4154f1;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px #000;
    background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: 1s;
    border: 5px solid #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid rgba(1, 41, 112, 0.2);
    border-left: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid rgba(1, 41, 112, 0.2);
    border-right: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #012970;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    background: #4154f1;
    margin: 10px 2px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
    font-size: 24px;
    line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}