@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.des-CU{
    font-size: 50px;
    font-family:'Times New Roman', Times, serif;
    font-weight: bolder;
    text-align: center;
    color: goldenrod;
    padding: 20px 0; 
}

.address{
    color: #4d4d4d;
    width: 100%;
    margin: auto;
    max-width: 80%;
    display: flex;
    justify-content: space-around;
    padding: 20px 0 50px 0;
}
/* containerAbout */
.containerAbout{
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 80%;
    margin: auto;
    height: auto;
    margin-bottom: 20px;
}

.containerAbout .about{
    width: 45%;
    font-size: 20px;
    line-height: 40px;
    text-indent: 40px;
}
.containerAbout .img{
    width: 50%;
    height: 600px;
}

.containerAbout .img img{
  width: 100%;
  height: 100%;
}

/* containerAbout */
.container-contact{
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 80%;
    margin: auto;
    height: auto;
    margin-bottom: 20px;
}

.container-contact img{
    width: 50%;
    height: 600px;
}

.container-contact .form-contact{
    width: 45%;

}

.container-contact .form-contact > form{
    display: flex;
    flex-direction:column;
    row-gap: 10px;
}

.form-contact > form input[type=text] , input[type=email] , textarea{
    width: 100%;
  padding: 12px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;


}


.form-contact > form input[type=email]:focus{
    border: 3px solid #ffba00;
}

.form-contact > form input[type=text]:focus{
    border: 3px solid #ffba00;
}

.form-contact > form textarea:focus{
    border: 3px solid #ffba00;
}

.form-contact > form input[type=submit]{
   background:  #ffba00;
    padding: 12px;
    border: none;

    font-size: 18px;
    color: #fff;
    padding: 0 30px;
    line-height: 50px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    max-width: 50%;
    margin: auto;
}