:root {
    --font-family: "NarkisBlockConMF", sans-serif;
    --animation-1: all 0.3s ease;
    --color-dark-blue: #005b7f;
    --color--blue: #0093d0;
    --color-white: #ffffff;
    --color-grey: #bababa;
    --color-pink: #da8691;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
img {
    border: 0;
    height: auto;
    max-width: 100%;
    width: 100%;
}
a {
    text-decoration: none;
    color: var(--color-white);
    transition: var(--animation-1);
}
a:hover {
    color: var(--color-pink);
}
button,
input,
textarea {
    border: 0;
    outline: 0;
}
.container {
    max-width: 67.7083vw;
    margin: 0 auto;
    padding: 0 0.5208vw;
}
@media screen and (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 0 5.1282vw;
    }
}
main a {
    color: inherit;
}
main a:hover {
    text-decoration: none;
}
main strong {
    font-weight: bold;
}
main em {
    font-style: italic;
}
/* =---= */
input::placeholder,
textarea::placeholder,
input,
textarea,
button,
select {
    font-family: inherit;
}
/* ------------------------------------------------ */
@font-face {
    font-family: 'DIN Condensed';
    src: url('../fonts/DINPro-CondensedBold.woff2') format('woff2'),
         url('../fonts/DINPro-CondensedBold.woff') format('woff'),
         url('../fonts/DINPro-CondensedBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NarkisBlockConMF";
    src: url("../fonts/NarkisBlockConMF-Medium.woff2") format("woff2"),
        url("../fonts/NarkisBlockConMF-Medium.woff") format("woff"),
        url("../fonts/NarkisBlockConMF-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-stretch: condensed;
    font-display: swap;
}

@font-face {
    font-family: "NarkisBlockConMF";
    src: url("../fonts/NarkisBlockConMF-Bold.woff2") format("woff2"),
        url("../fonts/NarkisBlockConMF-Bold.woff") format("woff"),
        url("../fonts/NarkisBlockConMF-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-stretch: condensed;
    font-display: swap;
}

html,
body {
    height: 100%;
}
main {
    flex: 1;
}

body {
    font-family: "NarkisBlockConMF", sans-serif;
    font-weight: 500;
    font-size: 1.25vw;
    margin: 0;
    padding: 0;
    background-image: url("../img/body-bg.jpg");
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    display: flex;
    flex-direction: column;
}

/* workshop card */
.workshop-card {
    /* max-width: 66.6667vw; */
    width: 66.6667vw;
    height: 15.4167vw;
    margin: 1.0417vw auto;
    padding: 1.6667vw;
    display: flex;
    flex-direction: row-reverse;
    gap: 1.0417vw;
    justify-content: space-between;
    background: url(../img/workshop-card-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    .right {
        flex-basis: 70%;
        display: flex;
        flex-direction: column;
        gap: 0.5208vw;
    }

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

    .small-button {
        background: url(../img/blue-border-small.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 4.5833vw;
        height: 1.6667vw;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-dark-blue);
        font-weight: 700;
        font-size: 1.0417vw;
    }

    .big-button {
        color: var(--color-dark-blue);
        font-weight: 700;
        font-size: 1.0417vw;
    }
	.workshop-type {
        color: var(--color-dark-blue);
        font-weight: 700;
        font-size: 1.2500vw;
    }

    .workshop-title {
/*         margin-top: 2.0833vw; */
        font-weight: 700;
        font-size: 2.0833vw;
        line-height: 100%;
        color: var(--color-dark-blue);
    }

    .pink-button {
        background: url(../img/pink-button-bg.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 8.0208vw;
        height: 2.0833vw;
        display: flex;
        align-items: center;
        align-self: flex-end;
        justify-content: center;
        gap: 0.3646vw;
        font-weight: 700;
        font-size: 1.0417vw;
        color: var(--color-white);
    }
    .arrow-readmore {
        width: 0.8333vw;
    }

    .speakers {
        display: flex;
        gap: 0.5208vw;
    }

    .speaker {
        position: relative;
        background: url(../img/speacker-bg.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 4.4792vw 4.4792vw;
        width: 6.4792vw;
        height: 6.4792vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

	.circle-svg {
		width: 100%;
		height: auto;
		display: block;
	}

    .speaker-photo {
        width: 4.0104vw;
        height: 4.0104vw;
        border-radius: 50%;
        overflow: hidden;
    }

    .speaker-name {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

/* details later */
.details-later {
    .details-later__title {
        font-weight: 700;
        font-size: 3.3333vw;
        line-height: 87%;
        text-align: center;
    }

    .details-later__title::after {
        content: "";
        position: absolute;
        display: block;
        background: url(../img/details-later-1.png) center 0 no-repeat;
        width: 100%;
        height: 0.6771vw;
        left: 50%;
        bottom: -0.3646vw;
        transform: translateX(-50%);
    }
}

/* workshop page */
.workshop-page {
    margin-bottom: 6.25vw;
    .container {
        display: flex;
        gap: 3.125vw;
        color: var(--color-dark-blue);
    }

    .workshop-title {
        font-weight: 700;
        font-size: 3.3333vw;
        line-height: 100%;
        color: var(--color-dark-blue);
    }

    .type-title,
    .level-title {
        font-weight: 700;
        font-size: 1.6667vw;
        line-height: 100%;
        text-align: right;
        color: var(--color-dark-blue);
    }

    .type-text,
    .level-text {
        font-weight: 500;
        font-size: 1.25vw;
        line-height: 133%;
        text-align: justify;
    }

    .right {
        flex: 0 0 41.875vw;
    }

    .left {
        display: flex;
        flex-direction: column;
        gap: 2.0833vw;
    }

    .workshop-description {
        font-weight: 500;
        font-size: 1.25vw;
        line-height: 133%;
        text-align: justify;

        h2 {
            font-weight: 700;
            font-size: 2.5vw;
            line-height: 83%;
            margin-bottom: 1.25vw;
        }

        h3 {
            font-weight: 700;
            font-size: 1.6667vw;
            line-height: 100%;
            margin-bottom: 0.8333vw;
        }

        ul li {
            margin-right: 1.0417vw;
        }
    }

    .back-to-workshops {
        display: flex;
        gap: 0.3646vw;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        width: 5.7813vw;
        height: 2.0833vw;
        color: var(--color-white);
        position: relative;
        background: url("../img/back-btn-bg.png") no-repeat;
        background-size: contain;
        font-weight: 700;
        font-size: 0.9375vw;
        align-self: flex-end;
    }

    .back-to-workshops:hover {
        color: var(--color-dark-blue);
    }

    .back-to-workshops::before {
        content: "";
        position: relative;
        top: 0;
        left: 0;
        width: 0.8333vw;
        height: 0.5208vw;
        background: url("../img/back-btn-arrow.svg") no-repeat;
        background-size: contain;
        background-position: center center;
    }

    .workshop-info {
        margin: 2.0833vw 0 1.4063vw;
        min-height: 17.6563vw;
        padding-right: 13.75vw;
        background: url("../img/workshop-single-decor.png") no-repeat;
        background-position: top right;
        background-size: 12.7083vw 17.6563vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.6667vw;
    }

    .level,
    .type {
        display: flex;
        gap: 1.6667vw;
    }

    .level h3,
    .type h3 {
        flex: 0 0 4.7917vw;
    }

    .speakers {
        display: flex;
        flex-direction: column;
        gap: 2.5vw;
        align-items: flex-start;
    }

    .speaker-image {
        width: 4.0104vw;
        height: 4.0104vw;
        border-radius: 50%;
        overflow: hidden;
		position: relative;
        background: url(../img/speacker-bg.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 4.4792vw;
        height: 4.4792vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
	
	.speaker-image img {
		width: 4.0104vw;
        height: 4.0104vw;
        border-radius: 50%;
        overflow: hidden;
	}

    .speaker-info {
        display: flex;
        gap: 1.6146vw;
        margin-bottom: 1.6667vw;
    }

    .speaker-title {
        font-weight: 700;
        font-size: 1.25vw;
        line-height: 133%;
        color: var(--color-dark-blue);
    }

    .speaker-name {
        font-weight: 700;
        font-size: 1.6667vw;
        line-height: 125%;
        color: var(--color-dark-blue);
    }

    /* accordeon */
    .speaker-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        position: relative;
        transition: max-height 0.3s;
        max-height: 3.2em;
    }

    .speaker-text.expanded {
        -webkit-line-clamp: unset;
        max-height: none;
        overflow: visible;
        display: block;
    }
    .speaker-text-toggle {
        background: none;
        border: none;
        color: var(--color-pink);
        cursor: pointer;
        font-weight: bold;
        margin-top: 0.5em;
        margin-right: auto;
        padding: 0;
        display: flex;
        flex-direction: row-reverse;
        gap: 0.3646vw;
        font-size: 0.9375vw;
        align-items: center;
    }

    .speaker-text-toggle::before {
        content: "";
        display: block;
        background: url("../img/toggle-arrow-pink.svg") no-repeat;
        background-size: 0.5208vw 0.8333vw;
        width: 0.5208vw;
        height: 0.8333vw;
        transform: rotate(180deg);
    }

    .open.speaker-text-toggle::before {
        transform: rotate(0deg);
    }
}

/* footer */
.footer {
    .footer__container {
        margin: 0 2.0833vw;
        background: url("../img/footer-bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        border-radius: 1.25vw;
        min-height: 10.3125vw;
        padding: 2.1354vw 2.1354vw 2.1354vw 4.1667vw;
        display: flex;
        flex-direction: row-reverse;
        gap: 5.6771vw;
        justify-content: space-between;
    }

    .footer-company {
        max-width: 7.4479vw;
    }

    .footer-email-title,
    .footer-company-title {
        font-weight: 700;
        font-size: 1.25vw;
        letter-spacing: 0.04em;
        color: var(--color-white);
        margin-bottom: 0.5729vw;
    }

    .footer-email-link {
        font-family: serif;
        font-weight: 400;
        font-size: 0.8333vw;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .footer-logo {
        max-width: 18.3854vw;
    }

    .footer-rights {
        max-width: 11.9792vw;
        margin-right: auto;
        margin-top: -1.7708vw;
        font-weight: 500;
        font-size: 0.8333vw;
        color: var(--color-white);
    }
    .footer-menu-1,
    .footer-menu-2 {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.3646vw;
        font-size: 1.0417vw;
    }
    .footer-menu-1 a,
    .footer-menu-2 a {
        color: var(--color-white);
        transition: var(--animation-1);
    }
    .footer-menu-1 a:hover,
    .footer-menu-2 a:hover {
        color: var(--color-pink);
    }

    .footer-menu-2 li:first-child,
    .footer-menu-1 li:first-child {
        font-weight: 700;
        font-size: 1.25vw;
        letter-spacing: 0.04em;
        color: var(--color-white);
        margin-bottom: 0.1563vw;
    }

    .copyrights {
		font-family: 'DIN Condensed';
        padding: 1.4583vw 0 1.3021vw;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 700;
        font-size: 0.8333vw;
        text-transform: uppercase;
        color: var(--color-dark-blue);
		
		a {
			color: var(--color-dark-blue);
			&:hover {
				color: var(--color-dark-blue);
			}
		}
    }
}

/* programm */
.programm-page {
	.main-heading {
		min-height: 16.1458vw;
		padding-top: 14.0104vw;
		background: url("../img/programm-icon.png") no-repeat;
		background-size: 13.0208vw 11.6146vw;
		background-position: 46% top;
		
		h2 {
			font-weight: 700;
			font-size: 3.3333vw;
			line-height: 87%;
		}
		h2::after {
			content: '';
			background-image: url('../img/programm-arc.png');
			background-size: 100% auto;
			width: 14.0625vw;
			height: 0.6771vw;
			
		}
	}
}
.program-table {
	margin: 2.0833vw 0;
	padding: 1.6667vw 2.1875vw;
	display: table;
	width: 100%;
	height: 36.1458vw;
	border-collapse: separate;
	color: var(--color-dark-blue);
	background: url("../img/programm-table-border.svg") no-repeat;
	background-size: contain;
	background-position: center center;
}
.program-table.rtbl-1 {
	background-image: url("../img/rates-table1-border.svg");
	height: 20.1vw;
}
.program-table.rtbl-2 {
	background-image: url("../img/rates-table2-border.svg");
	height: 12.6vw;
}

.program-cell.rtbl__cell--rowlabel {
	font-weight: 700;
	text-align: right;
}

.program-row {
	display: table-row;
}
.page-id-1202 .program-cell {
		min-width: 150px;
}
.program-cell {
	display: table-cell;
	padding: 0.5208vw;
	vertical-align: top;
	text-align: center;
/* 	min-width: 150px; */
	font-weight: 400;
	font-size: 1.4583vw;
	line-height: 143%;
}

.program-header .program-cell {
	font-weight: bold;
	text-align: center;
	font-weight: 700;
	font-size: 1.6667vw;
	line-height: 125%;
}

.program-row:not(:last-child) {
	background: url("../img/table-row-bg.svg") no-repeat;
	background-size: contain;
	background-position: bottom center;
}

.program-row.program-header {
	background: url("../img/programm-table-head-bg.svg") no-repeat;
	background-size: contain;
	background-position: bottom center;
}
	.program-location {
		font-size: 1.0417vw;
		line-height: 120%;
	}

	.program-pdf a {
		position: relative;
		margin: 0 auto;
		display: flex;
		flex-direction: row-reverse;
		gap: 0.3646vw;
		align-items: center;
		justify-content: center;
		background: url("../img/pdf-btn-bg.svg") no-repeat;
		background-size: contain;
		background-position: center center;
		color: var(--color-white);
		width: 10.9375vw;
		height: 2.5000vw;
		font-weight: 700;
		font-size: 20px;
	}

	.program-pdf {
		margin-bottom: 6.25vw;
	}

	.program-pdf a::before {
		content: "";
		position: relative;
		top: 0;
		left: 0;
		/*         width: 0.8333vw; */
		/*         height: 0.5208vw; */
		width: 16px;
		height: 10px;
		background: url("../img/back-btn-arrow.svg") no-repeat;
		background-size: contain;
		background-position: center center;
	}

.rates-table:not(:first-child) {
	padding-top: 1.04vw;
}
.rates-table:last-child {
	margin-bottom: 6.4vw;
}
.rates-table__title {
	color: #005B7F;
	font-size: 2.5vw;
	font-weight: 700;
	text-align: center;
}

/* hotels */
.hotels-page {
	color: var(--color-dark-blue);
	
	.hotel-card {
		padding: 1.6667vw;
		width: 66.6667vw;
		height: 21.2500vw;
		background: url('../img/hotel-border.svg') no-repeat;
		background-position: center center;
		background-size: contain;
	}
	
	.hotel-card__inner {
		display: flex;
		flex-direction: row-reverse;
		gap: 2.0833vw;
	}
	
	.hotel-card__logo {
		text-align: center;
		width: 14.4792vw;
		height: 5.9896vw;
	}
	
	.hotel-card__logo img {
		height: 100%;
		width: auto;
	}
	
	.hotel-card__title {
		font-weight: 700;
		font-size: 2.0833vw;
		line-height: 120%;
		margin-bottom: 1.2500vw;
	}
	
	.hotel-card__badge {
		font-weight: 700;
		font-size: 1.0417vw;
	}
	
	.hotel-card__head {
		display: flex;
		justify-content: space-between;
		gap: 1.0417vw;
		margin-bottom: 1.0938vw;
	}
	
	.hotel-card__desc {
		font-weight: 500;
		font-size: 1.2500vw;
		line-height: 133%;
		text-align: justify;
	}
	
	.hotel-card__body {
		display: flex;
		flex-direction: column;
		height: 10.8333vw;
	}
	
	.hotel-card__cta {
		margin-top: auto;
		width: 5.7813vw;
		height: 2.0833vw;
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: center;
		gap: 0.3646vw;
		align-self: flex-end;
		background: url('../img/back-btn-bg.png') no-repeat;
		background-position: center center;
		background-size: contain;
	}
	
	.hotel-card__cta::before {
        content: "";
        position: relative;
        top: 0;
        left: 0;
        width: 0.8333vw;
        height: 0.5208vw;
        background: url("../img/back-btn-arrow.svg") no-repeat;
        background-size: contain;
        background-position: center center;
    }
	
	.hotel-card__cta a {
		font-weight: 700;
		font-size: 0.9375vw;
		text-decoration: underline;
		text-decoration-skip-ink: none;
		color: #fff;
	}
	
	.hotel-card--1 {
		position: relative;
		margin-top: 11.8750vw;
		margin-bottom: 2.0833vw;
	}
	
	.hotel-card--1::before {
		content: '';
		position: absolute;
		top: -12.3958vw;
		left: 50%;
		transform: translateX(-30%);
		background: url('../img/hotels-icon.png') no-repeat;
		background-position: top center;
		background-size: 16.1458vw 12.3958vw;
		display: block;
		width: 16.1458vw;
		height: 12.3958vw;
	}
	
	.hotel-card--2 {
		position: relative;
		margin-bottom: 11.3021vw;
	}
	.hotel-card--2::before {
		content: '';
		position: absolute;
		bottom: -11.3021vw;
		left: 50%;
		transform: translateX(-30%);
		background: url('../img/attention-icon.png') no-repeat;
		background-position: top center;
		background-size: 9.1667vw 11.3021vw;
		display: block;
		width: 9.1667vw;
		height: 11.3021vw;
	}
	
	.hotel-card--2 .hotel-card__badge,
	.hotel-card--1 .hotel-card__badge {
		width:12.2917vw;
		height: 1.6667vw;
		display: flex;
		align-items: center;
		justify-content: center;
		background: url('../img/hotel2-blue-btn-border.svg') no-repeat;
		background-position: center center;
		background-size: contain;
	}
	
/* 	 {
		width: 12.2917vw;
		height: 1.6667vw;
		display: flex;
		align-items: center;
		justify-content: center;
		background: url('../img/hotel2-blue-btn-border.svg') no-repeat;
		background-position: center center;
		background-size: contain;
	} */
	
	/* hotel-card__gallery */
	.hotel-card__gallery-container {
		max-width: 20.8333vw;
	}
	.hotel-card__gallery {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 15.6250vw;
		background: url('../img/hotel-image-border.svg') no-repeat;
		background-position: center center;
		background-size: contain;
		border-radius: 1.2500vw;
		border: 4px solid transparent;
		background-origin: border-box;
	}
	.hotel-card__track {
		display: flex;
		flex-direction: row-reverse;
		transition: transform 0.3s;
		will-change: transform;
	}
	.hotel-card__slide {
		min-width: 100%;
		box-sizing: border-box;
		border-radius: 1.2500vw;
		overflow: hidden;
	}
	
	.hotel-card__dots {
		margin-top: 1.4583vw;
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		gap: 1.2500vw;
		z-index: 2;
		pointer-events: none;
	}

	.hotel-card__dot {
		position: relative;
		background: none;
		border: none;
		padding: 0;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0.7;
		transition: opacity 0.2s;
		pointer-events: auto;
		background: url(../img/blue-dot.svg) center center no-repeat;
		background-size: contain;
		width: 0.8333vw;
		height: 0.8333vw;
	}
	
	.hotel-card__dot::after {
		content: '';
		position: absolute;
		display: block;
		margin: 0 auto;
		top: -0.4167vw;
		left: 90%;
		width: 1.7708vw;
		height: 1.1458vw;
		background: url('../img/arc.svg') no-repeat;
		background-position: top center;
		background-size: 1.7708vw 1.1458vw;
	}
	.hotel-card__dots .hotel-card__dot:last-child::after {
		display: none;
	}
	
	.hotel-card__dots .hotel-card__dot:nth-child(even)::after {
		transform: rotateX(180deg);
		top: unset;
		bottom: -0.4167vw;
	}

.hotel-card__dot.active {
    opacity: 1;
		background: url(../img/pink-dot.svg) center center no-repeat;
		background-size: contain;
}
	
	.hotel-info {
		position: relative;
		background: url('../img/attention-bg.png') no-repeat;
		background-position: center center;
		background-size: contain;
		padding: 1.6667vw;
		width: 66.6667vw;
		height: 23.8542vw;
		margin-bottom: 15.0521vw;
	}
	
	.hotel-info::before {
		content: '';
		position: absolute;
		bottom: -12.5521vw;
		left: 50%;
		transform: translateX(-30%);
		background: url('../img/after-info-bg.png') no-repeat;
		background-position: top center;
		background-size: 14.2708vw 12.5521vw;
		display: block;
		width: 14.2708vw;
		height: 12.5521vw;
	}
	
	.hotel-info__title {
		font-weight: 700;
		font-size: 2.0833vw;
		line-height: 120%;
		margin-bottom: 1.2500vw;
	}
	
	.hotel-info__subtitle {
		font-weight: 700;
		font-size: 1.6667vw;
		line-height: 125%;
		margin-bottom: 0.4167vw;
	}
	
	.hotel-info__list {
		list-style-position: inside;
/* 		margin-right: 1.0417vw; */
		font-weight: 700;
		font-size: 1.2500vw;
		line-height: 133%;
		text-align: justify;
		margin-bottom: 2.9688vw;
	}
	
	.hotel-info__footer {
		max-width: 43.2292vw;
		font-weight: 700;
		font-size: 1.6667vw;
		line-height: 100%;
		text-align: justify;
		color: var(--color-white);
	}
}

/* hotel-spiderweb */
.hotel-spiderweb {
	color: var(--color-dark-blue);
	
	.hotel-spiderweb__title {
		font-weight: 700;
		font-size: 3.3333vw;
		line-height: 87%;
		text-align: center;
		margin-bottom: -5.1250vw;
	}
	
	.hotel-spiderweb__title::after {
		content: '';
		display: block;
		margin: 0 auto;
		top: 0;
		left: 0;
		width: 9.2708vw;
		height: 0.5208vw;
		background: url('../img/spider-title-bg.png') no-repeat;
		background-position: top center;
		background-size: 9.2708vw 0.5208vw;
	}
}

.hotel-spiderweb__grid {
	margin: 1.6667vw 0 6.2500vw;
  	display: grid;
  	grid-template-columns: repeat(6, 1fr);
  	grid-template-rows: auto 8.1771vw auto 5.4167vw auto;
  	width: 100%;
  	gap: 0;
	background: url('../img/spiderweb-bg.svg') no-repeat;
	background-position: center center;
	background-size: 51.2500vw 18.9583vw;
}

.hotel-spiderweb__item {
	width: 17.1875vw;
	font-weight: 500;
	font-size: 1.2500vw;
	line-height: 133%;
}

.hotel-spiderweb__item--pos-1 {
	min-height: 3.3333vw;
	width: 25.9375vw;
  grid-row: 1;
  grid-column: 3 / span 2;
  justify-self: center;
}

.hotel-spiderweb__item--pos-2 { grid-row: 3; grid-column: 1 / span 2; justify-self: start; }
.hotel-spiderweb__item--pos-3 { grid-row: 3; grid-column: 3 / span 2; justify-self: center; }
.hotel-spiderweb__item--pos-4 { grid-row: 3; grid-column: 5 / span 2; justify-self: end; }

.hotel-spiderweb__item--pos-5 { grid-row: 5; grid-column: 2 / span 2; justify-self: start; }
.hotel-spiderweb__item--pos-6 { grid-row: 5; grid-column: 4 / span 2; justify-self: end; }


/* transfers */
.transfers-page {
	.mix-wys-1 {
		position: relative;
		min-height: 26.7188vw;
		padding: 6.3542vw 0 1.6667vw;
		background: url('../img/transfers-icon-bg.png') no-repeat;
		background-position: 31.3542vw top;
		background-size: 13.9063vw 26.7188vw;
	}
	
	.mix-wys-1::after {
		content: '';
		display: block;
/* 		margin: 0 auto; */
		position: relative;
		top: 1.2500vw;
		left: -40%;
		width: 8.8542vw;
		height: 7.8646vw;
		background: url('../img/transfers-secondary-icon.png') no-repeat;
		background-position: center top;
		background-size: 8.8542vw 7.8646vw;
	}
	
	.mix-wys-1 .mix-wys__content {
		font-weight: 400;
		font-size: 1.2500vw;
		line-height: 133%;
		text-align: justify;
	}
	
	.mix-table-4 .program-table,
	.mix-table-8 .program-table {
		margin-bottom: 0;
	}
	
	.mix-wys-5 {
		position: relative;
		min-height: 27.8646vw;
		padding: 6.9271vw 0 0;
		background: url('../img/transfers-icon.png') no-repeat;
		background-position: 58% top;
		background-size: 9.6354vw 27.8646vw;
	}
	
	.mix-wys-9 {
		position: relative;
		min-height: 21.4063vw;
		padding: 6.9271vw 0 0;
		background: url('../img/transfers-icon-1.png') no-repeat;
		background-position: 58% top;
		background-size: 9.6354vw 21.4063vw;
	}
}

/* registration page */
.registration-page {
	color: var(--color-dark-blue);
	
	.info-left {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		
	}
	
	.info-text {
		font-weight: 500;
		font-size: 1.2500vw;
		line-height: 133%;
		text-align: justify;
		max-width: 32.6042vw;
	}
	
	.info-right {
		font-weight: 700;
		font-size: 3.3333vw;
		line-height: 87%;
		text-align: justify;
	}
	
	.registration-top {
		min-height: 22.9167vw;
		padding-top: 9.5313vw;
		background: url('../img/registration-top-bg.png') no-repeat;
		background-size: 13.9063vw 22.9167vw;
		background-position: 59% top;
	}
	
	.colored-blocks {
		display: flex;
		flex-direction: column;
/* 		gap: 11.1979vw; */
	}
	
	.colored-block {
		padding: 1.6667vw 1.6667vw 1.3021vw;
	}
	
	.colored-block--blue {
		min-height: 27.6563vw;
		background: url('../img/registration-blue-box.png') no-repeat;
		background-size: 100% auto;
		background-position: center center;
		
		.colored-block__text {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			height: 15vw;
		}
	}

	.colored-block--green {
		min-height: 39.0104vw;
		padding-top: 12.6563vw;
		background: url('../img/registration-green-box.png') no-repeat, url('../img/registration-green-decor.png') no-repeat;
		background-size: 100% auto, 8.8542vw 11.3542vw;
		background-position: center bottom, 54% top;
		.colored-block__text {
			margin-bottom: 3.1250vw;
		}
	}
	
	.colored-block--red {
		min-height: 39.0104vw;
		padding-top: 12.6563vw;
		background: url('../img/registration-orange-box.png') no-repeat, url('../img/registration-orange-decor.png') no-repeat;
		background-size: 100% auto, 8.8542vw 11.3542vw;
		background-position: center bottom, 54% top;
	}
	
	.colored-block__title {
		font-weight: 700;
		font-size: 2.0833vw;
		line-height: 120%;
		margin-bottom: 1.2500vw;
	}
	
	.colored-block__text {
		font-weight: 500;
		font-size: 1.2500vw;
		line-height: 133%;
		text-align: justify;
		margin-bottom: 2.6042vw;
		
		h3 {
			margin: 1.2500vw 0 0.4167vw;
			font-weight: 700;
			font-size: 1.6667vw;
			line-height: 125%;
		}
		
		ol, ul {
			list-style-position: inside;
			margin-bottom: 1.2500vw;
		}
	}
	
	.colored-block__footer {
		font-weight: 700;
		font-size: 1.6667vw;
		line-height: 120%;
		text-align: justify;
		color: var(--color-white);
/* 		max-width: 19.7917vw; */
	}
	
	.colored-block-links {
		margin: 1.2500vw 0 1.6667vw;
		display: flex;
		gap: 2.0833vw;
		
		a {
			position: relative;
			min-height: 2.9167vw;
/* 			padding-right: 3.9583vw; */
			display: flex;
			align-items: center;
			gap: 1.0417vw;
		}
		
		a::before {
			content: '';
			width: 2.9167vw;
			height: 2.9167vw;
			background: url('../img/registration-link-icon-1.png') no-repeat;
			background-position: center center;
			background-size: 2.9167vw 2.9167vw;
		}
		
		a::after {
			content: '';
			position: absolute;
			bottom: 0.5208vw;
			left: 0;
			width: 13.1250vw;
			height: 0.3125vw;
			background: url('../img/registration-link-arc.png') no-repeat;
			background-position: center center;
			background-size: 13.1250vw 0.3125vw;
		}
	}
}
/* spiderweb */
.spiderweb-block {
	padding-top: 15.0521vw;
	background: url('../img/registration-attention-bg.png') no-repeat;
	background-position: 56% top;
	background-size: 14.2708vw 12.5521vw;	
	
	.spiderweb-block__title {
		font-weight: 700;
		font-size: 3.3333vw;
		line-height: 87%;
		text-align: center;
/* 		margin-bottom: 1.6667vw; */
	}
	
	.spiderweb-block__title::after {
		content: '';
		display: block;
		margin: 0 auto;
		width: 9.2708vw;
		height: 0.5208vw;
		background: url('../img/spider-title-bg.png') no-repeat;
		background-position: center;
		background-size: 9.2708vw 0.5208vw;
		margin-top: 0.5vw;
	}
}

.spiderweb-block__list {
	position: relative;
	margin-top: 0.6667vw;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: auto 8.2813vw auto 6.8229vw auto;
	width: 100%;
	gap: 0;
	background: url('../img/registration-spiderweb.svg') no-repeat;
	background-position: center 3.3333vw;
	background-size: 51.2500vw 18.9583vw;
}

.spiderweb-block__item {
	width: 17.1875vw;
	font-weight: 500;
	font-size: 1.2500vw;
	line-height: 133%;
	text-align: center;
}

.spiderweb-block__item:nth-child(1) {
	width: 25.9375vw;
	grid-row: 1;
	grid-column: 3 / span 2;
	justify-self: center;
}

.spiderweb-block__item:nth-child(2) {
	grid-row: 3;
	grid-column: 1 / span 2;
	justify-self: start;
}

.spiderweb-block__item:nth-child(3) {
	grid-row: 3;
	grid-column: 3 / span 2;
	justify-self: center;
}

.spiderweb-block__item:nth-child(4) {
	grid-row: 3;
	grid-column: 5 / span 2;
	justify-self: end;
}

.spiderweb-block__item:nth-child(5) {
	width: 33.9583vw;
	grid-row: 5;
	grid-column: 2 / span 4;
	justify-self: center;
}

.spiderweb-block-email {
	margin-top: 1.0417vw;
	font-family: 'DIN Condensed';
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.2500vw;
}

/* committee page */ 
.committee-page {
	color: var(--color-dark-blue);
	
	.team-top,
	.committee-top {
		min-height: 19.8958vw;
		padding-top: 9.5313vw;
		background: url('../img/committee-decor.png') no-repeat;
		background-position: 62% top;
		background-size: 16.6667vw 19.8958vw;
	}
	
	.committee-grid {
		margin: 2.9167vw 0 6.2500vw;
		display: grid;
		grid-template-columns: repeat(8, 1fr);
		grid-template-rows: repeat(3, auto);
		gap: 0.5208vw;
		
	}
	
	.committee-card {
		background: url('../img/committee-card-bg.png') no-repeat;
		background-position: center center;
		background-size: 100% auto;
		width: 16.0938vw;
		min-height: 15.6250vw;
		padding: 1.6667vw;
		text-align: center;
		justify-items: center;
		position: relative;
	}
	
	.committee-card:nth-child(1) {
		grid-row: 1;
		grid-column: 2/ span 2;
	}

	.committee-card:nth-child(2) {
		grid-row: 1;
		grid-column: 4/ span 2;
	}
	.committee-card:nth-child(3) {
		grid-row: 1;
		grid-column: 6/ span 2;
	}
	.committee-card:nth-child(4) {
		grid-row: 2;
		grid-column: 1/ span 2;
	}
	.committee-card:nth-child(5) {
		grid-row: 2;
		grid-column: 3/ span 2;
	}
	.committee-card:nth-child(6) {
		grid-row: 2;
		grid-column: 5/ span 2;
	}
	.committee-card:nth-child(7) {
		grid-row: 2;
		grid-column: 7/ span 2;
	}
	.committee-card:nth-child(8) {
		grid-row: 3;
		grid-column: 2/ span 2;
	}
	.committee-card:nth-child(9) {
		grid-row: 3;
		grid-column: 4/ span 2;
	}
	.committee-card:nth-child(10) {
		grid-row: 3;
		grid-column: 6/ span 2;
	}
	
	.committee-card__name {
		font-weight: 700;
		font-size: 2.0833vw;
		line-height: 100%;
		margin-bottom: 0.5208vw;
	}
	.committee-card__role {
		font-weight: 500;
		font-size: 1.2500vw;
		line-height: 133%;
	}
	
	.committee-card__photo {
		width: 6.6667vw;
		height: 6.6667vw;
		background: url('../img/committee-person-bg.png') no-repeat;
		background-position: center center;
		background-size: 100% auto;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 1.5625vw;
	}
	
	.committee-card__photo img {
		width: 5.9375vw;
		height: 5.9375vw;
		border-radius: 50%;
		overflow: hidden;
	}
	
	.info-block {
		display: flex;
		justify-content: space-between;
		
	}
	.info-title,
	.info-text {
		font-weight: 500;
		font-size: 1.2500vw;
		line-height: 133%;
		text-align: justify;
		max-width: 32.6042vw;
	}
	
	.info-title {
		max-width: 27.8125vw;
	}
}

/* team page */
.team-page {
	.team-top {
		background-image: url('../img/team-icon.png');
	}
	
	.team-grid {
		margin: 2.9167vw 0 6.2500vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 1.0417vw; 
	}
	
	.team-card {
		width: 32.8125vw;
		height: 15.4167vw;
		padding: 1.6667vw;
		background: url('../img/team-card-bg.png') no-repeat;
		background-position: center center;
		background-size: 100% auto;
		
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		gap: 1.6667vw;
	}
	
	.team-card__body {
		max-width: 21.5625vw;
	}
	.team-card__name {
		font-weight: 700;
		font-size: 2.0833vw;
		line-height: 100%;
		margin-bottom: 0.8333vw;
	}
	.team-card__role {
		font-weight: 700;
		font-size: 1.6667vw;
		line-height: 125%;
		margin-bottom: 0.5208vw;
	}
	.team-card__bio {
		font-weight: 500;
		font-size: 1.2500vw;
	}
	
	.team-card__photo {
		width: 6.2500vw;
		height: 6.2500vw;
		background: url('../img/committee-person-bg.png') no-repeat;
		background-position: center center;
		background-size: 100% auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.team-card__photo img {
		width: 5.9375vw;
		height: 5.9375vw;
		border-radius: 50%;
		overflow: hidden;
	}
}
.page-id-1527 {
	.team-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: auto auto;
		gap: 1.0417vw;
	}
		
	.team-card:nth-child(1) {
	  grid-column: 2 / 4;
	  grid-row: 1;
	}

	.team-card:nth-child(2) {
	  grid-column: 1 / 3;
	  grid-row: 2;
	}

	.team-card:nth-child(3) {
	  grid-column: 3 / 5;
	  grid-row: 2;
	}
}

/* contact page */
.wpcf7 {
	color: var(--color-dark-blue);
	
	label {
		font-weight: 700;
		font-size: 1.2500vw;
		line-height: 133%;
		margin-bottom: 0.5208vw;
	}
	
	input,
	textarea, select {
		color: var(--color-dark-blue);
		background: transparent;
		padding: 0.5208vw 1.0417vw;
		border-radius: 1.2500vw;
		
		font-weight: 500;
		font-size: 1.0417vw;
		line-height: 160%;
		direction: rtl !important;
	}
	
	input {
		width: 18.9063vw;
		min-height: 2.5000vw;
		background: url(../img/input-border.svg) no-repeat;
		background-size: 100% auto;
	}
	textarea {
		width: 39.8958vw;
		height: 6.8750vw;
		background: url(../img/textarea-border.svg) no-repeat;
		background-size: 100% auto;
		resize: vertical;
	}
	
	input::placeholder,
	textarea::placeholder {
		color: var(--color-dark-blue);	
	}
	
	input[type="submit"] {
		position: relative;
		color: var(--color-white);
		width: 7.8125vw;
		min-height: 2.5000vw;
		background: url(../img/pdf-btn-bg.svg) no-repeat;
		background-position: center center;
		background-size: cover;
		border-radius: 7.5521vw;
		padding-right: 40px;
		text-align: right;
	}
	
	input[type="submit"]::before {
		content: '';
		display: block;
/* 		margin: 0 auto; */
		width: 0.8333vw;
		height: 0.5208vw;
		background: url('../img/arrow-left.png') no-repeat;
		background-position: center center;
		background-size: 100% auto;
	}
	
	.wpcf7-not-valid {
		background: url(../img/input-error-border.svg) no-repeat;
	}
	.wpcf7-not-valid-tip {
		position: absolute;
		bottom: -2.2917vw;
		right: 0;
		margin-top: 0.3125vw;
		color: var(--color-pink);
		display: none;
	}
	
	form .wpcf7-response-output {
		color: var(--color-pink);
		margin-top: 0;
	}
	
	 form.invalid .wpcf7-response-output, 
	 form.unaccepted .wpcf7-response-output, 
	 form.payment-required .wpcf7-response-output {
		border: none;
	}
	
}
.contact-page {
	color: var(--color-dark-blue);
	
	.page-content {
		margin-bottom: 2.6042vw;
	}
	
	#wpcf7-f1611-p1613-o1 {
		width: 44.0625vw;
		height: 37.92vw;
		background: url(../img/contact-form-border.png) no-repeat;
		background-size: 100% auto;
		margin: 2.0833vw auto 0;
		padding: 2.0833vw;
	}
	.cf7-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 2.0833vw;
	}
	
	.field {
		position: relative;
		width: 100%;
	}

	.field--half {
		width: 18.9063vw;
	}
	
	.field-full input {
		width: 39.8958vw;
		background: url(../img/input-long-border.svg) no-repeat;
		background-size: 100% auto;
	}
	
	.actions {
		margin-right: 15.4688vw;
		position: relative;

		.wpcf-arrow {
			position: absolute;
			display: block;
			width: 0.8333vw;
			height: 0.5208vw;
			background: url(../img/arrow-left.png) no-repeat;
			background-position: center center;
			background-size: 100% auto;
			top: 50%;
			right: 6.8125vw;
			transform: translate(200%, -50%);
		}
	}


}
@media screen and (max-width: 600px) {
	h2.page-title {
		font-size: var(--f32);
		margin-bottom: var(--f20);
	}
	.contact-page {

		#wpcf7-f1611-p1613-o1 {
			width: 100%;
			background: url(../img/contact-form-border-mobile.png) no-repeat;
			background-size: 100% auto;
			padding: 5.1282vw;
			height: 192.3077vw;
		}
		.cf7-grid {
			flex-direction: column;
		}

		.field {
			position: relative;
			width: 100%;
			margin: 3.1vw 0;
		}

		.field--half {
			width: 100%;
		}

		.field-full input {
			width: 100%;
			background: url(../img/input-long-border.svg) no-repeat;
			background-size: 100% auto;
		}

		.actions {
			position: relative;
			text-align: center;
			margin-right: 0;

			.wpcf7-spinner {
				position: absolute;
			}
			.wpcf-arrow {
				position: absolute;
				display: block;
				width: 4.1025vw;
				height: 2.5641vw;
				background: url(../img/arrow-left-mobile.png) no-repeat;
				background-position: center center;
				background-size: 100% auto;
				top: 50%;
				right: calc(50% + 19.23vw);
				transform: translate(200%, -50%);
			}
		}


	}
	.wpcf7 {
		input {
			width: 100%;
			height: 12.3077vw;
			font-size: var(--f20);
			padding: 3.8461vw var(--f20);
			background: url(../img/input-border-mobile.png) no-repeat;
			background-size: 100% 100%;
		}
		input.wpcf7-not-valid {
			background: url(../img/input-error-border-mobile.png) no-repeat;
			background-size: 100% 100%;
		}
		label {
			font-size: var(--f24);
			margin-top: 5.1282vw;
		}
		textarea {
			width: 100%;
			height: 30.7692vw;
			background: url(../img/textarea-border-mobile.png) no-repeat;
			background-size: 100% auto;
			padding: 3.8461vw var(--f20);
			font-size: var(--f20);
		}
		input[type="submit"] {
			width: 38.4615vw;
			height: var(--f48);
			line-height: 1;
		}
		form .wpcf7-response-output {
    	font-size: var(--f16);
    	text-align: center;
    	border: 0;
    }
	}
}

.faq-page {
	.content {
		color: var(--color-dark-blue);
		text-align: center;
	}
}

.speaker-text.expanded {
	text-align: justify;
}

@media screen and (min-width: 601px) {
	/* только для тарифных таблиц (rtbl-1, rtbl-2) */
	.program-table.rtbl-1 { display: block; --label-col: max-content; }

	.program-table.rtbl-1 .program-row.program-header.rtbl__row {
		display: grid !important;
		grid-template-columns: max-content repeat(7,1fr);
		width: 100%;
	}
	.program-table .rtbl__row--groups .rtbl__cell--group:empty {
		display: none;
	}
	.program-table.rtbl-1 .program-row.rtbl__row {
		display: grid !important;
		grid-template-columns: max-content repeat(6,1fr);
		width: 100%;
	}
	.program-table.rtbl-1 .rtbl__row--groups .rtbl__cell--group:not(:empty){
		grid-column: span 2;
		display:flex; justify-content:center; align-items:end;
	}
	.program-table.rtbl-1 .rtbl__row--groups .rtbl__cell--spacer,
	.program-table.rtbl-1 .rtbl__row--subcols .rtbl__cell--lefthead { 
		grid-column: 2;
	}
	.program-table.rtbl-1 .rtbl__row .rtbl__cell--rowlabel {
		grid-column: 1;
		min-width: 9.21875vw;
	}
}
