*{
    box-sizing: border-box;
    margin: 0;
}

div.main {
    height: fit-content;
    width: 100%;overflow-x: hidden;
    padding-bottom: 50px;
}

div.main .top-banner {
    width: 100%;
    background: linear-gradient(rgba(26, 26, 31, 0.7), rgba(29, 31, 41, 0.7)), url(images/stalls.jpeg);
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    backface-visibility: visible;
    display: flex;
    justify-content: left;
    align-items: center;
}

div.main .top-banner div.text {
    width: fit-content;
    text-align: left;
    padding-left: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    gap: 20px;
}
div.main .top-banner div.text h1 {
    font-size: 50px;
    font-weight: 700;
}

div.main .top-banner div.text p{
    font-weight: 600;
}
div.main .info {
    width:100%;
    display: flex;
    margin-top: 50px;
    padding: 0px 30px;
    box-sizing: border-box;
    justify-content: center;
    align-content: center;
    gap: 30px;
    
}
div.main .info .location {
    display: flex;
    box-shadow: 0 0 10px 0px rgb(202, 182, 182);
    padding: 20px 30px;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 400px;
}
div.main .info .location img {
    width:70px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

div.main .info .location .desc h2{
    margin-bottom: 10px;
}

div.main .info .location .desc p a {
    text-decoration: none;
    font-weight: 600;
}

div.main .info .location img.call{
    height: auto;
}

div.main .message {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
}

div.main .message div.form {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

div.main .message div.form .header h4 {
    color: grey;
}

div.main .message div.form .formBody {
    width: 100%;
}

div.main .message div.form .formBody form{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

div.main .message div.form .formBody form .inputs {
   display: grid;
   grid-template-columns: 1fr 1fr;
   width: 100%;
   justify-items:left;
   align-items: center;
   gap:30px;
}
div.main .message div.form .formBody form .inputs b{
    color: rgb(57, 50, 50);
    margin-bottom: 10px;
}

div.main .message div.form .formBody form .inputs input {
    padding: 5px 15px;
    border: none;
    outline: 1px solid rgb(162, 142, 142);
    border-radius: 1.3px;
    margin-top: 10px;
}

div.main .message div.form .formBody form .msg {
    width: 90%;
}

div.main .message div.form .formBody form .msg b {
    color: rgb(57, 50, 50);
}

div.main .message div.form .formBody form .msg  textarea {
    width: 100%;
    height: 100px;
    margin-right: 0 auto;
    border: none;
    outline: 1px solid grey;
    resize: none;
    border-radius: 1.9px;
    margin-top: 10px;
}

div.main .message div.form .formBody form .terms input::selection {
    color: red;
}

div.main .message div.form .formBody form .send {
    width: 90%;
    display: flex;
    justify-content: center;
}

div.main .message div.form .formBody form .send input {
    background-color: black;
    color: white;
    border: none;
    padding: 5px 30px;
    border-radius: 1.9px;
    cursor: pointer;
}

div.main .message img {
    height: 500px;
    width: calc(100% - 60%);
    object-fit: cover;
    border-radius: 3px;
}

div.main .newsletter {
    width: 100%;
    margin-top: 50px;
}

div.main .newsletter .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

div.main .newsletter .container .input {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

div.main .newsletter .container .input  .text h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

div.main .newsletter .container .input .user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

div.main .newsletter .container .input .user input[type='email'] {
    width: 300px;
    border: none;
    outline: 1px solid grey;
    padding: 10px 0;
    border-radius: 1.9px;
    text-align: 10px 20px;
}

div.main .newsletter .container .input .user input[type='submit'] {
    width: 130px;
    padding: 10px 0;
    background-color: black;
    color: white;
    border: none;
    border-radius: 1.9px;
    font-weight: 600;
}

div.main .newsletter .container .calendar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items:start;
    justify-content: left;
    width: 350px;
    overflow-x: hidden;
}

div.main .newsletter .container .calendar div.img {
    box-sizing: border-box;
    border-radius: 1.9px;
}
div.main .newsletter .container .calendar div.img img{
    width: 50px;
    border-radius: 1.9px;
}

div.main .newsletter .container .calendar div.text h2{
    font-size: 18px;
    margin-bottom: 10px;

}