#top-header .event-logo {
    width: 190px;
    padding: 10px;
    margin-left: 5vw;
    z-index: 999;
  }
  
  #top-header .iria-logo,
  #top-header .aosr-logo {
    width: 100px;
    padding: 5px;
    z-index: 999;
  }
  .org {
    margin-right: 5vw;
  }
  .org-top {
    position: relative;
    right: -5vw;
    border: 1px solid black;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .ht1 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgb(40, 115, 185);
  }
  .ht2 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .ht21 {
    color: rgb(20, 105, 60);
  }
  .ht22 {
    color: rgb(227, 30, 36);
  }
  .ht3 {
    font-size: 14px;
    padding: 2px 5px;
    background-color: rgb(40, 115, 185);
    color: rgb(255, 255, 255);
    font-weight: 500;
    border-radius: 4px;
  }
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  
  #header {
    z-index: 997;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 0px 15px 0px 24px;
    /* background: rgb(0,68,105); */
    background-color: rgb(0, 71, 157);
    max-width: 100vw;
    font-family: "Josefin Sans";
    font-weight: 400;
    /* position: sticky;
    width: 100%;
    top: 0;
    left: 0; */
    /* margin-top: 60px; */
  }
  
  #header.header-transparent {
    /* background: transparent; */
  }
  
  #header.header-scrolled {
    background: rgb(0, 71, 157);
    padding: 0 10px 0 12px;
    margin-top: 0px;
  }
  
  /* #header .logo h1 {
    font-size: 24px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Aboreto", sans-serif;
    text-transform: uppercase;
  } */
  
  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: rgb(0, 87, 127);
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 100px;
    padding: 5px;
    background-color: white;
  }
  #header .logo1 img {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 10px;
    max-height: 50px;
    padding: 2px;
  }
  @media (max-width: 768px) {
    #header.header-scrolled {
      padding: 15px 0;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
    position: static;
    max-width: 100vw;
    /* font-family: "Quicksand", sans-serif;
    font-weight: 600; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a,
  .navbar a:focus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 5px;
    margin-left: 8px;
    font-family: "Poppins", sans-serif;
    /*font-size: 12.8px; */
    font-weight: 500;
    letter-spacing: 0.8px;
    /* my color  */
    color: rgb(255, 255, 255);
    white-space: normal;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
    text-transform: capitalize;
  }
  
  .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: transparent;
    /* border-radius: 45%; */
  }
  
  .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;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 230px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    /* font-weight: 600; */
    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: #1aa0de;
  }
  
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .megamenu {
    position: static;
  }
  
  .navbar .megamenu ul {
    margin: 0;
    padding: 10px;
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  
  .navbar .megamenu ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  
  .navbar .megamenu ul li strong {
    padding: 8px 0 8px 17px;
    display: block;
  }
  
  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
    padding: 8px 10px;
  }
  
  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: #1aa0de;
  }
  
  .navbar .megamenu: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 
  */
  .mob-header {
    display: none;
  }
  .mobile-nav-toggle {
    color: rgb(255, 255, 255);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 999;
    margin-right: 10px;
    margin-left: 20px;
  }
  .bi-x {
    z-index: 999;
  }
  @media (max-width: 1200px) {
    .mobile-nav-toggle {
      display: block;
    }
    .navbar ul {
      display: none;
    }
    .event-logo,
    .head-name,
    .org {
      display: none;
    }
    .top-header {
      height: 50px;
      position: fixed;
      width: 100%;
      z-index: 9999;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /* background: rgba(255, 255, 255, 0.9); */
    background-color: #8f8f8f;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    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;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    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,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    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;
  }
  
  .navbar-mobile .megamenu ul li a,
  .navbar-mobile .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }
  
  .navbar-mobile .megamenu ul li a:hover,
  .navbar-mobile .megamenu ul li .active,
  .navbar-mobile .megamenu ul li .active:hover {
    color: #67b0d1;
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 998;
    background: #07415d;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    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;
  }
  
  /*---------------------------------na-----------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      -webkit-transition-delay: 0 !important;
      -o-transition-delay: 0 !important;
      transition-delay: 0 !important;
    }
  }
  
  /* ============top============== */
  /* .top-header{
  padding: 10px 24px;
    background-color: #fff;
    z-index: 9999; 
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 24px 0;
    max-width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .top-header img{
    width: 120px;
    padding-left: 20px;
  } */
  .top-header {
    /* padding: 10px 10px 5px 10px; */
    background-color: rgb(0, 71, 157);
    /* height: 70px; */
  }
  .top-header .reg-btn {
    text-decoration: none;
    padding: 3.5px 10px;
    font-size: 13px;
    background-color: #e2f6ff;
    color: rgb(39, 39, 39);
    text-shadow: 0.7px 0.7px rgb(255, 255, 255);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0px 19px;
    background-image: -o-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.2),
      rgba(132, 222, 255, 0.8),
      rgba(255, 255, 255, 0.2)
    );
    background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.2),
      rgba(132, 222, 255, 0.8),
      rgba(255, 255, 255, 0.2)
    );
    background-size: 200% 100%;
    -webkit-animation: shine 3s infinite ease-out;
    animation: shine 3s infinite ease-out;
    border: 0.5px solid rgb(0, 72, 128);
    -webkit-box-shadow: 0px 0px 1.9px -13px rgba(255, 255, 255, 0.258),
      0px 0px 4.3px -13px rgba(255, 255, 255, 0.373),
      0px 0px 7.7px -13px rgba(255, 255, 255, 0.46),
      0px 0px 12.8px -13px rgba(255, 255, 255, 0.54),
      0px 0px 21.2px -13px rgba(255, 255, 255, 0.627),
      0px 0px 37px -13px rgba(255, 255, 255, 0.742),
      0px 0px 80px -13px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 1.9px -13px rgba(255, 255, 255, 0.258),
      0px 0px 4.3px -13px rgba(255, 255, 255, 0.373),
      0px 0px 7.7px -13px rgba(255, 255, 255, 0.46),
      0px 0px 12.8px -13px rgba(255, 255, 255, 0.54),
      0px 0px 21.2px -13px rgba(255, 255, 255, 0.627),
      0px 0px 37px -13px rgba(255, 255, 255, 0.742),
      0px 0px 80px -13px rgba(255, 255, 255, 1);
    text-transform: uppercase;
    z-index: 999;
  }
  
  @-webkit-keyframes shine {
    0% {
      background-position: 200% 0;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    70% {
      background-position: -200% 0;
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  
  @keyframes shine {
    0% {
      background-position: 200% 0;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    70% {
      background-position: -200% 0;
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  
  @media (max-width: 453px) {
    .top-header .reg-btn {
      padding: 1.5px 8px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.7px;
      margin: 0px 4px;
    }
  }
  
  @media (max-width: 453px) {
    .workshop {
      display: none !important;
    }
  }
  /* workshop */
  
  @media (max-width: 453px) {
    .top-header {
      height: 60px;
    }
  }
  
  /* ============ */
  .nav-right {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .social {
    /* margin: 0px 10px; */
    /* padding: 5px; */
    color: rgb(255, 255, 255);
    margin: 5px;
    position: relative;
    top: -40%;
    z-index: 999;
  }
  .social i {
    font-size: 20px;
  }
  .social svg {
    height: 19px;
    width: 20px;
    fill: #ffffff;
    /* padding: .1px; */
  }
  @media (max-width: 573px) {
    .logo {
      max-width: 80px;
    }
    .social img {
      height: 25px;
      width: 25px;
      margin: 2px;
    }
    .top-header .reg-btn {
      font-size: 12px;
    }
  
    /* #header{
      padding: 0px 9px 3px 3px;
  } */
  }
  @media (max-width: 438px) {
    .logo {
      max-width: 70px;
    }
    .social img {
      height: 21px;
      width: 21px;
      margin: 2px;
    }
    .mobile-nav-toggle {
      font-size: 25px;
    }
  }
  @media (max-width: 405px) {
    /* .top-header .reg-btn{
      font-size: 12px;
      background-color: #67b0d1;
      color: white;
      border-radius: 5px;
      cursor: pointer;
      transition: all .5s;
      margin: 0px 14px;
      padding: 3px 8px;
    } */
  }
  @media (max-width: 382px) {
    .logo {
      max-width: 50px;
    }
  }
  