*{
  box-sizing: border-box;
  margin: 0em;
  padding: 0em;
}

body{
    background-color: rgb(253, 253, 253);
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buy-btn{
  position: relative;
  text-decoration: none;
  background-color: #0078f3;
  color: #fff;
  width: 100%;
  padding: 6px;
  text-align: center;
  font-size: .8em;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0px 5px 4px -3px #333333bb;
  border: solid 1px #0000;
}

.buy-btn:hover{
  background-color: #fff;
  color: #0078f3;
  border: solid 1px #0078f3;
}

.logo{
    height: 100px;
    /*border-radius: 6px;   */
}

.active_tab{
  border-bottom: solid .6px #89bef3;
  padding-bottom: .4em;
}

.top-nav{
    box-sizing: border-box;
    width: 100%;
    padding: .2em 1em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.top-nav > ul{
    box-sizing: border-box;
    padding: 0em 1em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2em;
}

.top-nav > ul > li{
    list-style-type: none;
}

.top-nav > ul > li > a{
    text-decoration: none;
    color: #102648;
}

.top-nav > ul > li > ul{
    display: none;    
}

.top-nav > ul > li:hover > ul{
    
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 100;
    /* background-color: #333; */
}

.top-nav > ul > li > ul > li{
    background-color: #222222;
    /* width: 100px;  */
    list-style-type: none;
    box-sizing: border-box;
    margin: .3em 0em;
    padding: .5em;
    overflow: hidden;
}

.top-nav > ul > li > ul > li:hover{
  background-color: #0078f3;
}

.top-nav > ul > li > ul > li > a{
    text-decoration: none;
    color: #ffffff;
    font-size: .8em;
}

/* Slideshow container */
.slideshow-container {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin: auto;
    height: 500px;
    overflow: hidden;
  }

.slideshow-container > section{
    position: absolute;
    height: inherit;
    max-width: 30%;
    box-sizing: border-box;
    padding: 1em;
    margin-left: 5em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.slideshow-container > section > div{
    box-sizing: border-box;
    padding: 1em;
    background: #222222bb;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    gap: 1em;
    z-index: 99;
}

.slideshow-container > section > div >h1{
    color: #fefefe;
    font-weight: 900;
    font-size: 3em;
}

.slideshow-container > section > div >h2{
    color: #89bef3;
    font-weight: 500;
    font-size: 2em;
}

.slideshow-container > section > div >p{
    color: #ffffff;
    font-weight: 300;
    font-size: .9em;
    line-height: 1.7em;
}

.slideshow-container > section > div > .cta{
    text-decoration: none;
    background-color: #0078f3;
    color: #fefefe;
    padding: .6em;
    border-radius: 4px;
    font-weight: 700;
}

.lbo{
  color: #333333;
  font-size: .9em;
  line-height: 2em;
}

.lbos{
  color: #333333;
  font-size: 1em;
  line-height: 2em;
  width: 60%;
}

.clogos{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  gap: .5em;
}

.clogos img{
  height: 80px;
   margin: .5em;
}
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  .mySlides img{
    max-height: 500px;
  }
  
  /* Next & previous buttons */
  .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;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .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;
  }
  
  /*
  .active, .dot:hover {
    background-color: #717171;
  }
  */
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  /* services section */

  .servsec{
    display: flex;
    flex-direction: column;
    gap: 1em;
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
  }

  .servsec>  h1{
    color: #333333ee;
  }

  .servsec>  h3{
    color: #1f5388;
  }

  .servsec > .rbox{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-around;
    align-items: flex-start;
    width: 70%;

  }

  .servsec> .rbox > div{
    width: 280px;
    box-sizing: border-box;
    overflow: hidden;
    margin: 1em 0em;
    display: flex;
    flex-direction: column;
    gap: .5em;
    align-items: center;
  }

  .servsec> .rbox > div > a > img{
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 5px 4px -3px #cccb77bb;
  }

  .rbox > div > h5{
    font-weight: 200;
    color: #333;
  }

 .servsec .cta{
    text-decoration: none;
    background-color: #2c2c2c;
    display: inline-block;
    color: #fefefe;
    padding: .4em;
    border-radius: 4px;
    font-weight: 300;
    font-size: .9em;
    box-shadow: 0px 5px 4px -3px #333333bb;
}

.servsec > .rbox > div >h3{
  color: #555;
  font-weight: 300;
}

.servsec > p{ 
  width: 60ch;
  line-height: 1.6em;
  color: #333333;
  font-size: .9em;
}

/* close-up section */

.container {
  width: 80%;
  margin: auto;
}

.heading {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  padding: 3rem 0;
  color: #555;
}

.cardi{
  border: solid 1px #ddd;
  box-sizing: border-box;
  padding: .6em;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0px 5px 4px -3px #333333bb;
  height: 380px;
}

.cardi span{
  font-weight: 600;
  font-size: .9em;
  color: #1f5388cc;
}

.counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.counter {
  text-align: center;
}

.counter h3 {
  padding: 0.5rem 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0078f3;
}

.counter h6 {
  font-size: 1.2rem;
  padding-bottom: 1rem;
  color: #555;
}

.icon{
  height: 5rem;
  width: auto;
}

.galbox{
  box-sizing: border-box;
  width: 100%;
  margin: 1.5em 0em;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.galbox h1{
  color: #102648;
  margin: 1em;
}

.galbox div{
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: .3em;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: .3em;
}

.galbox img{
  max-height: 300px !important;
  border-radius: 3px !important;
  box-shadow: 0px 5px 4px -3px #333333bb;
}

footer{
  margin-top: auto;
  background: #2c2c2c;
  width: 100%;
  box-sizing: border-box;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

footer .quicks{
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 1em;
  flex-wrap: wrap;
  margin: .5em 0em;
  justify-content: space-around;
  align-items: center;
  /* border: solid 1px #fff; */
  width: 100%;
}

footer .quicks ul{
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: .4em;
  list-style-type: none;  
}

footer .quicks ul a{
  text-decoration: none;
  color:  #c2c2c2ee;
  font-size: .85em;
  padding: .55em;
}

footer .quicks ul span{
  color: #c2c2c2ee;
  font-weight: 100;
  font-size: .85em;
  padding: .55em;
}


footer .socials{
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 1em;
  flex-wrap: wrap;
  margin: .5em 0em;
  justify-content: center;
  align-items: center;
  /* border: solid 1px #fff; */
  width: 100%;
}

footer .credits{
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 1em;
  flex-wrap: wrap;
  margin: .5em 0em;
  justify-content: center;
  align-items: center;
  /* border: solid 1px #fff; */
  width: 100%;
}

footer .credits ul, footer .socials ul{
  width: 100%;
  box-sizing: border-box;
  padding: 1em;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 1em;
  flex-wrap: wrap;
  margin: .5em 0em;
}

footer .credits ul a, footer .socials ul a{
  text-decoration: none;
  color: #f2f2f2;
  font-weight: 300;
  font-size: .9em;
}

footer .socials ul{
  justify-content: center;
  align-items: center;
}

footer .credits ul{
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 600px) {

  .top-nav{ 
    flex-direction: column;
    align-items: center; 
    gap: 10px;
}
.top-nav ul{
    display: none;
  }

  .top-nav ul.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin-top: 1em;
  }

  .menutoggle {
    display: block;
    width: 40px;
    height:40px;
    margin: 15px;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    position: relative;
  }

  .menutoggle:before {
    content: url('images/mb-op.svg');
  }

  .menutoggle.active:before {
    content: url('images/mb-cl.svg');
    line-height: 3em;
    background: none !important;
  }

  .slideshow-container {
    height: auto !important;   
  }

  p, .lbos{
    width: 90% !important;
  }

  .slideshow-container > section{
    position: relative !important;   
    max-width: 100% !important;
    margin-left: 0em !important;
  }

  .slideshow-container > section > div{
    max-width: 100% !important;
  }

  .clogos{
    width: 100%;
    padding: .8em;
  }

  .clogos img{
    max-width: 100%;
    height: auto !important;
  }

}
