/* Animation START */

.animation {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}
.animation.play {
  opacity: 1;
  transform: translateY(0);
}

.mod-articles-title.play {
	animation: fadeInUp 0.7s both;
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* END */

h1,h2 {
	text-transform: uppercase;
	color: var(--color-4);
}
.fa-light, .fa-brands {
	font-family: icon !important;
}
.mod-articles-image {
	margin: 0;
}
.nav__burger {
	display: none;
}

.content-article ol {
	margin: 16px 0;
}
.content-article ol > li:not(:last-child) {
  margin-bottom: 16px;
}
.content-article ol > li {
	position: relative;
  line-height: 130%;
  display: block;
  counter-increment: list-counter;
  padding: 0 0 0 32px;
}
.content-article ol > li::before {
  display: inline-block;
  content: counter(list-counter);
  position: absolute;
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--color-3);
  color: #fff;
  border-radius: 50%;
  align-content: center;
  text-align: center;
  font-size: 11px;
  line-height: 100%;
  font-weight: 500;
  z-index: 4;
}

.slide-button {
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color-1);
	margin: 0;
}
.slide-button:hover {
	background: var(--color-2);
}
.slide-button:after {
	font-size: 20px;
	color: #fff;
}
.swiper-button-next {
	right: 0;
}
.swiper-button-prev {
	left: 0;
}
.swiper-pagination {
	padding-bottom: 16px;
}
.swiper-pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--border-color);
	opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--color-1);
}

.svg-figure {
	background: #fff;
}
.svg-figure.grey {
	background: #f5f5f5;
}
.svg-figure.red {
	background: var(--color-1);
}
.svg-figure.grey svg path.fill-first {
	fill: #fff;
}
.svg-figure.grey svg path.fill-second {
	fill: #f5f5f5;
}

.svg-figure.red svg path.fill-first {
	fill: #f5f5f5;
}
.svg-figure.red svg path.fill-second {
	fill: var(--color-1);
}
.svg-figure.red.bottom {
	background: #fff;
}
.svg-figure.red.bottom svg path.fill-first {
	fill: var(--color-1);
}
.svg-figure.red.bottom svg path.fill-second {
	fill: #fff;
}

.svg-figure.black.top {
	background: var(--color-2);
}
.svg-figure.black.top svg path.fill-first {
	fill: #fff;
}
.svg-figure.black.top svg path.fill-second {
	fill: var(--color-2);
}
.svg-figure.black.bottom {
	background: #fff;
}
.svg-figure.black.bottom svg path.fill-first {
	fill: var(--color-2);
}
.svg-figure.black.bottom svg path.fill-second {
	fill: #fff;
}

/* Header START */
#header {
	position: relative;
	width: 100%;
	background: transparent;
	height: 60px;
	z-index: 98;
}
#header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	background: #333333d9;
}
#header .logo {
	height: 60px;
	width: 100%;
	max-width: 230px;
}
#header .logo img {
	height: 100%;
	width: auto;
}

.navigation {
	margin-left: auto;
	width: 100%;
	max-width: 80%;
}
.navigation ul {
	justify-content: right;
	height: 100%;
}
.navigation ul > li:not(:last-child) {
	margin-right: 25px;
}
.navigation ul > li > a {
	position: relative;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
}
.navigation ul > li > a:after {
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 2px;
	transition: var(--transition);
	width: 0%;
	content: "";
	background: var(--color-3);
}
.navigation ul > li > a:hover,
.navigation ul > li > a.active {
	color: var(--color-3);
}
.navigation ul > li > a:hover:after,
.navigation ul > li > a.active:after {
	width: 100%;
}
/* Header END */

/* Banner START */
#banner {
	margin-top: -60px;
	height: 100vh;
	overflow: hidden;
}
.banner-item {
	position: relative;
	z-index: 1;
}
.banner-item:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 3;
	content: "";
	background: linear-gradient(#333333d6, #242424b5);
}
.banner-item .container {
	position: relative;
	padding: 100px 15px;
	align-content: center;
	z-index: 4;
	height: 100vh;
	color: #fff;
}
.banner-item .mod-articles-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 2;
}
.banner-item .mod-articles-image img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}
.banner-item .before-title {
	display: inline-block;
	padding: 10px;
	color: var(--color-1);
	background: var(--color-2);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 20px;
}
.banner-item .before-title.play {
	animation: fadeInDown 1s both;
}
.banner-item h1 {
	margin: 40px 0;
	color: #fff;
}
.banner-item h1.play {
	animation: fadeInUp 1.4s both;
}
.banner-item .before-title p:first-child {
	color: var(--color-5);
}
.banner-item .before-title p {
	margin: 0 !important;
	line-height: 140%;
}
.banner-item .custom__btn {
	margin-top: 50px;
	max-width: 300px;
}
.banner-item .content-box.play {
	animation: fadeInUp 1.7s both;
}
.banner-item .custom__btn.play {
	animation: fadeInUp 2s both;
}
/* Banner END */

/* Advantages START */


#advantages {
	position: relative;
	padding: 50px 0 0;
	background: var(--color-1);
	color: #fff;
}
#advantages .row {
	padding-bottom: 40px;
}
#advantages .container.play {
	animation: fadeInUp 0.7s both;
}

#advantages .itembox {
	text-align: center;
}
#advantages .itembox .mod-articles-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 16px;
}
#advantages .itembox figure {
	background: #fff;
	border-radius: 50%;
	padding: 16px;
	width: 75px;
	height: 75px;
	margin: 0 auto 24px;
}

#advantages .svg-figure svg path.fill-first {
	fill: var(--color-1);
}
#advantages .svg-figure svg path.fill-second {
	fill: #fff;
}

/* Advantages END */

/* About us START */

#about-us {
	padding: 50px 0;
}
#about-us h2 {
	text-align: center;
	color: var(--color-1);
}
#about-us h3 {
	font-size: 36px;
	text-transform: uppercase;
	text-align: center;
	margin: 16px 0;
	color: var(--color-2);
}
#about-us .itembox .content {
	font-size: 14px;
	padding: 0 50px;
}
#about-us .itembox .content.play {
	animation: fadeInUp 1s both;
}
#about-us .custom__btn.play {
	animation: fadeInUp 1.3s both;
}
#about-us .custom__btn {
	margin: 24px auto 0;
	max-width: 320px;
}

/* About us END */

/* Video Gallery START */

#video-gallery {
	background: #f5f5f5;
	padding-bottom: 50px;
}
#video-gallery .mod-articles-title {
	text-align: center;
	color: var(--color-1);
	margin-top: 50px;
}
#video-gallery .content div:first-child {
	text-align: center;
	font-size: 36px;
	text-transform: uppercase;
	color: var(--color-2);
	margin: 16px 0;
}
#video-gallery .swiper {
	margin-top: 60px;
}
#video-gallery .swiper-wrapper .item {
	padding: 0 25px;
}
#video-gallery .swiper-wrapper .item iframe {
	width: 100% !important;
}
#video-gallery .swiper-wrapper .item .plyr {
	border-radius: 16px;
	overflow: hidden;
	transition: var(--transition);
}
#video-gallery .swiper-wrapper .item:hover .plyr {
	box-shadow: 0px 5px 10px 2px rgba(225, 225, 225, 0.89);
}

/* END */

/* Announcement START */
#announcement {
	background: var(--color-1);
}
#announcement .mod-articles-title,
#participant .subtitle {
	text-align: center;
	color: #fff;
	margin-top: 50px;
}
#participant .subtitle,
#history .subtitle,
#reviews .subtitle {
	font-size: 1,5em;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	color: var(--color-1);
}
#announcement .content div:first-child,
#participant h2,
#history h2,
#reviews h2,
#gallery h2 {
	text-align: center;
	font-size: 36px;
	text-transform: uppercase;
	color: var(--color-2);
	margin: 16px 0;
}
#participant h2 {
	color: #fff;
}
#announcement .container {
	padding: 0 15px 50px;
}
#announcement .column-2 {
	margin-top: 50px;
}
#announcement .itembox {
	display: flex;
	flex-wrap: wrap;
	transition: var(--transition);
}
#announcement .itembox:hover {
	box-shadow: 0px 15px 15px -12px rgba(0, 0, 0, 0.7);
}
#announcement .itembox .content {
	width: 50%;
	background: var(--color-4);
	padding: 20px;
	color: #fff;
}
#announcement .itembox .content h4 {
	text-transform: uppercase;
	text-align: center;
	font-size: 22px;
	margin-bottom: 16px;
}
#announcement .itembox .content .field {
	font-weight: 300;
	margin-bottom: 16px;
	color: var(--color-3);
}
#announcement .itembox .content .field:not(:first-child) {
	border-bottom: 1px dotted var(--border-color);
	padding-bottom: 10px;
}
#announcement .itembox .content .field span {
	padding-top: 5px;
	display: block;
	color: #fff;
	font-weight: 400;
}
#announcement .itembox .content .field.location {
	text-align: center;
	text-transform: uppercase;
}
#announcement .itembox .content .field.location span {
	color: var(--color-1);
	font-weight: 600;
}
#announcement figure {
	width: 50%;
	height: 100%;
}
#announcement figure img {
	width: 100%;
	height: 100%;
	object-position: cover;
	object-position: center;
}
#how {
	padding: 50px 0;
}
/* Announcement END */

/* participant START */

#participant {
	background: var(--color-2);
}
#participant .container {
	padding: 0 15px 50px;
}
#participant .column-3 {
	margin-top: 50px;
}
#participant .item {
	position: relative;
	min-height: 470px;
	align-content: end;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}
#participant .item:hover {
	box-shadow: 0px 0px 15px 15px rgba(0, 0, 0, 0.36);
	scale: 1.03;
}
#participant .item .intro__txt {
	height: 0;
	visibility: hidden;
	opacity: 0;
	font-size: 14px;
	transition: all 0.2s ease-in-out;
}
#participant .item:hover .intro__txt {
	margin-top: 10px;
	height: auto;
	visibility: visible;
	opacity: 1;
}
#participant .item figure {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
#participant .item figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#participant .item .inner-wrapper {
	height: 100%;
	position: relative;
	padding: 20px;
	transition: all 0.2s ease-in-out;
	z-index: 4;
}
#participant .item .age {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 4;
	display: inline-block;
	background: var(--color-2);
	color: #fff;
	padding: 5px 10px;
	font-weight: 600;
}
#participant .item .bottom {
	position: relative;
	padding: 16px;
	color: var(--color-2);
	transition: all 0.2s ease-in-out;
}
#participant .item .bottom:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--body-bg);
	opacity: 0.6;
	z-index: -1;
}
#participant .item .tags li {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
#participant .item .mod-articles-title {
	margin: 10px 0;
}
#participant .item .name {
	font-size: 18px;
	font-weight: 700;
	margin: 10px 0;
}
#participant .item .name span {
	font-weight: 500;
}
#participant .item .findes {
	font-size: 13px;
	text-transform: uppercase;
}
#participant .item .custom__btn {
	margin: 10px 0 0 auto;
	text-transform: uppercase;
	max-width: 160px;
}
/* END */

/* History START */
#history {
	padding: 50px 0;
}
#history h2 {
	margin-bottom: 50px;
}
#history .swiper-slide {
	padding: 0 90px;
	text-align: center;
}
#history .itembox .date {
	color: var(--color-1);
	text-transform: uppercase;
	font-weight: 600;
}
#history .itembox .name {
	text-transform: uppercase;
	font-size: 27px;
	font-weight: 700;
	margin: 10px 0;
	color: var(--color-2);
}
#history .itembox .intro__txt {
	margin-bottom: 16px;
}
#history .itembox .price {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-2);
	text-transform: uppercase;
}
#history .itembox .custom__btn {
	text-transform: uppercase;
	max-width: 250px;
	margin: 20px auto 0;
}
/* END */

/* Reviews START */
#reviews {
	background: #f5f5f5;
}
#reviews .subtitle {
	margin-top: 50px;
}
#reviews h2 {
	margin-bottom: 24px;
}
#reviews .category-desc {
	text-align: center;
	margin: 0 auto 50px;
	max-width: 500px;
}
#reviews .category-desc p {
	margin: 0 !important;
}
#reviews .swiper-slide {
	padding: 0 25px;
}
#reviews .swiper {
	padding: 40px 0;
}

#reviews .itembox {
	text-align: center;
	padding: 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0px 5px 20px 0px rgba(221, 221, 221, 0.55);
}
#reviews .itembox figure {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 6px solid #e1e1e1;
	overflow: hidden;
	z-index: 1;
	margin: 0 auto 16px;
}

#reviews .itembox figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#reviews .itembox .name {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-2);
	margin-bottom: 16px;
}
/* Reviews END */

/* Gallery START */

#gallery {
	background: var(--color-1);
	padding-bottom: 50px;
}
#gallery h2 {
	padding-top: 50px;
	margin: 0;
	color: #fff;
}
#gallery .intro__txt {
	max-width: 500px;
	margin: 20px auto 50px;
	color: #fff;
	text-align: center;
}
#gallery .swiper-slide {
	overflow: hidden;
	border-radius: 20px;
}

/* Gallery END */

/* Footer START */

#footer {
	background: var(--color-2);
	color: #fff;
}
#footer .svg-figure.black.top svg path.fill-first {
	fill: var(--color-1);
} 
#footer .container {
	padding: 50px 15px;
}
#footer .our-contacts {
	text-transform: uppercase;
	margin-bottom: 16px;
	color: var(--border-color);
}
#footer .contacts li {
	position: relative;
	display: block;
	padding-left: 40px;
}
#footer .contacts li:not(:last-child) {
	margin-bottom: 16px;
}
#footer .contacts li > a {
	display: inline-block;
	color: var(--color-3);
}
#footer .contacts li > a:hover {
	color:var(--border-color);
}
#footer .contacts li .icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	display: block;
	width: 20px;
	text-align: center;
}
#footer .social {
	gap: 12px;
	margin-top: 16px;
}
#footer .social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--color-1);
	border-radius: 6px;
	color: #fff;
	font-size: 26px;
}
#footer .social a:hover {
	background: var(--color-3);
}
#footer form {
	background: var(--color-4);
	padding: 20px;
	border-radius: 20px;
}
#footer form legend {
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 10px;
}
#footer form span.txt {
	display: block;
	font-size: 14px;
	text-align: center;
	line-height: 120%;
	margin-bottom: 16px;
	color: var(--border-color);
}
#footer form .field__group {
	margin-bottom: 10px;
}
#footer form .field__group input {
	height: 40px;
	border-color: transparent;
	border-radius: 6px;
}
#footer form a {
	color: var(--border-color);
}
.checked-group {
	margin: 16px 0;
}
.checked-group input {
    display: none;
}
.checked-group label {
    position: relative;
    padding-left: 44px;
    font-size: 12px;
    line-height: 115%;
    display: block;
}
.checked-group label {
    color: #fff;
    cursor: pointer;
    line-height: 130%;
}
.checked-group label > a {
    color: var(--color-1);
    display: inline;
    text-decoration: underline;
    text-underline-position: under;
}
.checked-group a:hover {
	color: var(--color-3) !important;
}
.checked-group label:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-1);
    border-radius: 4px;
}
.checked-group label:after {
    position: absolute;
  left: 5px;
  top: 4px;
  font-family: icon;
  content: "\f00c";
  transition: all 0.2s ease-in-out;
  font-size: 1px;
  color: var(--color-1);
  opacity: 0;
}

.checked-group input:checked + label:after {
    opacity: 1;
    font-size: 14px;
}

#footer .mod-articles-item {
	text-align: center;
	color: #fff;
}
#footer .mod-articles-item .mod-articles-title {
	font-size: 27px;
	color: #fff;
	margin-bottom: 16px;
}
#footer .mod-articles-item blockquote {
	font-size: 13px;
	color: var(--border-color);
}

/* Footer END */

/* Inner Page START */

.inner-page {
	padding: 120px 0 50px;
	min-height: 100vh;
}
.inner-page .page-header h1 {
	font-size: 36px;
	margin-bottom: 40px;
}
div.main-wrapper {
	position: relative;
	margin-top: -60px;
	z-index: 1;
}
div.main-wrapper:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: var(--color-2);
	content: "";
	z-index: 2;
}
.inner-page .article-info {
	display: none;
}

/* Inner Page END */

