/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: Montserrat, Arial, sans-serif;
    color: #585a61;
}

a {
    color: #5777ba;
    text-decoration: none;
}

a:hover {
    color: #7b94c9;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, Arial, sans-serif;

}

#myVideo {
    position: absolute;
    /* right: -25%;
  bottom: -15%; */
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    /* filter: blur(1px); */
    /* filter: contrast(130%); */
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: linear-gradient(90deg, #030a10, #113650);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: radial-gradient(rgb(140, 45, 164), rgb(36, 3, 44));
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# 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;
    transition: all 0.5s;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 5px #000;
}

#header.header-transparent {
    background: transparent;
    box-shadow: 0 0 5px #000;
}

#header.header-scrolled {
   background-color: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, );
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #5777ba;
    text-decoration: none;
}

#header .logo img {
    margin: 0;
    max-height: 80px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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: Montserrat, Arial, sans-serif;
 font-size: 16px;
   color: #000069;
    white-space: nowrap;
    font-weight: 500;
    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: #d9006f; */
    font-weight: 600;
    /* margin-left: auto; */
    /* margin-right: auto; */
    /* width: 43%; */
    border-radius: 50%;
    border-bottom: 4px solid #000069;
}

.navbar .getstarted,
.navbar .getstarted:focus {
   background-color: #000069;
    color: #fff;
    padding: 12px 25px;
    margin: 10px 0 10px 20px;
    /* margin-left: 240px; */
    line-height: 1;
    border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
   background-color: #d9006f;
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    width: 350px;
    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: 500;
}

.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: #d9006f;
}

.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 (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #47536e;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(51, 60, 79, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #47536e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #5777ba;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #5777ba;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    /* position: relative; */
    overflow: hidden;
    padding: 110px 0 60px 0;
    /* border-bottom: 1px solid #000; */
    /* background: radial-gradient(#ffffff 25%, #ffffff 50%, #ffffff00 55%); */
    /*background-image: url(../img/vecteezy_white-background-with-metal-gradient-effect_52710773.jpg);*/
    background-image: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(244 245 248 / 66%) 4%), url(../img/vecteezy_white-background-with-metal-gradient-effect_52710773.jpg);
    
/*    background: rgb(0,0,105);*/
/*background: linear-gradient(90deg, rgba(0,0,105,1) 0%, rgba(231,236,246,1) 4%);*/
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* background-position-y: top;
  background-position-x: right; */
    /* filter: contrast(130%); */
/* background-attachment: fixed; */

}

#hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  left: 0;
  right: 0;
  height: 10vh;
  /* background-image: radial-gradient(#ffffff 50%, #ffffff00 100%); */
  /* background: #ffffff; */
  /* transform: skewY(150deg); */
}


#hero .gallery {
    display: flex;
    gap: 1vw;
    /* max-width: 1200px;
    min-width: 500px; */
    height: 50vh;
    transform: translate(5%, -25%) rotate(4deg) rotateX(3deg) rotateY(5deg);
  }
  
  #hero  .gallery_line {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    height: fit-content;
    animation: slide 25s linear infinite;
  }
  
  #hero  .gallery_line:nth-child(2) {
    animation-direction: reverse;
  }
  
  #hero .gallery_line img { 
    flex: 1 1 auto;
    width: 100%;
    object-fit: cover;
    border: 3px solid #dadaff;
  }
  
  @keyframes slide {
    0 { transform: translatey(0); }
    100% { transform: translatey(-50%); }
  }

  @media (max-width:991px) {
    #hero .gallery{
        display: none;
    }
  }

#hero h1 {
    margin: 0 0 10px 0;
    /* font-size: 30px; */
    font-weight: 500;
    margin-top: 40px;
    color: #000069;
    font-family: Montserrat, Arial, sans-serif;
    position: relative;
}

#hero h1 span {
    margin: 0 0 10px 0;
    /* font-size: 30px; */
    font-weight: 600;
    margin-top: 40px;
    /*color: #d9006f;*/
    font-family: Montserrat, Arial, sans-serif;

}

#hero h2 {
    color: #000069;
    /* font-size: 24px; */
    font-weight: 500;
    z-index: 1;
    position: relative;
}

#hero h2 i {
    /*color: #d9006f;*/
    font-size: 46px;
    font-weight: 400;
    /* text-shadow: 0 0 5px #bc0a82; */
}

#hero h5 {
    background: -webkit-linear-gradient(90deg, #030a10, #113650);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

#hero .download-btn {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-top: 50px;
    display: inline-block;
    width: 100%;
    /* padding: 20px 36px 10px 66px; */
    border-radius: 8px;
    transition: 0.3s;
    color: #fff;
   background-color: #000069;
    position: relative;
}

#hero .download-btn:hover {
    background-color: #d9006f;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    font-weight: 500;
    color: #ffffff;
}

#hero .download-btn i {
    font-size: 38px;
    position: absolute;
    left: 2px;
    top: 3.5px;
}

#hero .download-btn+.download-btn {
    margin-left: 20px;
}

#hero .hero-img {
    text-align: center;
    filter: contrast(100%);

    /* animation: zoom 5s ease-in-out infinite; */
}

@keyframes zoom {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(0.9);
    }
}

#hero .hero-img img {
    width: 60%;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
#hero {

    padding: 50px 0 60px 0;

}
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        /* margin-bottom: 30px; */
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

.download-btn {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    padding: 10px 36px 10px 36px;   
    border-radius: 8px;
    transition: 0.3s;
    color: #fff;
    background: #000069;
    position: relative;
}

.download-btn:hover {
    background: #d9006f;
    color: #000069;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    font-weight: 600;
}

.details1 {
    background-image: linear-gradient(90deg, #030a10, #113650);
    padding: 20px;
    color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f2f5fa;
    box-shadow: 0 0 5px #000;
}

.section-bg1 {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    padding-bottom: 10px;
}

.section-title h1 {
    /* font-size: 32px; */
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #000069;
    font-family: Montserrat, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h4 {
    /* font-size: 32px; */
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #d9006f;
    font-family: Montserrat, Arial, sans-serif;
}

.section-title1 {
    text-align: center;
    padding-bottom: 10px;
}

.section-title1 h1 {
    /* font-size: 32px; */
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
    font-family: Montserrat, Arial, sans-serif;

}

.section-title p {
    margin-bottom: 0;
}

.partner {
    border-bottom: 2px solid #e8ecf5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background-color: #f6f8fb;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
/* #features1 {
  background-image:linear-gradient(18deg, #000000a2 0%, #000000a2 100%), url('../img/bg-awards.jpg');
  background-repeat: no-repeat;
  background-size: cover;
} */

.features .content {
    padding: 30px 0;
}

.features .content .icon-box {
    margin-top: 25px;
}

.features .content .icon-box h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 10px 60px;
}

.features .content .icon-box i {
    font-size: 36px;
    float: left;
    background: -webkit-linear-gradient(90deg, #030a10, #113650);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features .content .icon-box p {
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    margin-left: 60px;
}

@media (max-width: 991px) {
    .features .image {
        text-align: center;
    }

    .features .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .features .image img {
        max-width: 100%;
    }
}



#features1 .card-inverse h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    font-size: 24px;
    font-weight: 700;
    pointer-events: none;
    opacity: 1;
    width: 70%;
    text-align: center;
}

#features1 .card-inverse .gold-text {
    position: relative;
    margin-bottom: 30px;
    color: #fff;
    background-image: linear-gradient(to right, #c1bb84 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #c1bb84 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
    font-weight: 700;
    transition: all .3s linear;
}

#features1 .article {
    margin-top: 50px;
}


#features1 .btn-get-started {
    font-size: 18px;
    /* display: inline-block; */
    padding: 10px 0px 10px;
    border-radius: 50px;
    letter-spacing: 0px;
    transition: 0.3s ease-in-out;
    margin: 10px;
    text-align: center;
    border: 2px solid #084994;
    color: #fff;
    background-color: #084994;
    font-weight: 600;
    position: absolute;
    top: 60%;
    width: 50%;
    display: none;
}

#features1 .card-inverse:hover .btn-get-started {
    display: block;
}

#features1 .button {
    border: none;
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #084994;
    background-color: #fff;
    /* border: 2px dashed #040213; */
    font-size: 18px;
    display: inline-block;
    padding: 10px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
    margin: 10px;
    text-align: center;
    border: 3px dashed #ffffff;
    color: #fff;
    background-image: linear-gradient(90deg, #030a10, #113650);
    font-weight: 600;
}

#features1 .button:hover {
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #084994;
    background-color: #fff;
    border: 2px dashed #040213;
}

/* #features1 .body,
#features1 .body :not(script):not(style),
::before {
  display: grid;
} */

.features1 .section-title1 h1 {
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 0;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(90deg, #f5eda7 0,
            #cb9b51 22%,
            #f6e27a 45%,
            #f6f2c0 50%,
            #f6e27a 55%,
            #cb9b51 78%,
            #c1bb84 100%);
    background: linear-gradient(90deg, #c1bb84 0,
            #cb9b51 22%,
            #f6e27a 45%,
            #f6f2c0 50%,
            #f6e27a 55%,
            #cb9b51 78%,
            #c1bb84 100%);
    -webkit-background-clip: text;
    font-weight: 700;
    text-align: center;
    /* filter: drop-shadow(0 0 3px #000000); */
    filter: drop-shadow(0px 0px 1px black);
    font-family: Montserrat, Arial, sans-serif;
    -webkit-text-stroke: 1px #000;
    text-transform: uppercase;

}

.features1 {
    /*background-image: linear-gradient(#030a108c, #030a108c), url('../img/realistic-luxury-background.jpg');*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

}

.features1 .section-title h2{
   /*color: #fff;*/
   font-weight: 500;
}

.features1 ul li{
    /*color: #fff;*/
    list-style:square;
}

.features1 img{
    filter: drop-shadow(1px 1px 3px #fff);
    transition: .3s ease-in-out;
}

.features1 img:hover{
    transform: scale(0.9);
    filter: drop-shadow(1px 1px 8px);
    transition: .3s ease-in-out;
}

.topics.container {
    background-color: white;
}

.topics .content h3,
.topics .content h5 {
    color: #ffffff;
}



.contain {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contain .card {
    position: relative;
    width: 250px;
    height: 450px;
    background: #232323;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 12px;
}

.contain .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#ffffff, #edbc2b);
    clip-path: circle(150px at 80% 20%);
    transition: 0.5s ease-in-out;
}

.contain .card:hover:before {
    clip-path: circle(300px at 80% -20%);
}

.contain .card:after {
    content: "Awards";
    position: absolute;
    top: 30%;
    left: -20%;
    font-size: 12em;
    font-weight: 800;
    font-style: italic;
    color: rgba(255, 255, 255, 0.04);

}

.contain .card .imgBx {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* z-index: 1000; */
    width: 100%;
    height: 100%;
    transition: .5s;
}

.contain .card:hover .imgBx {
    top: 0%;
    transform: translateY(-10%);
    /* bug  */
}

.contain .card .imgBx img {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 80%;
}

.contain .card .contentBx {
    position: absolute;
    bottom: 70px;
    width: 100%;
    height: 100px;
    text-align: center;
    transition: 1s;
    z-index: 90;
}

.contain .card:hover .contentBx {
    height: 150px;
    bottom: 100px;
}

.contain .card .contentBx h2 {
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    font-size: 20px;
    padding: 0px 10px;
}

.contain .card .contentBx .size,
.contain .card .contentBx .color {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.contain .card:hover .contentBx .size {
    opacity: 1;
    visibility: visible;
    transition-delay: .5s;
}

.contain .card:hover .contentBx .color {
    opacity: 1;
    visibility: visible;
    transition-delay: .6s;
}

.contain .card .contentBx .size h3,
.contain .card .contentBx .color h3 {
    color: white;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 10px;
}

.contain .card .contentBx .size span {
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    display: inline-block;
    color: #111;
    background: #fff;
    margin: 0 5px;
    transition: .5s;
    color: #111;
    border-radius: 4px;
    cursor: pointer;
}

.contain .card .contentBx .size span:hover {
    /* other bug */
    background: #B90000;
}

.contain .card .contentBx .color span {
    width: 20px;
    height: 20px;
    background: #ff0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.contain .card .contentBx .color span:nth-child(2) {
    background: #1BBFE9;
}

.contain .card .contentBx .color span:nth-child(3) {
    background: #1B2FE9;
}

.contain .card .contentBx .color span:nth-child(4) {
    background: #080481;
}

.contain .card .contentBx a {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    opacity: 0;
    transform: translateY(50px);
    transition: .5s;
}

.contain .card:hover .contentBx a {
    opacity: 1;
    transform: translateY(40px);
    transition-delay: .2s;
}

/*--------------------
Form
--------------------*/
.form fieldset {
    border: none;
    padding: 0;
    padding: 10px 0;
    position: relative;
    clear: both;
}

.form fieldset.fieldset-expiration {
    float: left;
    width: 60%;
}

.form fieldset.fieldset-expiration .select {
    width: 84px;
    margin-right: 12px;
    float: left;
}



.form fieldset label {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 5px;
    font-weight: bold;
    font-family: Inconsolata;
}

.form fieldset input,
.form fieldset .select {
    width: 100%;
    height: 38px;
    color: #333333;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    outline: none !important;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
}

.form fieldset input.input-cart-number,
.form fieldset .select.input-cart-number {
    width: 82px;
    display: inline-block;
    margin-right: 8px;
}

.form fieldset input.input-cart-number:last-child,
.form fieldset .select.input-cart-number:last-child {
    margin-right: 0;
}

.form fieldset .select {
    position: relative;
}

.form fieldset .select::after {
    content: "";
    border-top: 8px solid #222;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 10px;
    pointer-events: none;
}

.form fieldset .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    padding: 0;
    border: none;
    width: 100%;
    outline: none !important;
    top: 6px;
    left: 6px;
    background: none;
}

.form fieldset .select select :-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.form button {
    width: 100%;
    outline: none !important;
    background: linear-gradient(143deg, #e50c0c, #2e0101);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    border: none;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 90px;
    transition: .3s ease-in-out;
}

.form button:hover {
    width: 100%;
    outline: none !important;
    background: linear-gradient(43deg, #e50c0c, #2e0101);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    border: none;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 90px;
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.form button .fa {
    margin-right: 6px;
}

/*--------------------
Checkout
--------------------*/
.checkout {
    margin: 150px auto 30px;
    position: relative;
    /* width: 350px; */
    background: linear-gradient(to top, #ffefba, #ffffff00);
    border-radius: 15px;
    padding: 160px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1400px) and (min-width: 1200px) {

    .checkout {
        margin: 150px auto 30px;
        position: relative;
        /* width: 350px; */
        background: linear-gradient(to top, #ffefba, #ffffff00);
        border-radius: 15px;
        padding: 115px 45px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

}

@media (max-width: 1199px) and (min-width: 991px) {

    .checkout {
        margin: 150px auto 30px;
        position: relative;
        /* width: 350px; */
        background: linear-gradient(to top, #ffefba, #ffffff00);
        border-radius: 15px;
        padding: 130px 45px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

}

@media (max-width: 768px) and (min-width: 576px) {

    .checkout {
        margin: 150px auto 30px;
        position: relative;
        /* width: 350px; */
        background: linear-gradient(to top, #ffefba, #ffffff00);
        border-radius: 15px;
        padding: 245px 45px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

}

@media (max-width: 576px) and (min-width: 500px) {

    .checkout {
        margin: 150px auto 30px;
        position: relative;
        /* width: 350px; */
        background: linear-gradient(to top, #ffefba, #ffffff00);
        border-radius: 15px;
        padding: 270px 45px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

}

@media (max-width: 500px) and (min-width: 400px) {

    .checkout {
        margin: 150px auto 30px;
        position: relative;
        /* width: 350px; */
        background: linear-gradient(to top, #ffefba, #ffffff00);
        border-radius: 15px;
        padding: 220px 45px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

}

@media (max-width: 400px) and (min-width: 334px) {

    .checkout {
        margin: 150px auto 30px;
        position: relative;
        /* width: 350px; */
        background: linear-gradient(to top, #ffefba, #ffffff00);
        border-radius: 15px;
        padding: 220px 45px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

}

/*--------------------
Credit Card
--------------------*/


/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/

.details .section-bg1 {
    background-color: linear-gradient(90deg, #030a10, #113650);
}

.details .content h1 {
    font-weight: 500;
    margin-bottom: 20px;
    color: #000069;
    /* font-size: 32px; */
}

.details .content h1 span{
    font-weight: 500;
    margin-bottom: 20px;
    color: #d9006f;
    /* font-size: 32px; */
}

.details .content p {
    /* font-weight: 500; */
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 24px;
    font-size: 17px;
    /* font-size: 32px; */
}

.details .content p span{
    font-weight: 600;
    margin-bottom: 20px;
    color: #000069;
    letter-spacing: 1px;
    /* font-size: 32px; */
}

.details .content ul {
    list-style: none;
    padding: 0;
}

.details .content ul li {
    padding-bottom: 10px;
}

.details .content ul i {
    font-size: 24px;
    padding-right: 2px;
    color: #5777ba;
    line-height: 0;
}

.details .content img {
    /*box-shadow: 0 0 5px #000;*/
    width: 120%;
    /*filter: brightness(115%);*/
}

.details .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
    background-color: #efefefd9;
    padding: 40px 0;
}

.gallery .swiper {
    padding: 10px 20px;
}

.gallery .swiper-slide img {
    transition: 0.3s;
    border-radius: 10px;
    width: 100%;
    filter: brightness(120%);
    box-shadow: 0 0 5px #000;
}

.gallery .swiper-slide img:hover {
    border: 5px solid #fff;
    box-shadow: 0 0 10px #000;
}

.gallery .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.team {
    /* box-shadow: inset 0 50px 650px #cce0ff; */
 background:rgba(231,236,246,1);
/*background: linear-gradient(90deg, rgba(0,0,105,1) 0%, rgba(231,236,246,1) 4%);*/
    /*background-image: url('../img/speakerbg1.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.team .team-item {
    box-sizing: content-box;
    /* padding: 5px 5px 5px 5px; */
    /* margin: 10px 10px 10px 10px;
    min-height: 150px; */
    box-shadow: 0px 2px 15px #030a10;
    position: relative;
    /* background-color: #fff; */
}

.team .team-item:hover .team-img {
    transform: scale(1.2);
    transition: .3s ease-in-out;
}

.team .team-item .speaker-info {
    padding: 0px 10px 0px 10px;
}

.team .team-item .team-img {
    width: 130px;
    border-radius: 3px;
    border-radius: 50%;
    box-shadow: 0 5px 0px #960c6a;
    position: absolute;
    left: -25px;
    top: -35px;
    transition: .3s ease-in-out;
}

.team .team-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    color: rgb(56, 56, 56);
    text-align: right;
}

.team .team-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgb(56, 56, 56);
    margin: 0;
    text-align: right;
}

.team .team-item p {
    font-size: 13px;
    color: rgb(56, 56, 56);
    margin: 0;
    line-height: 18px;
    font-weight: 600;
    text-align: right;
}

/* #team .contain2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
} */

#team .card {
    /* position: relative; */
    width: 100%;
    /* height: 450px; */
    background-color: transparent;
    /* border-radius: 20px; */
    overflow: hidden;
    border: none;
    margin-top: 12px;
}

/* #team .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#ffffff, #edbc2b);
    clip-path: circle(160px at 50% 0%);
    transition: 0.5s ease-in-out;
}

#team .card:after {
    content: "";
    position: absolute;
    top: 30%;
    left: -20%;
    font-size: 7em;
    font-weight: 800;
    font-style: italic;
    color: #85858554;
    transform: translate(-4%, 10%) rotate(314deg);
} */

#team .card .imgBx {
    position: absolute;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* z-index: 1000; */
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: 1;
}

#team .card  img {
    /* position: absolute; */
    /* border-radius: 50%; */
    /*border-left: 6px solid #000069;*/
    /*border-right: 6px solid #d9006f;*/
    /*border-bottom-left-radius: 25%;*/
    /*border-top-right-radius: 25%;*/
    width: 100%;
    align-items:center;
     -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    /*border-radius: 15%;*/
}

#team .card .contentBx {
    /* width: 100%; */
    /* height: 100%; */
    min-height: 149px;
    /* transition: 1s; */
    /* z-index: 90; */
    background-color: white;
    text-align: center;
    /* padding: 20px; */
    /* border-radius: 8px; */
    /* margin-top: 17px; */
    /* border-radius: 20%; */
    /* border: 3px solid #000069; */
    /* border-right: 6px solid #000069; */
    /* border-left: 6px solid #d9006f; */
}
#team .card .contentBx h2 {
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

#team .card .contentBx .size,
#team .card .contentBx .color {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

#team .card:hover .contentBx .size {
    opacity: 1;
    visibility: visible;
    transition-delay: .5s;
}

#team .card:hover .contentBx .color {
    opacity: 1;
    visibility: visible;
    transition-delay: .6s;
}

#team .card .contentBx p {
    line-height: 25px;
    margin-bottom: 0px;
    text-decoration: none;
    font-weight: 500;
    font-family: Montserrat, Arial, sans-serif;
    color: #000;
    /* opacity: 1; */
    /* transform: translateY(50px); */
    transition: .5s;
}

#team .card .contentBx h5 {
    display: block;
    /* padding: 5px 10px; */
    /* background: #fff; */
    border-radius: 4px;
    margin-bottom: 0px;
    text-decoration: none;
    font-weight: 600;
    font-family: Montserrat, Arial, sans-serif;
    color: #000069;
    /* opacity: 1; */
    /* transform: translateY(50px); */
    transition: .5s;
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 10px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    /*padding: 20px;*/
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #3038a0;
    background: #3038a0;
    border-radius: 15px;
    min-height: 180px;
}

.testimonials .testimonial-item .info-box {
    min-width: 276px;
    display: flex !important;
    align-items: center !important;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 0;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    color: #ffffff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #f7c633;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #ffffff;
    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 {
    margin: 15px auto 15px auto;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #000462;
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
        flex-direction: column;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }

    .mb-50 {
        margin-bottom: 50px;
    }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
    background: linear-gradient(90deg, #ffffff, #ffffff);
}

.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: linear-gradient(to right, #040c5f, #040c5f);
    transition: .5s;
    margin-top: 20px;

}

.pricing-left {
    text-align: center;
    /* padding-left: 40px; */

}

.pricing-left h3 {
    font-size: 22px;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 700;
}

.pricing-left p {
    font-size: 30px;
    position: relative;
    /* top: 20px; */
    color: #ffffff;
    font-weight: 800;
    margin-top: 20px;
}

.pricing-left p span {
    font-size: 30px;
    position: relative;
    /* top: -1px; */
    color: #ffffff;
}

.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: #ffffff;
    font-weight: 600;
}

.pricing-center2 h4 {
    display: block;
    list-style: none;
    font-size: 22px;
    padding: 5px 0 5px;
    color: #ffffff;
    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: 7px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #042C4D;
    border-radius: 5px;
    border: 1px solid #13a2dc;
    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 #13a2dc;
    border-right: 1px solid #13a2dc;
}

.single-pricings-boxs .pricing-button a {
    color: #fff;
    background: linear-gradient(to right, #030a10, #113650);
}

.single-pricing-box:hover .pricing-button a {
    background: linear-gradient(to right, #030a10, #113650);
    color: #fff;
}

/* .single-pricings-boxs:hover {
    transform: translate3d(-10px, 0, 0);
}

.single-pricing-box:hover {
    transform: translate3d(-10px, 0, 0);
} */

.single-pricing-box .pricing-button:hover {
    border-color: #13a2dc;
}

@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;
    }
}


.pricing img {
    position: absolute;
    /* padding-top: 30%; */
    width: 420px;
    max-width: 100%;
    left: 35%;
    top: -10px;
    z-index: 1;
}

@media(max-width:991px) {

    .pricing img {
        position: absolute;
        /* padding-top: 30%; */
        width: 420px;
        max-width: 100%;
        left: 0%;
        top: 35%;
        z-index: 1;
    }
}

@media(max-width:767px) {

    .pricing img {
        position: absolute;
        /* padding-top: 30%; */
        width: 420px;
        max-width: 100%;
        left: 10%;
        top: 35%;
        z-index: 1;
    }
}

@media(max-width:524px) {

    .pricing img {
        position: absolute;
        /* padding-top: 30%; */
        width: 420px;
        max-width: 100%;
        left: 0%;
        top: 35%;
        z-index: 1;
    }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    padding: 20px 10px;
    background: #040c5f;
    color: #47536e;
    text-align: center;
    border: 3px solid #fff;
}

.contact .info i {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
}

.contact .info h4 {
    padding: 0;
    margin: 0 0 10px 0;
    /* font-size: 16px; */
    font-weight: 600;
    text-transform: uppercase;
    font-family: Montserrat, Arial, sans-serif;
color: #fff;
}

.contact .info p {
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    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: #18d26e;
    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 #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
    font-family: Montserrat, Arial, sans-serif;
 margin-bottom: 5px;
    color: #8a8c95;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #5777ba;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #fff;
    border: 2px solid #5777ba;
    padding: 10px 24px;
    color: #5777ba;
    transition: 0.4s;
    border-radius: 50px;
    margin-top: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #5777ba;
    color: #fff;
}

@media (max-width: 1024px) {
    .contact .php-email-form {
        padding: 30px 15px 15px 15px;
    }
}

@media (max-width: 768px) {
    .contact .php-email-form {
        padding: 15px 0 0 0;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer .footer-top {
    padding: 30px 0 30px 0;
    background-color: #040c5f;
}

#footer .footer-top .footer-contact img {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 20px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: Montserrat, Arial, sans-serif;
 color: #ffffff;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #47536e;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #9fb2d8;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #8a8c95;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #5777ba;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: linear-gradient(90deg, #030a10, #113650);
    color: #fff;
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border-bottom: 4px solid #ffffff;
}

#footer .footer-top .social-links a:hover {
    background: #ffffff;
    color: #000465;
    text-decoration: none;
}

#footer .copyright {
    text-align: center;
    float: left;
    color: #47536e;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #47536e;
}

@media (max-width: 768px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 5px 0;
    }
}

#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 #8c2da4;
    border-radius: 20%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-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;
    }
}

@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;
    }
}





.wrapper-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem;
    cursor: pointer;
    justify-content: center;

}

.container1 {
    box-shadow: 0px 2px 8px 0px var(--clr-gray-light);
    box-shadow: 0 0 5px #000;
    text-align: center;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 410px;
    margin-bottom: 10px;
    /* margin-left: 1rem; */
    background-color: #ffffff;
}

.banner-img {
    position: absolute;
    background-image: linear-gradient(90deg, #030a10, #113650);
    height: 10rem;
    width: 100%;
    height: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-img {
    width: 10rem;
    clip-path: circle(80px at center);
    margin-top: 20px;
}

/* .name {
  font-size: 18px;
} */

/* .description {
  margin: 1rem 1rem;
  font-size: 0.9rem;
} */

.btn {
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background-color: #3e4095;
    /* padding: 1rem; */
    letter-spacing: 1px;
}

.btn:hover {
    cursor: pointer;
    background-color:#fff;
    color: #3e4095;
    border: 3px solid #3e4095;
    opacity: 0.9;
}

/* footer credits */
.footer-heart {
    text-align: center;
    font-family: open sans, sans-serif;
    padding: 20px;
    background-color: var(--clr-gray-light);
}

.footer-heart a {
    border-bottom: 1px solid #453886;
    color: black;
    padding-bottom: 0.25em;
    text-decoration: none;
}

.footer-heart a:hover {
    color: indianred;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23453886' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 20%;
    border-bottom: 0;
    padding-bottom: 0.3em;
    text-decoration: none;
}

.emoji {
    vertical-align: middle;
}

/* .attend1 .section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  background: -webkit-linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   font-family: Montserrat, Arial, sans-serif;
} */

/* .attend1 .section-title h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  background: -webkit-linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   font-family: Montserrat, Arial, sans-serif;
} */
.attend1 img{
    box-shadow: 0 0 5px #000;
}

.attend1 .content ul {
    list-style: none;
    padding: 0;
    /* display: flex;
  flex-wrap: wrap;
  gap: 10px; */
}

.attend1 .content ul li {
    position: relative;
    color: rgb(19 20 20 / 80%);
    margin-bottom: 5px;
    border-radius: 8px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    /* width: 48%; */
    line-height: 50px;
}

.attend1 .content ul li:hover {
    color: #ffb20a;
    margin-left: 10px;
}

.attend1 .content ul i {
    color: #fff;
    background: #000069;
}

.attend1 .content ul {
    list-style: none;
    padding: 0;
}

.attend1 .content ul li {
    padding: 1px 10px 1px 10px;
    position: relative;
    color: #fff;
    background: #000069;
    margin-bottom: 5px;
    border-radius: 8px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 1px;
}

.attend1 .content ul li:hover {
    color: #fff;
    margin-left: 10px;
}

.attend1 .content ul i {
    color: var(--color-primary);
}


@media (min-width: 768px) {
    .container-fluid {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}


@media (max-width: 992px) {
    .cid-tlLbHJEfxQ .row {
        margin: 0;
    }
}

@media (max-width: 992px) {
    .cid-tlLbHJEfxQ .row .title-wrapper {
        display: none;
    }
}

.services .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
}


.services .icon-box {
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #000064;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: all 1s;
}

@media(max-width:991px) {
    .services .icon-box {
        padding: 20px;
        position: relative;
        overflow: hidden;
        background: #000064;
        transition: all 0.3s ease-in-out;
        border-radius: 15px;
        z-index: 1;
        height: 100%;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        display: block;
        transition: all 1s;
        /* align-items: center;
    justify-content: center; */
    }
}

.services .icon-box .title {

    margin-bottom: 15px;
    font-size: 19px;
    color: #fff;
    font-weight: 600;
}

.services .icon-box .icon {
    /* margin-bottom: 20px; */
    padding-top: 10px;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 52px;
    line-height: 1;
    color: #fff;
}

.services .icon-box:hover {
    transition: all 1s;
    box-shadow: inset 0 0 20px 20px #fff;
}

.services .icon-box:hover .title a,
.services .icon-box:hover p,
.services .icon-box:hover .icon {
    /* color: #fff; */
    background: -webkit-linear-gradient(18deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services .icon-box.active {
    background: linear-gradient(90deg, #030a10, #113650);
}

.services .icon-box.active .title a,
.services .icon-box.active p,
.services .icon-box.active .icon {
    color: #fff;
    background: linear-gradient(18deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* filter: drop-shadow(7px 4px 0px #000); */
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: #ffffff;
}


.cid-tlLbQcNGJO .row .blur-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 420px;
    /* border-radius: 100%; */
    /* background-image: linear-gradient(90deg, #ffb639 50%, #ca41ec); */
    /* backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px); */
    z-index: 1;
}

.cid-tlLbQcNGJO .title{
    color: #000;
    line-height: 28px;
}

.cid-tlLbQcNGJO .title span{
    color: #d9006f;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cid-tlLbQcNGJO .row .blur-circle {
        display: none;
    }
}

.cid-tlLbQcNGJO .mbr-fallback-image.disabled {
    display: none;
}

.cid-tlLbQcNGJO .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 992px) {
    .cid-tlLbQcNGJO .row {
        padding: 0 35px;
    }
}

@media (max-width: 425px) {
    .cid-tlLbQcNGJO .row {
        padding: 0 24px;
    }
}

.cid-tlLbQcNGJO .title-wrapper {
    position: relative;
    z-index: 2;
    /* margin-bottom: 64px; */
    width: 100%;
}

@media (max-width: 992px) {
    .cid-tlLbQcNGJO .title-wrapper {
        margin-bottom: 32px;
    }
}

.cid-tlLbQcNGJO .title-wrapper .mbr-section-title {
    margin-bottom: 10px;
}

.cid-tlLbQcNGJO .title-wrapper .mbr-section-title span {
    position: relative;
    z-index: 1;
}

.cid-tlLbQcNGJO .title-wrapper .mbr-section-title span::before {
    content: '';
    position: absolute;
    bottom: 22%;
    left: 0;
    width: 100%;
    height: 14px;
    background-color: #ca41ec;
    z-index: -1;
}

.cid-tlLbQcNGJO .title-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-tlLbQcNGJO .card {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 1rem;
    padding: 30px 15px 16px 10px;
    border-radius: 8px;
    background-color: #000064;
    z-index: 2;
    transition: 0.5s;
    box-shadow: 0 0 3px #000;
}

@media (max-width : 500px) {
    .cid-tlLbQcNGJO .card {
        position: relative;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-bottom: 2rem;
        padding: 16px;
        border-radius: 8px;
        background-color: #000064;
        z-index: 2;
        transition: 0.5s;
    }

    .cid-tlLbQcNGJO .card .card-number {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 30px;
        height: 30px;
        background-image: linear-gradient(90deg, #030a10, #113650);
        border-radius: 100%;
        margin-bottom: 16px;
    }

    .cid-tlLbQcNGJO .card .card-number .mbr-number i {
        color: #ffffff;
    }
}

.cid-tlLbQcNGJO .card .card-number {
    border-radius: 20%;
    margin-right: 10px;
    top: 0%;
    left: 0%;
    position: absolute;
    
}


.cid-tlLbQcNGJO .card .card-number .mbr-number i {
    color: #ffffff;
    font-size: 20px;
    padding: 5px;
    filter: drop-shadow(0 0 3px #fff);
}

.cid-tlLbQcNGJO .card .mbr-card-title {
    margin-bottom: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-left: 15px;
}

.cid-tlLbQcNGJO .mbr-section-title {
    color: #f4efe8;
}

.cid-tlLbQcNGJO img{
    filter: brightness(115%);
    border-radius: 5%;
    box-shadow: 0 0 5px #000;
}

.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
    background: linear-gradient(90deg, #030a10, #113650);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* filter: drop-shadow(7px 4px 0px #000); */
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: #ffffff;
}

.faq .content h4 {
    font-size: 20px;
    margin-top: 5px;
}

.faq .content p {
    font-size: 15px;
    color: #6c757d;
}

.faq .accordion-item {
    border: 0;
    margin-bottom: 20px;
    box-shadow: 0 0 2px 0 rgb(8 66 152 / 33%);
    border-radius: 15px;
    background: linear-gradient(90deg, #000064, #113650);
}

.faq .accordion-item:last-child {
    margin-bottom: 0;
}

.faq .accordion-collapse {
    border: 0;
}

.faq button{
    padding: 10px 50px 10px 20px;
    font-weight: 500;
    border: 0;
    font-size: 21px;
    line-height: 25px;
    color: #ffffff;
    text-align: left;
    background: #fff0;
    box-shadow: none;
    border-radius: 15px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px #000;
}

.faq button h5{
    padding-left: 20px;
    margin-top: 10px;
}

.faq button .num {
    padding-right: 10px;
    font-size: 30px;
    line-height: 0;
    color: #ffffff;
}

.faq button:not(.collapsed) {
    color: #ffffff;
    border-bottom: 0;
    box-shadow: none;
}

.faq button:after {
    flex-shrink: 0;
    width: 20px;
    height: 12px;
    margin-left: auto;
    content: "";
    position: absolute;
    right: 30px;
    top: 25px;
    background: url(../img/downarrow.png);
}

.faq .accordion-body {
    padding: 20px;
    border: 0;
    border-radius: 15px;
    background: #fff;
    box-shadow: inset 0 0 10px #000;
    font-size: 20px;
    color: #000;
    font-weight: 500;
}


.media {
    background-color: #ffffff;
}
