body {
    background-color: #f8d3fd;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.topnav {
    background-color: #333;
    overflow: hidden;
}
  /* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 17px;
}
 /* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
    background-color: white;
    color: black;
}
#section-wrapper{
    width: 100%;
    padding: 10px;
}

.box-wrapper{
    position: relative;
    display: table;
    width: 1100px;
    margin: auto;
    margin-top: 35px;
    border-radius: 30px;
}

.info-wrap{
    width: 35%;
    height: 600px;
    padding: 40px;
    float: left;
    display: block;
    border-radius: 30px 0px 30px 0px;
    background: linear-gradient(144deg, rgb(105, 71, 115)0%, rgb(12, 9, 42)100%);
    color: rgb(250, 228, 228)
}

.info-title{
    text-align: center;
    font-size: 35px;
    letter-spacing: 0.8px;
}

.info-subtitle{
    font-size: 15px;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 0.8px;
    line-height: 26px;
    text-align: center;
}

.info-details{
    list-style: none;
    margin: 50px 0px;
}

.info-details li{
    margin-top: 25px;
    font-size: 17px;
    color: white;
}

.info-details li i{
    background: rgb(227, 113, 161);
    padding: 10px;
    border-radius: 80%;
    margin-right: 5px;
}
.info-details li a{
    color: white;
    text-decoration: none;
}

.info-details li a:hover{
    color: rgb(234, 111, 162);
}

.social-icons{
    list-style: none;
    text-align: center;
    margin: 20px 0px;
}

.social-icons li{
    display: inline-block;
}

.social-icons li i{
    background:rgb(207, 99, 184);
    color: white;
    padding: 15px;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
}

.social-icons li i:hover{
    background: white;
    color: black;
}

.form-wrap{
    width: 65%;
    float: right;
    padding: 40px 24px 35px;
    border-radius: 0px 30px 30px 0px;
    background: #ecf0f3;
}

.form-title{
    text-align: left;
    margin-left: 23px;
    font-size: 30px;
    letter-spacing: 0.5px;
}

.form-fields{
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}

.form-fields input,
.form-fields textarea{
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    color: black;
    padding: 20px 10px 20px 5px;
    width: 100%;
}

.form-fields textarea{
    height: 200px;
    resize: none;
}

.form-group{
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbc3d1, inset -8px -8px 8px #ffffff;
}


.form-fields .form-group:last-child{
    width: 96%;
}

.submit-button{
    width: 96%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    outline: none;
    border: none;
    cursor: pointer;
    color: #fff;
    text-align: center;
    background: rgb(170, 90, 168);
    box-shadow: 3px 3px 8px black, -3px -3px 8px #ffffff;
    transition: .5s;
}

.submit-button:hover{
    background: #629d27;
}

/* Responsive css */
@media only screen and (max-width: 767px){
    .box-wrapper{
        width: 100%;
    }
    .info-wrap,
    .form-wrap{
        width: 100%;
        height: inherit;
        float: none;
    }
    .info-wrap{
        border-radius: 30px 30px 0px 0px;
    }
    .form-wrap{
        border-radius: 0px 0px 30px 30px;
    }
    .form-group{
        width: 100%;
        float: none;
        margin: 25px 0px;
    }
    .formm-fields .form-group:last-child,
    .submit-button{
        width: 100%;
    }
    .submit-button{
        margin:10px 0px;
    }
}
.footer {
    background-color: #0c0c0c !important;
    color: #FFFFFF !important;
    font-style: normal !important;
    padding-top: 2.35vw !important;
    padding-bottom: 1vw !important;
    margin-top: 10px !important;
}
.footer br {
line-height:22px;
}