@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}


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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  line-height: 1;
  background-color: #ffffff;
  color: #20201b;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  font-weight: 400;
}

body.overflow {
  overflow: hidden;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a[href^="tel:"],
a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  min-width: 38px;
  min-height: 38px;
}

p {
  line-height: 24px;
}

@media (hover: hover) {
  p a:hover {
    text-decoration: underline;
  }

  .link:hover {
    text-decoration: underline;
  }
}

h1 {
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  font-weight: 800;
}

h2 {
  font-size: 46px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 800;
  color: #001CB3;
}

b,
strong {
  font-weight: 700;
  color: #001CB3;
}

.warning_section h2,
.white_title h2 {
  color: #FFFFFF;
}


button,
input,
select,
textarea {
  outline: none;
}

.flex_center ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.container {
  position: relative;
  max-width: 1360px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
}

.inner_container {
  position: relative;
  max-width: 1360px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin: 0 auto;
}

.container.single_news {
  max-width: 1080px;
}


@media (max-width: 900px) {
  .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}


.bottom_nav,
.list_horizont,
.header_center,
.offer_left,
.offer_list,
.offer_right,
.menu_container,
.counter_container,
.header_right,
.header_left,
.grid_list,
.center_title,
.social_list li a,
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.error {
  border: 1px solid rgb(255, 36, 84) !important;
  background-color: rgba(255, 36, 83, 0.255) !important;
}

.success {
  border: 1px solid rgb(31, 253, 123) !important;
  background-color: rgba(31, 253, 124, 0.201) !important;
}

.flex_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 99;
  -webkit-box-shadow: 5px 5px 20px #0202020d;
  box-shadow: 5px 5px 20px #0202020d;
}

@media (max-width: 900px) {

  header .container,
  footer .container {
    margin-left: 10px;
    margin-right: 10px;
  }
}


.scroll-hide {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.scroll-hide.hide {
  display: none;
}

.top_nav {
  padding: 16px 0;
}

.top_nav,
.offer {
  padding: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
}

.hide-none {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes scale-animation {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-animation {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.bottom_nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bottom_nav.change {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
}

.offer_icons {
  display: flex;
  flex-shrink: 0;
}

.offer_icon {
  flex-shrink: 0;
  margin-right: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}


@media (hover: hover) {
  .marquee:hover .marquee-content {
    animation-play-state: paused;
  }

  .marquee:hover .marquee-logo {
    filter: grayscale(1) contrast(0) blur(1px);
  }

  .offer_icon:hover .marquee-logo {
    filter: unset;
  }
}

.marquee-logo {
  filter: grayscale(1) contrast(0);
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: 120px;
  height: auto;
}

@-webkit-keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.bottom_nav.change .header_list {
  -ms-grid-column-span: 8;
  grid-column: span 8;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bottom_nav.change .hide-none {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation-name: scale-animation;
  animation-name: scale-animation;
}

.bottom_nav.change .hide-none:last-child {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.bottom_nav .logo_block img {
  width: 160px;
}

.logo_adaptive {
  display: none;
}

.header_center {
  -ms-grid-column-span: 4;
  grid-column: span 4;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_right,
.header_left {
  -ms-grid-column-span: 4;
  grid-column: span 4;
}

.menu_container {
  cursor: pointer;
  width: 30px;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.menu_container.active::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -8px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background-color: #001CB3;
}

.menu_container.active span {
  background-color: transparent;
  width: 0;
  height: 0;
}

.menu_container.active span::after {
  content: "";
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
  background-color: #fff;
}

.menu_container.active span::before {
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 10px;
  background-color: #fff;
}

.menu_container span {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #001CB3;
  height: 3px;
  width: 100%;
  border-radius: 4px;
}

.menu_container span::after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 0;
  border-radius: 4px;
  left: 0;
  width: 100%;
  background-color: #001CB3;
  height: 3px;
}

.menu_container span::before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  bottom: 0;
  border-radius: 4px;
  left: 0;
  width: 100%;
  background-color: #001CB3;
  height: 3px;
}

.offer_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.hide-menu {
  display: none;
}

.hide-menu svg {
  width: 30px;
  height: 30px;
  fill: #20201b;
}

.logo_block {
  position: relative;
}

.logo_block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header_right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mobile_menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #fff;
  z-index: 90;
  flex-direction: column;
  align-items: center;
  transform: translateY(-110%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 900px) {
  .mobile_menu {
    display: flex;
  }
}

.mobile_menu.show {
  transform: translateY(0);
}

.header_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_list li a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 16px 12px;
  font-weight: 500;
}

@media (hover: hover) {
  .header_list li a:hover {
    background-color: #001cb3;
    color: #fff;
  }
}

.nav_wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #cdcdcd;
}

.hide-none {
  display: none;
}

.hide-none.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav_wrap.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}

.info_list {
  margin-top: 20px;
}

.info_list li {
  position: relative;
  margin: 15px 0;
  padding-left: 8px;
  font-size: 18px;
  text-decoration: none;
}

.info_list li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -3px;
  width: 25px;
  height: 25px;
  background-image: url("../img/wheat.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social_list li a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 50%;
  padding: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #001cb3;
}

.header_left .social_list li a {
  border: none;
  border-radius: 16px;
}


.social_list li a svg {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 24px;
  height: 24px;
  fill: #001cb3;
}

.social_list li a span {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (hover: hover) {

  .social_list li a:hover {
    background-color: #001cb3;
  }

  .social_list li a:hover svg,
  .social_list li a:hover span {
    fill: #ffffff;
    color: #ffff;
  }
}

.bottom_nav.change .menu-primary-menu-container {
  -ms-grid-column-span: 8;
  grid-column: span 8;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

iframe {
  width: 100%;
}

.offer_list {
  font-size: 20px;
}

.current_page_item {
  background-color: #f3f3f3;
  color: #001cb3;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-width: fit-content;
  max-width: 350px;
  max-height: 60px;

  padding: 16px 32px;
  border: none;
  border-radius: 10px;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;
  user-select: none;
  appearance: none;

  transition:
    transform 0.12s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    color 0.15s ease;
}

@media (max-width: 480px) {
  .btn {
    font-size: 14px;
    padding: 16px;
    white-space: normal;
    height: auto;
    max-height: none;
    text-align: center;
  }
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}


.btn_main {
  position: relative;
  overflow: hidden;
  background: #1e3fe8;
  color: #ffffff;
  box-shadow:
    0 2px 8px rgba(30, 63, 232, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@media (hover: hover) {
  .btn_main:hover {
    background: #1530c4;
    box-shadow:
      0 6px 20px rgba(30, 63, 232, 0.5),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
}

.btn_main:active {
  box-shadow: none;
}

.btn_main svg {
  padding: 3px;
  border-radius: 50%;
  fill: #fff;
  background: rgba(255, 255, 255, 0.22);
}


.btn_main.animated_btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.5) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent);

  transform: translateX(-100%) skewX(-45deg);
  animation: move-light 3.2s infinite;

  pointer-events: none;
}

.sec_btn {
  background: #fee600;
  color: #000000;

  box-shadow:
    0 4px 15px rgba(254, 230, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media (hover: hover) {
  .sec_btn:hover {
    background: #ffeb33;
    box-shadow: 0 8px 25px rgba(254, 230, 0, 0.3);
  }
}

.sec_btn {
  --pulse-color: rgba(254, 230, 0, 0.6);
}

.btn_main {
  --pulse-color: rgba(69, 97, 253, 0.6);
}

@media screen and (max-width: 525px) {
  .sec_btn {
    font-size: 16px;
  }

  .btn_main {
    font-size: 16px;
  }
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes move-light {
  0% {
    transform: translateX(-120%) skewX(-45deg);
  }

  20% {
    transform: translateX(120%) skewX(-45deg);
  }

  100% {
    transform: translateX(120%) skewX(-45deg);
  }
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--pulse-color);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn_scale {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(0, 28, 179, 0.39);
}

@media (hover: hover) {
  .btn_scale:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px 0 rgba(69, 97, 253, 0.45),
      0 0 10px rgba(69, 97, 253, 0.2);
    border-color: #a5b4ff;
  }
}

.btn_scale:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 28, 179, 0.4);
}

.text-accent {
  color: #fee600;
}

main {
  position: relative;
}

@media (max-width: 900px) {
  main {
    position: relative;
    margin-top: 80px;
  }

  main>section:not(:first-of-type) {
    max-width: 100% !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}

.conditions_container {
  margin-top: 60px;
}

@media (max-width: 900px) {
  .conditions_container {
    margin-left: 10px;
    margin-right: 10px;
  }

  .conditions_container .sec_container {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}

.content {
  z-index: 5;
}

.main_offer {
  position: relative;
  height: 80vh;
  background: linear-gradient(0deg, #00116fb5 0%, #4561fd73 100%), url("../img/home-hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.main_offer.location-offer {
  background-image: linear-gradient(0deg, #00116fb5 0%, #4561fd73 100%), url("../img/hotel.webp");
}

.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  background: -o-linear-gradient(283deg, #0a607f79 0%, rgba(25, 19, 45, 0.709) 100%);
  background: linear-gradient(167deg, #0a607f79 0%, rgba(25, 19, 45, 0.709) 100%);
}

.offer_left {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}

@media (max-width: 900px) {
  .offer_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.offer_right {
  -ms-grid-column-span: 0;
  grid-column: span 0;
}

.offer_left,
.offer_right {
  height: 80vh;
}

.offer_title {
  color: #fff;
}

.offer_title h1 {
  margin-top: 20px;
}

.offer_title small {
  font-weight: 300;
}

.offer_list {
  gap: 10px;
  width: max-content;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px dashed rgb(255 255 255 / 80%);
  transition: all 0.4s ease-in-out;
  list-style: none;
}

.offer_list li:first-child {
  position: relative;
  margin-left: 35px;
}

.offer_list li:first-child::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 47%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url('../img/calendar.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.offer_list li:last-child {
  position: relative;
  margin-left: 35px;
}

.offer_list li:last-child::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url('../img/location.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.offer_descr {
  margin-top: 20px;
  font-weight: 300;
}

.offer_content a {
  margin-top: 30px;
}


@media (max-width: 650px) {

  .offer_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .offer_title h1 {
    text-align: center;
  }

  .offer_list {
    justify-content: center;
  }

  .offer_descr {
    text-align: center;
  }
}

.sec_container {
  margin: 120px 0;
}

.sec_container:first-of-type {
  margin-top: 60px;
}

.sec_container_inner {
  margin: 0;
  padding: 120px 0;
}

.sec_container.about {
  margin: 60px 0;
  margin-bottom: 0;
}


.first_container {
  margin-top: 60px;
  margin-bottom: 120px;
}

.top_container {
  margin-top: 120px;
}

.bott_container {
  margin-bottom: 120px;
}

.center_title {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.left_title {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.white_title {
  color: #fff;
}

.grey_section .white_title small::after,
.grey_section .white_title small::before {
  background-color: #000;
}

.white_title small::after,
.white_title small::before {
  background-color: #fff;
}

.lines_small::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 8px;
  width: 30px;
  height: 2px;
  background-color: #20201b;
  border-radius: 4px;
}

.lines_small::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 8px;
  width: 30px;
  height: 2px;
  background-color: #20201b;
  border-radius: 4px;
}

.line_small ::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 8px;
  width: 30px;
  height: 2px;
  background-color: #20201b;
  border-radius: 4px;
}

.content_title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content_title small {
  margin-bottom: 8px;
  font-weight: 300;
  position: relative;
  display: block;
}

.content_title p {
  margin: 24px 0 16px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .content_title p {
    margin: 16px 0 0px;
    font-weight: 300;
  }
}

.counter_container {
  margin-top: 40px;
  border-radius: 6px;
}

.counter_container small {
  color: #20201b;
  font-size: 50px;
  position: relative;
  top: -10px;
}

.grey_section {
  background-color: #f6f6f6;
  padding: 120px 0;
}

.grey_section h2 {
  color: #001CB3 !important;
}

.glass_bg .white_title h2 {
  color: #001CB3 !important;
}

.grey_section p,
.grey_section small {
  color: #000 !important;
}

.grey_section small {
  font-weight: 500;
}

.grey_section p {
  font-size: 18px;
  font-weight: 500;
}

.warning_section {
  background-image: -o-linear-gradient(310deg, #00189a 0%, #334de0 100%);
  background-image: linear-gradient(310deg, #00189a 0%, #334de0 100%);
  padding: 120px 0;
}

@media (max-width: 900px) {
  .warning_section {
    border-radius: 12px;
  }
}

.dark_section {
  background-color: #e79129;
  padding: 120px 0;
}

.section-no-bottom {
  padding-bottom: 0 !important;
}

.left_content {
  padding: 0 10px;
}

.conditions_container .left_content p {
  color: #000 !important;
  position: relative;
}

.left_content p {
  max-width: 600px;
}

.left_content .btn {
  margin-top: 30px;
}

.right_content form,
.right_content form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.right_content label {
  margin: 8px 0;
}

.right_content label input,
.right_content label textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  margin: 8px 0;
  background-color: #ffffff3a;
  color: #fff;
  border: 1px solid #fff;
}

.right_content label input:focus,
.right_content label textarea:focus {
  background-color: #ffffff13;
  border: 1px solid #ffffff8f;
}

.right_content label input::-webkit-input-placeholder,
.right_content label textarea::-webkit-input-placeholder {
  color: #fff;
}

.right_content label input:-ms-input-placeholder,
.right_content label textarea:-ms-input-placeholder {
  color: #fff;
}

.right_content label input::-ms-input-placeholder,
.right_content label textarea::-ms-input-placeholder {
  color: #fff;
}

.right_content label input::-webkit-input-placeholder,
.right_content label textarea::-webkit-input-placeholder {
  color: #fff;
}

.right_content label input::-moz-placeholder,
.right_content label textarea::-moz-placeholder {
  color: #fff;
}

.right_content label input:-ms-input-placeholder,
.right_content label textarea:-ms-input-placeholder {
  color: #fff;
}

.right_content label input::-ms-input-placeholder,
.right_content label textarea::-ms-input-placeholder {
  color: #fff;
}

.right_content label input::placeholder,
.right_content label textarea::placeholder {
  color: #fff;
}

.right_content label textarea {
  max-height: 200px;
  min-height: 100px;
  resize: vertical;
}

.col_counter {
  box-sizing: border-box;
  cursor: pointer;
  padding: 20px 50px;
  flex: 1 1 200px;
  max-width: 300px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  margin: 10px 16px;
  border-radius: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #001cb3;
  animation: pulse 5s infinite;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.col_counter {
  background: linear-gradient(270deg, #001cb3, #0077ff, #001cb3);
  animation:
    pulse 5s infinite ease-in-out,
    meshGradient 8s ease infinite;
  background-size: 400% 400%;
}

@keyframes meshGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (hover: hover) {
  .col_counter:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(30, 63, 232, 0.3);
  }
}

.col_counter span {
  font-size: 120px;
  font-weight: 700;
  color: #fff;
}

.col_text {
  text-transform: uppercase;
  color: #fff;
}

.col_message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #001CB3;
}

.col_message {
  font-size: 26px;
  line-height: 32px;
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 768px) {

  .col_counter,
  .col_counter::before,
  .col_counter::after {
    animation: none !important;
    transition: none !important;
  }

  .col_counter:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

.item_column {
  width: 100%;
}

.item_column img {
  width: 25%;
}

.column_content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
}

.grid {
  width: 100%;
}

.grid::after {
  content: "";
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 47%;
}

.grid-item {
  float: left;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.grid-item figure {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 10px;
}

.grid-item figure img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.grid-item figure figcaption {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #361e01;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(36, 20, 1, 0.313)), to(rgba(0, 0, 0, 0.039)));
  background: -o-linear-gradient(bottom, rgba(36, 20, 1, 0.313) 0%, rgba(0, 0, 0, 0.039) 100%);
  background: linear-gradient(0deg, rgba(36, 20, 1, 0.313) 0%, rgba(0, 0, 0, 0.039) 100%);
}


.grid-item figure figcaption::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 28, 179, 0.4) 0%, rgba(0, 7, 46, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

.grid-item:hover figcaption::after {
  opacity: 1;
}

.grid-item figcaption::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 40px;
  background-image: url("../img/viewing.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.grid-item:hover figcaption::before {
  opacity: 1;
}

.grid-item figure figcaption span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
}


.fullscreen-image {
  position: fixed;
  top: 0;
  z-index: 100;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fullscreen-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
}

.fullscreen-container {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.fullscreen-container span {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #001cb3;
  width: 35px;
  height: 35px;
  padding: 8px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.fullscreen-container span svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@media (hover: hover) {
  .fullscreen-container span:hover {
    background-color: #0328f8;
    color: #fff;
  }
}

.grid_column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

.grid_news {
  flex: 0 1 calc(33.333% - 16px);
  box-sizing: border-box;
}

.grid_news {
  display: flex;
  flex-direction: column;
  padding: 15px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) {

  .grid_news:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 24, 159, 0.15);
    border-color: rgba(0, 24, 159, 0.1);
  }

  .grid_news:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.grid_news figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.grid_news .grid_text {
  font-size: 14px;
  text-align: left;
}

.grid_news figure .grid_wrapper {
  width: 100%;
  height: 300px;
}

.grid_item figure figcaption {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.grid_news figure figcaption {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.grid_item figure figcaption small {
  margin-bottom: 12px;
  font-weight: 300;
  font-size: 14px;
  position: relative;
}

.grid_item figure figcaption small::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 8px;
  width: 20px;
  height: 1px;
  background-color: #000;
}

.grid_item figure figcaption small::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 20px;
  height: 1px;
  background-color: #000;
}

.grid_wrapper {
  border-radius: 4px;
  overflow: hidden;
  height: 300px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.grid_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.grid_name {
  font-size: 22px;
  font-weight: 800;
  background-image: -o-linear-gradient(140deg, #001cb3 0%, #4561fd 100%);
  background-image: linear-gradient(310deg, #001cb3 0%, #4561fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news_name {
  font-size: 18px;
  text-align: left !important;
  font-weight: 800;
  line-height: 22px;
  text-transform: uppercase;
}

.news_date {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

@media (hover: hover) {
  .grid_news:hover .news_name {
    color: #001cb3;
  }
}

.grid_text {
  color: #606060;
  font-weight: 300;
  font-size: 15px;
  text-align: center;
  max-width: 300px;
  margin-top: 12px;
  line-height: 18px;
}

.more_spikers {
  margin-top: 60px;
}

.organizators {
  background: url("../img/organizators-main.webp");
}

.organizators_about {
  background: url("../img/organizators-about.webp");
}

.themes {
  background: url("https://bakeryindustry.com.ua/wp-content/uploads/2024/03/theme-banner.webp");
}

.pr_sponsor_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.pr_sponsor_img img {
  border: 1px solid #e0e0e0;
  max-width: 100%;
  border-radius: 10px;
  height: auto;
}

.inform {
  background: url("../img/roman-kraft-_Zua2hyvTBk-unsplash.webp");
}



.image_section {
  padding: 120px 0;
  position: relative;
  color: #fff;
  background-size: cover;
  background-repeat: none;
  background-position: center center;
  background-color: #001bb3;
  overflow: hidden;
}

@media (max-width: 992px) {
  .image_section {
    border-radius: 12px;
  }
}

.image_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(310deg, #001bb3a4 0%, #4561fdaf 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
  z-index: 0;
}

.background_section {
  position: relative;
  background-size: cover;
  background-repeat: none;
  background-position: center center;
  overflow: hidden;
}

.background_section::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  inset: 0;
  opacity: 0.5;
  z-index: 0;
}

.background_section_var_1::before {
  background-color: #f6f6f6 !important;
  background-image: url("../img/organizators-bg2.webp");
  filter: brightness(0.7);
}

.background_section_var_2::before {
  background-position: top center;
  background-image: url("../img/white-bg2.webp");
  background-size: contain;
}

.background_section_var_3::before {
  background-position: 0px center;
  background-image: url("../img/white-bg3.webp");
  background-size: contain;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .background_section_var_3::before {
    display: none;
  }
}

.glass_bg {
  background: rgb(255 255 255 / 18%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
  padding: 30px;
  border-radius: 16px;
}


.logos_container {
  margin-top: 40px;
}

.white_title h2 {
  color: #fff !important;
  z-index: 1;
}

.logos_container ul {
  display: flex !important;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none !important;
  padding: 0 20px;
}

.logos_container ul li {
  flex: 0 1 320px;
  list-style: none !important;
  margin: 0 !important;
}

.logos_container ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.logos_container ul li a span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff !important;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.logos_container ul li a span.org_subtitle {
  font-size: 18px;
}

.logos_container ul li a div {
  position: relative;
  width: 100%;
  height: 220px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background-color: #ffffff;
  padding: 20px;
  border: 5px solid #fee600;
  margin: 10px;
  overflow: hidden;
}

.logos_container ul li {
  flex: 0 1 350px;
}

.logos_container ul li.accent_block a div {
  border: 5px solid #007AFF;
}

.logos_container ul li.accent_block a div {}

.logos_container ul li a img {
  width: 75%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) {
  .logos_container ul a:hover .org_title::after {
    width: 100%;
  }

  .logos_container ul a:hover .org_title {
    transform: translateY(0);
  }

  .logos_container ul a:hover div {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #fee600;
    transform: translateY(-10px);
  }

  .logos_container ul a:hover img {
    opacity: 1;
    transform: scale(1.05);
  }
}

.logos_container .org_title {
  color: #fff;
}

.org_title {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  color: #333;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.org_title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #fee600;
  border-radius: 3px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.logos_container ul li.accent_block .org_title::after {
  background: #007AFF;
}

.organizators_local .logos_container ul li a span {
  color: #000 !important;
}

.organizators_local .logos_container ul a div {
  border-color: #fee600;
}

.organizators_local .logos_container ul a:hover div {
  border-color: #fecb00;
}

.organizators_local .org_title::after {
  background: #fecb00;
}

.organizators_local .logos_container ul li.accent_block a:hover div {
  border-color: #007AFF;
}

.logos_container.sec_logos ul li a span {
  margin-top: 12px;
  margin-bottom: 0;
}


@media screen and (max-width: 900px) {

  .logos_container {
    margin-top: 20px;
  }

  .logos_container ul {
    gap: 25px;
  }

  .logos_container ul li {
    flex: 0 1 220px;
    width: 100%;
  }

  .logos_container ul li a div {
    height: 160px;
    margin: 0px;
    padding: 10px;
  }

  .logos_container.sec_logos ul li a div {
    height: 200px;
  }

  .logos_container ul li a span.org_subtitle {
    font-size: 16px;
  }

  .logos_container ul li a img {
    opacity: 1;
  }

}

@media (max-width:540px) {

  .logos_container ul img {
    width: 80%;
  }
}

.grid_list {
  max-width: 800px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.grid_list ul li {
  padding: 24px 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 0.5px solid #fff;
  position: relative;
}

@media (hover: hover) {
  .grid_list ul li:hover {
    background: #fff;
    color: #20201b;
    -webkit-box-shadow: 5px 5px 20px #2f2f2f44;
    box-shadow: 5px 5px 20px #2f2f2f44;
  }
}

.grid_list ul li span:first-child {
  font-size: 30px;
  font-weight: 800;
  margin-right: 24px;
}

.grid_list ul li span:last-child {
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  line-height: 22px;
}

.slider_logos {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.slider_logos>* {
  flex: 0 1 calc(25% - 22.5px);
}

.slider_logos> :nth-child(1),
.slider_logos> :nth-child(2) {
  flex: 0 1 calc(50% - 15px);
}

.slider_item {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  perspective: 1000px;
}

.slider_name {
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider_wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider_logos> :nth-child(1) .slider_wrapper,
.slider_logos> :nth-child(2) .slider_wrapper {
  height: 320px;
}

.slider_wrapper img {
  width: 70%;
  height: 160px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider_item p {
  margin-top: 15px;
  font-weight: 500;
  font-size: 18px;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider_item p::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #007AFF;
  transition: all 0.3s ease;
  border-radius: 3px;
  transform: translateX(-50%);
}

@media (hover: hover) {
  .slider_item:hover {
    transform: translateY(-10px);
  }

  .slider_item:hover .slider_wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #007AFF;
    background: #fff;
  }

  .slider_item:hover img {
    opacity: 1;
    transform: scale(1.05);
  }

  .slider_item:hover .slider_name {
    color: #007AFF;
  }

  .slider_item:hover p {
    position: relative;
    transform: translateY(0);
  }

  .slider_item:hover p::after {
    width: 100%;
  }
}

@media (max-width: 900px) {

  .slider_logos {
    margin-top: 30px;
    gap: 16px;
  }

  .slider_logos>* {
    flex: 1 1 calc(50% - 8px);
  }

  .slider_logos> :nth-child(1),
  .slider_logos> :nth-child(2) {
    flex: 1 1 calc(50% - 8px);
  }

  .slider_wrapper {
    height: 180px;
    border-color: #007AFF;
    background: #fff;
  }

  .slider_logos> :nth-child(1) .slider_wrapper,
  .slider_logos> :nth-child(2) .slider_wrapper {
    height: 180px;
  }

  .slider_wrapper img {
    opacity: 1;
  }

  .slider_name {
    color: #006BE0;
  }

  .slider_item p {
    position: relative;
    transform: translateY(0);
  }
}

@media screen and (max-width: 650px) {
  .slider_logos {
    gap: 20px;
  }

  .slider_logos>* {
    flex: 1 1 100%;
  }

  .slider_logos> :nth-child(1),
  .slider_logos> :nth-child(2) {
    flex: 1 1 100%;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-next {
  width: 40px !important;
  border-radius: 50%;
  height: 40px !important;
  background-image: -o-linear-gradient(140deg, #001cb3 0%, #4561fd 100%);
  background-image: linear-gradient(310deg, #001cb3 0%, #4561fd 100%);
  z-index: 10;
}

.swiper-button-next::after {
  content: "";
  display: none;
}

.swiper-button-next svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.swiper-button-prev {
  z-index: 10;
  width: 40px !important;
  border-radius: 50%;
  height: 40px !important;
  background-image: -o-linear-gradient(140deg, #001cb3 0%, #4561fd 100%);
  background-image: linear-gradient(310deg, #001cb3 0%, #4561fd 100%);
}

.swiper-button-prev::after {
  content: "";
  display: none;
}

.swiper-button-prev svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.slider_logos_item {
  border-radius: 8px;
  height: 70px !important;
  background-color: #fff;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (hover: hover) {
  .slider_logos_item:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}

.slider_logos_item img {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.slider_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.min_img {
  height: 80px !important;
  width: auto !important;
}

.warn_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

.card_container {
  padding: 40px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00189f 0%, #1a36cc 100%);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card_title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card_desc {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.cart_price {
  margin: 30px 0;
  color: #ffd700;
  font-size: 20px;
  padding: 10px 25px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.cart_price span {
  font-size: 64px;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.card_perch {
  margin: 10px 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card_perch p {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.card_perch ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.card_perch li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 0 4px 25px;
  line-height: 1.4;
  text-align: start;
  background-image: url('../img/discount2.svg');
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 0 center;
}


.card_accent {
  font-weight: 800;
  color: #ffd700;
  font-size: 16.5px;
}

.card_accent_text {
  font-size: 16px !important;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

.card_accent_text strong {
  color: #ffd700;
  text-transform: none;
}


.card_container a {
  margin-top: 30px;
}


.logo_container {
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  max-width: 400px;
  margin: 60px 0;
}

.logo_container img {
  width: 100%;
  height: auto;
}

.iframe_container {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.footer_top {
  padding: 20px 0;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_list_link li {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
}

.footer_list_link li a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 12px;
}

@media (hover: hover) {
  .footer_list_link li:hover {
    background-color: #001cb3;
    color: #fff;
  }
}

.footer_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  margin: 20px 0;
}

.footer_column ul li {
  padding: 4px 0;
  font-size: 15px;
}

.footer_column ul li a {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer_column ul li span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: #001cb3;
}

.foot {
  background-color: #f2f2f2;
  margin-top: 20px;
  padding: 20px 0;
}

.foot ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.foot ul li a {
  font-size: 14px;
}

@media (hover: hover) {
  .foot ul li a:hover {
    color: #001cb3;
  }
}

.contact_container {
  background-image: -o-linear-gradient(135deg, #00189f 0%, #1a36cc 100%);
  background-image: linear-gradient(135deg, #00189f 0%, #1a36cc 100%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 120px;
}

.suss_send {
  padding: 40px 0;
  background-color: #ffffff20;
  border: 1px solid #ffffff3e;
  border-radius: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.suss_send h3 {
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: 700;
}

.suss_icon {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.suss_icon svg {
  fill: #001cb3;
  width: 60px;
  height: 60px;
}

.img_wrapper_full {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 600px;
  margin-top: 30px;
}

.img_wrapper_full img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main_content {
  margin-top: 120px;
}

.grey_content {
  padding: 30px;
  border-radius: 6px;
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .grey_content {
    padding: 10px;
    border-radius: 6px;
    margin-top: 0px;
  }
}

.tab_content {
  margin-top: 60px;
  width: 100%;
}

.tab_content p {
  margin-top: 8px;
}

.tab_content strong {
  font-size: 18px;
  font-weight: 600;
}

.tab_content img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 8px;
  border-radius: 6px;
}

.tab_content ul li {
  margin-top: 8px;
  line-height: 18px;
  list-style: square;
  margin-left: 20px;
}

.hotel_bonus {
  border-radius: 6px;
  padding: 10px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hotel_bonus p {
  margin-top: 0px;
}

.hotel_bonus span {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.content_hotel {
  margin-top: 40px;
}

.content_hotel i {
  font-style: italic;
}

.hotel {
  background: url("https://bakeryindustry.com.ua/wp-content/uploads/2025/04/tild3635-3334-4639-b131-663239653734__lomo_hotel_2-1536x1152-1.jpg");
}

.hotel__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.hotel__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hotel-block .content_title {
  color: #fff;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
  margin-bottom: 24px;
  padding-top: 120px;
}

.hotel__title .hotel__sub-title {
  margin-bottom: 12px;
  font-weight: 400;
  display: block;
  position: relative;
}

.hotel__title .hotel__sub-title::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 8px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.hotel__title .hotel__sub-title::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 8px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.hotel__title .hotel__label {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 500px;
  margin: 0 auto;
}

.hotel__text {
  max-width: 1000px;
  font-size: 18px;
}


.hotel__right,
.hotel__left {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hotel__right::before,
.hotel__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(6 18 56 / 44%);
  z-index: 0;
}

.location .hotel__left::before {
  background: rgb(6 27 95 / 64%);
}

.hotel__right a,
.hotel__left a {
  position: relative;
  z-index: 2;
}


.hotel-block {
  overflow: hidden;
  padding: 0 !important;
}

@media screen and (max-width: 900px) {
  .hotel-block {
    border-radius: 12px;
  }

  .hotel-block .content_title {
    margin-bottom: 16px;
    padding-top: 60px;
  }
}

.contact_hotel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.contact_content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact_content.bold-text {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0052cc 0%, #002d72 100%);
  color: white;
  text-align: center;
  border: none;
}

@media (hover: hover) {
  .contact_content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
  }
}

.contact_title {
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact_title svg {
  fill: #fff;
}

.contact_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact_content ul li {
  display: flex;
  align-items: center;
  gap: 10px
}

.contact_content a {
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 992px) {
  .contact_hotel {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px auto;
  }
}

@media (max-width: 600px) {
  .contact_hotel {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .contact_content {
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .contact_title {
    justify-content: center;
  }

  .contact_content.bold-text {
    padding: 25px 15px;
  }

  .contact_content a {
    font-size: 1rem;
  }
}


.news_title small {
  font-size: 14px;
  font-weight: 400;
  color: #001cb3;
}

.news_title h2 {
  margin-bottom: 20px;
  font-size: 36px;
}

.news_text {
  text-align: left;
  font-size: 15px;
  margin-top: 10px;
  line-height: 18px;
  font-weight: 300;
}

.news-content img,
.news-content p img {
  width: 100%;
}

.news-content {
  margin-top: 60px;
}

.news-content h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 40px;
}

.news_img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

.news_img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

@media screen and (max-width: 900px) {
  .news_img img {
    height: auto;
    width: 100%;
    aspect-ratio: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
  }
}

.news-content p {
  margin-top: 16px;
}

.news-content p strong,
.news-content p b {
  font-weight: 600;
}

.news-content ul li {
  font-weight: 600 !important;
  list-style: square;
  margin-left: 20px;
  padding: 5px 0;
  line-height: 22px;
}

.news_column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

.blog_content {
  -ms-grid-column-span: 10;
  grid-column: span 10;
}

.blog_sidebar {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.blog_share {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.btn_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e9e9e9;
  padding: 16px 24px;
  border-radius: 40px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn_share:active {
  background-image: -o-linear-gradient(140deg, #0d1e81 0%, #3044b7 100%);
  background-image: linear-gradient(310deg, #0d1e81 0%, #3044b7 100%);
}

@media (hover: hover) {

  .btn_share:hover {
    background-image: -o-linear-gradient(140deg, #001cb3 0%, #4561fd 100%);
    background-image: linear-gradient(310deg, #001cb3 0%, #4561fd 100%);
    color: #fff;
  }

  .btn_share:hover svg {
    fill: #fff;
  }
}

.btn_share span {
  margin-right: 16px;
}

.btn_share.suss {
  background-image: -o-linear-gradient(140deg, #001cb3 0%, #4561fd 100%);
  background-image: linear-gradient(310deg, #001cb3 0%, #4561fd 100%);
  color: #fff;
}

.btn_share.suss svg {
  fill: #fff;
}


.share_dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 10;
}

@media screen and (max-width: 650px) {
  .share_dropdown {
    left: 0;
    right: unset;
  }

  .share_item {
    width: 30px;
    height: 30px;
  }
}

.share_dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f3f3;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.share_item svg {
  width: 23px;
  height: 23px;
  fill: #333;

  transition: all 0.2s ease;
}

@media (hover: hover) {
  .share_item:hover {
    transform: translateY(-2px) scale(1.05);
    background: #e9e9e9;
  }

  .share_item:hover svg {
    fill: #000;
  }
}

.share_item[data-share="telegram"]:hover {
  background: #2AABEE;
}

.share_item[data-share="telegram"]:hover svg path {
  fill: #fff;
}

.share_item[data-share="facebook"]:hover {
  background: #1877F2;
}

.share_item[data-share="facebook"]:hover svg {
  fill: #fff;
}

.share_item[data-share="x"]:hover {
  background: #000;
}

.share_item[data-share="x"]:hover svg {
  fill: #fff;
}

.share_item[data-share="viber"]:hover {
  background: #7360F2;
}

.share_item[data-share="viber"]:hover svg path {
  fill: #fff;
}

.share_dropdown::before {
  top: -5px;
  right: 28px;

  width: 10px;
  height: 10px;
  background: #fff;

  transform: rotate(45deg);
}

.share_copy:hover {
  background: linear-gradient(310deg, #1028b5 0%, #344ddd 100%);
}

.share_copy:hover svg {
  fill: #fff;
}

.share_copy {
  position: relative;
  font-weight: 500;
}

.share_dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;

  width: 10px;
  height: 10px;
  background: #fff;

  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.03);
}

.copy_tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);

  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.25s ease;
}

.copy_tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;

  width: 8px;
  height: 8px;
  background: #111;

  transform: translateX(-50%) rotate(45deg);
}

.share_copy.copied .copy_tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.news_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.author_data {
  margin-left: 40px;
  position: relative;
}

.author_data::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #000;
}

.programs_container {
  max-width: 1000px;
  margin: 0 auto;
}

.programs_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 60px;
  width: 100%;
}

.programs_date {
  margin-bottom: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 28px;
  font-weight: 600;
  color: #001cb3;
  text-transform: uppercase;
}

.pr_speaker_theme {
  border-top: 0.5px solid #c1c1c1;
  padding-top: 12px;
}

.pr_speaker_theme p {
  font-size: 16px;
  font-weight: 600;
  color: #001cb3;
  background-color: #ebedfc;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.pr_spiker {
  max-width: 100%;
}

.item_programs {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
  border-top: 0.5px solid #bfbfbf;
  border-bottom: 0.5px solid #bfbfbf;
  padding: 30px 10px;
}

.pr_time {
  min-width: 160px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
  color: #001cb3;
}

.pr_title {
  max-width: 600px;
  color: #ffffff;
  background-color: #001cb3;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.pr_sub_content {
  color: #5f5f5f;
}

.pr_spiker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 16px 0;
}

.pr_spiker_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 12px;
  width: 95%;
}

.pr_spiker_info p {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 300;
}

.pr_spiker span {
  font-weight: 600;
  line-height: 22px;
  color: #000;
  text-transform: uppercase;
}

.pr_sub {
  font-style: italic;
  opacity: 0.8;
  margin-top: 10px;
}

.pr_sub::before {
  display: none;
}

.pr_sub_title {
  margin-top: 30px;
  line-height: 20px;
  padding: 20px 0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  color: #001cb3;
}

.pr_spiker_img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.pr_spiker_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pr_spiker_soon span {
  margin-right: 8px;
}

.pr_spiker_soon {
  opacity: 0.7;
}

.pr_spiker_mod {
  color: #001cb3 !important;
}

.pr_spiker_first {
  border-bottom: 0.5px solid #bfbfbf !important;
  padding-bottom: 20px !important;
}

.pr_img img {
  width: 100%;
  height: auto;
}

.pr_img {
  margin: 20px 0;
  max-width: 200px;
}

.pr_title {
  display: block;
}

.pr_title_img {
  max-width: 60px;
  margin-right: 10px !important;
}

.event {
  margin-top: 2.5rem;
}

.event__list {
  max-width: 920px;
  background: #f1f4f9;
  margin: 0 auto;
  border-radius: 0.5rem;
  padding: 1.25rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.event__item {
  width: 100%;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
}

.event__name {
  border-right: 1px solid #dcdcdc;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.3125rem;
  color: #4b61be;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1rem;
}

.event__info {
  padding: 0.5rem;
  line-height: 1.4;
  font-size: 1rem;
}

.location-text {
  background: #f1f4f9;
  margin: 0;
  padding: 120px 0;
}

.location-text__text {
  margin-top: 2.5rem;
}

.location-text__text p,
.location-text__text ul {
  line-height: 1.6;
  margin: 0;
  margin-bottom: 1rem;
}

.location-text__text p:last-child,
.location-text__text ul:last-child {
  margin: 0;
}

.location-text__text strong {
  font-weight: 700;
}

.location-text__text ul {
  padding-left: 1rem;
  list-style-type: disc;
}

.location-text__text ul li {
  list-style-type: disc;
}

.map__wrapper {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.875rem;
}

.map__left,
.map__right {
  width: 50%;
}

.map__img {
  width: 100%;
  height: 100%;
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
}

.map__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(28.36%, rgba(0, 63, 139, 0)), to(rgba(0, 30, 67, 0.9)));
  background: linear-gradient(180deg, rgba(0, 63, 139, 0) 28.36%, rgba(0, 30, 67, 0.9) 100%);
}

.map__img_label {
  position: relative;
  z-index: 1;
}

.map__img_label p {
  font-size: 0.875rem;
}

.map__img_label .label__title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.map__location {
  border-radius: 0.5rem;
  overflow: hidden;
}

.map__location iframe {
  width: 100%;
  height: 31.25rem;
}

.location-offer .offer_left {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.location-offer .offer_title {
  height: 100%;
}

.location-offer .offer_content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.location-offer .offer-location__title {
  text-align: center;
  font-size: 4.375rem;
  margin: 0;
}

.location-offer .offer_descr {
  margin: 0;
  font-size: 1.625rem;
  line-height: 1.6;
}

.location-offer .location-offer__location {
  background: linear-gradient(310deg, #001cb3 0%, #4561fd 100%);
  max-width: 340px;
  margin: 0 auto;
  border-radius: 8px;
  margin-top: 3rem;
}

.location-offer .location-offer__location .location__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0;
}

.location-offer .location-offer__location .location__list li {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.location-offer .location-offer__location .location__list li:first-child {
  border-right: 1px solid #fff;
}


.bold-text {
  background: linear-gradient(135deg, #00189f 0%, #1a36cc 100%) !important;
}

.bold-text span {
  font-weight: 700;
  font-size: 20px;
}

.location-link {
  margin: 15px 10px 0;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .location-link {
    border-radius: 12px;
  }
}

.location-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, #00189fba 0%, #1a35ccc2 100%);
  display: block;
}

.location-link__wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.location-link__wrapper a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  min-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  padding: 24px 12px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  line-height: 1.4;
  border-radius: 12px;
}

.location-link__title {
  font-size: 50px;
  font-weight: 700;
}

.location-link__subtitle {
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.glass_btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}

@media (hover: hover) {
  .glass_btn:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}


@media screen and (max-width: 768px) {
  .location-link__title {
    font-size: 35px;
  }

  .location-link__subtitle {
    font-size: 18px;
  }

  .location-icon {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 500px) {
  .location-link__title {
    font-size: 30px;
  }

  .location-link__subtitle {
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 1260px;
  }

  .header_list li a {
    padding: 16px 8px;
  }

  .hide-none .btn {
    padding: 16px 18px;
  }

  .main_offer {
    height: 100vh;
  }
}

@media screen and (max-width: 900px) {
  .container {
    max-width: 860px;
  }

  .header_right .btn_main {
    padding: 16px 16px !important;
    font-size: 12px;
  }

  h1 {
    font-size: 50px;
    line-height: 50px;
  }

  header {
    position: fixed;
    z-index: 100;
    height: 60px;
  }

  header .scroll-hide {
    z-index: 100;
    background-color: inherit;
  }

  .header_left .social_list {
    display: none;
  }

  .social_list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
  }

  .social_list li a svg {
    width: 30px;
    height: 30px;
  }

  .header_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }

  .header_list li {
    width: 100%;
  }

  .header_list li a {
    width: 100%;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 20px 10px;
    border-bottom: 1px solid #001CB3;
    text-align: center;
  }

  .hide-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bottom_nav {
    display: none !important;
  }

  .col_counter {
    padding: 20px 30px;
  }

  .col_counter span {
    font-size: 70px;
  }

  .offer_left,
  .offer_right {
    height: 100vh;
  }

  .tab_content {
    margin-top: 30px;
  }

  .column_content {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }

  .right_content {
    margin-top: 40px;
  }

  .grid_column {
    margin-top: 30px;
    gap: 20px;
  }

  .grid_news {
    flex: 0 1 calc(50% - 10px);
  }

  .contact_container {
    padding: 20px;
  }

  .footer_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .first_container {
    margin-top: 120px !important;
  }
}

@media screen and (max-width: 800px) {
  .offer_list {
    font-size: 16px;
  }

  .container {
    max-width: 760px;
  }

  .news_title h2 {
    width: 100%;
  }

  .footer_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .footer_column ul li {
    text-align: center;
  }
}

@media screen and (max-width: 650px) {

  .video_descr {
    left: 25px;
  }

  .offer_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .offer_btns a:last-child {
    margin-top: 10px;
  }

  .container {
    max-width: 650px;
  }

  .flex_center ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pr_spiker span {
    font-size: 13px;
    word-break: break-all;
  }

  .pr_spiker_soon {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .pr_sub {
    font-size: 14px;
    line-height: 18px;
  }

  .pr_spiker_img {
    width: 50px !important;
    height: 50px !important;
  }

  .programs_date {
    margin-bottom: 30px;
  }

  .item_programs {
    padding: 20px 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .programs_date {
    font-size: 22px;
  }

  .pr_time {
    font-size: 18px;
    min-width: 120px;
  }

  .pr_title {
    font-size: 18px;
  }

  .news-content {
    margin-top: 30px;
  }

  .blog_share {
    margin-top: 20px;
  }

  .news_column {
    gap: 0;
  }

  .news_author div {
    font-size: 13px;
  }

  .author_data::before {
    width: 4px;
    height: 4px;
  }

  .author_data {
    margin-left: 20px;
  }

  .author_data::before {
    left: -10px;
  }

  .sec_container {
    margin: 80px 0 !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .sec_container_inner {
    padding: 80px 0;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .news-content h4 {
    font-size: 20px;
  }

  .blog_content {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }

  .huynay {
    grid-column: span 2 !important;
  }

  .news_img {
    margin-bottom: 30px;
  }

  .blog_share {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .grey_section,
  .image_section,
  .warning_section {
    padding: 40px 0;
  }

  .first_container,
  .bott_container,
  .contact_container {
    margin-bottom: 80px !important;
  }

  .top_container {
    margin-top: 80px !important;
  }

  .logo_adaptive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 20px;
  }

  .logo_adaptive img {
    width: 160px;
    height: auto;
  }

  .footer_list_link li {
    font-size: 14px;
    padding: 8px;
  }

  .header_center {
    display: none;
  }

  .top_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 0;
  }

  .grid_column {
    gap: 16px;
  }

  .grid_news {
    flex: 1 1 100%;
  }

  .col_counter {
    margin: 8px;
    padding: 16px 24px;
  }

  .col_counter span {
    font-size: 50px;
  }

  .lines_small::after,
  .lines_small::before {
    display: none;
  }

  .news_title h2 {
    font-size: 22px;
    line-height: 24px;
  }

  .news_title small {
    font-size: 14px;
  }

  .left_content p {
    font-size: 15px;
    width: 100%;
  }

  .content_title small {
    margin-bottom: 8px;
  }

  .foot ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .foot ul li {
    margin-bottom: 10px;
  }

  .foot ul li:nth-child(2),
  .foot ul li:nth-child(3) {
    color: blue;
  }

  .info_list li {
    font-size: 14px;
  }
}

@media screen and (max-width: 525px) {

  .first_container,
  .bott_container,
  .contact_container {
    margin-bottom: 60px !important;
  }

  .sec_container {
    margin: 60px 0 !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .sec_container_inner {
    padding: 60px 0;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .tab_content {
    margin-top: 0px;
  }
}

@media screen and (max-width: 450px) {
  .container {
    max-width: 100%;
  }

  .pr_time {
    min-width: 80px;
    white-space: nowrap;
    font-size: 14px;
  }

  .pr_sub_content p {
    font-size: 14px;
    line-height: 16px;
  }

  .pr_title {
    font-size: 16px;
    line-height: 20px;
  }

  .footer_list_link {
    display: none;
  }

  .menu_container.active span::before {
    bottom: 5px;
  }

  .contact_container {
    padding: 20px 10px;
  }

  .menu_container.active::before {
    height: 32px;
    width: 32px;
    top: -4px;
  }

  .header_right .btn_main {
    padding: 12px !important;
    font-size: 12px !important;
  }

  .top_nav {
    padding: 8px 0;
  }

  .logo_adaptive {
    margin-left: 16px;
  }

  .logo_adaptive img {
    width: 140px;
  }

  h1 {
    line-height: 50px;
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .offer_list li {
    margin: 5px 0;
  }

  .header_list li a {
    font-size: 24px;
    padding: 16px 0;
  }

  .menu_container {
    cursor: pointer;
    width: 20px;
    height: 18px;
  }

  .menu_container span {
    height: 2px;
  }

  .menu_container span::after {
    content: "";
    height: 2px;
  }

  .menu_container span::before {
    content: "";
    height: 2px;
  }

  .card_container {
    padding: 16px 0;
  }

  .card_title {
    font-size: 18px;
    line-height: 25px;
  }

  .counter_container {
    position: relative;
    gap: 0;
    padding: 10px;
    background-image: linear-gradient(310deg, #001cb3 0%, #4561fd 100%);
  }

  .counter_container small {
    display: none;
  }

  .col_counter {
    background-image: none !important;
    margin: 0;
    padding: 0px 10px;
    -webkit-animation: none;
    animation: none;
  }

  .grid_list {
    margin-top: 30px;
  }

  .footer_column {
    margin-top: 30px;
  }

  .col_counter span {
    font-size: 40px;
  }

  .grid_list ul li {
    padding: 16px 0;
  }

  .col_counter div {
    font-size: 14px;
    margin-top: 8px;
  }

  .counter_container small {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 0;
  }

  .grid-sizer,
  .grid-item {
    width: 100%;
  }

  .grid_list ul li span:first-child {
    font-size: 24px;
    margin-right: 12px;
  }
}

@media screen and (max-width: 380px) {
  .container {
    max-width: 100%;
  }

  .header_right .btn {
    padding: 8px;
    font-size: 13px;
  }

  .logo_adaptive {
    margin-left: 16px;
  }

  .logo_adaptive img {
    width: 120px;
  }
}

@media screen and (max-width: 920px) {
  .map__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .map__left,
  .map__right {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .map__left iframe,
  .map__right iframe {
    height: 400px;
  }
}

@media screen and (max-width: 900px) {
  .location-offer .offer_content {
    padding: 7rem 0 2rem 0;
  }

  .location-offer .offer-location__title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 650px) {
  .slider_item {
    grid-column: span 1;
  }

  .event__list {
    gap: 0.5rem;
  }

  .event__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .event__name {
    border: none;
    padding: 0;
  }

  .event__info {
    padding: 0;
  }
}

@media screen and (max-width: 450px) {
  .location-offer .offer_content {
    padding: 0;
  }

  .location-offer .offer-location__title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .location-offer .offer_descr {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 370px) {
  .location-offer__location {
    max-width: none !important;
    width: 100% !important;
  }

  .location-offer__location .location__list li {
    font-size: 1rem !important;
    padding: 0.75rem 1.2rem !important;
  }
}

@media screen and (max-width: 900px) {
  .hotel__content {
    grid-template-columns: 1fr;
  }

  .hotel__left,
  .hotel__right {
    border-radius: 0;
  }
}


.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transition: .2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.preloader_row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 400px;
}

.preloader_row span {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 600;
  color: #001CB3;
  transition: all 0.2s ease-in-out;
}

.preloader_row svg {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 400px;
  height: auto;
  animation: pulse-logo 2s ease-in-out infinite;
}

.preloader_row::before,
.preloader_row::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 60px;
  margin-top: -25px;
  margin-left: -100px;
  background: rgba(0, 27, 179, 0.2);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  animation: shadow-pulse 2s ease-out infinite;
}

.preloader_row::after {
  animation-delay: 0s;
  opacity: 0.2;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes shadow-pulse {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}


.video_section,
.video_play_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.video_section {
  position: relative;
  overflow: hidden;
}

.video-js .vjs-tech {
  height: auto !important;
}

@media (max-width: 900px) {
  .video_section {
    border-radius: 12px;
  }

  .video-js .vjs-tech {
    height: 100% !important;
  }
}

.video_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  background: linear-gradient(180deg, rgb(0 20 125 / 17%) 0%, rgb(2 15 83 / 78%) 100%);
}

.video_section.hideBefore::before {
  display: none;
}

.video_section::before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: 4;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00000044;
}

.video_descr {
  position: absolute;
  left: 100px;
  z-index: 5;
  bottom: 50px;
}

@media (max-width:900px) {
  .video_descr {
    bottom: 30px;
  }
}


.video_descr h3 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.video_descr p {
  margin-top: 10px;
  color: #fff;
}

.video_play_btn {
  width: 100px;
  height: 100px;
  cursor: pointer;
  background-color: #fff;
  position: absolute;
  z-index: 5;
  border-radius: 50%;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.video_play_btn.opacityBtn {
  background-color: #0000001d;
  width: 60px;
  height: 60px;
}

@media (hover: hover) {
  .video_play_btn.opacityBtn:hover svg {
    opacity: 1;
  }
}

.video_play_btn.opacityBtn svg {
  fill: #fff;
  opacity: 0.6;
}

video {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  font: inherit;
  vertical-align: baseline;
}

.video_play_btn.opacityBtn::after {
  display: none;
}

.video_play_btn::after {
  content: '';
  position: absolute;
  -webkit-animation: pulseBtn 1.2s infinite;
  animation: pulseBtn 1.2s infinite;
  opacity: 0;
  width: 99%;
  height: 99%;
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #fff;
}

@media (hover: hover) {
  .video_play_btn:hover {
    background-color: #001CB3;
  }

  .video_play_btn:hover svg {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    fill: #fff;
  }
}

.video_play_btn svg {
  -webkit-transition: .1s;
  transition: .1s;
  fill: #001CB3;
  width: 24px;
  height: 24px;
}

.video-js {
  max-width: 100% !important;
  padding: 10px !important;
}

.video_banner {
  position: relative;
  width: 100%;
}

#my-video,
.video-js {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}


@-webkit-keyframes pulseBtn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulseBtn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

.video_banner {
  max-width: 100%;
  height: 80vh;
  width: 100%;
  position: relative;
}

.video_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  z-index: 2;
}

.video_hide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.my-video-dimensions {
  width: 100vw;
}

@media (max-width:700px) {
  .video_descr {
    left: 20px;
    right: 20px;
  }
}

.corporative_container {
  margin-top: 60px;
}

@media (max-width:900px) {
  .corporative_container {
    margin-top: 30px;
  }
}

.corporative_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
}

.corporative_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
}

.corporative_item:last-child {
  margin-top: 40px;
}

.corporative_title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #00189f;
  margin-bottom: 25px;
  position: relative;
}

.corporative_title ul {
  margin-top: 20px;
}

.corporative_title ul li {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  margin: 0 0 15px 0;
  padding: 15px 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.corporative_title ul li strong {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
  display: block;
}


@media (hover: hover) {

  .corporative_title ul li:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 24, 159, 0.15);
  }

  .corporative_title ul li:hover strong {
    color: #00189f;
  }
}

.corporative_title ul li p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.corporative_icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  padding: 8px;
  margin-right: 20px;
  margin-bottom: 10px;
  background: #f8f9ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.corporative_icon img {
  width: 100%;
}

@media (hover: hover) {
  .corporative_title ul li:hover .corporative_icon {
    background: linear-gradient(135deg, #00189f 0%, #1a36cc 100%);
    transform: scale(1.1);
  }

  .corporative_title ul li:hover .corporative_icon img {
    filter: brightness(0) invert(1);
  }
}

.corporative_image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

.corporative_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 900px) {
  .content_title h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .corporative_title h3 {
    font-size: 20px !important;
    line-height: 26px !important;
    text-align: center;
  }

  .corporative_item {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .corporative_image {
    height: auto;
  }

  .corporative_item:last-child .corporative_title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .corporative_item:last-child .corporative_image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .top_partners ol {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .umovy_partners ul {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.top_partners {
  color: #fff;
  background-image: url("https://bakeryindustry.com.ua/wp-content/uploads/2024/03/bg-partners.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  height: 100%;
  padding: 60px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
}

@media (max-width:900px) {
  .top_partners {
    padding: 30px 10px 15px;
  }

  .top_partners ol {
    margin-top: 30px !important;
  }
}

.top_partners h3 {
  font-size: 25px;
  text-align: center;
  font-weight: 800;
}

.top_partners h3 span {
  text-transform: uppercase;
  display: block;
  font-size: 40px;
}

.top_partners ol {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin-top: 50px;
  counter-reset: my-awesome-counter;
  list-style: none;
  max-width: 900px;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.top_partners ol li {
  padding-left: 60px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 20px;
  font-size: 18px;
  border: 1px solid #ffffff4c;
  border-radius: 6px;
  counter-increment: my-awesome-counter;
  position: relative;
  background-color: #ffffff21;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (hover: hover) {

  .top_partners ol li:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 10px 1px 30px rgba(11, 11, 11, 0.487);
    box-shadow: 10px 1px 30px rgba(11, 11, 11, 0.487);
    z-index: 1;
  }
}

.top_partners ol li span {
  font-weight: 800;
}

.top_partners ol li::before {
  content: counter(my-awesome-counter);
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
  font-weight: 800;
  background-color: #eeeeee2b;
  height: 100%;
}

.umovy_partners {
  max-width: 100%;
  margin-top: 100px;
}


.umovy_partners h3 {
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-align: center;
}

.umovy_partners ul,
.about_cards_container ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.umovy_partners ul li,
.about_cards_container ul li {
  flex: 0 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: border-box;
}

.about_cards_container ul li {
  margin: 0;
}

.about_cards_container h3 {
  font-size: 28px;
  font-weight: 700;
  color: #00189f;
  margin-bottom: 25px;
  position: relative;
}


@media (hover: hover) {

  .umovy_partners ul li:hover,
  .about_cards_container ul li:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 24, 159, 0.15);
    border-color: rgba(0, 24, 159, 0.1);
  }
}

.umovy_img,
.about_cards_img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.umovy_img img,
.about_cards_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.umovy_partners ul li span,
.about_cards_container ul li span {
  font-size: 24px;
  margin-top: 25px;
  font-weight: 800;
  color: #00189f;
  position: relative;
  padding: 0 10px;
  display: inline-block;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.umovy_partners ul li p,
.about_cards_container ul li p {
  margin-top: 10px;
  padding: 0 10px 10px 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  opacity: 1;
}

.about_event {
  margin: 60px 0;
  padding: 30px;
  background-color: #001CB3;
  color: #fff;
  border-radius: 12px;
}

.about_event p {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
}

.about_event b {
  color: #fee600;
}

.about_audience {
  font-size: 22px;
  line-height: 1.4;
  margin: 30px;
  font-weight: 600;
}


@media (hover: hover) {

  .umovy_partners ul li:hover span,
  .about_cards_container ul li:hover span {
    color: #00189f;
  }

  .umovy_partners ul li:hover .umovy_img img,
  .about_cards_container ul li:hover .about_cards_img img {
    transform: scale(1.08);
  }

  .umovy_partners ul li:hover span,
  .about_cards_container ul li:hover span {
    color: #1a36cc;
  }

}

@media (max-width: 900px) {

  .umovy_partners h3,
  .about_cards_container h3 {
    font-size: 24px;
  }

  .umovy_partners ul li,
  .about_cards_container ul li {
    flex: 0 1 100%;
  }

  .umovy_partners ul,
  .about_cards_container ul {
    gap: 20px;
  }

  .umovy_partners ul li span,
  .about_cards_container ul li span {
    font-size: 22px;
  }

  .umovy_img,
  .umovy_img img {
    height: auto;
  }

  .about_event {
    margin: 30px 0;
    padding: 15px;
    background-color: #001CB3;
    color: #fff;
    border-radius: 12px;
  }

  .about_event p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
  }
}

.umovy_text {
  padding-top: 50px;
  font-size: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 800;
  line-height: 28px;
}

.umovy_text span {
  color: #001CB3;
}

.btn_conteaner {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.swiper-button-next {
  transform: rotate(180deg);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  font-size: 20px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.gallery_grid {
  margin-top: 30px;
}

.gallery_item {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_item .figcap {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  transition: all .2s ease-in-out;
  background: linear-gradient(167deg, #0a607f27 0%, rgba(25, 19, 45, 0.709) 100%);
}

.gallery_item .figcap span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:600px) {
  .gallery_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

@media (max-width:900px) {
  .gallery_item {
    height: 250px;
  }
}

.uch_container {
  padding: 30px 30px 30px 50px;
  background: linear-gradient(135deg, #00189f 0%, #1a36cc 100%);
  color: #fff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.uch_item {
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  max-width: 86%;
  padding: 12px 8px;
  line-height: 22px;
  position: relative;
  border-bottom: 1px solid #adadad;
}

@media (hover: hover) {
  .uch_item:hover {
    background: #fff;
    color: #000;
  }
}

@media screen and (max-width:900px) {
  .uch_container {
    padding: 20px;
  }

  .uch_item {
    font-size: 15px;
    padding: 8px 4px;
  }
}

@media screen and (max-width:600px) {
  .uch_container {
    grid-template-columns: repeat(1, 1fr);
  }

  .uch_item {
    font-size: 15px;
    padding: 8px;
    max-width: 100%;
  }
}

.footer_list_link {
  flex-wrap: wrap;
}

@media screen and (max-width:1200px) {
  .footer_list_link {
    margin-left: 30px;
  }
}

@media screen and (max-width:800px) {
  .footer_list_link {
    margin-left: 0px;
    margin: 20px 5px;
    justify-content: center;
  }
}

.speakers__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
  padding: 60px 0;
  background-color: #ffffff;
}

.speaker-card {
  flex: 0 1 360px;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.speaker-card__image-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 40px 10px 40px 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.05);
  transition: border-radius 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.speaker-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.speaker-card__content {
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-top: -60px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #00189f 0%, #1a36cc 50%, #00189f 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.2, 1, 0.3, 1),
    background-position 0.8s ease;
  will-change: transform, box-shadow;
}

.speaker-card__content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  transition: none;
}

.speaker-card__header::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: #fee600;
  margin: 15px auto;
  transition: width 0.4s ease;
}

.speaker-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fee600;
  display: block;
  margin-bottom: 8px;
}

.speaker-card__name {
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.speaker-card__info {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin-top: 10px;
  opacity: 0.8;
}

@media (hover: hover) {
  .speaker-card:hover {
    transform: translateY(-5px);
  }

  .speaker-card:hover .speaker-card__img {
    transform: scale(1.1) rotate(1deg);
  }

  .speaker-card:hover .speaker-card__image-wrapper {
    border-radius: 10px 40px 10px 40px;
    box-shadow: 0 25px 50px rgba(0, 69, 255, 0.3);
  }

  .speaker-card:hover .speaker-card__content {
    background-position: 100% 100%;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .speaker-card:hover .speaker-card__header::after {
    width: 80px;
  }

  .speaker-card:hover .speaker-card__content::before {
    left: 150%;
    transition: left 0.8s ease;
  }
}

@media (hover: none) {
  .speaker-card:active {
    transform: scale(0.98);
    transition: transform 0.1s;
  }
}

@media (max-width: 480px) {
  .speaker-card {
    flex: 0 1 100%;
  }

  .speakers__cards {
    padding: 30px 0;
  }
}

.speakers__cards .speaker-card__img.lazyloaded {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1) !important;
  opacity: 1 !important;
}


.image_section {
  padding: 120px 0;
  position: relative;
  color: #fff;
  background-size: cover;
  background-repeat: none;
  background-position: center center;
  background-color: #001bb3;
  overflow: hidden;
}

@media (max-width: 992px) {
  .image_section {
    border-radius: 12px;
  }
}

.image_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(310deg, #001bb3a4 0%, #4561fdaf 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
  z-index: 0;
}

.program_section {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.program_section .program_title {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}

.background_section_var_5::before {
  background-position: center center;
  background-image:
    linear-gradient(310deg, #001bb3a4 0%, #4561fdaf 100%),
    url("../img/theme-banner.webp");
  opacity: 0.9;
}

.program .location-link {
  margin: 15px 0 0;
}

@media (max-width: 900px) {

  .program_section {
    height: 60vh;
  }

  .program_section .program_title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {

  .program_section {
    height: 60vh;
  }

  .program_section .program_title {
    font-size: 24px;
  }
}