/*
--------------------
Connecting fonts
--------------------
*/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*
--------------------
Основные стили
--------------------
*/
body {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    color: #000000;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body, html {height: 100%;}

p {
    margin: 0 0 15px;
    line-height: normal;
}

.container {
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}

.content-block {
    max-width: 872px;
    margin: 0 auto;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 25px;
}


/*
--------------------
Styles for Header
--------------------
*/
header {
    padding: 90px 0 60px;
    overflow-x: clip;
}

.logo {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo:after {
    content: "";
    background: #85A1AB;
    filter: blur(100px);
    border-radius: 50%;
    width: 496px;
    height: 496px;
    position: absolute;
    top: -190px;
    left: -15%;
    z-index: -1;
}

.header-block {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

.header-block:after, .info-block:after {
    content: "";
    border-radius: 50%;
    background: #28F4FF;
    filter: blur(100px);
    width: 496px;
    height: 496px;
    position: absolute;
    z-index: -1;
    top: -20%;
    right: -20%;
}

.header-block h1 {
    font-size: 45px;
    font-weight: bold;
    max-width: 90%;
    margin: 0;
}

/*
--------------------
Styles for Content
--------------------
*/
.image-block {
    background: #85A1AB;
    padding: 50px 0;
}

.image-blk {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

.image-blk img {max-width: 100%;}

.info-block {
    padding: 60px;
    position: relative;
}

.info-block:after {
    right: 30%;
    top: 0;
}

.concept {
    position: absolute;
    right: 100%;
}

.concept span {
    position: relative;
    color: #7D949C;
    font-size: 21px;
    font-weight: 700;
    line-height: normal;
    opacity: 0.5;
    display: block;
    min-width: 200px;
}

.concept span.active {opacity: 1;}

.concept span:before {
    content: "";
    width: 28px;
    min-width: 28px;
    height: 28px;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 22px;
}

.concept span.active:before {
    background: #7D949C;
    box-shadow: 0 0 0 8px rgba(133, 161, 171, 0.2);
    border: none;
}

.concept span:after {
    content: "";
    width: 1px;
    height: 88px;
    background: #000;
    margin: 14px;
    display: block;
}

.timeline-block {position: relative;}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item p:not(:last-child) {margin-bottom: 30px;}

.timeline-item a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.team {
    display: flex;
    justify-content: space-between;
}

.team-blk {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.team-blk img, .team-blk span.noname {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
}

.noname {border: 1px solid #85A1AB;}
.team-blk p {
    margin: 0 0 0;
}
.team-blk p span {display: block;}

.info-block .content-block {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-blk a {
    width: 35px;
    height: 35px;
}

.team-blk a img {
    width: 100%;
    height: 100%;
    border-radius: 0;
}


/*
--------------------
Styles for Footer
--------------------
*/
footer {
    margin-top: -400px;
    padding-top: 400px;
    overflow: hidden;
    min-height: 200px;
}

footer span {
    font-size: 18px;
    color: #ffffff;
    position: relative;
    padding: 50px 0 80px;
    text-align: center;
    display: block;
}

footer span:after {
    content: "";
    background: #85A1AB;
    filter: blur(100px);
    width: 496px;
    height: 496px;
    position: absolute;
    border-radius: 50%;
    bottom: -300px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.form-wrapper {
    max-width: 400px;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;  /* Ensure the parent is positioned relative to its children */
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.password-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

.password-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.password-instructions {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

.password-requirements {
    font-size: 0.875rem;
    color: #6c757d;
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.password-requirements li {
    margin-bottom: 0.3rem;
    list-style-type: disc;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 1.25rem;
}

.toggle-password i {
    font-size: 1.25rem;
}

.toggle-password:hover {
    text-decoration: underline;
}

button.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn-primary:hover {
    background-color: #0056b3;
}

.form-error-message {
    color: #d9534f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    position: absolute;
    left: 0;
    top: 100%; /* Push the error message below the input */
    width: 100%;
}

p.privacy-policy-footer {
    margin-bottom: 30px;
}

a.privacy-policy-footer-link {
    color: black;
    margin: 0 20px;
}

div.privacy-policy-header {
    font-size: 18px;
    gap: 0;
}

div.privacy-policy {
    font-size: 18px;
    z-index: 999;
}

div.privacy-policy .footer {
    margin-top: 2rem;
}

.full-height {
    height: 100%;
    z-index: 999;
}

/*
--------------------
Styles for Adaptive
--------------------
*/
@media (max-width: 1279px) {
    .content-block {max-width: 780px;}
}

@media (max-width: 1199px) {
    .header-block h1 {font-size: 42px;}
    .container {max-width: 930px;}
    .image-blk {gap: 50px;}
    .timelines {margin-left: 20%;}
    .concept span:after {height: 120px;}
}

@media (max-width: 991px) {
    .container {max-width: 720px;}
    .header-block h1 {font-size: 45px; max-width: 580px;}
    .logo:after {top: -220px; left: -25%;}
    .content-block, .logo {max-width: 608px;}
    .logo {margin: 0 auto 63px;}
    .header-block:after {z-index: -2; right: -30%;}
    .image-blk {gap: 100px; flex-wrap: wrap; justify-content: center;}
    .team {flex-wrap: wrap; gap: 50px; justify-content: center;}
    .info-block:after {left: 0; right: 0; margin: 0 auto;}
    .timelines {margin-left: 25%;}
    .concept span:after {height: 160px;}
    .concept span:last-child:after {height: 110px;}
}

@media (max-width: 767px) {
    .container {max-width: 540px;}
    body {font-size: 18px;}
    .header-block h1 {font-size: 30px;}
    header {padding: 75px 0 90px;}
    .content-block, .logo {max-width: 75%;}
    .logo {margin-bottom: 60px;}
    .content-block {gap: 50px;}
    h2 {margin-bottom: 20px; font-size: 18px;}
    .team {gap: 30px; flex-direction: column;}
    .image-blk {gap: 50px;}
    .info-block {overflow-x: clip;}
    .timelines {margin-left: 0;}
    .concept {position: relative; right: 0; width: 150px; margin: 35px auto;}
    .concept span {font-size: 18px; min-width: 170px;}
    .concept span:after, .concept span:last-child:after {height: 44px;}
    .timeline {gap: 20px;}
    .concept span:before {width: 18px; min-width: 18px; height: 18px;}
    .concept span.active:before {box-shadow: 0 0 0 5px rgba(133, 161, 171, 0.2);}
    .concept span:after, .concept span:last-child:after {margin: 10px;}
}

@media (max-width: 575px) {
    .container {max-width: 100%;}
    .content-block, .logo {max-width: 294px;}
    footer span:after {bottom: -400px; left: -10%;}
    footer {margin-top: -450px;}
    .info-block:after {left: -10%;}
    .team-blk img, .team-blk span.noname {width: 150px; height: 150px;}
    .info-block {padding: 40px 0;}
    .image-block {padding: 42px 0 58px;}
}

@media (max-width: 374px) {
}