
    /*background:linear-gradient(to left,#d3ffff,#155e66);*/
section{
    /*margin: 0 7%;*/
    padding: 50px 7% 20px 7% ;
    min-width: 900px;
    /*box-shadow: 5px 8px 3px 5px rgb(12, 55, 60,0.5);*/
}

.Location{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.Location h1, .contactform h1{
    font-size: 3rem;
}

.Location p, .contactform p{
    font-size: 1.2rem;
    text-align: justify;
}

.Location iframe{ 
    border-radius: 50px;
    border:3px solid #0c373c;
    margin-left: 50px;
}

.contact h1{
    font-size: 3rem;
    text-align: center;
    margin-top: 30px;
}

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    margin-top: 30px;
    height: 400px;  
}

.address, .email, .phoneNumber{
    height: 40%;
    background-position: center;
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-color: #dfdfdf;
    border-radius: 80px;
    height: 140px;
    width: 140px;
    margin: 0 auto;
}

.address{
    background-image: url(photo/address.png);
}
.email{
    background-image: url(photo/email.png);
}
.phoneNumber{
    background-image: url(photo/phone.png);
}

.detail{
    text-align: center;
}

.contact .box h1{
    font-size: 2rem;
    margin-top: 10px;
}

.detail p{
    line-height: 1.5rem;
    margin-top: 20px;
    font-size: 1.2rem;
}

.detail p span{
    font-weight: bold;
}

.detail p a{
    text-decoration: none;
}

.contactform{
    background-color: #008181;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    transition: all 0.3s;
    margin-top: 20px;
}

.contactform:hover{
    box-shadow:6px 10px 0px 0px rgb(0, 0, 0,0.3);
}

.contactform label{
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
}

.contactform input{
    height: 30px;
    width: 300px;
    font-size: 1.3rem;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
}

.contactform textarea{
    font-size: 1.3rem;
    padding: 10px;
    width: 100%;
    height: 100px;
    border-radius: 10px;
}

.contactform button{
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #0c373c;
    color: white;
    padding: 5px  20px;
    border: none;
    border-radius: 20px;
    margin-top: 5px;
    transition: all 0.3s;
}

.contactform button:hover{
    background-color: white;
    color: #0c373c;
    box-shadow:4px 6px 0px 0px rgb(0, 0, 0,0.3);
}

.message{
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.message h1, .message p{
    color: white;
}

.message span{
    font-weight: bold;
    color: white;
    font-size: 2rem;
    margin-top: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}