

/* Start:/local/templates/direkt2026/assets/css/contacts.css?17860101618404*/
.contacts__title {
    margin-bottom: 32px;
    display: block;
    font-size: 128px;
    font-weight: 200;
    line-height: 1.25;
    color: var(--color-text);
    text-transform: uppercase;
	font-family: 'GeologicaThin';
}

.contacts__subtitle {
    margin-bottom: 32px;
    font-size: var(--size-h1);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

.contacts__inner {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contacts__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 40px) / 3);
    min-height: 350px;
    padding: 32px;
    border: 1px solid var(--color-text);
    border-radius: 20px;
}
.contacts__item.contacts__item--center {
	justify-content: flex-start;
}
.contacts__item.contacts__item--center .contacts__social {
	height: 100%;
}
.contacts__item:not(.active) iframe {
	pointer-events: none;
}
.contacts__item iframe {
	max-width: 100%;
	border-radius: 20px;
}

.contacts__flip {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 30px;
    font-family: 'GeologicaBold';
    line-height: 1.25;
    color: var(--color-text);
}

.contacts__top {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--color-text);
    text-transform: uppercase;
    font-family: 'Geologica';
}

.contacts__bottom {
    display: inline-block;
    width: fit-content;
    position: relative;
    font-size: 30px;
    font-family: 'GeologicaBold';
    line-height: 1.25;
    color: var(--color-text);
}
.contacts__bottom:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    opacity: 1;
    position: absolute;
    left: 0;
    bottom: 2px;
    z-index: 1;
    transition: opacity .1s linear;
}
.contacts__bottom-title {
	font-family: 'GeologicaRegular';
    font-size: 20px;
	text-transform: uppercase;
	margin-top: 22px;
}

.contacts__bottom--div {
	display: flex;
	flex-direction: column;
}
.contacts__bottom--div:after {
    display: none;
}

.contacts__bottom:hover {
    text-decoration: none;
}

.contacts__bottom:hover:after {
    opacity: 0;
}

.contacts__friends {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacts__friend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contacts__rf {
    font-size: 8px;
    font-weight: 400;
    color: var(--color-text);
    text-align: right;
}

.contacts__tender {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 23px;
	margin-top: 23px;
}
.contacts__tender a {
	background: rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-top-left-radius: 20px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	padding: 16px 20px;
	display: inline-block;
}
.contacts__tender a:hover {
	border-color: var(--color-link);
	color: var(--color-link);
}
.contacts__tender a svg {
	width: 100%;
	height: auto;
}

.contacts__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    overflow: hidden;
}

.contacts__social-item {
    width: 74px;
    height: 64px;
	background: rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-top-left-radius: 20px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 5px 10px;
}
.contacts__social-item.contacts__social-item__star {
	position: relative;
}
.contacts__social-item.contacts__social-item__star:after {
	content: "*";
	position: absolute;
	top: 4px;
	right: 8px;
}

.contacts__social-item svg {
	width: 100%;
	transition: all 0.5s ease;
}
.contacts__social-item:hover {
	color: var(--color-link);
	border-color: var(--color-link);
}

.contacts__workspace {
    display: block;
}

.contacts__button {
    display: inline-block;
    padding: 10px 20px;

    border-radius: 16px;
    background-color: transparent;
    border: 1px solid var(--color-link);
    cursor: pointer;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-link);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s linear, background-color .2s linear;
}

.contacts__button:hover {
    color: var(--color-text);
    background-color: var(--color-link);
    text-decoration: none;
}

.contacts__wrap {
    margin-top: 80px;
    display: flex;
    gap: 20px;
}

.contacts__item--left {
    padding: 0;
    width: calc(70% - 10px);
    overflow: hidden;
}

.contacts__map {
    display: block;
    max-width: 100%;
    height: auto;
}

.contacts__item--right {
    width: calc(30% - 10px);
    justify-content: normal;
}

.contacts__block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contacts__block--border {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.contacts__address {
    padding-right: 10px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

.contacts__click {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__docs {
    padding-top: 80px;
}

.contacts__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
}
.contacts__link:hover {
    text-decoration: none;
	color: var(--color-link);
}
.contacts__links a.contacts__link:after {
	opacity: 1;
}
.contacts__links a.contacts__link:hover:after {
	background-color: var(--color-link);
}

@media(max-width: 1440px) {
    .contacts__friend {
        justify-content: normal;
        gap: 5px;
    }

    .contacts__rf {
        text-align: left;
    }

    .contacts__social {
        justify-content: normal;
        gap: 10px;
    }

    .contacts__block--border {
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .contacts__item--left {
        width: calc(67% - 10px);
    }

    .contacts__item--right {
        width: calc(33% - 10px);
    }

    .contacts__button {
        padding: 10px 0;
    }
}

@media(max-width: 844px) {
    .contacts__title {
        margin-bottom: 20px;
        font-size: 48px;
    }

    .contacts__subtitle {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .contacts__item {
        padding: 24px;
        width: 100%;
        min-height: auto;
        align-items: center;
        text-align: center;
    }

    .contacts__item .contacts__flip {
		gap: 20px;
	}
    .contacts__item .contacts__flip:first-child {
        margin-bottom: 32px;
    }

    .contacts__top {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .contacts__item .contacts__flip .contacts__top {
        margin-bottom: 0px;
	}
	.contacts__top + .contacts__bottom > .contacts__bottom-title:first-child {
        margin-top: 0px;
	}

    .contacts__bottom {
        font-size: 20px;
    }

    .contacts__friends {
        align-items: center;
    }

    .contacts__tender {
        gap: 20px;
        align-items: center;
    }

    .contacts__button {
        width: 100%;
        font-size: 16px;
    }

    .contacts__button--mb20 {
        margin-bottom: 20px;
    }

    .contacts__wrap {
        margin-bottom: 40px;
        flex-direction: column;
    }

    .contacts__block--border {
        width: 100%;
    }

    .contacts__address {
        padding-right: 0;
        font-size: 16px;
    }

    .contacts__block {
        width: 100%;
    }

    .contacts__item--left {
        padding: 0;
        height: 400px;
    }

    /*.contacts__iframe {
        display: block;
        width: 100%;
        height: 100%;
    }*/

    .contacts__docs {
        padding-top: 40px;
    }

    .contacts__link {
        font-size: 16px;
        gap: 10px;
    }

}
/* End */
/* /local/templates/direkt2026/assets/css/contacts.css?17860101618404 */
