/* NAV BAR MENU */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 20px;
}

.logo{
  width: 200px;
  margin-bottom: 5px;
}

header ul li{
  display: inline-block;
  list-style: none;
  margin: 0 30px;
}

header ul li:last-child{
  margin-right: 0;
}


header ul li a{
  text-decoration:none;
  color: #47577d;
  padding: 22px 0;
  display: inline-block;
  transition: all ease 0.3s;
  font-size: 18px;
}

header ul li a:hover{
  color: #cdd2dc;
}

/* SUB MENU */

header ul .submenu{
  position:absolute;
  width: 250px;
  background-color: #ffffff;
  box-shadow: 0 20px 45px #00000020;
  margin-top: -50px;
  opacity: 0;
  z-index: -999;
  transition: all ease 0.5s;
}

header ul li:hover .submenu{
  z-index: 99;
  opacity: 1;
  margin-top: 0;
}

header ul .submenu li{
  margin: 0;
  width: 100%;
}

header ul .submenu li a{
  padding:  15 20px;
  display: inline-block;
  width: 100%;
}



/* Hamburger */

.off-screen-menu{
  background-color: #ffffff;
  height: 100vh;
  width: 100%;
  max-width: 200px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 2rem;
  transition: .3s ease;
  z-index: 9998;
  padding: 0;
}

.off-screen-menu.activeham{
  right: 0;
}

nav .ham-menu{
  padding: 0.5rem;
  display: flex;
  background-color:#e1e5eb;
}

.ham-menu{
  height: 25px;
  width:25px;
  margin-left: auto;
  position: relative;
  z-index: 9999;
}

.ham-menu span{
  height:3px;
  width: 80%;
  background-color: #47577d;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.ham-menu span:nth-child(1){
  top: 25%;
}

.ham-menu span:nth-child(3){
  top: 75%;
}

.ham-menu.activeham span:nth-child(1){
  top: 52%;
  transform:translate(-50%, -50%) rotate(45deg)
}

.ham-menu.activeham span:nth-child(2){
  opacity: 0;
}

.ham-menu.activeham span:nth-child(3){
  top: 45%;
  transform:translate(-50%, 50%) rotate(-45deg)
}

.off-screen-menu ul {
  padding: 0 20px;
}

/* Content */

html, body {
    margin: 0;
    padding: 0;
  }  
  
  h4,h2,h1,h3,p{
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  h1{
    color: #545e75;
    font-size: xxx-large;
  }
  
  h2 {
    color: #545e75;
    font-size: x-large;
  }


  h3{
    font-weight: 700;
    color: #47577d;
  }
  
  .container{
    height: 100vh;
    width: 100%;
    background-image: url(./sml/img1-sml.jpg);
    background-position: center;
    background-size:cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
  }



    .container-header{
    height: auto;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
  }

  .container1v2{
    height: auto;
    width: 100%;
    background-image: url(./sml/img1-sml_v2.jpg);
    background-position: center;
    background-size:cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;

  }

  .container_nopic{
    height: auto;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    box-sizing: border-box;
  }
  
  .content{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 40%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    margin-left: 10%;
  
  }


  .content .btn{
    display: inline-block;
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    color: #545e75;
    box-shadow: 3px 8px 20px #cbcfd6;
    border-style: solid;
    border-width: 2px;
    text-align: center;}
  
  .container2 .btn , .box .btn{
    display: inline-block;
    border-radius: 15px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-decoration: none;
    color: #545e75;
    box-shadow: 3px 8px 20px #cbcfd6;
    border-style: solid;
    border-width: 2px;
    text-align: center;}

    .flex-container{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap:10px;
	}

.container2, img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.container2, img:hover {
  opacity: 0.95;
}

.flex-item{
	flex:1;
	text-align: center;
}

    table {
      border-collapse: collapse;
      width: 60%;
    }
    th, td {
      border: 1px solid #dbdbdb;
      text-align: center;
    }
    th {
      background-color: #f2f2f2;
    }

    .operatinghours td{
      border: none;         
      width: 50%;
      margin: 0;
      vertical-align: middle;
      letter-spacing: 2px;
    }

    .operatinghours{
      margin-top: 0;
      padding-top: 0;
      margin-bottom: 50px;
    }



  /* --------------------------FOOTER--------------------------- */
    
    footer {
      background-color: #f4f7fb;
      color: #393d51;
      padding: 40px 0;
      text-align: center;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .footer-links {
      margin: 20px 0;
    }


    .footer-bottom {
      font-size: 14px;
      color: #888;
      margin-top: 20px;
    }

    .footer-links a{
      margin: 0 10px;
    }

    /* background: linear-gradient(45deg, #4863A0, #81e5c9 ); */
  

  .bg70_sml100{
    width: 70%;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  
  .location .btn{
    display: inline-block;
    border-radius: 15px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-decoration: none;
    color: #ffffff;
    border-style: solid;
    border-width: 2px;
    text-align: center;}

  .process-section .btn{
    display: inline-block;
    border-radius: 15px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-decoration: none;
    color: #545e75;
    box-shadow: 3px 8px 20px #cbcfd6;
    border-style: solid;
    border-width: 2px;
    text-align: center;}
  
  .btn:hover{
    background-color: #ececff;
    color: #707da2;
  }
  
  .container2{
    text-align: center;
    padding: 30px;
  }
  
  
  .location{
    height: 600px;
    width: 100%;
    background-image: url(./sml/img2-sml.jpg);
    background-position: top;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .bar{
  display: block;
  }

  .hamburger{
    display: none;
  }

  .flex_responsive{
    display: flex;
    flex-direction: row;
    flex:auto; 
    text-align: center;
  }

  .flex_responsive .flex_item{
    flex: 1;
    padding: 20px;
  }

  .flex_item h3{
    margin: 0;
  }

  .flex_item h4{
    margin-bottom: 0;
  }

  .container3{
    width: 90%;
    margin: auto;
    text-align: center;
  }

  .container3 .flex_responsive{
    margin: 30px;
  }

  .box{
    outline: 2px solid rgb(203, 203, 203);
    padding: 20px;
    margin-top: 25px;
  }

  .box h4{
    margin-left: 10%;
    margin-right: 10%;
  }

  /*SLIDESHOWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW */


  body {font-family: Verdana, sans-serif;}
  .mySlides {display: none;}
  img {vertical-align: middle;}
  
  /* Slideshow container */
  .slideshow-container {
    position: relative;  
  }
  
  /* Caption text */
  .text {
    color:#545e75;
    font-size: large;

    width: 100%;
    text-align: center;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
/* RESPONSIVE */
@media only screen and (max-width: 1366px) {
    h1{
      color: #545e75;
      font-size:1.75EM;
      margin: none;
      }

ul{
  padding: 0;
}

    .content{
      position: absolute;
      top: 0;
      bottom: 0;
      height: 100%;
      width: 90%;
      display: flex;
      align-items: stretch;
      justify-content: center;
      flex-direction: column;
      margin-left: 0;
    }

    .logo{
      width: 150px;
    }

    .brand{
      width: 100px;
    }

    .container{
      height: 80vh;
      width: 100%;
      background-image: url(./sml/img1-sml-600px.jpg);
      background-position: center;
      background-size:cover;
      padding-left: 5%;
      padding-right: 5%;
      box-sizing: border-box;
      position: relative;
    }

    .content .btn{
      display: inline-block;
      width: 100%;
      border-radius: 15px;
      padding: 10px;
      box-sizing: border-box;
      text-decoration: none;
      color: #545e75;
      box-shadow: 3px 8px 30px #cbcfd6;
      border-style: solid;
      border-width: 2px;
      text-align: center;
      font-size: medium;
      background-color: hsl(240, 16%, 93%, 0.7);


    }


    .btn:hover{
      background-color: #ececff;
      color: rgb(112, 125, 162);
    }

    .upgrading-title{
      margin-top: 20%;
      width: 50%;
    }

    .text {
      font-size: medium;
    }

    .hamburger{
      display:block;
    }

    .bar{
      display: none;
    }

    .bg70_sml100{
      width: 100%;
      display: block;
      margin-top: 30px;
      align-content: center;
    }

    .flex_responsive{
      display: flex;
      flex-direction: column;
      flex:auto; 
      text-align: center;
    }
  
    .container3{
      margin: auto;
      text-align: center;
    padding-left: 5%;
      padding-right: 5%;
    }
    
    .box h4{
      margin-left: 0;
      margin-right:0;
    }

    .flex-container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap:10px;
	}

  .content h2 {
    color: #545e75;
    font-size:1.25EM;
  }

  .operatinghours h2 {
    color: #545e75;
    font-size: 1.25em;
  }

  .box{
    outline: 2px solid rgb(203, 203, 203);
    padding: 5px;
    margin-top: 25px;
  }


  }  

/* PROCESS */
 .process-section {
      max-width: 1000px;
      margin: 30px auto;
      padding: 10px;
      text-align: center;
    }

    .steps {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .step {
      background: white;
      border-radius: 12px;
      padding: 20px;
      margin: 5px;
      flex: 1 1 200px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .step:hover {
      transform: translateY(-5px);
    }
    .step-number {
      font-size: 1.5em;
      color: #535c6e;
      margin-bottom: 10px;
    }
    .step-title {
      font-weight: bold;
      font-size: 1em;
      margin-bottom: 10px;
      font-family: "PT Serif", serif;
    }
    .step-desc {
      color: #555;
      font-family: "PT Serif", serif;
    }

