*{
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box
}
html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.15;
    scroll-behavior:smooth;
}

body {
    margin: 0
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
h1{
    color: #6e5de0;
    font-size: 48px;
    font-weight: normal;
    line-height: 1.21;
    margin-bottom: 30px;
}
h2{
    font-size: 32px;
    font-weight: normal;
    line-height: 1.31;
    color: #6e5de0;
    margin: 0;
}
h3{
    font-size: 22px;
    font-weight: 600;
    color: #6e5de0;
    margin: 0;
}
p{
    font-size: 18px;
    font-weight: normal;
    line-height: 1.44;
    color: #3e3e3e;
    margin: 15px 0;
}
main{
    max-width: 2500px;
    margin: auto;
}
.txt-center{
    text-align: center;
}
.btn-purple{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    padding: 12px 46px;
    border-radius: 6px;
    background-color: #6e5de0;
    display: inline-block;
    transition: .5s;
}
.btn-purple:hover{
    background-color: #6e5de0d5;
    transition: .5s;
}
:root {
    --column-gap: 2.13%;
    --column-width-multiplier: 8.333
}
.container {
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
}
.container-min {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}
@media(max-width:1200px){
    .container, .container-min{
        padding: 0 20px;
    }
}
.row-fluid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
@media(min-width:768px){
    .row-fluid {
        margin:40px 0;
    }
}
.row-fluid .span1,.row-fluid .span10,.row-fluid .span11,.row-fluid .span12,.row-fluid .span2,.row-fluid .span3,.row-fluid .span4,.row-fluid .span5,.row-fluid .span6,.row-fluid .span7,.row-fluid .span8,.row-fluid .span9 {
    min-height: 1px;
    width: 100%
}

@media (min-width: 768px) {
    .row-fluid {
        flex-wrap:nowrap;
        justify-content: space-between
    }

    .row-fluid .span1 {
        width: calc(var(--column-width-multiplier)*1%*1 - var(--column-gap)*var(--column-width-multiplier)*11/100)
    }

    .row-fluid .span2 {
        width: calc(var(--column-width-multiplier)*1%*2 - var(--column-gap)*var(--column-width-multiplier)*10/100)
    }

    .row-fluid .span3 {
        width: calc(var(--column-width-multiplier)*1%*3 - var(--column-gap)*var(--column-width-multiplier)*9/100)
    }

    .row-fluid .span4 {
        width: calc(var(--column-width-multiplier)*1%*4 - var(--column-gap)*var(--column-width-multiplier)*8/100)
    }

    .row-fluid .span5 {
        width: calc(var(--column-width-multiplier)*1%*5 - var(--column-gap)*var(--column-width-multiplier)*7/100)
    }

    .row-fluid .span6 {
        width: calc(var(--column-width-multiplier)*1%*6 - var(--column-gap)*var(--column-width-multiplier)*6/100)
    }

    .row-fluid .span7 {
        width: calc(var(--column-width-multiplier)*1%*7 - var(--column-gap)*var(--column-width-multiplier)*5/100)
    }

    .row-fluid .span8 {
        width: calc(var(--column-width-multiplier)*1%*8 - var(--column-gap)*var(--column-width-multiplier)*4/100)
    }

    .row-fluid .span9 {
        width: calc(var(--column-width-multiplier)*1%*9 - var(--column-gap)*var(--column-width-multiplier)*3/100)
    }

    .row-fluid .span10 {
        width: calc(var(--column-width-multiplier)*1%*10 - var(--column-gap)*var(--column-width-multiplier)*2/100)
    }

    .row-fluid .span11 {
        width: calc(var(--column-width-multiplier)*1%*11 - var(--column-gap)*var(--column-width-multiplier)*1/100)
    }
}
.spanEmpty{
    padding: 0 !important;
}
.flex{
    display: flex;
}
.align-center{
    align-items: center;
}
.minH100{
    min-height: 100vh;
    height: auto;
}
section{
    padding: 50px 0;
    overflow: hidden;
}
.relative{
    position: relative;
}
.bgImage{
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
@media (max-width:1630px){
    .bgImage{
        background-size: contain;
    }
}
.box-shadow-form{
    padding: 52px 0px;
    box-shadow: 0 20px 70px 0 rgba(232, 238, 248, 0.46);
    background-color: #fff; 
    max-width: 70%;
    width: 460px;
    margin: auto;
    min-height: 710px;
    position: relative;
}
.img-pos1, .img-pos2{
    position: absolute;
    display: block;
}
.img-pos1{
    top:10px;
    left: -45px;
}
.img-pos2{
    bottom: -35px;
    right: -40%;
    max-width: 50%;
}
.img-top{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.gradient-color{
    background: rgb(247,249,253);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(247,249,253,1) 5%, rgba(248,250,253,1) 95%, rgba(255,255,255,0) 100%);
}

.imgTXT img{
    display: block;
    margin: auto;
    margin-bottom: 30px;
}
.imgTXT p{
    margin-top: 0;
}
.maxW720A{
    max-width: 720px;
    width: 100%;
    margin: auto;
}
.marginB75{
    margin-bottom: 75px;
}
.maxW400{
    max-width: 400px;
    width: 100%;
}
form{
    margin-top: 30px;
}
input:focus{
    outline:0;
}
input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]), select{
    box-sizing: border-box;
    padding: 0 15px;
    border-radius: 5px;
    border: solid 1px #dadcdd;
    background-color: #fff;
    min-height: 35px !important;
    color: #3e3e3e;
    width: 100%;
    margin-bottom: 10px;
}
input:focus-visible:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]){
    border: solid 1px #14547f;
    background-color: #fff;
}
label{
    color: #3e3e3e;
    font-size: 14px;
    margin: 5px 0;
    display: block;
}
form input[type=submit], form button {
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    padding: 12px 46px;
    border-radius: 6px;
    background-color: #6e5de0;
    display: inline-block;
    transition: .5s;
    cursor: pointer;
    margin: auto;
    display: block;
    margin-top: 20px;
}
form input[type=submit]:hover, form button:hover{
    background-color: #6e5de0d5;
    transition: .5s;
}
fieldset{
    border: 0;
    padding: 0;
}
@media(min-width:768px){
    
    .imgTXT div{
        max-width:352px;
    }
    .img-posAbs-md{
        position: absolute;
        right: -5%;
        top: -35px;
    }
}
@media(max-width:768px){
    .box-shadow-form{
        max-width: 95%;
        width: 100%;
        margin: 0;
        margin-top: 35px;
    }
    .img-pos1 {
        top: -20px;
        left: -15px;
    }
    .img-pos2 {
        bottom: -35px;
        right: -18%;
        max-width: 30%;
    }
    .row-fluid > div {
        padding: 20px 0;
    }
}
@media(max-width:500px){
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 26px;
    }
    h3{
        font-size: 18px;
    }
    p {
        font-size: 16px
    }
    .box-shadow-form{
        max-width: 100%;
        padding-bottom: 100px;
    }
    .img-pos2 {
        bottom: -55px;
        right: -10%;
        max-width: 30%;
    }
    .btn-purple {
        font-size: 16px;
        padding: 12px 35px;
    }
}