/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: #444444;
    font-family: "Public Sans", sans-serif;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
  }
  
  a {
    color: #033d5b;
    text-decoration: none;
  }
  
  a:hover {
    color: #033d5b;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Public Sans", sans-serif;
    padding: 0;
    margin: 0;
  }
  
  /*--------------------------------------------------------------
    # Preloader
    --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #033d5b;
    border-top-color: #d2f9eb;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
    # Back to top button
    --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #033d5b;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #2be4a2;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
    # Disable AOS delay on mobile
    --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
  #header {
    height: 100px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #f5f5ff;
    border-bottom: 1px solid #033d5b;
  }
  
  #header.header-transparent {
    background: transparent;
  }
  
  #header.header-scrolled {
    background: #f5f5ff;
    height: 90px;
  }
  
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 5px;
    margin: 0;
    max-height: 90px;
  }
  
  /*--------------------------------------------------------------
    # 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 8px 10px 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Public Sans", sans-serif;
    color: #033d5b;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 20px;
    background-color: #033d5b;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 20px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #033d5b;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    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: 14px;
    font-weight: 500;
    text-transform: none;
    color: #033d5b;
  }
  
  .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: #033d5b;
  }
  
  .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: #033d5b;
    font-size: 28px;
    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(1, 3, 91, 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: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile>ul>li>a:before {
    left: 20px;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0205a1;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #3f43fd;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul,
  .navbar-mobile .dropdown .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,
  .navbar-mobile .dropdown .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a,
  .navbar-mobile .dropdown .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i,
  .navbar-mobile .dropdown .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,
  .navbar-mobile .dropdown .dropdown ul a:hover,
  .navbar-mobile .dropdown .dropdown ul .active:hover,
  .navbar-mobile .dropdown .dropdown ul li:hover>a {
    color: #033d5b;
  }
  
  .navbar-mobile .dropdown>.dropdown-active,
  .navbar-mobile .dropdown .dropdown>.dropdown-active {
    display: block;
  }
  /* menu section end */

  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  /* padding: 60px 0; */
  overflow: hidden;
}

.section-bg {
  /* background-color: #eeeeee; */
}

.section-bg2 {
  background-color: #033d5b;
}

.section-bg3 {
  /* background-color: #fff; */
}

.section-bg1 {
  background-color: #033d5b;
}
.section-bg4{
  /* background-color: #4a8540; */
}
.text-white {
  color: #ffffff;
}

/* heading start */
.heading1{
  color: #033d5b;
  text-align: center;
  font-weight: 600;
  font-size: 35px;
  /*font-family: SangBleuVersailles-Bold-WebS !important;*/
  text-transform: capitalize;
}
.heading2{
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 35px;
  /*font-family: SangBleuVersailles-Bold-WebS !important;*/
  text-transform: capitalize;
}
/* heading end */
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    background: url("../images/bg1.jpg") center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    position: relative;
    padding: 120px 0 0 0;
    animation: zoom 10s infinite alternate;
  }
  @keyframes zoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 120%;
    }
}
  #hero:before {
    content: "";
    /* background: rgb(198,236,255); */
    background: linear-gradient(270deg, rgb(198 236 255 / 65%) 0%, rgb(225 233 239 / 22%) 31%, rgb(239 248 254 / 25%) 40%, rgb(212 237 249 / 39%) 69%, rgb(193 222 236 / 15%) 87%, rgb(180 217 235 / 42%) 100%);

    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero img {
    max-width: 80%;
    filter: drop-shadow(-1px 1px 0px #000);
    position: relative;
  }
  
  #hero h3 {
    margin: 0 0 20px 0;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 1px;
    color: #033d5b;
    position: relative;
    text-align: center;
    /* text-shadow: 0px 1px 1px #000; */
  }
  
  #hero h2 span {
    border-top: 2px solid #4a8540;
    color: #033d5b;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #4a8540;
  }
  
  @media (max-width:500px) {
    #hero h3 span {
      border-top: 2px solid #4a8540;
      color: #033d5b;
      padding-top: 10px;
      padding-bottom: 10px;
      line-height: 44px;
      text-align: center;
      border-bottom: 2px solid #4a8540;
    }
  }
  
  #hero h4 {
    color: #ffffff;
    font-weight: 600;
    text-align: center;
  }
  
  #hero h3 i {
    font-size: 35px;
    color: #033d5b;
  }
  
  #hero .btn-get-started {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 19px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    /* letter-spacing: 1px; */
    transition: 0.5s;
    color: #fff;
    background: #033e5b;
    filter: drop-shadow(-1px 1px 5px #000);
    width: 100%;
  }
  
  #hero .btn-get-started:hover {
    background: #4a8540;
    color: #fff;
    transform: scale(0.9);
  }
  
  #hero .animated {
    animation: up-down 5s ease-in-out infinite alternate-reverse both;
  }
  
  @media (max-width: 991px) {
    #hero {
      padding-top: 80px;
    }
  
    #hero img {
      max-width: 100%;
      filter: drop-shadow(0 0 15px #fff);
    }
  
    #hero h1 {
      font-size: 28px;
      line-height: 32px;
      margin-bottom: 10px;
    }
  
    #hero h3 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 575px) {
    #hero .hero-img img {
      width: 100%;
    }
  }
  /* main section */
  #main{
    background: linear-gradient(270deg, rgb(251 254 255) 0%, rgb(246 250 253) 31%, rgba(239, 248, 254, 1) 40%, rgb(242 251 255) 69%, rgb(235 235 235) 87%, rgb(255 255 255) 100%);
  }
  /* heading strip */
  .headoing-strip h2 {
    color: #fff;
    font-weight: 600;
    width: 100%;
    margin: auto;
    border-radius: 41px;
    padding: 23px 35px;
    box-shadow: 0px 4px 6px 3px #00000094;
    font-size: 24px;
    word-spacing: 3px;
    text-transform: uppercase;
  }
  .headoing-strip{
    margin: auto;
    padding: 16px 0 0 0;
  }

  /* partner section */
  .logo-box{
    background-color: #fff;
    border-radius: 18px;
    border-right: 4px solid #033d5b;
    border-bottom: 4px solid #033d5b;
  }
  .logo-box h6{
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
  }
  /* counter css start */
  section.mb-medium {
    position: relative;
    padding: 10px 0;
}

.mb-medium:before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(11, 124, 193, 0.00) 0.04%, #0b7cc1 51.03%, rgba(11, 124, 193, 0.00) 100.04%);
    height: 1px;
    width: 1170px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
}

.mb-medium:after {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(11, 124, 193, 0.00) 0.04%, #0b7cc1 51.03%, rgba(11, 124, 193, 0.00) 100.04%);
    height: 1px;
    width: 1170px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
}
#stats-3 section h3 {
  color: #033d5b;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0px;
}

#stats-3 section {
    padding: 0px 30px 15px;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.3em;
    text-align: center;
    min-height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#stats-3 section + section {
    border-left: 1px solid;
    border-image: linear-gradient(to bottom, rgba(11, 124, 193, 0) 0%, rgb(11 124 193 / 55%) 48%, rgba(11, 124, 193, 0) 100%);
    border-image-slice: 1;
}

.counter {
    font-size: 24px;
    font-weight: bold;
}
  /* coounter css end */

  /* about section css start */
  #overview {
    text-align: left!important;
}

#overview a.read-more {
    background: none;
    color: var(--theme-color);
    font-weight: 700;
    padding: 0px;
    border-radius: 0px;
    margin-top: 0px;
}

#overview .text-style p {
    text-align: left;
}

#overview h3 {
    color: var(--theme-color);
}
.quote img{
  width: 85%;
}

/* about section css end */

  /* speakers section start */
  .speakers-section {
    text-align: center;
    padding: 60px 0;
}
.speakers-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}
 .underline {
    width: 60px;
    height: 3px;
    background-color: #4a8540;
    margin: 0 auto 40px;
    border-radius: 10px;
}
.speaker-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #033d5b;
}
.speaker-card h5 {
    color: #0b7cc1;
    margin-top: 15px;
    font-size: 20px;
}
.speaker-card p {
  font-size: 15px;
  color: #000000;
  margin: 5px 0;
}
  /* speakers section end */


  /* key theme section start */
  .key-box{
    height: 100%;
    background-color: #fff;
  }

  .key-box h4{
    color: #045b87;
    font-family: "Public Sans", sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .key-box p{
    font-family: "Public Sans", sans-serif;
    font-weight: 500;
  }

  .key-box i{
    color: #045b87;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #theme-wrapper {
    padding: 20px 8px;
    margin-top: 16px;
  }

  #theme-wrapper .theme-wrapper-box {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
  }

  #theme-wrapper .theme-wrapper-box section {
      width: 25%;
      padding: 16px;
      border-radius: 16px;
      background: #fff;
      text-align: center;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  #theme-wrapper .theme-wrapper-box section i {
      font-size: 32px;
      margin-bottom: 12px;
      color: #033d5b;
  }

  #theme-wrapper .theme-wrapper-box section h3 {
      color: #000;
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 4px;
  }

  #theme-wrapper .theme-wrapper-box section p {
      color: #5F666E;
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
  }

  #theme-wrapper .theme-wrapper-box section:last-child {
      width: 100%;
  }

  @media screen and (max-width: 767px) {
      #theme-wrapper .theme-wrapper-box section {
          width: 100%;
      }
  }

  /* key theme section end */

  /* what to expect section start */
  #expect-wrapper {
    padding: 40px 0;
    /* background: linear-gradient(135deg, #f3e7e9 0%, #e3eeff 100%); */
  }

  #expect-wrapper h2 {
      text-align: center;
      font-weight: bold;
      margin-bottom: 20px;
  }

  #expect-wrapper .expect-wrapper-box {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      max-width: 80%;
      margin: 0 auto;
  }

  #expect-wrapper .expect-wrapper-box section {
      width: 30%;
      padding: 24px;
      border-radius: 12px;
      background-color: #033d5b;
      text-align: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
  }

  #expect-wrapper .expect-wrapper-box section:hover {
      transform: scale(1.05);
  }

  #expect-wrapper .expect-wrapper-box section p {
      font-size: 17px;
      font-weight: 500;
      line-height: 20px;
  }

  #expect-wrapper .expect-wrapper-box section:nth-child(4),
  #expect-wrapper .expect-wrapper-box section:nth-child(5) {
      width: 45%;
  }

  @media screen and (max-width: 991px) {
      #expect-wrapper .expect-wrapper-box section {
          width: 45%;
      }
  }

  @media screen and (max-width: 576px) {
      #expect-wrapper .expect-wrapper-box section {
          width: 100%;
      }
  }
  /* what to expect section end */
  /* discussion points start */
  #discussion-topics {
    background-color: #00000014;
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 85%;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#discussion-topics h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 24px;
}

#discussion-topics .topics-content {
    display: flex;
    justify-content: space-between;
}

#discussion-topics .topics-list {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

#discussion-topics .topics-list div {
    background-color: #f9f9f91a;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#discussion-topics .topics-list div p {
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

#discussion-topics .image-wrapper {
    width: 35%;
}

#discussion-topics .image-wrapper img {
    width: 100%;
    border-radius: 8px;
}

@media screen and (max-width: 991px) {
    #discussion-topics .topics-content {
        flex-direction: column;
        align-items: center;
    }

    #discussion-topics .topics-list {
        grid-template-columns: 1fr;
        width: 100%;
    }

    #discussion-topics .image-wrapper {
        width: 80%;
        margin-top: 20px;
    }
}
  /* discussion points end */
  /* who should attend start */
  #who-should-attend {
    /* background-color: #fff; */
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 65%;
    margin: 40px auto;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  }
  #who-should-attend p{
    font-size: 17px;
    text-align: center;
    font-weight: 500;
  }
  .attendee-list p{
        font-size: 20px;
  }
  #who-should-attend h2 {
      text-align: center;
      font-weight: bold;
      margin-bottom: 24px;
  }

  #who-should-attend .attendee-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
  }

  #who-should-attend .attendee-list div {
      background-color: #033d5b;
      color: white;
      padding: 16px;
      border-radius: 8px;
      text-align: center;
  }

  @media screen and (max-width: 768px) {
      #who-should-attend .attendee-list {
          grid-template-columns: 1fr;
      }
  }
  /* who should attend end */
  /*.award{*/
/*    background-color: #f5f5f5*/
/*}*/
.speakers-section-container {
            text-align: center;
            padding: 20px;
            color: white;
            font-size: 24px;
            font-weight: bold;
            border-bottom: 4px solid #0b7cc1;
            background: linear-gradient(90deg, rgba(11, 124, 193, 0.00) 0.04%, #0b7cc1 51.03%, rgba(11, 124, 193, 0.00) 100.04%);
        }
        .speakers-section-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-top: 20px;
            position: relative;
        }
        .speakers-section-column {
            width: 48%;
        }
        .speakers-section-column h2 {
           text-align: center;
            color: #033d5b;
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .speakers-section-award-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        .speakers-section-award-box {
            background: white;
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0px 4px 1px 1px rgba(0, 0, 0, 0.1);
            font-size: 15px;
            flex: 1 1 calc(33.33% - 10px);
            width: 66%;
            font-weight: 500;
        }
        .speakers-section-button-container {
            text-align: center;
            margin-top: 14%;
        }
        .speakers-section-btn {
            background: #0b7cc1;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 16px;
        }
        .speakers-section-btn:hover {
            background: #095a8f;
        }
        .speakers-section-divider {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(180deg, rgba(11, 124, 193, 0.00) 0.04%, #0b7cc1 50%, rgba(11, 124, 193, 0.00) 100.04%);
            transform: translateX(-50%);
        }
.award p{
  color: #033d5b;
    font-weight: 500;
    word-spacing: 6px;
    font-size: 20px;
    margin: 15px 0;
    text-transform: uppercase;
}
.award img{
  width: 85%;
    /*  border: 5px solid #033d5b00;
  PADDING: 20PX;
  BORDER-RADIUS: 100%;
  /* MARGIN: 5PX; 
  box-shadow: 0px 1px 9px 3px;*/
}
.award-box{
  /*border: 5px solid #033d5b;
  border-radius: 100%;*/

}
.nominate{
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 19px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  /* letter-spacing: 1px; */
  transition: 0.5s;
  color: #fff;
  background: #033e5b;
  filter: drop-shadow(-1px 1px 5px #000);
  width: 50%!important;
}
.nominate{
  text-align: center;
}
.nominate:hover {
  background: #4a8540;
  color: #fff;
  transform: scale(0.9);
}
/* awards section end */

/* sponsor benefit start */
.sponsorbox img{
  width: 27%;
  margin: 5px auto;
  padding: 5px;
/*    background-color:#fff;*/
}
.sponsorbox .card{
  background-color: #ffffffba;
  border-bottom: 3px solid #033d5b;
  border-right: 3px solid #033d5b;
}
.sponsorbox h4{
  font-weight: 700;
  color: #033d5b;
  font-size: 20px;
}
.sponsorbox p{
  color: #000;
  font-weight: 400;
}
/* sponsor benefit end */
/* images slider start */
#image-slider {
  /* background-color: #fff; */
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 93%;
  margin: 20px auto;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  gap: 20px;
  animation: scrollSlider 15s linear infinite;
}

.slider-wrapper img {
  width: calc(27% - 20px);
  /* border-radius: 8px; */
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slider-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.slider-container:hover .slider-wrapper {
  animation-play-state: paused;
}
/* images slider end */
/*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/
  .pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px #fff;
  }
  
  .pricing .box img {
    position: absolute;
    padding-top: 30%;
    width: 50%;
    left: 20%;
  }
  
  
  
  .pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    background: #d7d7d7;
  }
  
  .pricing h4 {
    color: #09161b;
    font-weight: 500;
    font-family: "Public Sans", sans-serif;
    margin-bottom: 10px;
    line-height: 45px;
    font-size: 20px;
  }
  
  .pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }
  
  .pricing h4 span {
    color: #000000;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 400;
  }
  
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
  }
  
  .pricing ul li {
    padding-bottom: 16px;
  }
  
  .pricing ul i {
    color: #09161b;
    font-size: 18px;
    padding-right: 4px;
  }
  
  .pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
  }
  
  .pricing .btn-buy {
    background: #045b87;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 18px;
    font-weight: 400;
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .pricing .btn-buy:hover {
    background: #4a8540;
    transform: scale(1.1);
    transition: .3s ease-in-out;
  }
  
  .pricing .featured h3 {
    color: #fff;
    background: #1a4e69;
  }
  
  .pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #033d5b;
    color: #fff;
  }
  /* pricing end */
  /* testimonials section start */
  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.testimonials {
  padding: 10px 0;
  /* background: url("../img/testimonial.jpg") no-repeat; */
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(238, 238, 238, 0.8); */
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #033d5b;
  background-color: #fff;
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  padding: 30px 0 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #033d5b;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #033d5b;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #000;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000000;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

  /* testimonials section end */
  /* footer start */
  #footer {
    background: #033d5b;
    padding: 0 0 30px 0;
    color: #ffffff;
    font-size: 14px;


#footer .footer-top {
  padding: 20px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  color: #fff;
  padding: 30px 20px 0px 0px;
}

#footer .footer-top .footer-info img {
  width: 50%;
  margin: 0 0 20px 0;
  /* padding: 2px 0 2px 0; */
  /* filter: drop-shadow(-1px 1px 1px #000); */
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #010246;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

#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: #033d5b;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #033d5b;
  color: #fff;
  line-height: 1;
  padding: 9px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #4a8540;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
/*galary*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

  /* footer end */
  
  /*old page css*/
  /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #444444;
  font-family: "Public Sans", sans-serif;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

a {
  color: #033d5b;
  text-decoration: none;
}

a:hover {
  color: #033d5b;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Public Sans", sans-serif;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #033d5b;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #033d5b;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Disable AOS delay on mobile
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #f5f5ff;
  border-bottom: 1px solid #033d5b;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #f5f5ff;
  height: 90px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 5px;
  margin: 0;
  max-height: 90px;
}

/*--------------------------------------------------------------
  # 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 8px 10px 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  color: #033d5b;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 20px;
  background-color: #033d5b;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 20px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #033d5b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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: 14px;
  font-weight: 500;
  text-transform: none;
  color: #033d5b;
}

.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: #033d5b;
}

.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: #033d5b;
  font-size: 28px;
  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(1, 3, 91, 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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0205a1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3f43fd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #033d5b;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
/*#hero-old {*/
/*  width: 100%;*/
/*  background: url("../images/bg4.jpg") center center;*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*  background-attachment: fixed;*/
/*  position: relative;*/
/*  padding: 120px 0 0 0;*/
/*}*/

/*#hero-old:before {*/
/*  content: "";*/
/*  background: linear-gradient(to right, #d8dbe161, #ffffffd9, #d8dbe161);*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*}*/

/*#hero-old img {*/
/*  max-width: 80%;*/
/*  filter: drop-shadow(-1px 1px 0px #000);*/
/*  position: relative;*/
/*}*/

/*#hero-old h2 {*/
/*  margin: 0 0 20px 0;*/
/*  font-weight: 600;*/
/*  line-height: 34px;*/
/*  letter-spacing: 1px;*/
/*  color: #033d5b;*/
/*  position: relative;*/
/*  text-align: center;*/
  /* text-shadow: 0px 1px 1px #000; */
/*}*/

/*#hero-old h2 span {*/
/*  border-top: 2px solid #4a8540;*/
/*  color: #033d5b;*/
/*  padding-top: 10px;*/
/*  padding-bottom: 10px;*/
/*  text-align: center;*/
/*  position: relative;*/
/*  border-bottom: 2px solid #4a8540;*/
/*}*/

@media (max-width:500px) {
  #hero-old h2 span {
    border-top: 2px solid #4a8540;
    color: #033d5b;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 44px;
    text-align: center;
    border-bottom: 2px solid #4a8540;
  }
}

#hero-old h4 {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

#hero-old h2 i {
  font-size: 46px;
  color: #033d5b;
}

#hero-old .btn-get-started {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  /* letter-spacing: 1px; */
  transition: 0.5s;
  color: #fff;
  background: #033e5b;
  filter: drop-shadow(-1px 1px 5px #000);
  width: 100%;
}

#hero-old .btn-get-started:hover {
  background: #4a8540;
  color: #fff;
  transform: scale(0.9);
}

#hero-old .animated {
  animation: up-down 5s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero-old {
    padding-top: 80px;
  }

  #hero-old img {
    max-width: 100%;
    filter: drop-shadow(0 0 15px #fff);
  }

  #hero-old h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero-old h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero-old .hero-img img {
    width: 100%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

#hero-old3 {
  background-color: #fff;
  justify-content: center;
  align-items: cent;
}

#hero-old3 h2 {
  /* border-top: 2px solid #4a8540; */
  color: #fff;
  padding: 20px;
  width: 100%;
  letter-spacing: 1px;
  text-align: center;
  background-color: #033d5b;
  /* border-bottom: 2px solid #4a8540; */
  box-shadow: 0 0 15px #4a8540;
  text-shadow: 0px 1px 10px #000;
}

@media (max-width:771px) {
  #hero-old3 h2 {
    /* border-top: 2px solid #4a8540; */
    color: #fff;
    padding: 20px;
    width: 100%;
    background-color: #09161b;
    /* padding-bottom: 10px; */
    line-height: 44px;
    text-align: center;
    box-shadow: 0 0 15px #4a8540;
  }
}

.pulse {
  animation: pulse 10s infinite ease-in-out alternate;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
  }

  to {
    transform: scale(1.1);
  }
}

.swing {
  transform-origin: top center;
  animation: swing 10s ease infinite;
}

@keyframes swing {
  20% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  60% {
    transform: rotate(3deg);
  }

  80% {
    transform: rotate(-3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.shake {
  animation: shake 5s ease infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  50% {
    transform: translateX(-20px);
  }

  25%,
  75% {
    transform: translateX(20px);
  }
}

.wobble {
  animation: wobble 20s ease infinite;
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-15%) rotate(-3deg);
  }

  30% {
    transform: translateX(10%) rotate(3deg);
  }

  45% {
    transform: translateX(-10%) rotate(-1deg);
  }

  60% {
    transform: translateX(5%) rotate(2deg);
  }

  75% {
    transform: translateX(-2%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}

.wobble1 {
  animation: wobble1 5s ease infinite;
}

@keyframes wobble1 {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-10deg);
  }

  30% {
    transform: translateX(15%) rotate(10deg);
  }

  45% {
    transform: translateX(-20%) rotate(-5deg);
  }

  60% {
    transform: translateX(10%) rotate(5deg);
  }

  75% {
    transform: translateX(-5%) rotate(-2deg);
  }

  100% {
    transform: translateX(0%);
  }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

/*.section-bg {*/
/*  background-color: #eeeeee;*/
/*}*/

/*.section-bg2 {*/
/*  background-color: #033d5b;*/
/*}*/

/*.section-bg3 {*/
/*  background-color: #fff;*/
/*}*/

/*.section-bg1 {*/
/*  background-color: #033d5b;*/
/*}*/
/*.section-bg4{*/
/*  background-color: #4a8540;*/
/*}*/
.text-white {
  color: #ffffff;
}

.section-title1 h2::after {
  content: "";
  width: 100px;
  height: 2px;
  display: inline-block;
  background: #033d5b;
  margin: 4px 10px;
}

.section-title1 h2::before {
  content: "";
  width: 100px;
  height: 2px;
  display: inline-block;
  background: #033d5b;
  margin: 4px 10px;
}

@media (max-width: 370px) {
  .section-title1 h2::after {
    content: "";
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #033d5b;
    margin: 4px 10px;
  }

  .section-title1 h2::before {
    content: "";
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #033d5b;
    margin: 4px 10px;
  }

}

.section-title1 h2 {
  margin: 0;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  color: #033d5b;
  text-align: center;
  /* text-shadow: -1px 1px 1px #000; */
  position: relative;
  text-transform: uppercase;
}

.section-title h2::after {
  content: "";
  width: 100px;
  height: 1px;
  display: inline-block;
  background: #ffffff;
  margin: 4px 10px;
}

.section-title h2::before {
  content: "";
  width: 100px;
  height: 1px;
  display: inline-block;
  background: #ffffff;
  margin: 4px 10px;
}

.section-title h2 {
  margin: 0;
  margin: 0;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  color: #ffffff;
  text-align: center;
  position: relative;
  /* text-shadow: -1px 1px 15px #000; */
  text-transform: uppercase;
}

.section-title2 h2::after {
  content: "";
  width: 100px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}

.section-title2 h2::before {
  content: "";
  width: 100px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}


.section-title2 h2 {
  margin: 0;
  margin: 0;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  color: #fff;
  text-align: center;
  /* text-shadow: -1px 1px 1px #fff; */
  text-transform: uppercase;
}



/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.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;
  }
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 600;
  color: #033d5b;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 20px;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 5px #000;
  min-height: 21vh;

}

.about .icon-box:hover {
  box-shadow: 0 0 10px #000;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  /* border: 2px solid #033d5b; */
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #033d5b;
  font-size: 24px;
}

.about .icon-box:hover .icon {
  background: #033d5b;
  border-color: #033d5b;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #033d5b;
}

.about .icon-box .description {
  margin-left: 45px;
  line-height: 26px;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0px;
}

.about .icon-box:hover .description {
  font-weight: 600;
}

/*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 5px 2px;
  background: #fff;
  box-shadow: 0 0 5px #000;
  transition: ease-in-out 0.3s;
  min-height: 190px;
  /*border: 3px solid #033d5b;*/
}
.features .icon-box h3 {
  font-weight: 700;
  margin: 0px; 
  padding: 0;
  line-height: 1;
  font-size: 18px;
  color: #000;
  transition: ease-in-out 0.3s;
  text-align: center;
  line-height: 28px;
  
}

.features1 {
  /* padding: 20px; */
  /*background-image: url(../images/hero-bg6.jpeg);*/
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

.features1:before {
  content: "";
  /* background: linear-gradient(to right, #e0eafccb, #cfdef3, #e0eafccb); */
  /* background: linear-gradient(to right, #033e5b, #033d5b90, #033d5bd3, #033d5b); */
   background-color: #5c5c5cde; 
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.features1 h3 {
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
  padding: 0;
  position: relative;
  line-height: 36px;
  color: #000;
  transition: ease-in-out 0.3s;
  /* text-align: justify; */
  z-index: 1;
  /* text-transform: uppercase; */
  /* filter: drop-shadow(-1px 0 1px #000); */
}

.features1 img {
  width: 40px;
  height: 40px;
  padding: 5px;
  position: relative;
}

.features2 .icon-box {
  padding: 20px;
  background: #033d5b;
  box-shadow: 0 0 5px #000;
  transition: ease-in-out 0.3s;
  min-height: 200px;
}

.features2 .icon-box i {
  font-size: 56px;
  padding: 10px;
  color: #fff;
}

.features2 .icon-box h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  color: #fff;
  transition: ease-in-out 0.3s;
  text-align: center;
  line-height: 28px;
}

.features2 .icon-box h4 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #fff;
  transition: ease-in-out 0.3s;
  text-align: center;
  line-height: 34px;
}


.features2 .icon-box h5 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #fff;
  transition: ease-in-out 0.3s;
  text-align: center;
  line-height: 34px;
}


.features3 .icon-box {
  padding: 15px 5px;
  background: #fff;
  box-shadow: 0 0 5px #000;
  transition: ease-in-out 0.3s;
  min-height: 100px;

}

.features3 h5 {
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: #033d5b;
  transition: ease-in-out 0.3s;
  text-align: center;
  align-items: center;
}

/*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #033d5b;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #033d5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
  # Details
  --------------------------------------------------------------*/
.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  /* font-size: 26px; */
  color: #000;
}

.details .content h4 {
  font-weight: 600;
  /* font-size: 26px; */
  color: #000;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #033d5b;
}

.details .content p:last-child {
  margin-bottom: 0;
}

.details .content p {
  font-size: 17px;
  color: #000;
  /* text-align: justify; */
  font-weight: 500;
}

.details .about-slider {
  background-color: #033d5b;
  min-height: 180px;
  align-items: center;
  justify-content: center;
}

.details .about-slider h1 {
  color: #fff;
  padding: 30px 10px 0px;
}

.details .about-slider h5 {
  color: #fff;
  padding: 5px;
}

/*--------------------------------------------------------------
  # Gallery
  --------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  /* background: url("../img/testimonial.jpg") no-repeat; */
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(238, 238, 238, 0.8); */
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #033d5b;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #033d5b;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #033d5b;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #033d5b;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 1);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #033d5b;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
.team {
  background: url("../img/bgimage2.gif");
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
}

#team:before {
  content: "";
  background: linear-gradient(to right, #0a1316a4, #14252bee, #14252bee, #0a1316a4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.team .member {
  text-align: center;
  margin-bottom: 2 0px;
  position: relative;
}

.team .member .pic {
  border-radius: 50%;
  overflow: hidden;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);

}

.team .member:hover .member-info {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}

.team .member .member-info {
  /* position: absolute; */
  bottom: 0px;
  left: 0px;
  right: 0px;
  min-height: 150px;
  background: rgba(255, 255, 255, 1);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  color: #033d5b;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #033d5b;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #033d5b;
}

.team .member h5 {
  font-weight: 600;
  margin-top: 5px;
  font-size: 15px;
  color: #033d5b;
  position: relative;
}

/*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5px #fff;
}

.pricing .box img {
  position: absolute;
  padding-top: 30%;
  width: 50%;
  left: 20%;
}



.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 24px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  color: #09161b;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  margin-bottom: 10px;
  line-height: 45px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #000000;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 400;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #09161b;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #045b87;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 18px;
  font-weight: 400;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #4a8540;
  transform: scale(1.1);
  transition: .3s ease-in-out;
}

.pricing .featured h3 {
  color: #fff;
  background: #1a4e69;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #033d5b;
  color: #fff;
}

/*--------------------------------------------------------------
  # F.A.Q
  --------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 10px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Public Sans", sans-serif;
  font-size: 19px;
  line-height: 30px;
  font-weight: 600;
  padding: 0 45px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 30px;
  position: absolute;
  right: 0;
  left: 15px;
  color: #033d5b;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 20px 0 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.faq-img {
  border: 6px solid #fff;
  box-shadow: 0 0 25px #000;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #033d5b;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

.awards {
  background-image: url('../img/speakerbg1.jpg');
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.awards:before {
  content: "";
  /* background: #000000b4; */
  background: linear-gradient(10deg, #010d13, #010d138a, #010d1380, #010d13);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.awards p::after {
  content: "";
  width: 100px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}

.awards .gold-text {
  color: #c3a343;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(#fbf088, #c3a343);
  background: -o-linear-gradient(#fbf088, #c3a343);
  -webkit-background-clip: text;
  font-weight: 700;
  font-size: 38px;
  position: relative;
}

.awards .gold-text1 {
  color: #c3a343;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(#fbf088, #c3a343);
  background: -o-linear-gradient(#fbf088, #c3a343);
  -webkit-background-clip: text;
  font-weight: 600;
}

.awards img {
  width: 100%;
  position: relative;
  filter: drop-shadow(-1px 1px 1px #fff);
}

.awards .icon-box {
  /* display: flex; */
  align-items: center;
  text-align: center;
  padding: 15px;
  background: #1108017a;
  transition: ease-in-out 0.3s;
  box-shadow: 0 0 10px #fff;
  position: relative;
}

.awards .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
  color: #5578ff;
}

/* .awards img {
  width: 100%;
  padding-right: 10px;
  filter: drop-shadow(0 0 15px #fff);
} */

.awards .icon-box h3 {
  font-weight: 600;
  padding: 20px;
  /* margin: 0; */
  padding: 0;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  color: #ffffff;
  transition: ease-in-out 0.2s;
}

.awards .icon-box .gold-text1 {
  color: #c3a343;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(#fbf088, #c3a343);
  background: -o-linear-gradient(#fbf088, #c3a343);
  -webkit-background-clip: text;
  font-weight: 600;
}

.awards .icon-box:hover .gold-text1 {
  color: #033d5b;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(#fbf088, #c3a343);
  background: -o-linear-gradient(#fbf088, #c3a343);
  -webkit-background-clip: text;
  font-weight: 800;
}

.awards .icon-box:hover h3 {
  color: #033d5b;
  transform: scale(1.1);
}

.awards .icon-box:hover {
  background: #110801bf;
  transform: scale(0.9);
}

.awards .icon-box:hover .btn-get-started {
  background: #033d5b;
  color: #fff;
  text-align: center;
  transform: scale(0.9);
}

.awards .btn-get-started {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: ease-in-out 0.2s;
  color: #140a00;
  background: #050300;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
.contact .info {
  width: 100%;
  /* background: #fff; */
  min-height: 200px;
  /* box-shadow: 0 0 5px #000; */
}

.contact .info i {
  font-size: 26px;
  font-weight: 600;
  color: #033d5b;
  float: left;
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 5px #033d5b;
  
}

.contact .info h4 {
  padding: 0 0 0 90px;
  /* font-size: 20px; */
  font-weight: 600;
  margin-bottom: 5px;
  color: #033d5b;
}

.contact .info p {
  padding: 0 0 0 70px;
  margin-bottom: 0;
  font-weight: 600;
  /* font-size: 18px; */
  color: #033d5b;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i,
.contact .info .user:hover i {
  background: #033d5b;
  color: #fff;
}

.register {
  background: url("../img/hero-bg7.jpg");
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
}

#register::before {
  content: "";
  background: linear-gradient(to top, #0a1316, #14252bee, #14252b, #0a1316);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
    background: #033d5b;
    padding: 0 0 30px 0;
    color: #ffffff;
    font-size: 14px;


#footer .footer-top {
  padding: 20px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  color: #fff;
  padding: 30px 20px 0px 0px;
}

#footer .footer-top .footer-info img {
  width: 50%;
  margin: 0 0 20px 0;
  /* padding: 2px 0 2px 0; */
  /* filter: drop-shadow(-1px 1px 1px #000); */
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #010246;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

#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: #033d5b;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #033d5b;
  color: #fff;
  line-height: 1;
  padding: 9px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #4a8540;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

/* SPEAKER BIO CARDS
------------------------------------------- */

/* .speaker-section {
  background: #19191a;
} */

.speaker-section {
  width: 100%;
  background: url("../img/hero-bg1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 40px 0 0 0;
}

.speaker-section::before {
  content: "";
  /* background: linear-gradient(to right, #e0eafccb, #cfdef3, #e0eafccb); */
  /* background: linear-gradient( #01202f, #01172255, #01202f6c); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.speaker-card {
  position: relative;
  width: 100%;
  box-shadow: inset 0 0 20px #fff;
  /* margin: 4rem; */
}

.speaker-content {
  padding: 1rem;
  background: #033d5b;
  opacity: 0.9;
  width: 100%;
  -webkit-transition: background-color 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  -moz-transition: background-color 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  -o-transition: background-color 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: background-color 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  /* text-align: center; */
  height: 100%;
}

.speaker-card:hover .speaker-content,
.speaker-card:focus .speaker-content {
  opacity: 1;
}

/* .speaker-bio {
  margin-right: 4rem;
} */

.speaker-content h2 {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #ffffff;
}

.speaker-content h4 {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #ffffff;
}

.speaker-content p {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  color: #ffffff;
}

.speaker-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.speaker-content a {
  display: block;
  color: #fff200;
  margin-bottom: 0.4rem;
}

.speaker-card img {
  width: 100%;
  height: auto;
  filter: grayscale(1);
  border-radius: 1%;
  transition: .3s ease-in-out;
  border: 5px solid #033d5b;
  /* IE6-9 */
  /* transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91), -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91); */
}

.speaker-card:hover img,
.speaker-card:focus img {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
  transition: .3s ease-in-out;
}