.text-center {
    text-align: center;
}

.white {
    color: white;
}

.bg-white {
    background-color: white;
}

.black {
    color: black;
}
.bg-black {
    background-color: black;
}
.bg-green{
    background-color: green;
}
.bg-transparent{
    background-color: transparent;
    border: 1px solid gray;
}

.row>.col-6 {
    display: inline-block;
    width: calc(50% - 15px);
    text-align: center;
    margin-bottom: 15px;
}

.row>.col-6:nth-child(even){
    margin-left: 25px;
}

.img-fluid{
    max-width: 100%;
}

.list-none{
    list-style:none;
    margin: 0;
    padding: 0;
}

.list-none li{
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.list-none li i{
    display: inline-block;
    margin-right: 10px;
}

.form{
    width: 50%;
    font-family: 'Oswald', sans-serif;
}

.form > div{
    width: 100%;
}

.form div input{
    width: 100%;
    height: 30px;
    padding: 5px 10px;
    font-family: 'Oswald', sans-serif;
}

.form div input:nth-child(even){
    border-top: none;
}

.form div textarea{
    width: 100%;
    height: 150px;
    padding: 5px 10px;
    font-family: 'Oswald', sans-serif;
}

.form div button{
    font-size: 20px;
    width: 150px;
    padding: 10px 15px;
    display: block;
    margin-left: auto;
    margin-right: -20px;
}