@font-face {
    font-family: 'intro_regular';
    src: url('../fonts/8289-webfont.eot');
    src: url('../fonts/8289-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/8289-webfont.woff2') format('woff2'),
        url('../fonts/8289-webfont.woff') format('woff'),
        url('../fonts/8289-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

img {
    max-width: 100%;
}

h1 {
    font-family: 'intro_regular';
    font-size: 25px;
}

h2 {
    font-family: 'intro_regular';
    font-size: 21px;
}

a,
a:before {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #2F96F1;
}
a:hover
{
    color: #114d9a;
    text-decoration: underline;
}

/* Form */

.wl-group.form-group {
    position: relative;
}

.wl-group label {
    position: absolute;
    height: 24px;
    overflow: hidden;
    top: 13px;
    left: 15px;
    font-weight: normal;
    margin: 0;
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-size: 17px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.wl-group.focus label {
    top: 3px;
    font-size: 13px;
    opacity: .5;
}

.wl-group input[type=text],
.wl-group input[type=email] {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 0px;
    padding: 19px 10px 5px 15px;
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-size: 17px;
    outline: none !important;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.wl-group_transparent label {
    color: #fff;
}

.wl-group_transparent input[type=text],
.wl-group_transparent input[type=email] {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.wl-group_transparent input[type=text]:focus,
.wl-group_transparent input[type=email]:focus {
    border: 1px solid rgba(255, 255, 255, 1);
}

.wl-group_grey label {
    color: rgba(115, 115, 115, 1);
}

.wl-group_grey input[type=text],
.wl-group_grey input[type=email] {
    background: none;
    border: 1px solid rgba(115, 115, 115, 0.6);
}

.wl-group_grey input[type=text]:focus,
.wl-group_grey input[type=email]:focus {
    border: 1px solid rgba(115, 115, 115, 1);
}

.wl-group_grey.focus label {
    opacity: .9;
}

.has-error input[type=text],
.has-error input[type=email] {
    border: 1px solid rgba(255, 64, 64, 0.6);
}

.has-error input[type=text]:focus,
.has-error input[type=email]:focus {
    border: 1px solid rgba(255, 64, 64, 1);
}

.btn {
    height: 50px;
    line-height: 38px;
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-size: 17px;
    background: none;
    border: none;
    border-radius: 0px;
    outline: none !important;
}

.btn__transparent {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn__transparent:hover {
    border: 1px solid rgba(255, 255, 255, 1);
}

.btn-blue {
    border: 0;
    background: #5b73fe;
    color: #fff !important;
}

.btn-blue:hover {
    opacity: .9;
}

.btn__transparent-gray {
    color: #616161 !important;
    border: 1px solid rgba(97, 97, 97, 0.6);
}

.btn__transparent-gray:hover {
    border: 1px solid rgba(97, 97, 97, 1);
}

/* END Form */

.tooltip_error .tooltip-inner {
    background: red;
    color: #fff;
}

.tooltip_error .tooltip-arrow {
    border-top-color: red !important;
}

.tooltip_success .tooltip-inner {
    background: #00a505;
    color: #fff;
}

.tooltip_success .tooltip-arrow {
    border-top-color: #00a505 !important;
}

.modal-dialog {
    margin-top: 10%;
}

.modal-header,
.modal-body,
.modal-footer {
    padding: 30px;
}

.modal-content {
    border: 1px solid #fff;
    border-radius: 0;
}

@media (min-width: 768px) {

    .modal-sm {
        width: 400px;
    }

}

@media (max-width: 768px) {

    h1 {
        font-size: 21px;
    }

    h2 {
        font-size: 19px;
    }

}