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

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
/* nav section begins */

a {
  text-decoration: none;
  color: #ffff;
}
nav {
background-color: #000033fa;
box-shadow: 3px 3px 5px 3px rgba(0, 0, 0.1);
position: sticky;
z-index: 100;
width: 100%;
}

nav ul {
width: 100%;
list-style: none;
display: flex;
justify-content: flex-end;
align-items: center;

}
nav li {
height: 50px;
}
ul.active{
padding: 20px 30px 20px 30px;
}

ul.active li.hideOnMobile:hover {
border-bottom:2px solid #ffffff;
border-top: 2px solid #ffffff;
}

nav ul {
width: 100%;
list-style: none;
display: flex;
justify-content: flex-end;
align-items: center;

}
nav li {
height: 50px;
}
nav a{
height: 100%;
padding: 0 30px;
text-decoration: none;
display: flex;
align-items: center;
color: #ffffff;
}
/* nav a:hover{
background-color: #151561fa;
color: #ffffff;
} */

nav li:first-child {
margin-right: auto;
background: url('./png_logo-removebg-preview.png');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 180px;
height: 60px;
border-radius: 8px;
box-shadow: -1px 0 px 0px 0px rgba(253, 252, 252, 0.685);
}
.menu-button {
display: none;
}
li.logo:hover {
border-bottom: 4px solid #ffffff;

}

.sidebar {
position: fixed;
top: 0;
height: 200px;
width: 250px;
z-index: 999;
background-color: #000033fa;
backdrop-filter: blur(10px);
box-shadow:  -10px 0 10px rgba(253, 252, 252, 0.685);
display: none;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}
.side-bar li {
width: 100%;
}
.side-bar a {
width: 100%;
}
/* end of nav section */

/* end of nav section */
.container{
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 5% 20px 5%;
}
.content {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  position: relative;
}
.content .images {
  height: 100%;
}
.report {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: fit-content;
}
.rep-images {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  height: fit-content;
  justify-content: center;
}

.rep-images img {
  max-width: 50%;
  max-height: 50%;
}
.results img{
  width: 50%;
}
.results img span{
  margin-left: 10%;
}
.results {
  display: flex;
  flex-direction: row;
}

.images img{
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.images {
  height: 100%;
  width: 100%;
}
.btm-sliders {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.btm-sliders span{
  margin: 0 3px;
  cursor: pointer;
  border-radius: 15px;
  border: 2px solid #ffffff;
  background: rgba(255,255, 255, 0.1);
}
span.dots:hover{
  background-color: #000000;
}
.content .slide{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid white;
  cursor: pointer;
  /* background: rgba(0, 0, 0, 0.8);
  color: #ffffff; */
}
.slide span:hover{
  background: rgba(255,255, 255, 0.2);
}
.slide span{
  font-size: 20px;
  color: #ffffff;
  line-height: 41px;
}
.content .right {
  right: 0;
}




/* end of body section */


/* whatsapp links  */
.whatsapp-btn-container {
  position: fixed;
  right: 30px;
  bottom: -50px;
  padding: 24px;
  animation: fade-up 1000ms forwards;
  opacity: 0;
  animation-delay: 1000ms;
}
@keyframes fade-up{
  100%{
      bottom: 50px;
      opacity: 1;
  }
}
.whatsapp-btn-container .whatsapp-btn {
  font-size: 3rem;
  color: #25d366;
  display: inline-block;
  transition: all 400ms;
}
.whatsapp-btn-container span{
  position: absolute;
  top: 0;
  left: 4px;
  font-weight: bold;
  color: #075e54;
  transform: rotateZ(20deg) translateX(10px);
  opacity: 0;
  transition: all 400ms;
}
.whatsapp-btn-container .whatsapp-btn:hover {
  transform: scale(1.2);
}
.whatsapp-btn-container .whatsapp-btn:hover + span {
  transform: rotateZ(0deg) translateX(0px);
  opacity: 1;
}




/* footer {
  background-color: #000033fa;
  height: 5rem;
  width: 100%;
  margin-top: 2px;
} */

@media(max-width:800px) {
  .hideOnMobile{
      display: none;
  }
  .menu-button {
      display: block;
  }
}
@media (max-width:500px) {
  .sidebar{
      width: 100%;
      height: 350px;
  }
  .content {
  height: 100px;
  width: 100%;
}
  .land {
    background: url('./home2.jpg');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
  }
  footer {
    background-color: #000033fa;
    display: flex;
    color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    height: fit-content;
    padding: 5px 5px 5px 5px;
    width: 100%;
    margin-top: 2px;
    gap: 5px;
  }
  .mails {
    display: flex;
    flex-direction: column;
    line-height: 1.5rem;
    font-size: 14px;
  }
  span.gmail {
    font-size: 14px;
    font-weight: 400;
    max-width: fit-content;
    border-radius: 8px 0 8px 0;
    /* margin-bottom: 1rem; */
  }
  div.terms {
    font-size: 13px;
  }
  .social-media {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 3rem;
    line-height: 1.5rem;
    max-width: 100%;
    min-width: fit-content;
    min-height: fit-content;
    max-height: fit-content;
  }
}
@media (min-width:501px) {
  .sidebar{
      width: 100%;
  }
  .for-small {
    background: url('./images/home\ dc.png');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: none;
    padding: 0px 40px;
    height: 300px;
  }
  .rep-images img:hover {
  cursor: pointer;
  border: 1px solid black;
  height: 100vh;
  width: 100vh;
}  
   footer {
    background-color: #000033fa;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    height: fit-content;
    padding: 2%;
    width: 100%;
    margin-top: 2px;
    gap: 10px;
  }
  .mails {
    display: flex;
    flex-direction: column;
    line-height: 1.5rem;
  }
  span.gmail {
    font-size: 1rem;
    font-weight: 400;
    max-width: fit-content;
    border-radius: 8px 0 8px 0;
    margin-bottom: 1rem;
  }
  div.terms {
    align-self: flex-end;
    font-size: 1rem;
    font-weight: 400;
  }
  .social-media {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 3rem;
    line-height: 2rem;
    max-width: 100%;
    min-width: fit-content;
    min-height: fit-content;
    max-height: fit-content;
  }
}