/*contact form */
*{
    padding:  0;
    margin: 0;
    box-sizing: border-box;
    font-family:"outfit", sans-serif;
}
Body{
    font-family: "outfit", sans-serif;
    background:linear-gradient(#e1ebd7,#73be43);
    height: 100%;

}

h4{
    font-size: 30px;
    font-weight: 600;
    color: #000000;
}

h2{
    font-size: 20px;
    font-weight: 550;
    color: #000000;
    margin-bottom: 20px;
}
h1{
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}
p{
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}
.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title{
    font-size: 30px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width: 500px;
    height: 6px;
    background: #73be43;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #000000;
    border-radius: 50px;
}
.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 4px solid #73be43;
}
.contact-inputs::placeholder{
    font-weight: 500;
    color: #302f2f;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding:15px 30px;
    font-size: 16px;
    color: #000000;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background:linear-gradient( #73be43,#e1ebd7);
    cursor: pointer;
}
.contact-right img{
    width: 500px;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: center;
    border-radius: 30px;

}
/*..........css media queries........ */
@media (max-width: 800px){
    .contact-inputs{
        width: 80vw;
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-left{
        align-items: center;
    }
    .contact-right img{
        display: none;
    }

}

/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 

}

/* Portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 

}

/* Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 

}

/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 

}

/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 

}

/* ----------- iPhone 11 ----------- */
@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 3) { 
}

/* ----------- iPhone 11 Pro ----------- */
@media only screen 
    and (min-device-width: 375px) 
    and (max-device-width: 812px) 
    and (-webkit-device-pixel-ratio: 3) { 
}

/* ----------- iPhone 13 Pro Max ----------- */
@media only screen 
      and (device-width: 428px) 
      and (device-height: 926px) 
      and (-webkit-device-pixel-ratio: 3) { 
}

/* ----------- iPhone 14 ----------- */
@media only screen
     and (width: 390px) 
     and (device-height: 844px)
     and (-webkit-device-pixel-ratio: 3) {
}
@media only screen
    and (width: 393px) 
    and (device-height: 852px)
    and (-webkit-device-pixel-ratio: 3) {
}

/*header navbar */
.nav-bar{
    width: 100%;
    height: 200px;
    background:linear-gradient(#73be43, #e1ebd7) ;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-bar img{
    width: 200px;
    margin-left: 50px;
    padding-top: 10px;
    border-radius: 30px;
}
ul li{
    display: inline-block;
    margin:0px 60px;
    list-style: none;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}
ul li a{
    text-decoration: none;
    color: #000000;
}   
ul li :hover{
    text-decoration: underline;
    color: #000000;
    text-underline-offset: 5px;
}
.main-menu{
    margin-right: 30px;
}
.closeBtn, .menuBtn{
    font-size: 30px;
    margin: 0px 20px;
    display: none;
}
/* ..........css media queries........ */
@media screen and (max-width: 800px){
    ul{
        display: none;
    }
    .menuBtn{
        display: block;
    }
    ul li{
        display: block;
        margin: 20px;
    }
    }
    .closeBtn{
        display: none;
    }
    #menu{
        width: 100%;
        background: rgb(115,190,67);
        position: absolute;
        top: 200px;
        right: 0;
        text-align: center;
    }

/*------------home page------------*/
.homepage{
    margin-top: 50px;
    display:block ;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.homepage IMG{
    width: 30px;
    margin: 10px 60;
}
.homepage .frontfoto{
    width: 350px;
    border-radius: 7px;
    align-items: center;
    margin-left: 50px;
}
.homepage .frontfoto2{
    width: 350px;
    border-radius: 7px;
    align-items: center;
    margin-left: 50px;
}
.homepage .frontfoto3{
    width: 620px;
    border-radius: 7px;
    align-items: center;
    margin-left: 50px;
}
.homepage hr{
    border: none;
    width: 100%;
    height: 6px;
    background: #73be43;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.homepage h1{
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}
.homepage p{
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 20px;
}
.homepage .BTN{
    align-items: center;
    padding:15px 30px;
    font-size: 16px;
    color: #000000;
    border: none;
    box-sizing:content-box;
    background-color:linear-gradient( #73be43,#e1ebd7);
    cursor: pointer;
}   
#whatsapp-button{
    align-items: center;
    padding:15px 30px;
    font-size: 300px;
    color: #000000;
    border:none;
    cursor: pointer;
}
#whatsapp-button img{
    width: 250px;
}


/*------------footer____________*/
.footer{
    background:linear-gradient(#73be43,#e1ebd7);
    height: 11pvh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-top: 10px;
    margin-top: 20px;

}
.footer h1{
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    margin-top: 20px;
}

/* ------------impressie page------------ */
.container{
    margin-top: 30px;
    margin-bottom: 200px;
    position:relative ;
    min-height: 100px;
    background:linear-gradient(#e1ebd7,#73be43); 
}
.container h1{
    font-size: 25px;
    font-weight: 600;
    color: #000000;
    padding: 50px;
    text-align: center;
    text-transform: capitalize;
}
.container .image-container{
    display: flex;
    justify-content: center;
    padding: 10px;
    flex-wrap: wrap;
    gap: 10px;
}
.container .image-container .image{
    height: 250px;
    width: 350px;
    border: 5px solid #73be43;
    box-shadow:0 5px 15px  rgba(0,0,0,.1);
    overflow:hidden; 
    cursor: pointer;
}
.container .image-container .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.container .image-container .image img:hover{
    transform: scale(1.1);
}
.container .popup-image{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    display: flex;
    z-index: 100;
    display: none;
}
.container .popup-image span{
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}
.container .popup-image img{
    position: absolute;
    top: 50%;
    left: 50%;  
    transform: translate(-50%,-50%);
    border-radius: 7px;
    width: 750px;
    object-fit: cover;
}
@media (max-width: 800px){
    .container .image-container .image{
        height: 200px;
        width: 300px;
    }
    .container .popup-image img{
        width: 95%;
    }
}
.footer h1{
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    margin-top: 20px;
}