

/*--- body-start ---*/

body{
    background-color: var(--secondary-color);
}

/*--- main-start ---*/

main {
  position: relative;
  background-image: url(../img/circle-5.png);
  /* height: 120vh; */
  padding: 50px 30px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* black with 0.5 opacity */
  z-index: 2;
}

/*--- main-end ---*/

/*--- section-start-text ---*/

main .contact-form{
    position: relative;
    z-index: 9;
    width: 100%;
    display: flex;
    justify-content: center;
    /* border: 5px solid red;       */
}

main .contact-form h1{
    color: var(--secondary-color);
}

main .contact-form form{
    border: 5px solid var(--secondary-color);
    width: 50%;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-items: center;
    --webkit-drop-filter:blur(10px);
    backdrop-filter: blur(10px);
}

main .contact-form form div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    --webkit-drop-filter:blur(10px);
    backdrop-filter: blur(10px);
}

main .contact-form div label{
    color: var(--secondary-color);
    font-size: 20px;
}

main .contact-form form div input, textarea{
    width: 70%;
    padding: 10px 5px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.614);
    outline: none;
    color: var(--secondary-color);
    transition: .3s;
    font-family: regular;
    letter-spacing: .66px;
}

main .contact-form form div input:focus, textarea:focus{
    border: 1px solid white;
    outline: none;
    color: var(--secondary-color);
}

main .contact-form form div input::placeholder, textarea::placeholder{
    color: rgba(255, 255, 255, 0.785);
}

main .contact-form form button{
    padding: 10px 25px;
    font-family: regular;
    letter-spacing: .75px;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    transition: 0.3s;
}

main .contact-form form button:hover{
    background-color: transparent;
    border: 2px solid var(--secondary-color);
}

/*--- section-end-text ---*/

/*--- map-section-start ---*/

main .map{
    /* border: 5px solid red; */
    width: 100%;
    position: relative;
    z-index: 12;
}

main .map .maps{
    /* border: 5px solid green; */
    display: flex;
    justify-content: center;
}

main .map .maps iframe{
    width: 80%;
}

/*--- map-section-ends ---*/

