
/* MAIN */
main {
    width:100%; 
    /* min-height: 100vh; */
    min-height: 70vh;
    background-color: transparent;
    color: black;
    /* padding:5vh 10px; */

    align-items: center;
    display: flex;
    justify-content: center;
}

main #content{
    background-color: whitesmoke;
    /* box-shadow: 1px 1px 10px black; */

    /* border:1px solid black; */
    border-radius:30px; 
    align-items: center;
    padding:30px; 
   
}
/* -------------------- */

main input, textarea, button{
    display: block;
}

main input{
    display: block;
    border-bottom: 2px solid red;
    width:300px;

    /* width:100px; */
    padding:5px;
    margin:10px 0;
    /* text-align: center; */

    outline:none; 
    border:none;
    /* border-bottom:1px solid black; */
    background-color: transparent;
    color:black;

    transition: 400ms ease-in;
}

input::placeholder {
    color: black;
    /* text-align: center; */
}

input:focus {
    border-bottom: 2px solid red;
    width:300px;
}
/* -------------------- */

main label{
    width:300px;
    padding:5px;
    margin-top:20px;
}
/* -------------------- */

main textarea{
    /* width:300px; */
    min-width:300px;
    max-width:320px;
    height: 200px;
    max-height:500px;
    resize: both;

    outline: none;
    font-family: sans-serif;
    display: block;
    margin-top:10px;
    padding: 7px;

    background-color: black;
    color: white;
    transition: 400ms ease-in;
}

textarea:hover,
textarea:focus {
    border-color: orange;
}
/* -------------------- */

main button {
    border: none;
    padding: 10px;
    margin: 30px 0 10px 0;
    font-size: 15px;

    background-color: black;
    color: white;
    border-radius: 20px;
    transition: 400ms ease;
    cursor: pointer;
    margin: auto; 
    
}

main button {
    margin-top: 15px;
}

main button:hover,
main button:focus {
    background-color: green;
}
/* -------------------- */

/* css for cartproduct contact box */
/* #cartProducts {
    pointer-events: none;
    user-select: none;
    color: transparent;
    
}

.swal2-popup {
    width: 300px; /* Adjust the width as needed *
    height: 400px;
}

.socials{
    background-image: url(/images/5594016.jpg);
    height: 200px;
    text-align: center;
    padding: 30px;
    margin-top:-50px;
    
}

.socials a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: black;
    margin: 0 10px 10px 0;
    margin-top: 12px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color:whitesmoke;
    transition: all 0.5s ease;
}

.socials h4{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.socials a:hover{
    color: black;
    background-color: green;

} */
/* -------------------- */

/* map */
section{
    /* background-color: greenyellow; */

    background-image: url("./images/header-bg.jpg");
    background-image: url(/images/bg-finale.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
    min-height:100vh;
}

.split-left, 
.split-right{
    /* background-color: aqua; */
    max-height:100vh;
    margin:10vh 0; 
}

.map-container {
    display: flex;
    justify-content: center;

    margin-top: 20px; /* Adjust margin as needed */
    
    width:400px;
    height:300px; 
}


iframe {
    width: 100%; /* Ensure it doesn't overflow its container */
    height: 450px; 

    border: 0;
    border-radius: 20px;
    border-color: green;
    border-style: double;
}
/* -------------------- */
