@import url(https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;700&family=Inter:wght@400;700&family=Roboto:wght@100&display=swap);

* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: baseline;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.relative {
    position: relative;
}

.pointer {
    cursor: pointer;
}

.dflex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

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

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

.text-uppercase {
    text-transform: uppercase;
}

.block {
    display: block;
}
.inline {
    display: inline;
}

.bold {
    font-weight: 700;
}

.light {
    font-weight: 300;
}

.zindex1 {
    z-index: 1;
}
.zindex2 {
    z-index: 2;
}

.transition {
    transition: all 0.3s ease;
}

/****************************************************************/
html.no-js {
    margin: 0 !important;
}

#wpadminbar {
    display: none;
}

body,
html {
    min-height: 100%;
}

body {
    background-color: #10194d;
    color: #414141;
    font-weight: 300;
    line-height: normal;
    font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size: 18px;
}

.content-main {
    height: 100vh;
    position: relative;
    justify-content: center;
    align-items: center;
}

.content-info-main {
    padding: 80px 70px 83px;
    background-color: #f5f6f9;
    border-radius: 27px;
    color: #414141;
}

body.page-id-19 .content-info-main,
body.page-id-21 .content-info-main {
    padding: 20px 50px 0;
}

.text-intro-panel {
    margin: 0;
    padding-bottom: 63px;
}

.text-intro-panel h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-intro-panel a:hover {
    text-decoration: none;
}

.wrapper {
    padding: 0 80px;
}

/* .wrapper-form {
    padding-top: 63px;
} */

.wrapper-form .label {
    padding-bottom: 9px;
    display: flex;
}

.wrapper-form .row-form {
    margin-top: 30px;
}

.wrapper-form .row-form:first-child {
    margin-top: 0px;
}

.wrapper-form p:first-child {
    margin-top: 0;
}

.wrapper-form p.login-username,
.wrapper-form p.login-password {
    border: 2px solid white;
    border-radius: 13px;
}

.wrapper-form .row-form input {
    padding: 0 15px;
    height: 58px;
    font-size: 18px;
    background-color: white;
    border: 2px solid white;
    outline: none;
    color: #414141;
    border-radius: 27px;
    width: 100%;
    transition: all 0.2s ease;
}

.message-field {
    color: #ff5320;
    font-size: 16px;
    text-align: right;
    padding-top: 7px;
    display: none;
}

.wrapper-form .row-form.error-input input {
    border-color: #ff5320;
}

.wrapper-form .row-form.error-input .message-field {
    display: block;
}

.book-call {
    color: #2d4dff;
}

.wrapper-form .login-submit {
    display: flex;
    margin-top: 62px;
    position: relative;
    align-items: center;
    gap: 35px;
}

.wrapper-form .submit {
    height: 42px;
    padding: 0 35px;
    background-color: #2d4dff;
    border: 0;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 42px;
    cursor: pointer;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
    text-align: right;
}

.wrapper-form .submit.spin {
    padding-left: 65px;
}

.wrapper-form .submit:hover {
    background-color: #191819;
    color: white;
}

.spin {
    padding-left: 2.5em;
    display: block;
}

.spin .spinner {
    left: 4px;
    top: 0.4em;
    width: 2.5em;
    display: block;
    position: absolute;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* The actual spinner element is a pseudo-element */
.spin .spinner::before {
    content: '';
    width: 1.1em;
    height: 1.1em;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: solid 0.25em rgba(255,255,255,.7);
    border-bottom-color: rgba(255,255,255,.4);
    animation: 0.8s linear infinite spinner;
    transform: translate(-50%, -50%);
    will-change: transform;
}
}

.box-welcome {
    background-color: white;
    padding: 40px 60px 40px 10px;
    border-radius: 25px;
    margin-top: 50px;
    text-align: left;
}

.btns-green {
    margin-top: 35px;
    padding-left: 210px;
}

.btns-green div {
    display: flex;
    margin-top: 12px;
}

.btns-green div:first-child {
    margin-top: 0;
}

.btns-green a {
    text-decoration: none;
    background-color: #d2ff00;
    display: flex;
    height: 60px;
    align-items: center;
    border-radius: 10px;
    width: 325px;
    padding: 0 10px;
    color: #2d4dff !important;
    border: 2px solid #2d4dff;
    transition: all 0.3s ease;
}

.btns-green a:hover {
    border: 2px solid #d2ff00;
    background-color: unset;
    color: #d2ff00 !important;
}

.bar-logout {
    justify-content: space-between;
    padding-bottom: 185px;
}

.bar-logout a {
    color: #d2ff00;
}

.bar-logout a:hover {
    text-decoration: none;
}

.message {
    color: white;
    font-size: 15px;
    padding: 5px 10px 0;
    display: none;
}

.content-info {
    max-width: 100%;
    width: 812px;
    margin: 0 auto;
}

.change-form {
    cursor: pointer;
    font-size: 16px;
    text-decoration: underline;
    color: #414141;
    /* position: absolute;
    bottom: -35px;
    left: 0; */
    line-height: 1em;
    background: unset;
}

.change-form:hover {
    text-decoration: none;
}

@media screen and (max-height: 920px) {
    .wrapper {
        padding-top: 180px;
        padding-bottom: 60px;
    }

    .content-main {
        display: block;
        height: auto;
    }
}
@media screen and (max-width: 1024px) {
    body {
        font-size: 16px;
    }

    .message-field {
        font-size: 15px;
    }

    .content-info-main {
        padding-left: 32px;
        padding-right: 32px;
    }
}
@media screen and (max-width: 767px) {
    .wrapper {
        padding-top: 123px;
        padding-left: 35px;
        padding-right: 35px;
    }

    .home .bar-top .bt-col1 a {
        width: 180px;
    }
}

@media screen and (max-width: 480px) {

    .home .bar-top .bt-col1 a {
        width: 150px;
    }
}
