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

body{
    scroll-behavior: smooth;
    font-family: montserrat;
    overflow-x: hidden;
        background: linear-gradient(-45deg, rgb(19,82,245), white, rgb(19,82,245));
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}


/* ******************************************************* */ 

 #cont{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding:0 0 50px 0;
}
/* ******************************************** */
.cont-texts{
  margin-top: 25vh;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 55vw;
  align-items: center;
  justify-content: center;
  padding: 30px;
  /* background-color: grey;   */
}

 
.cont-texts h1{
  font-size: 35px;
  font-weight: 800;
  color: rgb(19,82,245);
  text-align: center;   
}

.cont-texts p{
  text-align: center;
  padding-top: 10px;
  font-size: 18px;
  color: rgb(19,82,245);
}/* ************************************************************** */
  .others{
    padding: 1rem;
    width: 100vw;
    height: auto;
    align-items: center;
    justify-content: center;
    /* background-color: yellow; */
  }
  .talk{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    /* background-color: purple; */
  }
  .talk-A{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 20vw;
    height:100%;
    color: rgb(19,82,245);
    gap: 6px;
    /* background-color: red; */
  }
  .talk-A i{
    background-color: rgb(19,82,245);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 6px;
  }
  .talk-A h3{
    font-weight: bold;
  }
  .talk-A p{
    font-size: 18px;
  }
  /* ****************************************** */
  .cover-form{
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100vh;
  /* background-color: orange; */
}
.contact-form{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  /* background-color: orange; */
}

.cont-form{
  margin-top: 50px;
  margin-left: 40px;
  padding-left: 40px;
  padding-top: 40px;
  position: relative;
  display: flex;
  width: 55%;
  height: 85%;
  border-radius: 10px;
  color: white;
  background: linear-gradient(-30deg, rgb(245, 19, 19), white, rgb(245, 19, 19));
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}
 @keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

form h3{
  margin-bottom: 30px;
  font-weight: 800;
  color: rgb(19,82,245);
}


form input{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 500px;
  height: 50px;
  border-radius: 6px;
  border: none;
  font-size: 18px;
  padding-left: 15px;
  background-color: rgb(19,82,245);
  color: white;
  
}

textarea{
  width: 500px;
  height: 30vh;
  border-radius: 6px;
  font-size: 18px;
  padding-top: 10px;
  padding-left: 15px;
  background-color: rgb(19,82,245);
  color: white;
}

.submit{
  margin-top: 20px;
  display: flex;
  align-items: center;
  width: 200px;
  height: 45px;
  justify-content: center;
  text-align: center;
  background-color:rgb(19,82,245);
  color: white;
  font-size: 18px;
}
.submit:hover{
  background-color: red;
}

/* **************************** */
 #maps {
    width: 40vw;
    height: 450px;
  }
  #maps iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Responsive height for smaller screens */
  @media (max-width: 768px) {
    #maps { height: 300px; }
  }
  @media (max-width: 480px) {
    #maps { height: 220px; }
  }
/* ********************************************************* */

/* ************************************************************** */
