



.custom-page.main-width {
    width: 80%;
    margin: 0 auto;
    padding: 5% 0;
}

.custom-page h1 {
    margin: 0 0 15px 0;
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    color: #5328a6;
    background: -webkit-linear-gradient(top, #850b7d, #5328a6);
    background: -moz-linear-gradient(top, #850b7d, #5328a6);
    background: -ms-linear-gradient(top, #850b7d, #5328a6);
    background: -o-linear-gradient(top, #850b7d, #5328a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 1.5em;
}

.custom-page h1, .custom-page h2 {
    text-align: center;
}

.custom-page h2 {
    font-size: 1.8em;
    margin-top: 2em;
    margin-bottom: 1.5em;
    text-transform: initial;
}

.vario p {
    margin-bottom: 0;
}

.custom-page p, .custom-page ul, .custom-page ol {
    font-size: 1.3em;
}

.custom-page a {
    text-decoration: underline;
    transition: 0.3s;
}

.custom-page .row {
    margin-right: 0;
    margin-left: 0;
}

.custom-page .form-button {
    text-align: center;
}

.custom-page .form-button button {
    word-wrap: break-word;
    white-space: normal;
    height: auto;
    min-height: 85px;
    font-size: 2em;
    text-transform: uppercase;
    background: #230a35;
    background: -webkit-linear-gradient(bottom, #850b7d, #5328a6);
    background: -moz-linear-gradient(bottom, #850b7d, #5328a6);
    background: -ms-linear-gradient(bottom, #850b7d, #5328a6);
    background: -o-linear-gradient(bottom, #850b7d, #5328a6);
    background: linear-gradient(bottom, #850b7d, #5328a6);
    background-size: 100% 100%;
    border-radius: 0.6em;
    color: #fff;
    font-weight: 900;
    border: none;
    transition: 1s;
}

.custom-page .form-button button:hover {
    background-size: 200% 200%;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}


.custom-page img {
    width: 100%;
}

.custom-page .calc {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 1.5em;
}

.custom-page .calc .column {
    width: 45%;
}

.custom-page .calc .column .row span:first-child {
    float: left;
}

.custom-page .calc .column .row span:last-child {
    float: right;
}

.custom-page .small {
    text-align: center;
    margin-bottom: 2em;
}

.custom-page .cars {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
}

.custom-page .cars div {
    width: 48%;
}

.custom-page .config {
    margin: 2em 0 4em 0;
    text-align: center;
}

.custom-page .logos {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2em;
}

.custom-page .logos div:first-child {
    width: 30%;
    padding: 0 2em 0 0;
}

.custom-page .logos div:last-child {
    width: 60%;
    padding: 0 2em 0 0;
}

.custom-page .footer {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    justify-content: center;
    font-weight: 900;
    font-size: 2vw;
    margin-top: 2em;
    color: #68328b;
}

.custom-page .footer div {
    padding: 0 2em;
    position: relative;
}

.custom-page .footer a {
    text-decoration: none;
    color: #68328b;
}

.custom-page .footer a:hover, .custom-page .footer a:focus {
    color: #e313d6;
}

.custom-page .footer div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 25%;
    width: 2px;
    height: 65%;
    background: #68328b;
}

.custom-page .footer div:first-child {
    padding-left: 0;
}

.custom-page .footer div:last-child {
    padding-right: 0;
}


@media only screen and (max-width: 900px) {
    
    .custom-page.main-width {
        font-size: 0.7em;
    }
    
    .custom-page .form-button button {
        font-size: 1.5em;
        padding: 0.5em;
        min-height: 65px;
    }
    
    .custom-page .calc {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
    
    .custom-page .footer {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
    
    .custom-page .footer div {
        padding: .5em 0;
    }
    
    .custom-page .footer div:not(:last-child)::after {
        display: none;
    }
    
    
    .custom-page .footer {
        font-size: 2em;
    }

}

@media only screen and (max-width: 768px) {
    
    .custom-page.main-width {
        font-size: 0.7em;
    }
    
    .custom-page h1 {
        font-size: 2em;
    }
    
    .custom-page .calc .column {
        width: 100%;
    }
    
    .custom-page .form-button button {
        font-size: 1.4em;
        padding: 0.5em;
        min-height: 55px;
    }
    
    .custom-page .cars {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
    
    .custom-page .cars div {
        width: 100%;
    }
    
    .custom-page .cars div {
        margin-bottom: 1em;
    
}


@media only screen and (max-width: 500px) {
    .custom-page.main-width {
        font-size: 0.6em;
    }
    
    .custom-page .form-button button {
        font-size: 1.3em;
        padding: 0.5em;
        min-height: 45px;
    }
    
}


@media only screen and (max-width: 380px) {
    .custom-page.main-width {
        font-size: 0.6em;
        width: 90%;
    }
    
    .custom-page .form-button button {
        font-size: 1.4em;
        padding: 0.5em;
        min-height: 35px;
    }
    
    .custom-page .logos {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
    
    .custom-page .logos div {
        margin-bottom: 2em;
    }
    
    .custom-page .logos div:first-child {
        width: 60%;
    }

    .custom-page .logos div:last-child {
        width: 90%;
    }
    
    .custom-page .footer {
        font-size: 1.8em;
    }
}