*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
body{
    background-image: linear-gradient(to right, red , yellow);;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
.conatiner123{
    width: 34%;
    /* border: 2px solid rgb(255, 0, 0); */
    margin: auto;
    background-color: rgb(255, 255, 255);
    margin-top: 15px;
}
.conatiner123 .title{
    text-align: center;
    color: orangered;
    font-size: 25px;
}
.form{
    display: flex;
    flex-direction: column;
}
.from-group{
    margin: 10px 10px;
}
.from-group1{
    margin: 10px 10px;
    
}
input[type='text']{
    width: 100%;
    height: 40px;
    font-size:17px;
    font-weight: 300;
}

.from-group1>input[type='text']{
    height: 55px;
}
span{
    font-size:20px
}
.button{
    text-align: center;
    margin-bottom: 10px;
}
.btn{
    width: 80%;
    height: 35px;
   font-size: 25px;
   background-color:  turquoise;
   border: none;
   color: white;
   border-radius: 20px;
   transition: 0.2s;
}
.btn:hover{
    background-color:rgba(255, 202, 251, 0.74);
    color: rgb(211, 56, 0);
}

/*responsive from*/
@media screen and (max-width: 860px) {
    .conatiner123{
     width: 70%;
    }
  }
  @media screen and (max-width: 560px) {
    .conatiner123{
     width: 100%;
    }
  }

/* Address Section */
.adds{
    display: flex;
    /* border: 2px solid blue; */
    width: 70%;
    margin: auto;
    margin-top: 50px;
    /* margin-bottom: 20px; */
}
.div1{
    margin: 10px 10px;
}
.bx1{
    background-color: rgba(105, 105, 105, 0.315);
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}
.bx2 > p > iframe{
    height: 250px;
}

/* //responsive */
@media screen and (max-width: 860px) {
    .adds{
      flex-direction: column;
    }
    .bx2 > p > iframe{
        width: 550;
    }
  }
  @media screen and (max-width: 560px) {
    .adds{
       width: 80%;
       margin-top: 0px;
      }
      .bx2 > p > iframe{
         width: 100%;
        }
      .bx1{
        background-color: rgba(105, 105, 105, 0.644);
        width: 100%;
      }
      .conatiner123{
          margin-top: 0px;
      }
      
  }
