
.start-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 300px;
    padding: 50px 20px 100px 20px;
    box-sizing: border-box;
}

.start-block h1 {
    font-size: 48px;
    font-family: STIX Two Text;
    font-weight: 700;
    line-height: 1.5;
}

.start-block .description {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 30px 0 0 0;
    box-sizing: border-box;
}

.start-block .buttons {
    position: relative;
    display: flex;
    gap: 20px;
    padding-top: 50px;
    box-sizing: border-box;
}


.skyblue {
    background: #b0e7f5 !important;
}


.header-image-block {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 30px;
    box-sizing: border-box;
}

.header-image-block .header-image {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 1400 / 500;
    background: url(/images/about.png) no-repeat center;
    background-size: cover;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.header-image-block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 785px;
    background: white;
    opacity: 0;
    z-index: 2;
}


.get-in-touch-block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    padding: 0 0 150px 0;
    box-sizing: border-box;
}

.get-in-touch-block .text {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.get-in-touch-block .description {
    margin-top: 20px;
    font-size: 18px;
    font-family: Noto Sans;
    font-weight: 400;
    color: #555;
    padding: 0 0 30px 0;
    box-sizing: border-box;
}

.get-in-touch-block h1 {
    font-size: 32px;
    font-family: STIX Two Text;
    font-weight: 700;
    line-height: 1.5;
}

.get-in-touch-block .contacts {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    box-sizing: border-box;
}

.get-in-touch-block .contact-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 0 70px;
    box-sizing: border-box;
}

.get-in-touch-block .contact-item .icon {
    position: absolute;
    top: 5px;
    left: 0;
    width: 48px;
    height: 48px;
}

.get-in-touch-block .contact-item .contact-label {
    font-size: 18px;
    font-family: Noto Sans;
    font-weight: 600;
    color: #555;
}

.get-in-touch-block .contact-item .contact-value {
    font-size: 16px;
    font-family: Noto Sans;
    font-weight: 400;
    color: #333;
}