body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.splice-2 {
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* .row {
  gap: 24px 0;
} */

.splice-3 {
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slick-dots {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* display: none !important; */
}

.slick-dots button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(150, 154, 153, 0.2);
  font-size: 0;
  border: none;
  outline: none;
}

h1:not(.page-content h1),
h2:not(.page-content h2),
h3:not(.page-content h3),
h4:not(.page-content h4),
h5:not(.page-content h5),
h6:not(.page-content h6),
ul:not(.page-content ul),
p:not(.page-content p),
ul:not(.page-content ul) {
  /* margin: 0; */
  list-style-type: none;
}

ul:not(.page-content ul) {
  margin-bottom: 0;
}

a:not(.page-content a) {
  text-decoration: none;
  /* color: inherit; */
}

.m-container {
  width: 100%;
  max-width: 1360px;
  padding: 0 24px;
  margin: 0 auto;
}

.m-header {
  position: fixed;
  z-index: 1;
  width: 100%;
  transition: all 0.4s ease;
}

.m-header.scrolled {
  background-color: rgba(000, 000, 000, 0.5);
  backdrop-filter: blur(10px);
}

.m-header.scrolled .m-header-top {
  height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}

.collapse:not(.show) {
  display: block;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.collapse.show {
  display: block;
  height: auto;
  overflow: visible;
  pointer-events: visible;
  opacity: 1;
}

.m-header .m-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgb(225, 225, 225);
  transition: all 0.4s ease;
}

.m-header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-header-search input {
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  width: 250px;
}

.m-header-search input::placeholder {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.m-header-logo {
  width: 290px;
}

.m-header-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.m-header-lang {
  display: flex;
  align-items: center;
}

.m-header-lang a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.4s;
  padding: 1px 12px;
  border-right: 1px solid rgb(255, 255, 255);
}

.m-header-lang li:last-child a {
  border-right: none;
}

.m-header-lang a:hover,
.m-header-lang a.active {
  color: #fff;
}

.m-header-mobile-header ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.m-header-mobile-header ul li a {
  width: 34px;
  height: 34px;
  flex: 0 0 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #f2f4f9;
}

.m-header-mobile-header ul svg {
  fill: #003ca0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.m-header-lang span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}

.m-header-lang img:not(.m-header-lang span img) {
  opacity: 0.5;
}

.m-header-lang-dropdown {
  position: absolute;
  top: 100%;
  right: -4px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  overflow: hidden;
  z-index: 10;
}

.m-header-lang:hover .m-header-lang-dropdown {
  opacity: 1;
  visibility: visible;
}

.m-header-lang-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  gap: 0;
}

.m-header-lang-dropdown ul li a {
  width: auto;
  border-radius: 0;
  background-color: #fff;
  transition: 0.3s;
  padding: 10px 18px;
  display: inline-block;
  color: #343434;
  text-decoration: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.m-header-lang-dropdown ul li a.active {
  color: #003ca0;
}

.m-header-lang-dropdown ul li a:hover {
  background-color: #f0f0f0;
}

.m-header-burger {
  display: none;
}

.m-header-menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  text-transform: uppercase;
  padding: 20px 0 !important;
}
.m-header-menu ul li ul{
  padding: 0 !important;
}
.m-header-menu ul a,
.m-header-menu ul li span {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-header-menu ul a::after,
.m-header-menu ul li span::after {
  content: "";
  position: absolute;
  top: 95%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.m-header-menu ul a:hover::after,
.m-header-menu ul li span:hover::after {
  transform: scaleX(1);
}

.m-header-menu ul a.active::after,
.m-header-menu ul li span.active::after {
  transform: scaleX(1);
  background-color: #fff;
}

.m-header-menu ul a.active,
.m-header-menu ul li span.active {
  color: #fff;
  font-weight: bold;
}

.m-header-menu ul li ul a.active {
  font-weight: 600;
    color: #003ca0;
}

.m-header-menu ul li {
  position: relative;
}

.m-header-menu ul li ul {
  position: absolute;
  top: 100%;
  min-width: 100%;
  max-width: max-content;
  left: 0;
  flex-direction: column;
  gap: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 10;
  pointer-events: none;
  background-color: #fff;
}

.m-header-menu ul li:hover ul,
.m-header-menu ul li.show ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.m-header-menu ul li ul li {
  width: 100%;
}

.m-header-menu ul li ul a {
  padding: 16px 20px;
  min-width: max-content;
  width: 100%;
  color: #003ca0;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #a1aecc;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.m-header-menu ul li ul a:hover {
  background-color: #003ca0;
  color: #fff;
}

.m-header-menu ul li ul a::after {
  display: none;
}

.m-header-menu ul li ul a:last-child {
  border-bottom: none;
}

.section-slider {
  position: relative;
}

.section-slider .navigation-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 !important;
}

.section-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.section-slider .slick-dots button {
  background-color: rgba(255, 255, 255, 0.4);
}

.section-slider .slick-dots .slick-active button {
  background-color: rgba(255, 255, 255, 1);
}

.section-slider .section-slider-item .m-container {
  padding: 20px;
}

.section-slider .section-slider-item {
  width: 100vw;
  height: 100vh;
  max-height: 940px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.section-slider .section-slider-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.section-slider .section-slider-item h2 {
  font-size: clamp(22px, 6vw, 48px);
  font-weight: 600;
  line-height: 68px;
  margin-bottom: 20px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.section-slider .section-slider-item a {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 16px 32px;
  background-color: #fff;
  color: #880019;
  width: max-content;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 40px;
  margin-top: clamp(16px, 3vw, 32px);
  padding: 12px 20px;
  font-size: clamp(12px, 2.8vw, 14px);
}

.section-slider .navigation-container {
  padding: 0 10px;
}

.slick-arrow {
  border: none !important;
}

.slick-prev {
  left: 0px;
}

.slick-next {
  right: 0px;
}

.slick-prev::after {
  position: absolute;
  content: "";
  background: url("../image/svg/arrow-right.svg") no-repeat center / cover;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -moz-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  -o-transform: translate(-50%, -50%) rotate(-180deg);
}

.slick-next::after {
  position: absolute;
  content: "";
  background: url("../image/svg/arrow-right.svg") no-repeat center / cover;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.m-section-outputs {
  padding: 50px 0;
}

.m-section-outputs h2 {
  color: rgba(18, 54, 84, 1);
  font-size: 26px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
}

.m-section-outputs-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  animation: fadeIn 1s 0.2s ease forwards;
}
.m-section-outputs-item:nth-child(odd) {
  direction: rtl;
}

.m-section-outputs-item:nth-child(odd) .m-section-outputs-item-content {
  align-items: flex-end;
  text-align: end;
}

.m-section-outputs-item:nth-child(odd) .m-outputs-link {
  direction: ltr;
}

.m-section-outputs-item:nth-child(odd) .m-outputs-link span {
  flex-direction: row-reverse;
}
.m-section-outputs-item:nth-child(odd) .m-outputs-spans {
  flex-direction: row-reverse;
}

.m-section-outputs-item-image {
  height: 500px;
}

.m-section-outputs-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-section-outputs-item-content {
  background: #f1f6f8;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}

.m-section-outputs-item-content .m-outputs-spans {
  display: flex;
  align-items: center;
  color: rgba(25, 25, 25, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.m-section-outputs-item-content .m-outputs-spans span:first-child {
  color: rgba(136, 0, 25, 1);
  font-weight: 600;
  padding-right: 12px;
  border-right: 1px solid rgba(25, 25, 25, 1);
}

.m-section-outputs-item-content .m-outputs-spans span:last-child {
  color: rgba(25, 25, 25, 1);
  font-weight: 600;
  padding-left: 12px;
}

.m-section-outputs-item-content h3 {
  color: rgba(18, 54, 84, 1);
  font-family: "PT Serif";
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.m-section-outputs-item-content p {
  color: rgba(25, 25, 25, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}
.m-section-outputs-item-content span.m-outputs-link {
  color: rgba(18, 54, 84, 1);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.m-section-news-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  animation: fadeIn 1s 0.2s ease forwards;
}
.m-section-news-item:nth-child(odd) {
  direction: rtl;
}

.m-section-news-item:nth-child(odd) .m-section-news-item-content {
  align-items: flex-end;
  text-align: end;
}

.m-section-news-item:nth-child(odd) .m-news-link {
  direction: ltr;
  width: 100%;
  text-align: left;
}

.m-section-news-item:nth-child(odd) .m-news-link span {
  flex-direction: row-reverse;
}
.m-section-news-item:nth-child(odd) .m-news-spans {
  flex-direction: row-reverse;
}

.m-section-news {
  padding-bottom: 50px;
}

.m-section-news h2 {
  color: rgba(18, 54, 84, 1);
  font-size: 26px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
}

.m-section-news-item-image {
  height: 500px;
}

.m-section-news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-section-news-item-content {
  background: rgba(18, 54, 84, 1);
  height: 500px;
  display: flex;
  flex-direction: column;
}

.m-section-news-item-text {
  margin-top: auto;
  padding: 0 80px;
}

.m-section-news-item-content .m-news-spans {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.m-section-news-item-content .m-news-spans span:first-child {
  color: #fff;
  font-weight: 600;
  padding-right: 12px;
  border-right: 1px solid rgba(25, 25, 25, 1);
}

.m-section-news-item-content .m-news-spans span:last-child {
  color: #fff;
  font-weight: 600;
  padding-left: 12px;
}

.m-section-news-item-content h3 {
  color: #fff;
  font-family: "PT Serif";
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.m-section-news-item-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}
.m-section-news-item-content span.m-news-link {
  color: #880019;
  display: block;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 20px 80px;
  gap: 20px;
  background: rgba(241, 246, 248, 1);
}

.m-section-event h2 {
  color: rgba(18, 54, 84, 1);
  font-size: 26px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
}

.m-section-event-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.m-section-event-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  animation: fadeIn 1s 0.2s ease forwards;
}
.m-section-event-item:nth-child(-n + 2) {
  direction: rtl;
}

.m-section-event-item:nth-child(-n + 2) .m-section-event-item-content {
  align-items: flex-end;
  text-align: end;
}

.m-section-event-item:nth-child(-n + 2) .m-event-link {
  direction: ltr;
  width: 100%;
  text-align: left;
}

.m-section-event-item:nth-child(-n + 2) .m-event-link span {
  flex-direction: row-reverse;
}
.m-section-event-item:nth-child(-n + 2) .m-event-spans {
  flex-direction: row-reverse;
}

.m-section-event-item-image {
  height: 500px;
}

.m-section-event-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-section-event-item-content {
  background: rgba(241, 246, 248, 1);
  height: 500px;
  display: flex;
  flex-direction: column;
}

.m-section-event-item-text {
  margin-top: auto;
  padding: 0 50px;
}

.m-section-event-item-content .m-event-spans {
  display: flex;
  align-items: center;
  color: rgba(136, 0, 25, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.m-section-event-item-content h3 {
  color: rgba(18, 54, 84, 1);
  font-family: "PT Serif";
  font-size: 30px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 20px;
}

.m-section-event-item-content p {
  color: rgba(18, 54, 84, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}

.m-section-event-item-content span.m-event-link {
  color: #880019;
  display: block;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 20px 80px;
  gap: 20px;
}

.m-section-subscribe {
  padding: 80px 0;
  background: linear-gradient(
    90deg,
    rgba(25.037906646728516, 90.28820037841797, 144.66346740722656, 1),
    rgba(18, 54, 84, 1) 100%
  );
}

.m-section-subscribe h2 {
  color: rgba(255, 255, 255, 1);
  font-family: "PT Serif";
  font-size: 60px;
  font-weight: 400;
  line-height: 66px;
  text-align: center;
  width: 500px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.m-section-subscribe form {
  max-width: 800px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.m-section-subscribe form input {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 14px 20px;
  color: #fff;
  border: none;
  outline: none;
}

.m-section-subscribe form input::placeholder {
  color: #fff;
}

.m-section-subscribe form button{
  background-color: #fff;
  color: rgba(136, 0, 25, 1);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Partners Section */
.m-partners-section {
  width: 100%;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1s 1s ease forwards;
}

.m-partners-section h2{
  color: rgba(18, 54, 84, 1);
  font-size: 26px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.m-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1320px;
}

.m-partner-card {
  background: #f1f6f8;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.m-partner-card:hover {
  transform: scale(1.05);
}

.m-partner-card img {
  width: 166px;
  height: 120px;
  object-fit: contain;
}


/* Footer */
.footer {
  width: 100%;
  padding-bottom: 60px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #123654;
  margin-bottom: 64px;
}

.footer-content {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 64px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-link {
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link {
  color: #123654;
}

.footer-link.active,
.footer-link:hover {
  color: #880019;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item .icon {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  stroke: #123654;
}

.contact-item span {
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #123654;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.footer-info ul{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 !important;
}

.footer-info ul li a{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F1F1;
  border-radius: 50%;
  transition: all 0.4s;
}

.footer-info ul li a:hover{
  transform: scale(1.1);
}

.footer-logo {
  width: 162px;
  height: 34px;
}

.footer-info p {
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #123654;
  margin-bottom: 0;
}

.m-header-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  z-index: 11;
  background-color: #00000050;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.m-header-mobile.active {
  left: 0;
}

.m-header-mobile-menu {
  background-color: #fff;
  width: max-content;
  width: 80%;
  height: 100vh;
}

.m-header-mobile-header {
  background-color: #f2f4f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
}

.m-header-mobile-header ul a {
  background-color: #fff !important;
}

.m-header-mobile-body {
  height: calc(100vh - 60px);
  overflow: scroll;
}

.m-header-mobile-body ul {
  width: 100%;
  padding-left: 0;
}

.m-header-mobile-body ul a,
.m-header-mobile-body ul span {
  padding: 18px 30px;
  color: #003ca0;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  display: block;
  border-bottom: 1px solid #d9d9d9;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.m-header-mobile-body ul a.active {
  background-color: #314f8f;
  color: #fff;
}

.m-header-mobile-body ul li ul {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.m-header-mobile-body ul li:hover ul,
.m-header-mobile-body ul li.show ul {
  height: max-content;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.m-header-mobile-body ul li ul a {
  padding: 20px 30px;
  color: rgb(34, 64, 140);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  display: block;
  border-bottom: none;
}

.m-header-mobile-body ul li ul a:hover {
  background-color: #314f8f;
  color: #fff;
}

.m-header-mobile-body ul li ul a.active {
  background-color: #314f8f;
  color: #fff;
}

.m-header-mobile-body ul li ul a::after {
  display: none;
}

.m-header-mobile-body ul li ul a:last-child {
  border-bottom: none;
}

.m-header-mobile-body ul li ul a:hover {
  background-color: #314f8f;
  color: #fff;
}

.m-header-mobile-body ul li ul a.active {
  background-color: #314f8f;
  color: #fff;
}

.m-header-mobile-body ul li ul a::after {
  display: none;
}

.m-header-mobile-body ul li ul a:last-child {
  border-bottom: none;
}

.m-header-mobile-body ul li ul a:hover {
  background-color: #314f8f;
  color: #fff;
}

.m-header-mobile-body ul li ul a.active {
  background-color: #314f8f;
  color: #fff;
}

.m-header-mobile-body ul li ul a::after {
  display: none;
}

/* MEDIA */

@media (max-width: 1200px) {
  .m-header-search,
  .m-header-phone,
  .m-header-modal,
  .m-header-lang {
    margin-left: 20px;
  }

  .m-section-event-item-text{
    padding: 0 20px;
  }
  .m-section-event-item-content span.m-event-link{
    padding: 20px;
  }
  .m-section-outputs-item-content,
  .m-section-news-item-text{
    padding: 0 40px !important;
  }
  .m-news-link{
    padding: 20px 40px !important;
  }
}

@media (max-width: 1100px) {
  .m-header-burger { display: block; }
  .m-header-menu { display: none; }
  .m-header-search input { display: none; }
  .m-header .m-header-top { padding: 14px 0; }
  .m-header-search input { width: 140px; font-size: 14px; }
  .m-header-logo { width: 200px; }
  .m-header-menu ul { gap: 24px; }

  .m-section-event-wrapper{
    grid-template-columns: 1fr !important;
  }

  .m-section-event-item:nth-child(odd){
    direction: rtl !important;
  }

  .m-section-event-item:nth-child(even){
    direction: ltr !important;
  }
}

@media (max-width: 991px) {
  .m-header-burger {
    display: block;
    cursor: pointer;
  }

  .m-header-right .m-header-lang,
  .m-header-right ul,
  .m-header-left span,
  .m-header-phone,
  .m-header-search,
  .m-header-menu {
    display: none;
  }

  .m-header .m-header-modal {
    display: none;
  }

  .m-header-lang {
    border-left: none;
    margin-left: auto;
    margin-right: 20px;
  }

  .m-header-menu ul a,
  .m-header-menu ul li span {
    font-size: 0;
    pointer-events: none;
    color: transparent;
  }

  .m-header-menu ul a img,
  .m-header-menu ul li span img,
  .m-header-menu ul li ul {
    display: none;
  }

  .section-slider .slick-arrow {
    display: none;
  }

  .section-slider .navigation-container {
    display: none;
  }

  .section-slider .section-slider-item h2 {
    /* font-size: 60px; */
    font-weight: 600;
    line-height: 68px;
    margin-bottom: 4px;
    max-width: 1000px;
  }

  .section-slider .section-slider-item a {
    padding: 12px 20px;
  }

  .footer-content{
    grid-template-columns: auto auto;
  }

  .m-partners-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .m-header-logo {
    width: 200px;
  }

  .m-header-lang a{
    padding: 0 6px;
  }

  .m-section-outputs-item-content, .m-section-news-item-text{
    padding: 0 20px !important;
  }

  .footer-content{
    grid-template-columns: 1fr;
    gap: 20px !important;
  }

  .footer-nav{
    gap: 20px !important;
  }
  .footer-info{
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .m-section-subscribe h2 { width: auto; font-size: 34px; line-height: 1.2; padding: 0 12px; }
  .m-section-subscribe form { flex-direction: column; gap: 12px; padding: 0 12px; }
  .m-section-subscribe form button { width: 100%; justify-content: center; }
}

@media (max-width: 600px){
  .m-section-outputs-item,
  .m-section-news-item,
  .m-section-event-item{
    grid-template-columns: 1fr;
    direction: ltr !important;
  }

  .m-section-outputs-item,
  .m-section-event-item{
    padding: 24px !important;
  }
  .m-section-outputs-item-content,
  .m-section-news-item-content,
  .m-section-event-item-content{
    height: auto !important;
    padding: 20px !important;
  }
  .m-section-outputs-item:nth-child(odd) .m-outputs-spans{
    flex-direction: row;
  }

  .m-section-outputs-item:nth-child(odd) .m-section-outputs-item-content,
  .m-section-news-item-content,
  .m-section-news-item:nth-child(odd) .m-section-news-item-content,
  .m-section-event-item:nth-child(-n + 2) .m-section-event-item-content{
    align-items: flex-start;
    text-align: left;
  }
  .m-section-news-item:nth-child(odd) .m-news-spans,
  .m-section-event-item:nth-child(-n + 2) .m-event-spans{
    flex-direction: row;
  }
  .m-section-news-item-image,
  .m-section-event-item-image{
    order: 1 !important;
  }
  .m-section-news-item-content,
  .m-section-event-item-content{
    order: 2;
  }
  .m-section-event-item:nth-child(odd){
    direction: ltr !important;
  }

  .m-section-outputs-item-content, .m-section-news-item-text,
  .m-section-event-item-text{
    padding: 0 !important;
  }
  .m-news-link,
  .m-section-event-item-content span.m-event-link{
    padding: 10px 20px !important;
    width: 100%;
  }
  .m-partners-grid{
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .m-header-left img {
    width: 110px;
  }

  .section-slider .section-slider-item h2 {
    /* font-size: 40px; */
    line-height: 48px;
  }

  .section-slider .section-slider-item p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
