body {
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin: 0;
    background: #ffffff;
}
nav {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: #89303f;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
nav a {
    flex: 1;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: #ffffff;
}
nav a:hover {
    background-color: #af5e53;
}
.container {
    width:90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    /*flex-wrap: wrap;*/
    position: relative;
}
.container-3 {
    width:90%;
    text-align: left;
    margin-left: 5%;
    margin-right: 5%;
    /*flex-wrap: wrap;*/
}

.container > div {
    flex: 1;
    text-align: center;
    justify-content: center;
}
.container-1 {
    /*width: 90%;*/
    display: flex;
    flex:1;
    text-align: left;
    margin-left: 5%;
    margin-right: 5%;
}
.column {
    width:90%;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
    flex: 1;
    padding: 0px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    justify-content: center;
}
.column-left {
    width:90%;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
    flex: 1;
    /*padding: 5px;*/
    text-align: center;
    margin-right: 20px;
    justify-content: center;
}
.column-right {
    width:90%;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
    flex: 1;
    /*padding: 5px;*/
    text-align: center;
    margin-left: 20px;
    margin-right: 0px;
    justify-content: center;
}
.column img {
    width: 200px;
    height:300px;
}
.column-left img {
    width: 200px;
    height:300px;
}
.column-right img {
    width: 200px;
    height:300px;
}
@media (max-width: 768px) {
    .container > div {
        flex: 0 0 50%;
    }
}
@media (max-width: 576px) {
    .container > div {
        flex: 0 0 100%;
    }
}
.button {
    background-color: #89303f;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px; /* Round corners */
    cursor: pointer;
    text-decoration-color: #ffffff;
}
.button-background {
    background-color: #ffffff;
    border: none;
    padding: 15px 32px;
    text-decoration: none;
    /*display: inline-block;*/
    /*margin: 4px 2px;*/
}
.button:hover {
    background-color: #af5e53;
}
.buttext {
    color: white;
    text-decoration:none;
}
.text{
    /*padding: 10px;*/
    margin: 20px;
    display: block;

}
.title-box{
    width:100%;
    background-color: #ffffff;
    margin-bottom: 50px;
    margin-top: 20px;
}
#inside-title-box{
    margin: 80px 60px 80px 40px;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #793d56;
    color: #fff;
    padding: 50px 20px 50px 50px;
    margin-bottom: 0px;
}

.footer-left,
.footer-right {
    width: 45%;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }
}
.mini{
    font-size: 10px;
    color: gray;
}

.contact-form input{
    border: 2px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.registration-form{
    margin-left: 20%;
    margin-bottom: 125px;
    margin-top: 30px;
}

.bottom-div {
    position: absolute;
    bottom: 0;
}

.contact-form-parent{
    display: flex;
    justify-content: space-between;
}
.contact-form-child{
    width: 50%;
}
