@font-face {
    font-family: "Atmospheric";
    src: url("/font/aAtmospheric.ttf");
    src: url("/font/aAtmospheric.otf");
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 88vh;
}

header {
    margin-top: 5%;
    display: flex;
    justify-content: center;
}

.d-flex {
    display: flex;
}

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

form>div,
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
    margin-bottom: 5rem;
}

form p {
    font-size: 22px;
    font-family: "Arial";
}

input {
    border: solid 1px rgba(200, 200, 200, 0.5);
    font-size: 17px;
    padding: 1rem;
    height: 2rem;
    width: 100%;
    border-radius: 3px;
}

input:focus {
    outline: none;
}

.search {
    width: 50%;
    display: flex;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.search>input {
    border-radius: 3px 0px 0px 3px;
}

.search>button {
    border-radius: 0px 3px 3px 0px;
    border: solid 1px rgba(200, 200, 200, 0.5);
    background-color: #05ccff;
    color: #222222;
    padding: 0 5%;
    font-size: 17px;
    border-left: none;
    cursor: pointer;
    transition-duration: 0.25s;
}

.search>button:hover {
    opacity: 0.9;
    box-shadow: 0px 0px 5px #05cdff9a;
}

.container {
    padding: 0 2rem;
    width: 50%;
    min-height: 25rem;
}

.progress-step {
    border: solid 2px #e5e5e5;
    background: #e5e5e5;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-line {
    border: solid 2px #e5e5e5;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    background: #e5e5e5;
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
    height: 0.5rem;
    width: 95%;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 4%;
}

.current-progress {
    background-color: #009900;
    height: 0.25rem;
    transform: translateY(50%);
}

.active {
    background-color: #009900;
}

.descr {
    margin-top: 1rem;
    font-size: 17px;
    font-family: "Arial";
}

.infos {
    font-size: 22px;
    font-family: "Arial";
    margin-top: 5%;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    display: none;
    transition-duration: 0.5s;
}

.content div {
    margin: 5% 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content p,
h2,
h3,
h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #222222;
}

.content a {
    color: #058aff;
    transition-duration: 0.25s;
}

.content a:hover {
    color: #005096;
}

.active-content {
    display: flex;
}

.arrow {
    transition-duration: 0.25s;
    cursor: pointer;
}

.active-arrow {
    transform: rotate(90deg);
}

.w-50 {
    width: 50%;
}

.my-5 {
    margin: 5rem 0;
}

footer {
    background-color: #191612;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 0;
    margin-bottom: -2rem;
}

footer>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer>div>div {
    margin-right: 5%;
}

.error {
    text-align: center;
    color: rgb(225, 0, 0);
    font-size: 20px;
}