body {
    ffont-family: 'Mukta', sans-serif;
    color: #444444;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #67b0d1;
}

a:hover {
    color: #8ec4dd;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    ffont-family: 'Mukta', sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 998;
    background: #67b0d1;
    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: #86c0da;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.black-bg {
    background-color: #000;
}

/*--------------------------------------------------------------
  # 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: 14px 0;
    background: #fefefe;
    box-shadow: 0 0 5px #000;
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: #fefefe;
    padding: 10px;
    border-bottom: 2px solid #000;
}

#header .logo h1 {
    font-size: 24px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    ffont-family: 'Mukta', sans-serif;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

@media (max-width: 768px) {
    #header.header-scrolled {
        padding: 15px 0;
    }
}

/*--------------------------------------------------------------
  # 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: 4px 8px;
    margin-left: 10px;
    ffont-family: 'Mukta', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #084994;
    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 {
    background: #084994;
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 10px;
    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;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 500;
    color: #2f4d5a;
}

.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: #fff;
}

.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: #084994;
    border: 2px solid #084994;
    border-radius: 10px;
    font-size: 38px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@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(43, 111, 142, 0.9);
    transition: 0.3s;
}

.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;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #2f4d5a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #67b0d1;
}

.navbar-mobile .getstarted {
    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: #67b0d1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/

a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

a:hover {
    transition: all 0.5s ease-in-out;
}

.card-body1 {
    border-radius: 4px;
    /* padding: 10px; */
    /* min-height: 350px; */
    height: 100%;
    /* background: linear-gradient(#ffffff00 , #08499445 60%); */
    transition: .2s ease-in-out;
    box-shadow: 0 0 5px #000;
    /* box-shadow: 0 0 5px #000; */
}

#cards1 {
    background: url("../../images/bgimage1.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

}

#cards1 .card {
    border-radius: 20px;
    /* box-shadow: 0 0 45px #11245c; */
    height: 100%;
}

#cards1 .heading-border {
    position: absolute;
    width: 100%;
    top: 60%;
}

#cards1 .user-picture1 img {
    /* border-top-left-radius: 10%;
    border-top-right-radius: 10%; */
    /* padding: 5px; */
    transition: .3s ease-in-out;
    border: 1px solid #000;
    /* animation: morphing 10s infinite; */
}

#cards1 .user-content1 {
    /* background-image: radial-gradient(#084994); */
    background-color: #032d5c;
    padding: 10px;
    min-height: 180px;
    border-radius: 0px;
    color: #fff;
    border: 1px solid #000;

}

#cards1 .user-content1 .user-name {
    font-weight: 600;
    color: #fff;
}

#cards1 .user-content1 p {
    color: #fff;
    line-height: 20px;
}

.serviceBox {
    color: #999;
    text-align: center;
    padding: 0 15px 15px;
    border-radius: 0 0 150px 150px;
    box-shadow: 0 12px 7px -7px rgba(0, 0, 0, 0.2);
    min-height: 275px;
}

.serviceBox .service-icon1 {
    color: #fff;
    background-image: radial-gradient(#084994, #040213);
    font-size: 50px;
    line-height: 80px;
    height: 80px;
    width: 85px;
    border-radius: 0 0 50px 50px;
    margin-bottom: 10px;
}

.serviceBox .service-content {
    background: #fff;
    padding: 0 15px 15px;
    border-radius: 15px 15px 110px 110px;
    box-shadow: 0 10px 20px #00000096;
    min-height: 275px;
}

.serviceBox .title {
    color: #334f96;
    font-size: 20px;
    font-weight: 500;
    border: none;
    padding: 0px;
    margin-bottom: 10px;
    line-height: 25px;


}

.serviceBox .description {
    font-size: 15px;
    color: #000;
    line-height: 20px;
    margin-top: 15px;
    display: none;


}

.serviceBox .title:hover+.description {
    display: block;
}

.serviceBox .read-more {
    color: #334f96;
    font-size: 18px;
    transition: all 0.3s ease 0s;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    padding: 10px;
    cursor: pointer;
}

.serviceBox .read-more:hover {
    color: #fff;
    background-image: radial-gradient(#084994, #040213);
}

@media only screen and (max-width:990px) {
    .serviceBox {
        margin: 0 0 30px;
    }

    .serviceBox .service-content {
        padding: 0 35px 20px;
    }
}

@media only screen and (max-width:359px) {
    .serviceBox .service-content {
        padding: 0 20px 20px;
    }
}


#hero {
    width: 100%;
    /* background: url("../../images/herobg4.jpg"); */
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    /* z-index: -1; */
    /* background: linear-gradient(#fff) ; */
}

#hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #0d2745, #0d2745a6, #ffffff00);
    z-index: 9;
}

#hero .hero-container {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 11;
}

#hero .img {
    width: 100%;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    padding: 10px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    text-shadow: -1px 0 2px #fff;
}

#hero h2 span {
    padding: 20px;
}

#hero h1 span {
    padding: 10px;
}

#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 30px;
    /* font-size: 26px; */
    font-weight: 600;
    /* text-shadow: -1px 0 2px #000; */
}

#hero h2 i {
    font-size: 46px;
    font-weight: 500;
    color: #ffff;
}

#hero h3 {
    color: #fff;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 500;
    /* transform: rotateZ(-2deg); */
}

#hero h4 {
    color: #084994;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 1px 1px 2px #084994;
    /* transform: rotateZ(1deg); */
}

#hero h4 i {
    font-size: 36px;
}

@media (max-width: 661px) {
    #hero h3 {
        color: #084994;
        /* font-size: 14px; */
        margin-top: 5px;
        font-weight: 500;
    }
}

@media (max-width: 661px) {
    #hero h3 i {
        font-size: 18px;
    }
}

@media (max-width: 331px) {
    #hero h4 {
        color: #084994;
        font-size: 18px;
        margin-top: 0px;
        font-weight: 500;
    }
}

#hero .btn-get-started {
    font-size: 20px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    /* letter-spacing: 1px; */
    transition: 0.3s ease-in-out;
    margin: 10px;
    text-align: center;
    border: 2px solid #084994;
    color: #084994;
    background-color: #fff;
    font-weight: 600;
    width: 100%;
}

#hero .btn-get-started:hover {
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #084994;
    background-color: #fff;
    transform: scale(0.9);
}

/* @media (max-width: 991px) {

    #hero {
        background-color: #ffffff;
    }
} */

/* @media (max-width: 1267px) {
    #hero .btn-get-started {
        font-size: 13px;
        display: inline-block;
        padding: 5px 15px;
        border-radius: 50px;
        transition: 0.3s ease-in-out;
        margin: 10px;
        text-align: center;
        border: 2px solid #084994;
        color: #084994;
        font-weight: 600;
    }

    #hero .btn-get-started:hover {
        padding-top: 8px;
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        background-color: #084994;
        transform: scale(1.1);
    }
} */

/* @media (max-width: 681px) {
    #hero .btn-get-started {
        display: none;
    }
} */


@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 658px) {
    #hero h1 {
        font-size: 16px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px;
    }
    #hero h2 I{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px;
    }
}

@media (max-width: 958px) {
    #hero h1 {
        font-size: 20px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .btn-get-started {
    font-size: 15px;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 50px;
    /* letter-spacing: 1px; */
    transition: 0.3s ease-in-out;
    margin: 0px;
    text-align: center;
    border: 2px solid #084994;
    color: #084994;
    background-color: #fff;
    font-weight: 600;
    width: 100%;
}

#hero .btn-get-started:hover {
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #084994;
    background-color: #fff;
    transform: scale(0.9);
}
}

.gelatine {
    animation: gelatine 5s infinite;
}

@keyframes gelatine {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

.flash {
    animation: flash 500ms ease infinite alternate;
}

@keyframes flash {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.pulse {
    animation: pulse 10s infinite ease-in-out alternate;
}

@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.2);
    }
}

.shake {
    animation: shake 5s ease infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-20px);
    }

    60% {
        transform: translateX(20px);
    }
}

.wobble {
    animation: wobble 5s ease infinite;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    /* 15% { transform: translateX(-5%) rotate(-3deg); } */
    30% {
        transform: translateX(2%) rotate(2deg);
    }

    /* 45% { transform: translateX(-7%) rotate(-3deg); } */
    60% {
        transform: translateX(-2%) rotate(-2deg);
    }

    /* 75% { transform: translateX(-5%) rotate(-1deg); } */
    100% {
        transform: translateX(0%);
    }
}

.swing {
    transform-origin: top center;
    animation: swing 8s ease infinite;
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.tagline {
    background-image: radial-gradient(#084994, #040213);
}

.tagline h3 {
    text-transform: none;
    text-align: center;
    color: #fff;
    line-height: 70px;
    filter: drop-shadow(1px 1px 0 #fff);
    /* text-shadow: 1px 1px 2px #fff, 0 0 25px #fff, 0 0 5px #fff; */
}


/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 20px 0;
    overflow: hidden;
}

.section-bg {
    background-image: linear-gradient(180deg, #0d2949, #064081, #0d2745);
    /* background-attachment: fixed; */
}

.section-bg2 {
    background-image: radial-gradient(#084994, #040213);
    /* background-attachment: fixed; */
}

.section-bg1 {
    background-color: #fafafc;
}

.section-title {
    text-align: center;
}

.section-title h5 {
    font-weight: bold;
    position: relative;
    margin-bottom: 15px;
    color: #084994;
    z-index: 2;
    font-weight: 600;
}

.section-title h2 {
    font-weight: bold;
    position: relative;
    margin-bottom: 30px;
    color: #084994;
    z-index: 2;
    font-weight: 600;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 172px;
    height: 76px;
    border-bottom: 3px solid #084994;
    border-top: 3px solid #084994;
    z-index: -5;
}

.section-title1 {
    text-align: center;
}

.section-title1 h2 {
    font-weight: bold;
    position: relative;
    margin-bottom: 30px;
    color: #fff;
    z-index: 2;
    font-weight: 600;
}

.section-title1 h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 172px;
    height: 76px;
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
    z-index: -5;
}

.section-title2 {
    text-align: center;
}

.section-title2 h2 {
    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;
    filter: drop-shadow(-3px 3px 0 #000);
}

.section-title2 h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 172px;
    height: 76px;
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
    z-index: -5;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
/* .about{
    width: 100%;
    background: url("../img/hacker.gif");
    background-size: cover;
    position: relative;
} */

.about .container {
    position: relative;
    z-index: 10;
}

.about .about-slider {
    padding: 20px;
}

.about .about-slider img {
    width: 90%;
    padding: 2px;
    border: 2px solid #073b75;
    box-shadow: 0 0 5px #073b75;
    border-radius: 50px;
    filter: brightness(130%);
    /* animation: morphing 15s infinite; */
}


.about .content p {
    /* font-weight: 500; */
    color: #000;
    /* line-height: 22px;
    font-size: 18px; */
}

.about .content h3 {
    font-weight: 600;
    color: #073b75;
}

/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.services .icon-box::before {
    content: '';
    position: absolute;
    background: white;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.services .icon-box:hover::before {
    background: #084994;
    top: 0;
    border-radius: 0px;
}

.services .icon {
    margin-bottom: 15px;
}

.services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #084994;
    transition: all 0.3s ease-in-out;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 500;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
    color: #fff;
}

.services .icon-box:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/

.counts .count-box {
    padding: 20px;
    width: 100%;
}

.counts .count-box i {
    display: block;
    font-size: 44px;
    color: #fff;
    float: left;
    line-height: 0;
}

.counts .count-box span {
    font-size: 48px;
    line-height: 40px;
    display: block;
    font-weight: 700;
    color: #fff;
    margin-left: 60px;
    filter: drop-shadow(1px 1px 0 #fff);
}

.counts .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 60px;
    font-family: 'Mukta', sans-serif;
    font-size: 14px;
    color: #fff;
}


@media(max-width:991px){
    .counts .count-box i {
    display: block;
    font-size: 24px;
    color: #fff;
    float: left;
    line-height: 0;
}

.counts .count-box span {
    font-size: 24px;
    line-height: 26px;
    display: block;
    font-weight: 600;
    color: #fff;
    margin-left: 30px;
    filter: drop-shadow(1px 1px 0 #fff);
}
.counts .count-box p {
    padding: 0px;
    margin: 0px;
    font-family: 'Mukta', sans-serif;
    font-size: 14px;
    color: #fff;
}
}


.counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #49788c;
    font-size: 15px;
    font-family: 'Mukta', sans-serif;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: #6e9fb4;
}

#myVideo {
    position: fixed;
    left: 0;
    right: 0;
    top: 20px;
    /* added units */
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    transform: rotateY(180deg);
    /* removed quotes and added unit */
}

/*--------------------------------------------------------------
  # Cta
  --------------------------------------------------------------*/
.cta {
    background-image: linear-gradient(to right, #ffffff00, #fbfbfb 70%);
    background-size: cover;
    padding: 30px 0;
}

.cta h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    ffont-family: 'Mukta', 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 {
    ffont-family: 'Mukta', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    margin: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    background-color: #084994;
    color: #fff;
}

.cta-btn:hover {
    border: 2px solid #084994;
    background-color: #fff;
    color: #084994;
}

/*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #ecf5f9;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #2f4d5a;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #67b0d1;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: linear-gradient(#084994, #040213);
    padding: 5px;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    opacity: 1;
    left: 0;
    right: 0;
    bottom: -60px;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
    display: flex;
    justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    font-size: 28px;
    text-align: center;
    background-image: radial-gradient(#084994, #040213);
    transition: 0.3s;
    width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    background-image: radial-gradient(#084994, #040213);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
    border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #67b0d1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #67b0d1;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(47, 77, 90, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    text-align: center;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #084994;
    font-size: 26px;
}

.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;
}

.testimonials .testimonial-item .quote-icon-right1 {
    display: inline-block;
    right: 5px;
    position: relative;
    top: 2px;
    font-size: 18px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 15px 15px;
    padding: 20px;
    background: #fff;
    position: relative;
    margin-bottom: 35px;
    border-radius: 6px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.8);
    text-align: justify;
}

.testimonials .testimonial-item p::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #084994;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #084994;
}

/*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
.team {
    width: 100%;
    /* background-image: radial-gradient(#084994, #040213); */
    background: radial-gradient(#00000000, #0402137c 50%), url("../../images/awardbg5.jpg");
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    transition: 0.90s;
    margin-top: 20px;
    -webkit-transition: 0.90s;
    -moz-transition: 0.90s;
    -ms-transition: 0.90s;
    -o-transition: 0.90s;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.team .member:hover .pic {
    transition: 0.90s;
    -webkit-transition: 0.90s;
    -moz-transition: 0.90s;
    -ms-transition: 0.90s;
    -o-transition: 0.90s;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.team .member .member-info {
    position: absolute;
    top: 90%;
    left: 20px;
    right: 20px;
    background: #084994;
    box-shadow: 0 0 10px #fff;
    padding: 20px;
    max-height: 65px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
    max-height: 160px;
}

.team .member h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b1cbd7;
    bottom: 0;
    left: calc(50% - 25px);
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    color: #fff;
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

@media (max-width: 992px) {
    .team .member {
        margin-bottom: 110px;
    }
}



/* award */


.team .card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 0;
    border-radius: 20px;
    min-height: 300px;
    /* text-shadow: 1px 1px 1px #0000006b; */
    background-color: #0000005d;
    /* background-image: url(../../images/trophyimg1.gif); */

    .card-img-overlay:before {
        /* background-color: #0000005b; */
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transition: all .3s ease-in;
        width: 100%;
    }

    .card-text {
        bottom: 0;
        color: white;
        left: 0;
        top: 0;
        opacity: 0;
        padding: 1em;
        position: absolute;
        text-shadow: 1px 1px 1px #00000060;
        transition: all .3s linear;
        width: 100%;
    }

    .card-title {
        bottom: 0;
        font-weight: 600;
        margin: 0;
        padding: 10px;
        position: absolute;
        right: 0;
        transition: all .3s ease-out;
    }

    &:hover {
        .card-img-overlay:before {
            background-color: #000000c5;
            border-radius: 20px;
        }

        .card-text {
            opacity: 1;
        }

        .card-title {
            transform: translate(-45%, -42%);
        }

        .gold-text {
            display: none;


        }

        .btn-get-started {
            opacity: 1;
        }

    }
}


#team .card-inverse h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    font-weight: 700;
    pointer-events: none;
    opacity: 1;
    width: 70%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#team .card-inverse .gold-text {
    position: relative;
    /* margin-bottom: 30px; */
    color: #fff;
    background-image: linear-gradient(to right, #f6f2c0 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #f6f2c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
    filter: drop-shadow(0px 2px 2px #000);
    font-weight: 700;
    transition: all .3s linear;
}

#team .article {
    margin-top: 50px;
}


#team .btn-get-started {
    font-size: 16px;
    /* 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: 70%;
    width: 50%;
    /* display: none; */
}

#team .card-inverse:hover .btn-get-started {
    display: block;
}

@media (max-width: 767.98px) {
    .speaker-card {
        display: none;
    }

    .speaker-card:nth-child(-n+5) {
        display: block;
    }
}


.flip-box-wrapper {
      perspective: 1000px;
    }

    .flip-box {
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      position: relative;
    }

    .flip-box-inner {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .flip-box-front,
    .flip-box-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .flip-box-front {
      background-color: #fff;
      z-index: 2;
    }

    .flip-box-back {
      background-color: #000000;
      transform: rotateY(180deg);
      z-index: 1;
      padding: 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .flip-box-wrapper:hover .flip-box {
      transform: rotateY(180deg);
    }

    .award-title {
      font-size: 20px;
      font-weight: 600;
      margin-top: 10px;
      text-align: center;
    }

    .award-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .award-desc {
      font-size: 16px;
      color: #333;
    }

     .flip-card {
      background-color: transparent;
      width: 100%;
      height: 260px;
      perspective: 1000px;
      margin-top: 20px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .flip-card-front {
      background-color: #ffffff13;
      display: flex;
      /* flex-direction: column; */
      align-items: center;
      justify-content: start;
    }

    .flip-card-front img {
      width: 30%;
      height: 30%;
      object-fit: cover;
    }

    .flip-card-front h4 {
      padding: 5px;
      text-align: center;
      /* font-size: 18px; */
      font-weight: 600;
      color: #fff;
    }

    .flip-card-back {
      background-color: #00000091;
      color: #fff;
      transform: rotateY(180deg);
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .flip-card-back p {
      font-size: 16px;
    }

        .flip-card-back .btn-get-started{
            background-color: #fff;
            color: #000;
            padding: 10px;
        }
/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
.contact {
    padding-bottom: 80px;
}

.contact .info-box {
    color: #444444;
    background: #fff;
    text-align: justify;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 40px;
    margin-top: 50px;
}

.contact .info-box1 {
    color: #444444;
    background: #fff;
    text-align: justify;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 40px;
}

.contact .info-box2 {
    color: #444444;
    background: #fff;
    text-align: justify;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px;
}

.contact .info-box i {
    font-size: 22px;
    color: #67b0d1;
    border-radius: 50%;
    padding: 10px;
}

.contact .info-box h3 {
    font-size: 24px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
}

.contact .info-box1 h3 {
    font-size: 24px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box1 i {
    font-size: 22px;
    color: #67b0d1;
    border-radius: 50%;
    padding: 10px;
}

.contact .info-box1 p {
    padding: 0;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
}

.contact .info-box2 p {
    padding: 0;
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0;
}



/*--------------------------------------------------------------
  # Attend
  --------------------------------------------------------------*/
#attend1 {
    color: #fff;
    font-size: 14px;
}

#attend1 .attend-top {
    padding: 60px 0 10px 0;
}

#attend1 .attend-top .attend-info {
    background:#032d5c;
    color: #ffffff;
    border-top: 8px solid #7e8faf;
    text-align: center;
    padding: 30px;
    box-shadow: 0 0 5px #000;
}

#attend1 .attend-top .attend-info h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 122px;
    height: 66px;
    background: url(../img/section-title-bg.png) no-repeat;
    z-index: -1;
}

#attend1 .attend-top .attend-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Mukta', sans-serif;
}

#attend1 .attend-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#attend1 .attend-top .attend-link img {
    border-radius: 8px;
    box-shadow: 0 0 15px #000;
    transition: .3s ease-in-out;
}

#attend1 .attend-top .attend-link img:hover {
    border-radius: 8px;
    box-shadow: 0 0 15px #000;
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

#attend1 .attend-top .attend-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#attend1 .attend-top .attend-links ul i {
    padding-right: 10px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
}

#attend1 .attend-top .attend-links ul li {
    padding: 2px 0;
    display: flex;
    align-items: center;
    line-height: 35px;
    font-weight: 400;
    font-size: 18px;
}

#attend1 .attend-top .attend-links1 ul li {
    padding: 5px 0;
    /* display: flex; */
    align-items: center;
    line-height: 32px;
    font-weight: 500;
    font-size: 17px;
    text-align: left;
}

#attend1 .attend-top .attend-links ul li:first-child {
    padding-top: 0;
}

.main-content5 {
    align-items: center;
    background-position: bottom;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    line-height: 1.5;
    padding-top: 20px;
    position: relative;
}

.main-title {
    color: #fff;
    font-size: 12px;
    letter-spacing: 8px;
    margin: 0px 0px 19px;
    text-align: center;
    text-transform: uppercase;
}

.container-countdown {
    display: flex;
    flex-flow: row nowrap;
}

.countdown-block {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    margin-right: 30px;
}

.countdown-block :last-child {
    margin-right: 0;
}

.subtitle {
    color: #000000;
}

.time-element {
    background-color: #33354d;
    border-radius: 8px;
    box-shadow: 0px 8px 0px 0px #16151d;
    color: #fff;
    font-size: 3.5em;
    height: 70px;
    line-height: 68px;
    margin-bottom: 17px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 140px;
}

.time-element::before,
.time-element::after {
    background: #24242e;
    border-radius: 50%;
    content: "";
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    width: 10px;
    z-index: 6;
}

.time-element::before {
    left: -5px;
}

.time-element::after {
    right: -5px;
}

.time-element>span {
    left: 0;
    position: absolute;
    right: 0;
}

.top {
    background-color: #2a2a41;
    transform-origin: 50% 100%;
    transform: perspective(200px);
    z-index: 3;
}

.top::after,
.bottom-back::after {
    border-bottom: 1px solid hsl(240, 12%, 16%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.bottom {
    z-index: 1;
}

.bottom::before {
    background-color: #33354d;
    content: "";
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.bottom-back {
    background-color: #33354d;
    height: 50%;
    overflow: hidden;
    top: 0;
    z-index: 2;
}

.bottom-back span {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

.top,
.top-back {
    backface-visibility: hidden;
    height: 50%;
    overflow: hidden;
}

.top-back {
    background-color: rgb(51, 53, 77);
    bottom: 0;
    transform-origin: 50% 0;
    transform: perspective(200px) rotateX(180deg);
    z-index: 4;
}

.top-back span {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -100%;
}

@media only screen and (max-width: 768px) {
    .main-content5 .container-countdown {
        flex-direction: column;
    }
}


.site-footer {
    background-color: #030b20;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
}

.site-footer hr {
    border-top-color: #fff;
    opacity: 0.8;
}

.site-footer hr.small {
    margin: 20px 0
}

.site-footer a {
    color: #737373;
}

.site-footer a:hover {
    color: #9b9b9c;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #fff;
}

.copyright-text {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }

    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    background-color: #3b5998
}

.social-icons a.twitter:hover {
    background-color: #000000
}

.social-icons a.linkedin:hover {
    background-color: #007bb6
}

.social-icons a.youtube:hover {
    background-color: red
}

.social-icons a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    ;

}

@media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
}

.userMain .userBlock {
    float: left;
    width: 100%;
    box-shadow: 0px 0px 23px -3px #ccc;
    padding-bottom: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    background: #fff;
    height: 380px;


}

.userMain .userBlock .backgrounImg {
    float: left;
    overflow: hidden;
    height: 90px;
}

.userMain .userBlock .backgrounImg img {
    width: auto;
}

.userMain .userBlock .userImg {
    text-align: center;
}

.userMain .userBlock .userImg img {
    width: 150px;
    height: 150px;
    margin-top: -39px;
    border-radius: 100%;
    border: 5px solid #fff;

}

.userMain .userBlock .user-content {
    text-align: center;
}

.userMain .userBlock .user-content h5 .user-name {
    margin-top: 38px;
    font-size: 16px;
    font-weight: 600;
    padding: 25px;
}

.userMain .userBlock .user-content p {
    margin-bottom: 10px;
    font-size: 14px;
    margin-top: 10px;
}


.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #084994;
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.pricing-table {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-table .ptable-item {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .pricing-table .ptable-item {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .pricing-table .ptable-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .pricing-table .ptable-item {
        width: 100%;
    }
}

.pricing-table .ptable-single {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.pricing-table .ptable-status,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
    position: relative;
    width: 100%;
    text-align: center;
}

.pricing-table .ptable-single {
    background: #e7f0fd;
    height: 460px;
}

.pricing-table .ptable-single:hover {
    box-shadow: 0 0 10px #999999;
}

.pricing-table .ptable-header {
    margin: 0 30px;
    padding: 30px 0 45px 0;
    width: auto;
    background-color: #032d5c;
}

.pricing-table .ptable-header::before,
.pricing-table .ptable-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 100px solid #e7f0fd;
}

.pricing-table .ptable-header::before {
    right: 50%;
    border-right: 250px solid transparent;
}

.pricing-table .ptable-header::after {
    left: 50%;
    border-left: 250px solid transparent;
}

.pricing-table .ptable-item.featured-item .ptable-header {
    background: #FF6F61;
}

.pricing-table .ptable-status {
    margin-top: -30px;
}

.pricing-table .ptable-status span {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
    padding: 5px 0;
    text-align: center;
    color: #FF6F61;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    background: #084994;
}

.pricing-table .ptable-status span::before,
.pricing-table .ptable-status span::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 10px solid #FF6F61;
}

.pricing-table .ptable-status span::before {
    right: 50%;
    border-right: 25px solid transparent;
}

.pricing-table .ptable-status span::after {
    left: 50%;
    border-left: 25px solid transparent;
}

.pricing-table .ptable-title h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

.pricing-table .ptable-price h2 {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    margin-left: 15px;
}

.pricing-table .ptable-price h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 300;
    margin-top: 16px;
    margin-left: -15px;
}

.pricing-table .ptable-price h2 span {
    margin-left: 3px;
    font-size: 16px;
    font-weight: 300;
}

.pricing-table .ptable-body {
    padding: 20px 0;
}

.pricing-table .ptable-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-table .ptable-description ul li {
    color: #084994;
    font-size: 18px;
    font-weight: 500;
    padding: 7px;
    border-bottom: 1px solid #dedede;
}

.pricing-table .ptable-description ul li:last-child {
    border: none;
}

.pricing-table .ptable-footer {
    padding-bottom: 30px;

}

.pricing-table .ptable-action a {
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    background-color: #032d5c;
    border: 2px solid #444;
    border-radius: 24px;
}

.pricing-table .ptable-action a:hover {
    color: #084994;
    background: #ffF;
}

.pricing-table .ptable-item.featured-item .ptable-action a {
    color: #084994;
    background: #fff;
}

.pricing-table .ptable-item.featured-item .ptable-action a:hover {
    color: #FF6F61;
    background: #084994;
}

.serv-section-3 {
    position: relative;
    border: 6px solid #eee;
    background: #032d5c;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
    width: 100%;
}


.serv-section-3-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    max-width: 90px;
    z-index: 1;
    text-align: center;
}

.serv-section-3-icon img {
    color: #084994;
    width: 70px;
    height: 70px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-3:hover img {
    transform: scale(1.2);
    margin-top: -10px;
    margin-left: 30px;
}

.serv-section-3 h6 {
    font-size: 18px;
    line-height: 25px;
    margin-top: 10px;
    font-weight: 500;
    color: #fff;
}


.serv-section-3 i{
    font-size: 30px;
    line-height: 25px;
    margin-bottom: 0;
    font-weight: 500;
    color: #032d5c;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #fff;
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.serv-section-3 p {
    margin-top: 25px;
    padding-right: 50px;
}

.sponsor {
    box-shadow: 0 0 2px #000;
    border-radius: 8px;
    /* max-height: 245px; */
    transform: scale(0.9);
    transition: .3s ease-in-out;
}

.sponsor:hover {
    transform: scale(1.0);
    transition: .3s ease-in-out;
}

.icon-boxes .icon-box1 {
    background-color: #032d5c;
    padding: 20px;
    border: 5px solid #eee;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    transform: scale(1.0);
}

.icon-boxes .icon-box1:hover {
    transform: scale(0.9);
    transition: 0.3s ease-in-out;
}

.icon-box1 h4 {
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 1px;
    transition: .3s ease-in-out;
    color: #fff;
}

.icon-box1 p {
    font-size: 14px;
}

#preloader {
    background: #001d30 url('../img/loading.gif') no-repeat center center;
    background-size: 50%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 998;
}

.tz-gallery .row>div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

#attend1 .attend-top .attend-info .color2 {
    box-shadow: 0 0 3px #ffffff;
}


#attend1 .attend-top .attend-info .color1 {
    background-color: #dbe9ff;
    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;
}

#attend1 .attend-top h6 {
    font-size: 20px;
    font-weight: 600;
    background: -webkit-linear-gradient(23deg, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 12px;
}

@media(max-width:991px){
    #attend1 .attend-top h6 {
    font-size: 14px;
    font-weight: 600;
    background: -webkit-linear-gradient(23deg, #000428, #004e92);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 12px;
    padding: 2px !important;
}
}

#attend1 .attend-top .attend-info .color3 {
    background: -webkit-linear-gradient(23deg, #ffffff, #dbe9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta1 .content h5 {
    font-weight: 500;
    color: #080d6b;
    background-color: #fff;
    padding: 15px;
    text-align: center;
    align-items: center;
    height: 100%;
    height: 100%;
    margin-bottom: 0px;
    min-height: 150px;
    text-wrap: wrap;
}

.cta1 .content {
    padding-left: 0%;
    padding-right: 0%;
    min-height: 150px;
    border: 1px solid #fff;
    align-items: center;
}

@media (min-width: 769px) {
    .bottom-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .bottom-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        border-top: 2px solid #ddd;
        z-index: 1000;
    }
        .bottom-menu a {
        flex: 1;
        text-align: center;
        color: #333;
        font-size: 15px;
        font-weight: bolder;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}