@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap');
/* Reset CSS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth
}
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: white;
}
ul, ol {
  list-style: none;
}
button{
  border: none;
  cursor: pointer;
  background: none;
  color: white;
  font-weight: bold;
}
a{
  text-decoration: none;
  text-align: center;
  color: #246dff;
}
/* Reset end */
header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  height: 5rem;
  font-size: .95rem;
  font-weight: 500;
  /* background-color: red; */
  margin-top: .3rem;
}
.initial-background{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 24rem;
  background-image: url(./assets/Header-BG_2_11zon.webp);
  background-size: cover;
  background-blend-mode:darken;
  z-index: -1;
}
.initial-background h1{
  margin-left: 4rem;
  max-width: 80vw;
  line-height: 2.3rem;
  font-size: 46px;
}
.initial-background p {
  margin-left: 4rem;
  margin-top: 1rem;
  max-width: 35vw;
  line-height: 1rem;
}
#nav-list{
  height: fit-content;
  display: flex;
  margin-right: 2rem;
  gap: 2rem;
  transition: ease 200ms;
}
#nav-list li{
  color: white;
  font-weight: 600;
}
#nav-list li:hover{
  transition: ease 200ms;
  color: #246dff;
}
#header-button{
  width: 12.5rem;
  height: 2.3rem;
  background-color: #0046d1;
  color: white;
  border-radius: 8px;
  transition: ease 200ms;
}
#header-button:hover{
  transition: ease 200ms;
  background-color: blue;
}
.nav-container{
  display: flex;
  position: relative;
  align-items: center;
  height: fit-content;
  margin-right: 4rem;
}
.logo{
  height: 1.75rem;
  margin-left: 4rem;
}
main{
  position: relative;
  width: 100vw;
  height: 20rem;
  top:14rem;
}
.slide-box{
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 4px;
  width: 17rem;
  height: 17rem;
  background-color: #E9E9E9;
  gap: 1rem;
  overflow: hidden;
  color: rgb(52, 52, 52);
  box-shadow: rgb(204, 204, 204) 2px 2px 10px;
  transition: ease 150ms;
}
.slide-box h2{
  line-height: 1.8rem;
}
.slide-box h3{
  position: relative;
  text-align: center;
  line-height: 1.3rem;
  bottom: 1.5rem;
}
.slide-box p.notes{
  text-align: center;
  line-height: 1.3rem;
  position: relative;
  bottom: 1.5rem;
}
.slide-box img{
  margin:0 auto;
  position: relative;
  bottom: 1rem;
  width: 6rem;
}
.splide__slide.is-active div{
  transition: ease 120ms;
  width: 19rem;
  height: 19rem;
  background-color: #0046d1;
  opacity: 95%;
  color: white;
  box-shadow: rgb(17, 17, 17) 2px 2px 10px;
}
.splide__slide.is-active div img{
  transition: ease 120ms;
  width: 8rem;
  filter:invert(1)
}
.about-section{
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  position: relative;
  top: 2rem;
  width: 100vw;
  height: fit-content;
}
.about-section h2{
  font-size: 40px;
  max-width: 70%;
}
.about-section img{
  width: 50%;
}
.about-section-article{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 50%;
  padding: 2rem;
  color: black;
  text-align: left;
  height: fit-content;
}
.about-section-article h3 {
  font-weight: 600;
  color: #626262;
}
.about-section-article h2{
  margin-top: 0.5rem;
}
.about-section-article p{
  margin-top: 0.5rem;
  max-width: 90%;
  color: #222222;
}
.wapp{
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
}
.wapp img{
  width: 80px;
  cursor: pointer;
}
.services-section{
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: fit-content;
  background-image: linear-gradient( to bottom, #FFFFFF 5%, #CFCFCF 85%, #FFFFFF);
}
.services-section h2{
  font-size: 40px;
  color: #000000;
}
.services-article{
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: fit-content;
}
.services-notes{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: .6rem;
  width: 18rem;
  height: 18rem;
  background-color: #ffffff;
  border-radius: 8px;
  color: rgb(0, 0, 0);
}
.services-notes img{
  margin-top: 1.3rem;
  width: 4rem;
  height: 4rem;
}
.services-notes h2{
  margin-top: .7rem;
  color: black;
}
.services-notes p{
  text-align: center;
  padding: 1rem;
}
.products-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: fit-content;
  margin-top: 5rem;
}
.products-section h2{
  color: black;
  font-size: 40px;
  z-index: 100;
}
.products-article{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100vw;
  height: fit-content;
  background-image: linear-gradient( to bottom, #FFFFFF 5%, #6b6b6b 85%, #FFFFFF);
}
.photo-note{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  height: fit-content;
}
.photo-note img{
  border-radius: 8px;
  width: 100%;
}
.product-contact{
  display: flex;
  justify-content: center;
  width: 50%;
  height: 3rem;
  border-radius: 8px;
  background-color: #0046d1;
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin-top: 2rem;
}
.product-contact:hover{
  background-color: blue;
}
.photo-note h2{
  width: 100%;
  text-align: center;
  font-size: 38px;
  position: relative;
  top:23vh;
  color: white;
}
.local-section{
  display: flex;
  justify-content: center;
  width: 100vw;
  height: fit-content;
  margin-top: 2rem;
}
.local-section-article{
  display: flex;
  width: 100vw;
  height: fit-content;
  display: flex;
  background-color: black;
}
.content-article1{
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60vw;
  height: fit-content;
  text-align: center;
}
.content-article1 h2{
  font-size: 40px;
}
.content-article1 p{
  margin-top: 2rem;
  max-width: 90%;
  font-size: 26px;
}
.content-article2{
  display: flex;
  justify-content: center;
  position: relative;
  width: 40vw;
  padding: 1rem;
}
.content-article2 iframe{
  width:90% ;
  height: 90%;
  border: none;
  border-radius: 2px;
}
main{
  height: fit-content;
}
footer{
  position: relative;
  margin-top: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 10rem;
  background-color: black;
  border-top: 1px solid grey;
  text-align: center;
  color: #bbbbbb;
}
.splide__pagination__page{
  width: 12px;
  height: 12px;
  margin: 12px;
}
@media (max-width:1220px){
  
  .about-section-article{
    padding: 1rem;
  }
  .about-section h3{
    font-size: 20px;
  }
  .about-section h2{
    font-size: 26px;
  }
  .about-section p{
    max-width: 100%;
  }
  .services-notes p{
    font-size: 18px;
  }
  .services-notes h2{
    font-size: 22px;
  }
}
@media (max-width:1020px) {
  .product-contact{
    width: 80%;
    height: 4rem;
  }
  button{
    font-size: 16px;
  }
  #nav-list{
    display: none;
  }
  #header-button{
    display: none;
  }
  .initial-background h1{
    font-size: 40px;
  }
  .initial-background p{
    max-width: 60vw;
  }
  .about-section{
    flex-direction: column;
    align-items: center;
  }
  .about-section-article{
    width: 100vw;
    align-items: center;
    text-align: center;
  }
  .about-section-article h3 {
    font-weight: 600;
  }
  .about-section-article h2{
    margin-top: 0.5rem;
    font-size: 40px;
  }
  .about-section-article p{
    margin-top: 0.5rem;
    max-width: 75%;
    font-size: 22px;
  }
  .about-section img{
    width: 80%;
  }
  .products-article{
    gap: 0px;
  }
  .local-section{
    width: 100vw;
  }
  
  .local-section-article{
    flex-direction: column;
  }
  .content-article1{
    padding: 1rem;
    width: 100%;
    height: fit-content;
  }
  .content-article2{
    width: 100vw;
    padding: 0.4rem;
  }
  .content-article2 iframe{
    width:90% ;
    height: 50rem;
  }
  .content-article1 p{
    font-size: 20px;
    max-width: 100%;
  }
}
@media (max-width:730px){
  
  .initial-background h1{
    max-width: 100vw;
    font-size: 33px;
  }
  .initial-background p{
    max-width: 65vw;
  }
  .about-section-article h2{
    font-size: 32px;
    max-width: 100%;
  }
  .about-section-article p{
    margin-top: 1rem;
    max-width: 100%;
  }
  .about-section img{
    width: 100%;
  }
  .content-article2 iframe{
    width:90% ;
    height: 20rem;
  }
}
@media (max-width:640px){
  .logo{
    margin: auto;
    margin-left: 50%;
    transform:translateX(-50%)
  }
  .initial-background{
    flex-direction: column;
    align-items: center;
  }
  .initial-background h1{
    position: relative;
    text-align:center;
    max-width: 100vw;
    padding: 1rem;
    font-size: 28px;
    line-height: 1.8rem;
    bottom: 1.3rem;
    margin-left: 0;
  }
  .initial-background p{
    position: relative;
    max-width: 90vw;
    bottom: 1rem;
    font-size: 18px;
    margin-left: 0;
    text-align: center;
  }
  .about-section h2{
    font-size: 35px;
  }
}