
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

/* site name + description */
.logo-text{
    letter-spacing: 0px;
    font-size: 41.8px;
    font-weight: normal;
    font-style: normal;
    font-family: "Lora";
    position: relative;
    top: 15px;
    margin-left: 3.5%;
    color: #13559c;
}

.tagline{
    margin-top: 5px;
    margin-bottom: 10px;
    /* margin-left: 13.5%; */
    margin-left: 3.5%;
    font-size: 13.2px;
    color: grey;
    letter-spacing: 1.5px;
    font-weight: normal;
    font-style: normal;
    font-family: roboto-condensed, sans-serif;
    position: relative;
}

hr{
    height: 0px;
    width: 87%;
    margin-left: 3.5%;
    border: none;
    border-top: 1px solid #E3A638;
}

/* entire navigation within site */
 .menu-bar ul{
    margin-top: 0;
    position: absolute;
    margin-left: 3.5%;
    z-index: 10000;
} 
/* moves indiv links inside ul   */
 .menu-bar ul li{
    list-style: none;
    float: none;
    margin: 0;
    
    /* padding: 0.4em;  */
    /* padding: .7%; change to move dropdown */
    /* padding: 12.6px 12.6px 9px; */

    padding-left: 10px;
    padding: 0.4em;
    display: inline-block; 
    position: relative; 
} 

.menu-bar ul li:first-child{
    padding-top: .7em;
}

/* style text inside link */
 .menu-bar ul li a{
    display: block;
    text-decoration: none;
    font-family: roboto-condensed, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #13559C; 
    padding-left: .9em;
    padding-top: .2em;
}  

.menu-bar li:hover > ul, .menu-bar li.menu-bar.parent.hover ul{
    display: block !important;
}

.menu-bar ul li ul{
   display: none;
   position: absolute;
   margin-left: -3%;
   margin-top: .5em;
   width: 215px;
   /* space btw. walls */
   /* padding: -5px;  */
   background: #F6F6F6;
   font-size: 12px;
   font-family: roboto, sans-serif;
   font-style: normal;
   /* left: 0px; */
   /* top: -2px; */
   /* padding-right: 2px;
   padding-left: 2px; */
   border-bottom:5px solid;
   border-bottom-color: #E3A638;
}  


/* when hover over link for dropdown  */
.menu-bar ul li:hover ul{
    display: block;
 }  

.menu-bar ul li ul li a{
    padding-left: .9em;
    padding-top: .2em;
    padding-bottom: .2em;
 }  

 /* .sub-menu-style{
    margin-left: 8.5%;
 } */
 .menu-bar ul li ul li {
    /* width: 240px; */
    width: 270px;
 } 

 .menu-bar ul li ul li a:hover{
    color: #E3A638;
 }  



 .menu-bar a:hover{
    color: #E3A638;
}

.container{
    /* width: 85vh;
    height: 35vh;
    background: grey;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* margin-left: 61px; */
    margin: 0 auto;
    margin-top: 110px;
    
    width: 70%;
    height: 57vh;
    /* width: 100px;
    height: 100px;  set the width of the container */
    /* height: 100%; set the height of the container */ 
    position: relative;
    background: black;
    display: flex;
    overflow: hidden; /* hide any overflow beyond the container */
}

.swiper{
    width: 70%;
    height: fit-content;
    margin: 0 auto;
}


.swiper-slide img{
    /* width: 410px; */
    /* object-fit: cover;
    margin-top: -2%;
    margin-left: 10%; */

  object-fit: contain; /* Make the image fit inside the container while maintaining aspect ratio */
  width: 100%; /* Allow the width to adjust based on the height */
  /* height: 100%; Make sure the image takes up the full height of the container */
  display: block;  /*Remove any default inline styling */ 
  margin: 0 auto; /* Center the image horizontally */
   
}

/* arrows */
.swiper-button-next,
.swiper-button-prev { 
    /* margin: 0 auto; */
    margin: 40px;
    color: white !important;
    fill: white !important;
    stroke: white !important;
}


.sunset-text{
    margin-top: 2.5%;
    margin-left: 14.9%;
    margin-right: 14.9%;
}
p{
    font-family: roboto, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    padding: 2px;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 10px; /*new*/
}

 /*--- mobile ---*/

@media screen and (max-width: 835px) {
  .btm-hr {
    margin-top: 90px;
  }
  .menu-bar ul li a {
    font-size: 13px;
  }
}
/*------*/