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

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

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

.table-wrapper{
    margin-top: 5%;
    display: flex;
    justify-content: center;
}
table {
    width: 50%;
    font-family: Arial, Helvetica, sans-serif;
  }

  td{
    padding: 1rem;
    text-align: center;
  }

tr:nth-child(even) {
    background-color: #f2f2f2;
  }

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

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

header img {
    width: 400px;
}

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

form p {
    font-size: 22px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
}

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,
.btn-info>button:hover {
    opacity: 0.9;
    box-shadow: 0px 0px 5px #05cdff9a;
}

.btn-info {
    display: flex;
    justify-content: center;
}

.btn-info>button {
    padding: 2%;
    background-color: #00d5ff;
    color: #222222;
    font-size: 17px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition-duration: 0.25s;
}

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

.mt-5 {
    margin-top: 5rem;
}

.container {
    padding: 0 2rem;
    width: 75%;
}

.progress-step {
    border: solid 2px #e5e5e5;
    background: #e5e5e5;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    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 6%;
}

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

.active {
    background-color: #009900;
}

.fs-5 {
    font-size: 2.2rem;
}

.text-white {
    color: white;
}

.descr {
    margin-top: 1%;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
}

.descr>div {
    min-width: 22.25%;
}

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

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

.show {
    display: block !important;
}

#img-3 {
    margin-bottom: 10rem;
}

main{
    min-height: 46vh;
}

footer {
    background-color: #191612;
    color: white;
    font-family: Arial, Helvetica, sans-serif;

    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 */

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

@media (max-width: 675px) {
    header img {
        width: 250px;
    }
    form p {
        text-align: center;
    }
    .search,
    .container {
        width: 90%;
    }
    .progress-bar {
        margin: 0;
    }
    .progress-bar img {
        width: 50%;
    }
    .progress-step {
        height: 3rem;
    }
    .descr {
        font-size: 10px;
    }
    footer {
        position: relative;
    }
    footer>div {
        flex-direction: column;
    }
}