/* navbar */


/* Theme */
:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --font-color:#222232;
    --nav-fixed:#000254;
  }

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
.nav-header{
  color:darkgreen;
}
.icon-box{
  background-color:rgb(204,247,238);
  color:rgb(10,217,171);
  border-radius: 75%;
}
a:hover {
  color:white;
  text-decoration: none;
}
.nav-fixed.main{
  top: 20px;
  left: 0;
  right:0;
  margin:auto;

  color: white;
  border-radius: 3px;
  background-color: var(--nav-fixed);
}


.nav-btn:hover{
  color: #e8f04d;
}

/* header */


.header-text{
  color:var(--nav-fixed)
}

/* container 1 */

#main-container{
  background-image:linear-gradient(#00000086,#000000b9),url("/img/back.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color:white;
  
  
}

.carousel-indicators li {
  display: inline-block;
  width: 48px;
  height: 48px;
  /* margin: 0px; */
  text-indent: 0;
  cursor: pointer;
  border: none;
  /* border-radius: 50%; */
  background-color: #0000ff;
  box-shadow: inset 1px 1px 1px 1px rgba(0,0,0,0.5);    
}
.carousel-indicators .active {
  background-color: #000254;
}


/* important dates */


.dates-box{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  border: solid #ea580c 1.8px;
  border-radius: 4px;
  text-align: center;
}


.dropdown-content{
  display: none;
  position: absolute;
  margin:0 10px ;
  padding: 20px;
  padding-bottom: 0;
  color: white;
  background-color: var(--nav-fixed);

}
.dropdown-content li{
  padding: 3px 0;
}

.drop-list:hover .dropdown-content{
  display: block;
}

.dropdown-content {
  filter: brightness(100%);

}



 /* .dates-box::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -2px;
  width: calc(100% + 6px);

  height: calc(100% - 10px);
  background-color: #ffffff;
  transition: all 0.5s ease-in-out;
  transform: scaleY(1.5px);
}  */



/* drop down */

/* .dropdown {
  max-width: 13em;
  margin: 80px auto 0;
  position: relative;
  width: 100%;
}

.dropdown-btn {
  background: #1d1f24;
  font-size: 18px;
  width: 100%;
  border: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7em 0.5em;
  border-radius: 0.5em;
  cursor: pointer;
}

.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: transform ease-in-out 0.3s;
}

.dropdown-content {
  list-style: none;
  position: absolute;
  top: 3.2em;
  width: 100%;
  visibility: hidden;
  overflow: hidden;
}

.dropdown-content li {
  background: #2f3238;
  border-radius: 0.5em;
  position: relative;
  left: 100%;
  transition: 0.5s;
  transition-delay: calc(60ms * var(--delay));
}

.dropdown-btn:focus + .dropdown-content li {
  left: 0;
}

.dropdown-btn:focus + .dropdown-content {
  visibility: visible;
}

.dropdown-btn:focus > .arrow {
  transform: rotate(180deg);
}

.dropdown-content li:hover {
  background: #1d1f24;
}

.dropdown-content li a {
  display: block;
  padding: 0.7em 0.5em;
  color: #fff;
  margin: 0.1em 0;
  text-decoration: none;
} */

/* base styles */


/* footer */

.footer-dark {
  padding:50px 0;
  color:#f0f9ff;
  background-color:#282d32;
}

.footer-dark h3 {
  margin-top:0;
  margin-bottom:12px;
  font-weight:bold;
  font-size:16px;
}

.footer-dark ul {
  padding:0;
  list-style:none;
  line-height:1.6;
  font-size:14px;
  margin-bottom:0;
}

.footer-dark ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.6;
}

.footer-dark ul a:hover {
  opacity:0.8;
}

@media (max-width:767px) {
  .footer-dark .item:not(.social) {
    text-align:center;
    padding-bottom:20px;
  }
}

.footer-dark .item.text {
  margin-bottom:36px;
}

@media (max-width:767px) {
  .footer-dark .item.text {
    margin-bottom:0;
  }
}

.footer-dark .item.text p {
  opacity:0.6;
  margin-bottom:0;
}

.footer-dark .item.social {
  text-align:center;
}

@media (max-width:991px) {
  .footer-dark .item.social {
    text-align:center;
    margin-top:20px;
  }
}

.footer-dark .item.social > a {
  font-size:20px;
  width:36px;
  height:36px;
  line-height:36px;
  display:inline-block;
  text-align:center;
  border-radius:50%;

}



.pad {
  padding-top: 20px;
  padding-bottom: 50px;
}


.strike-through {
  text-decoration: line-through;
}