@import url(./font.css);

* {
    margin: 0;
    padding: 0;
    font-family: GolosText;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 70px;
}

.flex_column_center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex_column_start {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.flex_colunm_space_between_start {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.flex_space_between {
    display: flex;
    justify-content: space-between;
}

.flex_center_normal {
    display: flex;
    justify-content: center;
}

.flex_normal_center {
    display: flex;
    align-items: center;
}

.flex_space_between_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_center_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    width: 100vw;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 20px 0px;
    background-color: #eff9ff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.container_content {
    width: 85%;
    height: 40px;
}

.container_left {
    width: 180px;
    color: #4b5b65;
    transition: all 0.3s ease;
    fill: #4b5b65;
    cursor: default;
    text-wrap: nowrap;
}

.container_left:hover {
    fill: #2ac0f2;
    color: #2ac0f2;
}

.container_left h1 {
    font-weight: 600;
    font-size: 23px;
}

.burger_menu {
    display: none;
}

.mobile_nav {
    display: none;
}

.container_right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.container_right a {
    white-space: nowrap;
    font-size: 15px;
    color: #4b5b65;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.container_right a:hover {
    transform: scale(1.05);
    color: #2ac0f2;
}

#button-link {
    padding: 14px 22px;
    color: white;
    background-color: #0a8fe2;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#button-link:hover {
    background-color: #2ac0f2;
    box-shadow: 0px 5px 50px #bdbdbd78;
}

header.scrolled {
    padding: 12px 0px;
    background-color: rgba(255, 255, 255, 0.432);
    backdrop-filter: blur(10px);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

#header {
    width: 100vw;
    margin-bottom: 60px;
    background-color: #eff9ff;
    overflow: hidden;
}

.header_container_left {
    width: 38%;
    gap: 24px;
    padding: 32px 64px;
    margin: 0px auto;
}

.way {
    border-radius: 20px;
    background-color: #bce2fa;
    padding: 8px 16px;
    font-size: 15px;
    color: #4b5b65;
    gap: 8px;
}

.header_container_left h1 {
    font-size: 52px;
    font-weight: 600;
}

#coralclub {
    cursor: pointer;
    color: #0a8fe2;
    transition: color 1s ease;
}

#coralclub:hover {
    color: #2ac0f2;
    text-decoration: underline;
}

.header_container_left p {
    font-size: 1.4dvi;
    color: #4b5b65;
    text-align: left;
    line-height: 1.5;
}

.header_button {
    gap: 24px;
}

#test {
    border-radius: 13px;
    padding: 20px 24px;
    border: none;
    cursor: pointer;
    background-color: #0a8fe2;
    color: white;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

#test:hover {
    background-color: #2ac0f2;
    box-shadow: 0px 5px 50px #bdbdbd78;
}

#over {
    border-radius: 13px;
    cursor: pointer;
    padding: 16px 24px;
    background-color: transparent;
    color: #0a8fe2;
    border: 2px solid #2ac0f2;
    font-size: 15px;
    font-weight: 500;
    gap: 8px;
}

#over:hover {
    background-color: #def7ff;
}

#over svg {
    transition: transform 0.5s ease;
}

#over:hover svg {
    transform: translateX(5px);
}

.header_container_right {
    background-image: url("../img/1.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 800px;
    height: 100%;
    width: 45%;
    min-width: 300px;
    object-fit: cover;
    transform-origin: center;
    overflow: hidden;
    box-shadow: -100px 0 50px -60px rgba(10, 143, 226, 0.15);
    transition: all 0.5s ease;
}

.header_container_right:hover {
    transform: scale(1.05);
}

#disease {
    width: 100%;
    background-color: white;
    margin: 64px 0px;
}

.disease_container {
    width: 80%;
    padding: 0px 32px;
    gap: 64px;
    text-align: center;
}

.disease_container_top {
    width: 70%;
}

.disease_container_top h2 {
    font-size: 36px;
    font-weight: 600;
    color: black;
    margin-bottom: 16px;
}

.disease_container_top p {
    font-size: 20px;
    color: #4b5b65;
    line-height: 1.5;
}

.disease_container_bottom {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    grid-template-rows: auto;
    gap: 32px;
    flex-wrap: wrap;
}

.disease_column {
    background-color: #f9fdff89;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0px 3px 10px #6666664f;
    transition: all 0.3s ease;
}

.disease_column svg {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
}

#W1 {
    fill: #2ac0f2;
}

#I2 {
    fill: #f6e29c;
}

#C3 {
    fill: #ff9e9e;
}

#F4 {
    fill: #ed9349;
}

.disease_column h3 {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 600;
}

.disease_column p {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 200;
    color: #4b5b65;
    line-height: 1.5;
}

.disease_column:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(102, 102, 102, 0.308);
}

.disease_column:hover svg {
    transform: scale(1.3);
}

.disease_column:hover #W1 {
    color: #2ac0f2;
}

.disease_column:hover #I2 {
    color: #ffbf00;
}

.disease_column:hover #C3 {
    color: #ea3333;
}

.disease_column:hover #F4 {
    color: #e67336;
}

#concept {
    width: 100%;
    background: linear-gradient(45deg, #9bdfde75, #ffffff3f);
    margin: 64px 0px;
}

.concept_container_left {
    width: 50%;
    min-height: 800px;
    height: 100%;
    background-image: url('../img/2.webp');
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.concept_container_right {
    width: 40%;
    padding: 64px;
    margin: 0px auto;
    gap: 24px;
}

.concept_container_top {
    gap: 15px;
}

.concept_container_top h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.concept_container_top p {
    font-size: 18px;
    font-weight: 400;
    color: #4b5b65;
    line-height: 1.5;
}

.concept_block {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    align-items: start;
    padding: 20px;
}

.concept_block svg {
    grid-row: 1 / -1;
    grid-column: 1;
    align-self: start;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.concept_block:hover svg {
    transform: scale(1.09);
}

.concept_block:hover #W {
    color: #2ac0f2;
}

.concept_block:hover #C {
    color: #ebd366;
}

.concept_block:hover #E {
    color: #1ebf56;
}

.concept_block:hover #S {
    color: #9325ec;
}

.concept_block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease
}

.concept_block p {
    font-size: 15px;
    color: #4b5b65;
    line-height: 1.5;
}

#questionnaire {
    width: 100vw;
    margin: 64px 0px;
}

.questionnaire_container {
    width: 80%;
    padding: 0px 64px;
    gap: 64px;
}

.questionnaire_container_top {
    width: 70%;
    text-align: center;
}

.questionnaire_container_top h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.questionnaire_container_top p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #4b5b65;
}

#formMessages {
    position: fixed;
    top: -100px;
    z-index: 100;
    color: #4b5b65;
    font-size: 18px;
    padding: 18px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 20px;
    background-color: #bce2fa;
    transition: all 0.3s ease;
}

#formMessages.action {
    top: 90px;
}

form {
    width: 62%;
    min-width: 650px;
    border: 1px solid #f1f5f9;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0px 3px 10px #6666664f;
    gap: 40px;
}

.questionnaire_top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 30px;
    font-size: 16px;
    line-height: 24px;
}

input {
    width: 100%;
    height: 56px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 17px;
    background-color: #f8fafc;
    color: black;
    box-sizing: border-box;

}

/* Цвет placeholder во всех браузерах */
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,::placeholder {
  color: #999999; /* Светло‑серый */
}


.complaints {
    grid-column: span 2;
}

#chronicIssues {
    height: 92px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 17px;
    background-color: #f8fafc;
    resize: none;
    width: 100%;
    align-self: center;
    box-sizing: border-box;
    color: black;
}

.questionnaire_bottom {
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
    gap: 32px;
}

.questionnaire_bottom p {
    font-size: 12px;
    line-height: 16px;
    color: #62748e;
}

#send {
    padding: 20px 32px;
    border-radius: 14px;
    background-color: #0a8fe2;
    text-wrap: nowrap;
    border: none;
    color: white;
    font-size: 17px;
    cursor: pointer;
    gap: 7px;
    transition: all 0.3s ease;
}

#send:hover {
    background-color: #2ac0f2;
    box-shadow: 0px 5px 50px #bdbdbd78;
}

#send svg {
    transition: transform 0.5s ease;
}

#send:hover svg {
    transform: translateX(10px) translateY(-5px);
}

#discount {
    width: 100%;
    margin: 64px 0px;
}

.discount_container {
    width: 80%;
    gap: 96px;
}

.discount_container_top {
    position: relative;
    width: 100%;
    padding: 10% 15%;
    border-radius: 24px;
    box-sizing: border-box;
    background-color: rgba(9, 142, 225, 0.3);
    gap: 32px;
}

.image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    border-radius: 24px;
    background-image: url('../img/i\ \(1\).jpeg');
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.discount_block_left {
    color: white;
}

.discount_block_left h2 {
    font-size: 50px;
    margin-bottom: 16px;
    font-weight: 700;
}

.discount_block_left p {
    font-size: 20px;
    font-weight: 200;
}

.button-link {
    padding: 16px 32px;
    background-color: white;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 500;
    color: #0a8fe2;
    gap: 7px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.button-link:hover {
    transform: scale(1.05);
}

.button-link svg {
    transition: all 0.3s ease;
}

.button-link:hover svg {
    transform: translateX(10px) rotate(-90deg);
}

.discount_container_bottom_left {
    width: 50%;
    margin: 0px 5%;
    justify-content: center;
    gap: 24px;
}

.discount_container_bottom_left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.discount_container_bottom_left p {
    font-size: 18px;
    color: #4b5b65;
    line-height: 1.5;
}

.discount_contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.discount_contacts_block {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 15px;

}

.discount_contacts_block svg {
    grid-row: span 2;
    align-self: center;
    transition: all 0.5s ease;
}

.discount_contacts_block p {
    font-size: 14px;
    color: #4b5b65;
}

.discount_contacts_block a {
    font-size: 18px;
    font-weight: 500;
    color: black;
    transition: all 0.5s ease;
}

.discount_contacts_block:hover .T {
    color: #26cf56;
    transform: scale(1.05);
}

.discount_contacts_block:hover .TL {
    color: #2ac0f2;
    transform: scale(1.05);
}

.discount_contacts_block:hover .EM {
    color: #ebd366;
    transform: scale(1.05);
}

.discount_container_bottom_right {
    padding: 45px;
    margin: 0px 5%;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    background-color: #f8fafc;
    box-shadow: 0px 5px 50px #bdbdbd78;
    gap: 18px;
}

.discount_container_bottom_right h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

.discount_container_bottom_right ul {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    gap: 18px;
    color: #4b5b65;
}

footer {
    width: 100vw;
    margin-top: 60px;
    padding: 48px 0px;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0px -5px 50px #bdbdbd78;
    background-color: #f8fafc;
    display: flex;
    justify-content: center;
}

.footer_container {
    width: 80%;
    color: #4b5b65;
    gap: 64px;
}

.footer_container_top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 70px;
}

.footer_container_column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#HealthGuide {
    font-size: 24px;
    font-weight: 600;
}

.footer_container_column ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_container_column a {
    color: #4b5b65;
    transition: all 0.5s ease;
}

.footer_container_column a:hover {
    color: #2ac0f2;
    text-decoration: underline;
}

.footer_container_bottom {
    width: 100%;
    padding-top: 32px;
    border-top: 1px solid #cdcfd1;
}

.footer_container_bottom p {
    display: flex;
    align-items: center;
    gap: 5px;
}