body,html{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    overflow-x: hidden;
    font-family: "Montserrat",sans-serif;
}
header{
  width: 100%;
    display: flex;
    justify-content: flex-start;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    color: #2c2c2c;
}
footer{
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #2c2c2c;
}
.info{
  padding-top: 10px;
  text-align: center;
  color: #f2f2f2;
}
.info p{
  padding: 0;
  margin: 0 10px 0 10px ;
}
.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  margin: auto;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dots span.active {
  background: rgb(132, 131, 131);
}
button{
    outline: none;
    -webkit-tap-highlight-color: transparent;
    background-color: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
button:hover{
  transform: scale(1.2);
}
a{
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: 0.3s ease-in-out;
}
a:hover{
  transform: scale(1.2);
}
.navItem a{
  color: #2c2c2c;
  transition: 0.3s ease-in-out;
}
.navItem{
  transition: 0.3s ease-in-out;
}
.navItem:hover{
  transform: scale(1.2);
}
.mobileNav{
    padding-top: 10px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 18%;
    transform: translateY(-100%);
    transition: 0.3s ease-in-out;
}
.mobileNav.show{
    transform: translateY(0);
}
#burgerSvg line{
    transition: transform 0.3s ease;
    transform-origin: center;
}
.navBar{
    display: none;
}
.navButton{
    position: absolute;
    right: 20px;
    top: 30px;
    width: 32px;
    height: 32px;
    transform-origin: center;
}
.navButton.active #burgerSvg .top{
    transform: translateY(3px) rotate(45deg)
}
.navButton.active #burgerSvg .bottom{
    transform: translateY(-3px) rotate(-45deg);
}
.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact{
  width: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: background-color 0.3s ease;
  border-radius: 0 0 90% 90%;
}
.flash{
  background-color: #6bb4e1;
  border-radius: 0 0 90% 90%;
}
.mainContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.trustItem{
  padding: 10px;
  background-color:  #6bb4e1 ;
  border-radius: 20px;
  margin-top: 10px;
}
.reveal{
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active{
  opacity: 1;
  transform: translateX(0);
}
.whyItem{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 5px;
  width: 100%;
  max-width: 1200px;
  color: #f2f2f2;
  overflow: hidden;
}
.whyItem img{
    z-index: -1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
    display: block;
    position: absolute;
}
.innerText{
  background-color: #0c151b9e;
  width: fit-content;
  padding: 10px;
  border-radius: 20px;
}
.photoBanner{
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    height: 300px;
    margin-top: 15px;
    border-top: #2c2c2c solid 2px;
    border-bottom: #2c2c2c solid 2px;
    transform: translateZ(0);
    contain: layout paint;
}
.photoBanner img{
    z-index: -1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
    display: block;
    position: absolute;
}
.servicesTrust{
  padding: 20px;
}
@media (min-width: 800px){
 .navBar{
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
 }
 .navButton{
    display: none;
 }
 .container{
  width: 75%;
 }
}