
  
  
  *, *:before, *:after{
    scroll-behavior: smooth;
    box-sizing: border-box;
  }
  
  body {
    margin:auto;
    font-family:Roboto;
    position:relative;
    background: #006cb8;
    width: 1280px;
  }

  ul{
    display: flex;
    gap: 20px;
  }
  
  li {
    list-style: none;
  }
  
  
  a {
    text-decoration: none;
  }
  
  h2 {
    margin: 0;
  }
  
   /*#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: darkred;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
  }
  #loading-animation {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid darkred;
    border-bottom: 16px solid darkred;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; 
    animation: spin 2s linear infinite;
  }
  
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }*/
  

  .navbar{
    display: flex;
    align-items: center;
    background-color: transparent;
    position: relative;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px 0 20px;
  }
  
  .logo-container{
    height: 110px;
    width: 48%;
  }

  .logo-link{
    display: flex;
    align-items: center;
  }

  .logo-container img {
    width: 17%;
  }

  .logo-container h1{
    font-size: 33px;
    margin: 0;
    color: #006cb8;
  }

  .social-media{
    height: 45px;
    width: 100%;
    background: #002E5A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 0 20px;
  }

  .social-media p{
    color: white;
    font-weight: 300;
  }

  .social-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 10px;
  flex-wrap: wrap;
  padding: 0;
  }
  
  .social-icon__item,
  .menu__item {
  list-style: none;
  }
  
  .social-icon__link {
  font-size: 15px;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  }
  .social-icon__link:hover {
  transform: translateY(-5px);
  color: gray;
  }

  .social-icon, .menu a {
    color: black;
    font-weight: 500;
    font-size: 14px;
  }
  
  .menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
  }
  
  .menu__link:hover {
  opacity: 1;
  }

  .main-menu{
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .sub-menu{
    background: white;
    display: flex;
    visibility: hidden;
    z-index: 1;
    position: absolute;
    top: 71px;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    
  }

  .dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    color: #aaa;
}


  .main-menu .menu > li:hover > .sub-menu {
    visibility: visible;
    
  }

  .has-children-link{
    padding: 28px 11px;
    font-weight: 700;
    font-size: 14px;
    color: #444444;
  }

  .menu a:hover{
    color: #006cb8;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
  }
  
  .nav-branding {
    color: white;
    font-size: 3rem;
  }
  
  .nav-link {
    color: gray;
    transition: 0,7s ease;
  }
  
  
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display:block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
  
  }
  
  #Home{
    height: 100%;
    background: white;
  }
  
  .Homepage{
    display: flex;
    background: white;
    width: 100%;
  }

  .intro{
    height: fit-content;
    width: 66.666666%;
    display: flex;
    flex-direction: column;
    background: white;
  }
  
  .slideshow-container {
    max-width: 960px;
    position: relative;
    margin: 0 30px 0 35px;
    height: 420px;
    overflow: hidden;
  }

  .mySlides {
    display: none;
    height: 100%;
    align-items: center;
  }



  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .picture-selector{
    position: absolute;
    left: 45%;
    top: 95%;
  }

  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: 1}
    to {opacity: 1}
  }

  .side{
    width: 33.3333%;
    padding-top: 5px;
  }

  .side-container{
    width: 90%;  
    display: flex;
    justify-content: center;
    margin: 0 auto 40px 0;
  }
  
  .bg-coloring{
    padding: 0 25px  25px 25px;
    width: 100%;
    display: flex; 
    flex-direction: column;
    border: 1px solid #e5e7f2;
    background: #f7f9fb;
    border-radius: 3px;
  }

  .side-title{
    padding-top: 0;
  }

  .side-title h3{
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #002E5A;
  }
  
  .sponsor{
    margin-bottom:20px;
    width: 100%;
    height: 145px;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .sponsor img{
    width: 130%;
    border: 1px solid #dadada;
    height: 100%;
  }

  .anniversary-picture{
    width: 100%;
  }

  .anniversary-picture img{
    width: 100%;
  }

  .homepage-blog-section{
    margin: 35px;
  }

  .post-item{
    display: flex;
    align-items: center;
    border-bottom: 1px solid gray;
    margin-bottom: 16px;
  }

  .thumbnail{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 16px 16px 0;
  }
  .thumbnail img{
    width: 100%;
    height: 100%;
  }

  .single-img img{
    width: 100%;
    height: 115%;
  }

  .blog-content{
    margin: 0 30px 0 35px;
  }

  .post-desc{
    width: 800px;
    font-size: 14px;
    color: gray;
  }

  .post-desc h3{
    font-size: 19px;
    text-decoration: none;
  }

  .post-desc a{
    color: rgba(184, 6, 6, 0.788);
  }

  .hero-video-container {
    width: 100%;
    margin: 20px auto 20px auto;
  }
  
  .hero-video-container img {
    width: 100%;
  }

  .phone-img{
    display: none;
  }
  
  .sponsor-part{
    width: 80%;
    height: 20vh;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
  }
  
  .sponsor-part img { 
    height: 50%;
  }
  
  
  
  .description{
    text-align: center;
    width: 80%;
    color: grey;
    font-size: 1.3em;
  }
  
  .description p{
    margin: 5px;
  }

  .ending{
    width: 100%;
  }
  
  .footer{
    display: flex;
    justify-content: flex-start;
    background: #002E5A;
    color: white;
    align-items: center;
    height: 76px;
    width: 100%;
    padding-left: 35px;
  }

  .footer p{
    font-size: 13px;
    font-weight: 400;
  }

  

  @media(max-width:1280px){

    body{
      width: 100%;
      background: #fff;
    }

    .navbar{
      flex-direction: column;
      background: #FFFFFF;
    }

    .logo-container{
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .logo-link{
      width: 40%;
      height: 100%;
    }

    .complete-menu{
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .sub-menu{
      top: 150px;
    }
  }
  /*header menu for tablets */
  @media(min-width:900px) and (max-width: 1007px){

  
  
  
  }
  /* phone screen*/
  @media(max-width: 900px) {

    .social-media{
      display: none;
    }

    .navbar{
      flex-direction: row;
      border-bottom:1px solid #dadada;
      padding: 0;
      height: 80px;
    }

    .bar{
      background: black;
    }

    .hamburger{
      display: block;
      right: 5%;
      position: relative;
      z-index: 6;
    }

    .dropdown-arrow{
      color: #444444;
      display: block;
    }

    .dropdown-arrow.active + .sub-menu{
      display: flex;
    }

    .dropdown-arrow

    .menu-item{
      height: 15px;
    }
    
    .menu-item.active{
      height: 115px;
    }

    .complete-menu{
      position: absolute;
      width: 100%;
      height: 0;
      z-index: 5;
      top: 79px;
      overflow: hidden;
      transition: 0.5s;
      background: white;
    }

    .complete-menu.active{
      height: 200px;
    }

   .menu{
      width: 100%;
      height: 100%;
      margin: 21px 0;
      padding-top: 17px;
      padding-left: 20px;
    }

    .has-children-link{
      color: black;
      font-size: 14px;
      display: flex;
      padding: 0;
    }
    
    li{
      display: grid;
      grid-template-areas:'has-children-link dropdown-arrow'
                          'sub-menu sub-menu' ;
      height: 15px;
      justify-content: space-between;
      margin-right: 20px;
    }

    ul{
      flex-direction: column;
    }

    .main-menu{
      width: 100%;
      height: 0;
      transition: 0.5s;
    }

    .main-menu.active{
      height:200px;
      border-bottom:1px solid #dadada;
      background: white;
    }

    .sub-menu{
      visibility: visible;
      position: relative;
      display: none;
      padding: 0 10px 0 10px;
      right: 0px;
      top: 0px;
    }

    .logo-container{
      position: relative;
      background: white;
      justify-content: left;
      margin-left: 10px;
      height: 100%;
    }

    .logo-container img{
      width: 75px;
    }

    .logo-link{
      width: 84%;
    }

    .logo-container h1{
      font-size: 15px;
    }

    .Homepage{
      flex-direction: column;
    }

    .intro{
      width: 100%;
    }

    .homepage-blog-section{
      margin: 15px;
    }

    .slideshow-container{
      height: 30vh;
      margin: 0 15px ;
    }

    .picture-selector{
      display: none;
    }

    .side{
      width: 100%;
      margin: auto;
    }

    .side-container{
      margin: auto;
      width: 90%;
    }



  }
  
   