/* Table Of Content - start
================================================== */
/*
* Project Name   :  Sample Music Festival - Site Template
* File           :  CSS Base
* Version        :  1.0.0
* Last change    :  Friday, October 20, 2023
* Developer			 :	webrok (https://www.fiverr.com/webrok?up_rollout=true)
*/
/* Table Of Content - end
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --bs-body-font-family: "Archivo", sans-serif;
  --bs-font-body: "Archivo", sans-serif;
  --bs-font-heading: "Archivo", sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-font-size: 20px;
  --bs-body-line-height: 160%;
  --bs-body-bg: #EDF0F0;
  --bs-body-color: #212121;
  --bs-body-color-rgb: 33,33,33;
  --bs-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --bs-primary: #664099;
  --bs-primary-rgb: 77,19,161;
  --bs-secondary: #D6F103;
  --bs-secondary-rgb: 247,203,52;
  --bs-success: #F1FF38;
  --bs-success-rgb: 241,255,56;
  --bs-dark: #212121;
  --bs-dark-rgb: 33,33,33;
  --bs-light: #EDF0F0;
  --bs-light-rgb: 237,237,237;
  --bs-link-color: var(--bs-primary);
  --bs-link-color-rgb: var(--bs-primary-rgb);
  --bs-link-hover-color: var(--bs-dark);
  --bs-link-hover-color-rgb: var(--bs-dark-rgb);
  --bs-highlight-bg: var(--bs-secondary);
  --bs-border-width: 2px;
  --bs-border-style: solid;
  --bs-border-color: var(--bs-dark);
  --bs-border-radius: 3px;
}

/* 1.1 - Template Fonts - Start
================================================== */
/* 1.1 - Template Fonts - End
================================================== */
/* 1.2 - Template Reset - Start
================================================== */
body {
  margin: 0;
  padding: 0;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  font-style: normal;
  color: var(--bs-body-color);
  font-family: var(--bs-font-body);
  background-color: var(--bs-body-bg);
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-image: url("../images/body_bg_pattern.webp");
  background-repeat: repeat;
  background-size: 100% auto;
  background-position: center top;
}

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

iframe {
  width: 100%;
  height: auto;
  border: none;
  display: block;
}
.space{
  margin-top: 80px;
}

video {
  width: 100%;
  height: auto;
}

a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

img:not([draggable]),
embed,
object,
video {
  height: auto;
  max-width: 100%;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
}

a {
  outline: 0;
  display: inline-block;
  text-decoration: none;
  font-family: var(--bs-font-heading);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
a:active, a:focus, a:hover, a:visited {
  outline: 0;
  text-decoration: none;
}

button {
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  display: inline-block;
  font-family: var(--bs-font-heading);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
button:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  color: var(--bs-dark);
  font-family: var(--bs-font-heading);
}

hr {
  opacity: 1;
  height: 1px;
  border: none;
  margin: 25px 0;
  background-color: var(--bs-border-color);
}

mark {
  padding: 0;
  color: var(--bs-primary);
  background-color: transparent;
}

p big {
  font-size: 38px;
  font-weight: 900;
  line-height: 140%;
  color: var(--bs-dark);
}

.container {
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}

.row {
  margin: -15px;
}

[class*=col-] {
  padding: 15px;
}

.dropdown-menu {
  padding: 5px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid var(--bs-dark);
  background-color: var(--bs-white);
  -webkit-box-shadow: 3px 3px 0px 0 var(--bs-dark);
          box-shadow: 3px 3px 0px 0 var(--bs-dark);
  -webkit-animation: 0.2s ease-in-out 0s normal none 1 running fadeIn;
          animation: 0.2s ease-in-out 0s normal none 1 running fadeIn;
}
.dropdown-menu:before {
  left: 0;
  right: 0;
  top: -20px;
  content: "";
  height: 20px;
  display: block;
  position: absolute;
}
.dropdown-menu > li:not(:last-child) {
  margin-bottom: 1px;
}
.dropdown-menu > li > a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  padding: 9px 18px;
  position: relative;
  border-radius: 6px;
  white-space: nowrap;
  color: var(--bs-body-color);
}
.dropdown-menu > li:hover > a {
  color: var(--bs-primary);
  background-color: var(--bs-primary-bg-subtle);
}

.dropdown-toggle::after {
  margin: 0;
  border: none;
  line-height: 1;
  content: "\f107";
  font-weight: 400;
  color: var(--bs-body-color);
  font-family: "Font Awesome 6 Pro";
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

/* 1.2 - Template Reset - End
================================================== */
/* 2.03 - Backtotop Button - Start
================================================== */
.backtotop .scroll {
  z-index: 1;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -80px 0 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--bs-dark);
  background-color: #EDF0F0;
}
.backtotop .scroll img {
  max-width: 38px;
}

/* 2.03 - Backtotop Button - End
================================================== */
/* 2.04 - Template Gapping or Spacing - Start
================================================== */
.section_space {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* 2.04 - Template Gapping or Spacing - End
================================================== */
/* 2.02 - Template CSS Animations - Start
================================================== */
.animation_none {
  -webkit-animation: none !important;
          animation: none !important;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.spin_animation {
  -webkit-animation: spin 5000ms infinite linear;
          animation: spin 5000ms infinite linear;
}

@-webkit-keyframes flipX {
  from {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  to {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
}

@keyframes flipX {
  from {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  to {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
}
.flipX_animation {
  -webkit-animation: flipX 2s infinite;
          animation: flipX 2s infinite;
}

@-webkit-keyframes flipY {
  from {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
}

@keyframes flipY {
  from {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  to {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
}
.flipY_animation {
  -webkit-animation: flipY 2s infinite;
          animation: flipY 2s infinite;
}

/* 2.02 - Template CSS Animations - End
================================================== */
/* 2.05 - Order & Unorder List - Start
================================================== */
[class*=unordered_list] {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[class*=unordered_list] > li {
  float: left;
  list-style: none;
  display: inline-block;
}

.unordered_list_block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.unordered_list_block > li {
  width: 100%;
  display: block;
}

.info_list.unordered_list {
  margin: -4px -8px;
}
.info_list.unordered_list > li {
  padding: 4px 8px;
}
.info_list > li {
  color: var(--bs-body-color);
}
.info_list a {
  color: var(--bs-dark);
}
.info_list a:hover {
  color: var(--bs-primary);
}

.post_meta > li {
  color: #727272;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.post_meta > li:not(:last-child):after {
  content: "/";
  margin: 0 10px;
  display: inline-block;
}
.post_meta a {
  color: #727272;
}
.post_meta a:hover {
  color: var(--bs-primary);
}

/* 2.05 - Order & Unorder List - End
================================================== */
/* 2.06 - Buttons - Start
================================================== */
.btn_wrap {
  padding: 50px 0;
}

.btns_group {
  margin: -12px;
}
.btns_group > li {
  padding: 12px;
}

.btn {
  font-size: 14px;
  overflow: hidden;
  font-weight: 700;
  line-height: 16px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 30px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--bs-border-radius);
  -webkit-transition: 0.6s cubic-bezier(0.15, 0.85, 0.31, 1);
  transition: 0.6s cubic-bezier(0.15, 0.85, 0.31, 1);
}
.btn .btn_icon img:nth-child(2) {
  display: none;
}
.btn:hover .btn_icon img:nth-child(1) {
  display: none;
}
.btn:hover .btn_icon img:nth-child(2) {
  display: inline-block;
}

.btn-primary {
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-primary);
  --bs-btn-hover-bg: rgba(77, 19, 161, 0.05);
  --bs-btn-hover-border-color: rgba(77, 19, 161, 0.6);
}

a[class*=-primary]:hover,
button[class*=-primary]:hover {
  -webkit-box-shadow: 0px 0px 0px 3px rgba(77, 19, 161, 0.12);
          box-shadow: 0px 0px 0px 3px rgba(77, 19, 161, 0.12);
}

.btn-secondary {
  --bs-btn-color: var(--bs-dark);
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-color: var(--bs-secondary);
  --bs-btn-hover-bg: rgba(247, 203, 52, 0.05);
  --bs-btn-hover-border-color: rgba(247, 203, 52, 0.6);
}

a[class*=-secondary]:hover,
button[class*=-secondary]:hover {
  -webkit-box-shadow: 0px 0px 0px 3px rgba(247, 203, 52, 0.12);
          box-shadow: 0px 0px 0px 3px rgba(247, 203, 52, 0.12);
}

.btn-light {
  --bs-btn-color: var(--bs-dark);
  --bs-btn-bg: var(--bs-white);
  --bs-btn-border-color: var(--bs-white);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.05);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.6);
}

a[class*=-light]:hover,
button[class*=-light]:hover {
  -webkit-box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.12);
          box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.12);
}

/* 2.06 - Buttons - End
================================================== */
/* 2.11 - Form - Start
================================================== */
.form-group {
  position: relative;
}
.form-group:not(:last-child) {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  padding: 0 0 10px 20px;
  font-family: var(--bs-font-heading);
}
.form-group .form-control,
.form-group .form-select {
  padding: 0 24px;
  font-size: 16px;
  color: var(--bs-dark);
  caret-color: var(--bs-primary);
  background-color: var(--bs-white);
  border: 1px solid var(--bs-white);
  border-radius: var(--bs-border-radius);
}
.form-group .form-control:hover, .form-group .form-control:focus,
.form-group .form-select:hover,
.form-group .form-select:focus {
  border-color: var(--bs-primary);
}
.form-group .form-control:focus,
.form-group .form-select:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(77, 19, 161, 0.2);
          box-shadow: 0 0 0 3px rgba(77, 19, 161, 0.2);
}
.form-group .form-control::-webkit-input-placeholder, .form-group .form-select::-webkit-input-placeholder {
  color: #9C9B9B;
}
.form-group .form-control::-moz-placeholder, .form-group .form-select::-moz-placeholder {
  color: #9C9B9B;
}
.form-group .form-control:-ms-input-placeholder, .form-group .form-select:-ms-input-placeholder {
  color: #9C9B9B;
}
.form-group .form-control::-ms-input-placeholder, .form-group .form-select::-ms-input-placeholder {
  color: #9C9B9B;
}
.form-group .form-control::placeholder,
.form-group .form-select::placeholder {
  color: #9C9B9B;
}
.form-group .form-control:-ms-input-placeholder,
.form-group .form-select:-ms-input-placeholder {
  color: #9C9B9B;
}
.form-group .form-control::-ms-input-placeholder,
.form-group .form-select::-ms-input-placeholder {
  color: #9C9B9B;
}
.form-group input.form-control,
.form-group select.form-select {
  height: 46px;
}
.form-group textarea.form-control {
  min-height: 130px;
  padding: 15px 20px 24px;
}

.participate_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.participate_form .row {
  margin: -6px;
}
.participate_form .row > [class*=col-] {
  padding: 6px;
}

/* 2.11 - Form - End
================================================== */
/* 2.12 - Video - Start
================================================== */
.mfp-iframe-holder .mfp-content {
  width: 100%;
  line-height: 0;
  max-width: 70%;
}
.mfp-iframe-holder .mfp-content video {
  width: 100%;
  height: auto;
}

.mfp-container {
  padding: 0 15px;
}

.mfp-bg {
  opacity: 0.9;
  background: var(--bs-dark);
}

@media screen and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 100%;
  }
}
.popup_video {
  z-index: 1;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--bs-warning);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(237, 237, 237, 0.6);
}
.popup_video i {
  margin: 4px 0 0 6px;
}

.position-relative .popup_video {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.playlist_player iframe {
  height: 650px;
}

.playlist_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.playlist_wrapper .clips_item_count {
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--bs-white);
  border-bottom: 1px solid var(--bs-white);
}

.playlist_nav {
  margin: -10px -10px 30px;
}
.playlist_nav > li {
  padding: 10px;
}
.playlist_nav > li button {
  line-height: 1;
  display: block;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 40px;
  color: var(--bs-white);
  text-transform: uppercase;
  border: 2px solid var(--bs-white);
}
.playlist_nav > li button.is-checked {
  color: var(--bs-primary);
  background-color: var(--bs-white);
}

#playlist {
  display: block;
  overflow-y: scroll;
  padding-right: 10px;
  height: 595px !important;
}
#playlist::-webkit-scrollbar {
  width: 8px;
}
#playlist::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.16);
}
#playlist::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
#playlist li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#playlist li:not(:last-child) {
  margin-bottom: 20px;
}
#playlist li:hover .clip_title,
#playlist li:hover .clip_duration {
  color: var(--bs-secondary);
}
#playlist li:hover .clip_image:before {
  background-image: url("../images/icons/icon_play.svg");
}
#playlist .clip_image {
  width: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  margin-right: 16px;
  position: relative;
}
#playlist .clip_image:before {
  z-index: 1;
  right: 5px;
  bottom: 5px;
  content: "";
  width: 12px;
  height: 15px;
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/icons/icon_play_2.svg");
}
#playlist .clip_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
#playlist .clip_title {
  font-size: 14px;
  font-weight: 900;
  line-height: 22px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0.1px;
  color: var(--bs-white);
  text-transform: uppercase;
}
#playlist .clip_duration {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: var(--bs-white);
}

/* 2.12 - Video - End
================================================== */
/* 2.09 - Carousel or Slider - Start
================================================== */
.carousel_arrows {
  gap: 14px;
  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;
}
.carousel_arrows .line {
  height: 3px;
  width: 410px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: var(--bs-dark);
}
.carousel_arrows [class*=swiper-button] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: var(--bs-dark);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.carousel_arrows [class*=swiper-button]:hover {
  color: var(--bs-warning);
}
/* 2.09 - Carousel or Slider - End
================================================== */
/* 2.12 - Ticker - Start
================================================== */
.ticker {
  width: 100%;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--bs-secondary);
}
.ticker-component {
  height: 54px !important;
}
.ticker-text {
  padding: 0 30px;
  position: relative;
  margin-bottom: 4px;
}
.ticker-text:after {
  top: 3px;
  right: -32px;
  font-size: 24px;
  content: "\e903";
  position: relative;
  font-family: "icomoon";
}

/* 2.12 - Ticker - End
================================================== */
/* 2.07 - Typography - Start
================================================== */
.section_heading {
  margin-bottom: 40px;
}
.section_heading .heading_icon {
  margin-bottom: 20px;
}
.section_heading .heading_icon img {
  -webkit-animation: flipY 2s infinite;
          animation: flipY 2s infinite;
}
.section_heading .heading_title {
  line-height: 1;
  font-size: 38px;
  margin-bottom: 17px;
}
.section_heading .heading_title [class*=highlight_text] {
  color: inherit;
  font-size: 86px;
}
.section_heading [class*=text_outline] {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--bs-dark);
}
.section_heading .heading_description {
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  color: var(--bs-dark);
}

.section_heading.text-white .heading_title {
  color: var(--bs-white);
}

.section_heading.text-white [class*=text_outline] {
  -webkit-text-stroke-color:#ECE923;
}
.section_heading.text-white .heading_description {
  color: #DEDDDD;
}

/* 2.07 - Typography - End
================================================== */
/* 3.01 - Site Header - Start
================================================== */
.site_header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 21px 0;
  position: fixed;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #BABABA;
}
.site_header.sticky {
  padding: 15px 0;
  background-color: #EDF0F0;
}
.site_header + main {
  padding-top: 79px;
}
.site_header .site_logo .site_link {
  max-width: 120px;
}
.site_header .language_select {
  margin-left: 80px;
}
.site_header .language_select select {
  width: 24px;
  border: none;
  outline: none;
  line-height: 1;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  color: var(--bs-dark);
  text-transform: uppercase;
  background-color: transparent;
}

.mobile_menu_btn {
  gap: 6px;
  width: 30px;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile_menu_btn span {
  height: 2px;
  width: 100%;
  background-color: var(--bs-dark);
}

.main_menu {
  padding: 0;
}

.main_menu_list {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main_menu_list > li > a {
  z-index: 1;
  line-height: 1;
  display: block;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--bs-dark);
  border-bottom: 2px solid transparent;
}
.main_menu_list > li:hover > a, .main_menu_list > li.active > a {
  border-color: var(--bs-dark);
}
.main_menu_list > li:hover > a:after {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}
.main_menu_list .dropdown > a {
  position: relative;
}
.main_menu_list .dropdown > a:after {
  float: right;
  font-size: 14px;
  content: "\e901";
  margin-left: 4px;
  font-family: "icomoon";
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.main_menu_list .dropdown-menu {
  display: none;
  min-width: 210px;
  margin: -2px 0 0;
  border-top-left-radius: 0;
  inset: 100% auto auto auto;
}
.main_menu_list .dropdown-menu:before {
  display: none;
}
.main_menu_list .dropdown-menu > li:hover > a, .main_menu_list .dropdown-menu > li.active > a {
  color: var(--bs-dark);
  background-color: var(--bs-body-bg);
}
.main_menu_list .dropdown-menu .dropdown > a:after {
  margin-top: 1px;
  content: "\e917";
}
.main_menu_list .dropdown-menu .dropdown-menu {
  top: 0;
  margin: 0;
  left: 100%;
}
.main_menu_list .dropdown-menu.show {
  display: block;
}

@media screen and (min-width: 992px) {
  .mobile_menu_btn {
    display: none;
  }
  .main_menu_list .dropdown-menu {
    opacity: 0;
    display: block;
    display: block;
    -webkit-transition: 200ms;
    transition: 200ms;
    visibility: hidden;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: perspective(300px) rotateX(-8deg);
            transform: perspective(300px) rotateX(-8deg);
  }
  .main_menu_list .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: perspective(300px) rotateX(0deg);
            transform: perspective(300px) rotateX(0deg);
  }
}
.header_btns_group > li:not(:first-child) {
  margin: 0 0 0 10px;
}
.header_btns_group > li:first-child {
  display: none;
}

/* 3.01 - Site Header - End
================================================== */
/* 3.02 - Site Footer - Start
================================================== */
.site_footer .info_list > li {
  font-size: 16px;
  line-height: 25px;
}

.footer_top {
  background-position: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.copyright_text {
  font-size: 16px;
  font-weight: 500;
  width: 500px;
  gap:10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display:flex;
}
.logo_size{
  width: 30px
}

.copyright_text img {
  max-width: 80px;
}


.footer_bottom .container-fluid {
  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_bottom .links_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 3.02 - Site Footer - End
================================================== */
/* 3.03 - Breadcrumb - Start
================================================== */
.breadcrumb_section {
  padding: 23px 0 63px;
}

body:has(.page_banner_section.style_2) .breadcrumb_section {
  padding: 23px 0;
}

.breadcrumb_nav > li {
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
}
.breadcrumb_nav > li:not(:last-child):after {
  content: "/";
  margin: 0 10px;
  color: #727272;
  display: inline-block;
}
.breadcrumb_nav > li:last-child > a {
  color: var(--bs-dark);
}
.breadcrumb_nav a {
  color: #727272;
}
.breadcrumb_nav a:hover {
  color: var(--bs-primary);
}

.page_banner_section.style_2 {
  background-size: contain;
  /* background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(33, 33, 33, 0.5); */
}

/* 3.03 - Breadcrumb - End
================================================== */
/* 4.01 - Page Hero Section - Start
================================================== */
.hero_section {
  position: relative;
  background-color: rgba(33, 33, 33, 0.6);
}
.hero_section .video_wrap {
  width: 100%;
  height: 860px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: block;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}
.hero_section video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_section .hero_icon {
  margin-bottom: 16px;
}
.hero_section .hero_icon img {
  -webkit-animation: flipY 2s infinite;
          animation: flipY 2s infinite;
}
.hero_section h1 {
  font-size: 140px;
  line-height: 100%;
  color: var(--bs-white);
  letter-spacing: 1.064px;
}
.hero_section .container-fluid {
  left: 0;
  top: 50%;
  right: 0;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero_section .social_links {
  top: 50%;
  gap: 30px;
  z-index: 1;
  right: 80px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero_section .social_links a {
  font-size: 24px;
  color: var(--bs-light);
}
.hero_section .social_links img {
  max-width: 24px;
}
.hero_section .social_links .icon-youtube {
  font-size: 16px;
}
.hero_section .popup_video {
  z-index: 1;
  width: auto;
  right: 80px;
  bottom: 80px;
  height: auto;
  position: absolute;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  background-color: transparent;
}
.hero_section .popup_video img {
  -webkit-animation: spin 10000ms infinite linear;
          animation: spin 10000ms infinite linear;
}

/* 4.01 - Page Hero Section - End
================================================== */
/* 4.02 - Service - Start
================================================== */
.art_form_item {
  text-align: center;
}
.art_form_item .image_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 620px;
  overflow: hidden;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--bs-dark);
  border-radius: var(--bs-border-radius);
}
.art_form_item .image_wrap img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.art_form_item .image_wrap:hover {
  border-color: var(--bs-primary);
}
.art_form_item .image_wrap:hover img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.art_form_item .item_title {
  font-size: 18px;
  margin: 24px 0 0;
  line-height: 22px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}
.art_form_item .item_title a {
  color: var(--bs-dark);
}

.services_grouped {
  margin: 0;
  padding: 3px;
}
.services_grouped > [class*=col-] {
  padding: 0;
  margin: -3px;
}

.service_item {
  height: 485px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  border: 3px solid var(--bs-dark);
  background-position: center center;
  background-color: rgba(33, 33, 33, 0.7);
}
.service_item * {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.service_item:before {
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  content: "";
  position: absolute;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  background-color: var(--bs-body-bg);
}
.service_item .item_icon {
  left: 0;
  right: 0;
  bottom: 33%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service_item .item_icon img {
  max-height: 200px;
}
.service_item .item_content {
  left: 0;
  right: 0;
  top: 64%;
  padding: 0 60px;
  padding-top: 20px;
  position: absolute;
}
.service_item .item_title,
.service_item .title_after {
  font-size: 22px;
  font-weight: 900;
  line-height: 26px;
  margin-bottom: 20px;
  text-transform: uppercase;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.service_item .title_after {
  opacity: 0;
  color: #FFFFFF;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.service_item p {
  opacity: 0;
  color: #EEEEEE;
  font-size: 16px;
  line-height: 28px;
  visibility: hidden;
  margin-bottom: 24px;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.service_item .btn_wrap {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.service_item .btn span {
  -webkit-transition: unset;
  transition: unset;
}
.service_item:hover:before {
  height: 0%;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.service_item:hover .item_icon {
  bottom: 100%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.service_item:hover .item_content {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service_item:hover .item_title {
  color: var(--bs-white);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.service_item:hover:has(.title_after):hover .item_title {
  opacity: 0;
  margin-top: -70px;
}
.service_item:hover p, .service_item:hover .btn_wrap, .service_item:hover .title_after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.service_item:hover .title_after {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.service_item:hover p {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.service_item:hover .btn_wrap {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.clip_box_item {
  margin-top: 50px;
}
.clip_box_item iframe {
  width: 100%;
  height: 500px;
}
.clip_box_item .item_content {
  z-index: 1;
  padding: 60px;
  position: relative;
  background-color: var(--bs-light);
}
.clip_box_item .item_title {
  line-height: 1;
  font-size: 86px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.clip_box_item p {
  font-size: 16px;
  margin-bottom: 30px;
}
.clip_box_item .content_wrap {
  max-width: 600px;
}
.clip_box_item:nth-child(odd) .item_content {
  margin: 0 0 0 -90px;
}
.clip_box_item:nth-child(even) .item_content {
  margin: 0 -90px 0 0;
}
.clip_box_item:nth-child(even) [class*=col-]:first-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.case_item .item_image {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.case_item .item_title {
  margin: auto;
  font-size: 18px;
  max-width: 320px;
  font-weight: 900;
  line-height: 22px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}
.case_item .item_title a {
  color: var(--bs-dark);
}
.case_item .item_title a:hover {
  color: var(--bs-primary);
}

/* 4.02 - Service - End
================================================== */
/* Partners - Start
================================================== */
.partners_section,
.brands_section {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.partners_carousel .swiper-wrapper,
.partners_carousel_rtl .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

[class*=partners_carousel] .swiper-slide {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
[class*=partners_carousel] .swiper-slide img {
  max-height: 50px;
}

/* Partners - End
================================================== */
/* 4.10 - Blog - Start
================================================== */
.blog_item .blog_image {
  display: block;
  overflow: hidden;
  position: relative;
}
.blog_item .blog_content {
  z-index: 1;
  padding: 30px;
  max-width: 530px;
  margin-top: -30px;
  position: relative;
  background-color: #EDEDED;
}
.blog_item .blog_title {
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.blog_item .blog_title a {
  color: var(--bs-dark);
}
.blog_item .blog_title a:hover {
  color: var(--bs-primary);
}
.blog_item .post_meta {
  display: none;
}

/* 4.10 - Blog - End
================================================== */
/* Schedule - Start
================================================== */
.schedule_section .row {
  margin: -30px;
}
.schedule_section .row [class*=col-] {
  padding: 30px;
}

.schedule_list_wrap .list_title {
  line-height: 1;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: var(--bs-primary);
  text-transform: uppercase;
}
.schedule_list_wrap .schedule_list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.schedule_list_wrap .schedule_list > li:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #BABABA;
}
.schedule_list_wrap .schedule_list > li:hover .item_title > a {
  color: var(--bs-primary);
}
.schedule_list_wrap .schedule_list > li:hover .item_title > a img {
  opacity: 1;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.schedule_list_wrap .schedule_list .item_title {
  line-height: 1;
  font-size: 22px;
  font-weight: 800;
  max-width: 430px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.schedule_list_wrap .schedule_list .item_title > a {
  color: var(--bs-black);
}
.schedule_list_wrap .schedule_list .item_title > a img {
  opacity: 0;
  width: 26px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.schedule_list_wrap .schedule_list .show_location {
  line-height: 1;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
}
.schedule_list_wrap .schedule_list .show_time {
  line-height: 1;
  font-size: 22px;
  font-weight: 800;
}

/* Schedule - End
================================================== */
/* 5.01 About Page - Start
================================================== */
.about_section .about_content {
  margin: auto;
  max-width: 650px;
}

.participate_image {
  margin-bottom: -100px;
}

/* 5.01 About Page - End
================================================== */
/* 5.02 - All Details Pages - Start
================================================== */
[class*=_details_section] iframe {
  margin: 30px 0;
  min-height: 460px;
}
[class*=_details_section] .image_wrap {
  margin: 30px 0;
}

.details_info_list .unordered_list_block li:not(:last-child) {
  margin-bottom: 30px;
}
.details_info_list strong {
  line-height: 1;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* 5.02 - All Details Pages - End
================================================== */
/*
Responsive For Mobile & Tablet Devices
==================================================
* Project Name   :  Sample Music Festival - Site Template
* File           :  CSS Base
* Version        :  1.0.0
* Last change    :  Friday, October 20, 2023
* Developer			 :	webrok (https://www.fiverr.com/webrok?up_rollout=true)
*	CSS code for responsive layout To make responsive
==================================================
*/
/* Media Screen 1440px - Start
================================================== */
@media screen and (max-width: 1760px) {
  .hero_section .video_wrap {
    height: 720px;
  }
  .hero_section h1 {
    font-size: 120px;
  }
}
@media screen and (max-width: 1440px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container-fluid:not(.site_header .container-fluid) {
    max-width: 1240px;
  }
  .backtotop .scroll {
    margin: 0 -20px 0 38px;
  }
  .main_menu_list {
    gap: 30px;
  }
  .hero_section h1 {
    font-size: 90px;
  }
  .hero_section .video_wrap {
    height: 550px;
  }
  .hero_section .social_links {
    gap: 30px;
    right: 20px;
  }
  .hero_section .popup_video {
    right: 50px;
    bottom: 30px;
    width: 100px;
  }
  .section_heading .heading_title [class*=highlight_text] {
    font-size: 60px;
  }
  .art_form_item .image_wrap {
    height: 400px;
  }
  p big {
    font-size: 30px;
  }
  .about_section .about_content {
    max-width: 100%;
  }
  .service_item .item_content {
    padding: 0 30px;
  }
  .clip_box_item .item_title {
    font-size: 54px;
    margin-bottom: 4px;
  }
  .blog_item .blog_title {
    font-size: 20px;
    line-height: 28px;
  }
}
/* Media Screen 1440px - End
================================================== */
/* Media Screen 1199px - Start
================================================== */
@media screen and (max-width: 1199px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main_menu_list {
    gap: 24px;
  }
  .backtotop .scroll {
    margin: 0 -15px 0 38px;
  }
  .hero_section .video_wrap {
    height: 500px;
  }
}
/* Media Screen 1199px - End
================================================== */
/* Media Screen 1024px - Start
================================================== */
@media screen and (max-width: 1024px) {
  .main_menu_list {
    gap: 16px;
  }
  .hero_section h1 {
    font-size: 72px;
  }
  .section_heading .heading_title {
    font-size: 34px;
    margin-bottom: 14px;
  }
  .section_heading .heading_title [class*=highlight_text] {
    font-size: 60px;
  }
  .art_form_item .image_wrap {
    height: 300px;
  }
  p big {
    font-size: 24px;
  }
  .service_item .item_icon img {
    max-height: 140px;
  }
  .service_item .item_icon {
    height: 180px;
  }
  .service_item .item_title,
  .service_item .title_after {
    line-height: 1;
    font-size: 22px;
  }
  .service_item {
    height: 370px;
  }
  .clip_box_item .item_title {
    font-size: 42px;
  }
  .clip_box_item:nth-child(odd) .item_content {
    margin: 0 0 0 -60px;
  }
  .clip_box_item .item_content {
    padding: 50px 40px;
  }
  .clip_box_item p {
    margin-bottom: 18px;
  }
  .clip_box_item iframe {
    height: 420px;
  }
  .footer_top .col-lg-4 {
    width: 50%;
  }
  .hero_section video {
    aspect-ratio: 1;
  }
}
/* Media Screen 1024px - End
================================================== */
/* Media Screen 991px - Start
================================================== */
@media screen and (max-width: 991px) {
  [class*=container-fluid],
  .container-fluid:not(.site_header .container-fluid) {
    max-width: 730px;
  }
  .header_btns_group > li:first-child {
    display: inline-block;
  }
  .site_header .language_select {
    margin-left: 15px;
  }
  .main_menu {
    left: 0;
    right: 0;
    top: 78px;
    z-index: 999;
    position: fixed;
  }
  .site_header.sticky .main_menu {
    top: 66px;
  }
  .main_menu_inner {
    padding: 0 15px;
  }
  .main_menu_list {
    gap: 1px;
  }
  .main_menu_list > li {
    width: 100%;
    display: block;
  }
  .main_menu_list {
    margin: auto;
    padding: 15px;
    max-width: 730px;
    background-color: var(--bs-white);
    border: 1px solid rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.12);
  }
  .main_menu_list > li > a {
    width: 100%;
    display: block;
  }
  .main_menu_list .dropdown-menu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .main_menu_list > li > a {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
  }
  .clip_box_item:nth-child(odd) .item_content,
  .clip_box_item:nth-child(even) .item_content {
    margin: -30px 0 0 0;
  }
  .clip_box_item:nth-child(even) [class*=col-]:first-child {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .footer_top .col-lg-4 {
    width: 100%;
  }
  .footer_bottom {
    padding: 30px 0;
  }
  .footer_bottom .container-fluid,
  .footer_bottom .links_wrapper {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .backtotop .scroll {
    margin: 0;
  }
  .section_heading .heading_title [class*=highlight_text] {
    display: block;
  }
}
/* Media Screen 991px - End
================================================== */
/* Media Screen 767px - Start
================================================== */
@media screen and (max-width: 767px) {
  .hero_section .video_wrap {
    height: 430px;
  }
  .hero_section .social_links a {
    font-size: 20px;
  }
  .hero_section .social_links img {
    max-width: 20px;
  }
  .hero_section .social_links .icon-youtube {
    font-size: 16px;
  }
  .hero_section .social_links {
    gap: 8px;
  }
  .hero_section .popup_video {
    width: 90px;
  }
}
/* Media Screen 767px - End
================================================== */
/* Media Screen 680px - Start
================================================== */
@media screen and (max-width: 680px) {
  .hero_section h1 {
    font-size: 54px;
  }
  .hero_section .hero_icon img {
    max-width: 60px;
  }
  .hero_section .popup_video {
    right: 20px;
    bottom: 15px;
  }
  .hero_section .social_links a {
    font-size: 20px;
  }
  .hero_section .video_wrap {
    height: 380px;
  }
  .backtotop .scroll img {
    max-width: 24px;
  }
  .backtotop .scroll {
    width: 60px;
    height: 60px;
  }
  .hero_section .social_links {
    right: 15px;
  }
  .section_heading .heading_title {
    font-size: 30px;
  }
  .section_heading .heading_title [class*=highlight_text] {
    font-size: 48px;
  }
  .section_heading .heading_description {
    font-size: 18px;
  }
}
/* Media Screen 680px - End
================================================== */
/* Media Screen 575px - Start
================================================== */
@media screen and (max-width: 575px) {
  .hero_section video {
    height: 100%;
  }
  .hero_section h1 {
    font-size: 42px;
  }
  .hero_section .hero_icon img {
    max-width: 50px;
  }
  .section_heading .heading_title [class*=highlight_text] {
    font-size: 36px;
  }
  .section_heading .heading_title {
    font-size: 26px;
  }
  .carousel_arrows .line {
    width: 240px;
  }
  .section_heading .heading_icon img {
    max-width: 50px;
  }
  .section_heading .heading_icon {
    margin-bottom: 20px;
  }
  .clip_box_item .item_content {
    padding: 30px;
  }
  .clip_box_item .item_title {
    font-size: 30px;
  }
  .clip_box_item iframe {
    height: 330px;
  }
  [class*=partners_carousel] .swiper-slide {
    height: 80px;
  }
  .copyright_text {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* Media Screen 575px - End
================================================== */
/* Media Screen 425px - Start
================================================== */
@media screen and (max-width: 425px) {
  .main_menu {
    top: 75px;
  }
  .site_header.sticky .main_menu {
    top: 63px;
  }
  .playlist_player iframe {
    height: 320px;
  }
  #playlist .clip_title {
    font-size: 12px;
    font-weight: 700;
  }
  .blog_item .blog_title {
    font-size: 16px;
    line-height: 22px;
  }
  .blog_item .blog_content {
    padding: 20px;
    margin-top: 0;
  }
}
/* Media Screen 425px - End
================================================== */
/* Media Screen 375px - Start
================================================== */
@media screen and (max-width: 375px) {
  .site_header {
    padding: 20px 0;
  }
  .site_header + main {
    padding-top: 75px;
  }
  .carousel_arrows .line {
    width: 200px;
  }
}
/* Media Screen 375px - End
================================================== */
