
.form-control {
    display: block;
    color: #2d353c;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d5dbe0;
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #2d353c
}

.form-control:focus {
    color: #2d353c;
    background-color: #fff;
    border-color: #5db0ff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(52, 143, 226, .25)
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

/*input[type=checkbox] {*/
/*    position: relative;*/
/*    cursor: pointer;*/
/*}*/

/*input[type=checkbox]:before {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-color: #e9e9e9;*/
/*}*/

/*input[type=checkbox]:checked:before {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-color: #1E80EF;*/
/*}*/

/*input[type=checkbox]:checked:after {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 5px;*/
/*    height: 12px;*/
/*    border: solid white;*/
/*    border-width: 0 2px 2px 0;*/
/*    -webkit-transform: rotate(45deg);*/
/*    -ms-transform: rotate(45deg);*/
/*    transform: rotate(45deg);*/
/*    position: absolute;*/
/*    top: 2px;*/
/*    left: 7px;*/
/*}*/

.hidden {
    display: none;
    visibility: hidden;
}

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

.visible-desktop {
    display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }

    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }

    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }
}

.circle-bg {
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 50px);
    position: absolute;
    overflow: hidden;
    display: block;
    z-index: 0;
}

.circle-bg::before {
    top: 0;
    left: 50%;
    width: 200vw;
    height: 71vw;
    position: absolute;
    content: "";
    border-radius: 50%;
    background: #213569;
    z-index: -1;
    -webkit-transform: translate(-50%, -65%);
    transform: translate(-50%, -65%);
}