@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

body {
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

figure {
  margin: 0;
}

a,
input,
button,
textarea {
  outline: none !important;
}

a {
  text-decoration: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
}

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

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row>* {
  padding-left: 15px;
  padding-right: 15px;
}

p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
}

p a {
  text-decoration: none;
  color: inherit;
}

p a:hover {
  text-decoration: none;
  color: #bbeadd;
}

ul li,
ol li {
  font-size: 24px;
  line-height: 100%;
  color: #3a3a3a;
  list-style: none;
}

ul li a,
ol li a {
  text-decoration: none;
  color: inherit;
}

ul li a:hover,
ol li a:hover {
  text-decoration: none;
  color: #bbeadd;
}

h1 {
  font-size: 74px;
  line-height: 112px;
  font-weight: 600;
  margin: 0;
}

h2 {
  font-size: 74px;
  line-height: 88px;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-size: 56px;
  line-height: 84px;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-size: 48px;
  line-height: 72px;
  font-weight: 600;
  margin: 0;
}

h5 {
  font-size: 32px;
  line-height: 48px;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-size: 21px;
  line-height: 40px;
  font-weight: 400;
  margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

textarea {
  resize: none;
}

/* buttons */

/* buttons */

/* ----- title declaration ----- */

.main-title {
  color: #fff;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 110%;
}

.main-title * {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

.section-title {
  color: #EC9F25;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.section-title * {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.block-title {
  color: #1e1e1e;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 133%;
}

.block-title * {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.normal-text {
  color: #fff;
  text-overflow: ellipsis;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 124%;
}

.normal-text * {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.small-text {
  color: #1E1E1E;
  font-family: "Heebo", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.small-text * {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: "Heebo", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  padding: 12px 20px;
  border-radius: 10px;
}

.btn-green {
  background: #EC9F25;
  border: 2px solid transparent;
}

.btn-green:hover {
  border-color: #EC9F25;
  color: #EC9F25;
  background: none;
}

/* slick slider */
.slick-slider {
  opacity: 0;
}

.slick-slider.slick-initialized {
  opacity: 1;
}

/* slick slider */

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 35px 0 15px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.header.fixed {
  padding: 15px 0;
  background: linear-gradient(180deg, rgba(236, 159, 37, 0.5) -2.08%, rgba(236, 159, 37, 0.5) 99.31%);
  ;
  backdrop-filter: blur(15px);
  transition: 0.4s;
}

.header.fixed .header-logo {
  max-width: 130px;
  transition: 0.4s;
}

.header-content {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.dropdown-toggle {
  display: inline-block;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.header-menu-list>ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.header-menu-list {
  margin-top: 10px;
}

.header-menu-list ul li {
  list-style: none;
  display: inline-flex;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.event-header .header-menu-list ul li {
  color: #000;
}

.header-menu-list ul li:not(:last-child) {
  margin-right: 50px;
}

.header-menu-list ul li a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.header-menu-list ul li a:hover {
  color: #EC9F25;
}

.event-header .header-menu-list ul li a:hover {
  color: #016f01;
}

.header-logo {
  display: flex;
  justify-content: center;
  transition: 0.4s;
}

.header-logo .navbar-brand {
  display: inline-block;
}

.header-menu-list .dropdown-menu {
  min-width: 36px;
  width: 100%;
}

.header-menu-list .dropdown-menu .dropdown-item {
  padding: 0;
  color: #000;
  text-align: center;
}

.header-menu-list .dropdown-menu .dropdown-item:hover {
  color: #016f01;
  background: #FFF;
}

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

.header-menu-list ul li .dropdown-menu li:not(:last-child) {
  margin-right: 0;
}

.menu-top-part .dropdown-menu {
  padding: 0.5rem 0;
  min-width: 36px;
  width: 100%;
}

.menu-top-part .dropdown-menu .dropdown-item {
  padding: 0;
  color: #000;
  text-align: center;
  font-size: 16px;
}

.menu-top-part .dropdown-menu .dropdown-item:hover {
  color: #016f01;
  background: #FFF;
}

.menu-top-part ul li .dropdown-menu li {
  width: 100%;
}

.menu-top-part ul li .dropdown-menu li:not(:last-child) {
  margin-right: 0;
}

.dropdown-toggle::after {
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 9' fill='none'%3E%3Cpath d='M5.07257 8.09191L0.286987 0.908203H9.85819L5.07257 8.09191Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 9px;
  height: 7px;
  vertical-align: 0.200em;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.dropdown-toggle:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 9' fill='none'%3E%3Cpath d='M5.07257 8.09191L0.286987 0.908203H9.85819L5.07257 8.09191Z' fill='%23EC9F25' stroke='%23EC9F25'/%3E%3C/svg%3E");
}

.dropdown-toggle.show:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.menu-top-part .dropdown-toggle::after {
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 9' fill='none'%3E%3Cpath d='M5.07257 8.09191L0.286987 0.908203H9.85819L5.07257 8.09191Z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 9px;
  height: 7px;
  vertical-align: 0.200em;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.menu-top-part .dropdown-toggle:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 9' fill='none'%3E%3Cpath d='M5.07257 8.09191L0.286987 0.908203H9.85819L5.07257 8.09191Z' fill='%23000'/%3E%3C/svg%3E");
}
/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/* banner */
.banner-section {
  position: relative;
}

.banner-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-image::before {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 16%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0.20) 100%),
    radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 78%, rgba(0, 0, 0, 0.40) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.banner-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-block {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  -webkit-transform: translate(-50%, -40%);
  -moz-transform: translate(-50%, -40%);
  -ms-transform: translate(-50%, -40%);
  -o-transform: translate(-50%, -40%);
}

.banner-content .main-title {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.banner-btn {
  display: flex;
  justify-content: center;
  margin: 35px 0 0;
}

.banner-btn .btn svg {
  margin-left: 10px;
}

.banner-btn .btn:hover {
  background: #FFF;
  border-color: #FFF;
  color: #EC9F25;
}

.banner-btn .btn:hover svg path {
  fill: #EC9F25;
}

.open-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 64px;
  height: 64px;
  right: 188px;
  bottom: 37px;
  background: #EC9F25;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.open-menu:hover {
  opacity: 0.7;
}

.providers-banner-section .banner-image {
  height: 500px;
}

.form-banner-section .banner-image {
  height: 500px;
}

.provider-more-info-banner-section .banner-image {
  height: 635px;
}

.providers-banner-section .banner-content .section-title {
  color: #FFF;
}

.form-banner-section .banner-content .section-title {
  color: #FFF;
}

.providers-banner-section .banner-content .small-text {
  margin: 20px auto 0;
  width: 100%;
  max-width: 652px;
  text-align: center;
  color: #FFF;
  font-size: 16px;
}

.form-banner-section .banner-content .small-text {
  margin: 20px auto 0;
  width: 100%;
  max-width: 652px;
  text-align: center;
  color: #FFF;
  font-size: 18px;
}

.providers-banner-section .banner-block {
  transform: translate(-50%, 20%);
  -webkit-transform: translate(-50%, 20%);
  -moz-transform: translate(-50%, 20%);
  -ms-transform: translate(-50%, 20%);
  -o-transform: translate(-50%, 20%);
}

.form-banner-section .banner-block {
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
}

.provider-more-info-banner-section .banner-content .small-text {
  color: #FFF;
  text-align: center;
}

.provider-more-info-banner-section .banner-content .main-title {
  max-width: 100%;
  margin-top: 20px;
}

.provider-more-info-banner-section .banner-block {
  transform: translate(-50%, -12%);
  -webkit-transform: translate(-50%, -12%);
  -moz-transform: translate(-50%, -12%);
  -ms-transform: translate(-50%, -12%);
  -o-transform: translate(-50%, -12%);
}

/* banner */

/* menu */
.menu-part {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 100%;
  width: 100%;
  bottom: 0;
  height: 100%;
  overflow: auto;
  background: #fff;
  transition: 0.5s;
  z-index: 9999;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.menu-part.show {
  right: 0;
  height: auto;
}

.menu-part-content {
  padding: 48px 0 85px;
}

.menu-top-part {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 48px;
}

.menu-top-part ul {
  padding: 0;
  margin: 0;
}

.menu-top-part .dropdown-toggle {
  font-family: "Fraunces", serif;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.menu-logo {
  display: flex;
  justify-content: center;
}

.menu-logo a {
  display: inline-block;
}

.info-image {
  display: inline-block;
}

.info-image:hover{
  opacity: 0.6;
}

.menu-center-part {
  margin: 80px 0 0;
}

.menu-center-part .nav .nav-item {
  color: #EC9F25;
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 120%;
}

.menu-center-part .nav .nav-item .nav-link {
  position: relative;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding: 0;
}

.menu-center-part .nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  background: #EC9F25;
  width: 0;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.menu-center-part .nav .nav-item .nav-link.focus-effect::before,
.menu-center-part .nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.menu-center-part .nav .nav-item .nav-link.no-focus-effect::before {
  width: 0;
}

.menu-center-part .nav {
  display: flex;
  flex-direction: column;
}

.menu-center-part .nav .nav-item:not(:last-child) {
  margin-bottom: 30px;
}

.menu-center-part .nav .dropdown-toggle::after {
  display: none;
}

.menu-center-part .dropdown-menu {
  display: block;
  opacity: 0;
  border: none;
  padding: 0;
  margin: 0;
}

.menu-center-part .dropdown-menu.show {
  opacity: 1;
}

.menu-center-part .dropdown-menu .dropdown-item {
  padding: 0;
  color: #EC9F25;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 137%;
  margin-bottom: 40px;
}

.menu-center-part .dropdown-menu .dropdown-item:hover {
  background: none;
}

.menu-bottom-part {
  margin-top: 280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-bottom-menu-list ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-bottom-menu-list ul li {
  list-style: none;
  display: inline-flex;
  color: #4F4F4F;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 22px;
}

.menu-bottom-menu-list ul li a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.menu-bottom-menu-list ul li a:hover {
  color: #EC9F25;
}

.menu-bottom-menu-list li:not(:last-child) {
  margin-right: 30px;
}

.menu-close-btn {
  padding-bottom: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  background: #EC9F25;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}

.menu-close-btn:hover {
  opacity: 0.7;
}

/* menu */

/* card category */
.card-category-section {
  padding: 80px 0;
}

.card-category-image {
  width: 100%;
  height: 240px;
  margin-bottom: 10px;
}

.card-category-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-category-image img {
  border-radius: 10px;
}

.card-btn .btn {
  display: flex;
  width: 100%;
}

.card-btn .btn:hover {
  background: #EC9F25 !important;
  color: #FFF !important;
}

.card-category-content .row {
  margin: 0 -10px;
}

.card-category-content .row>* {
  padding: 0 10px;
}

/* card category */

/* card shop section */
.card-shop-section {
  padding: 120px 0;
  overflow: hidden;
}

.card-shop-content {
  overflow: hidden;
}

.card-shop-child-content .block-title {
  position: relative;
  margin: 28px 0 0;
  color: #333;
  font-weight: 600;
}

.card-shop-child-content .block-title::before {
  position: absolute;
  content: "";
  background: #333;
  width: 100%;
  height: 1px;
  left: -64%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.card-shop-child-content .block-title::after {
  position: absolute;
  content: "";
  background: #333;
  width: 100%;
  height: 1px;
  right: -64%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.card-shop-block {
  margin: 60px 0 0;
}

.card-shop-mobile-block {
  margin: 60px 0 0;
}

.card-shop-mobile-slider .slick-slide {
  padding: 0 16px;
}

.card-shop-mobile-slider .slick-list {
  margin: 0 -16px;
  padding-right: 1px;
}

.card-shop-image {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 368px;
  border-radius: 10px;
  border: 1px solid #EEE;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.card-shop-image * {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-shop-info-block {
  margin: 20px 0 0;
  padding: 0 10px;
}

.cars-shop-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cars-shop-info .price {
  font-family: "Heebo", sans-serif;
  color: #EC9F25;
  font-size: 28px;
  font-weight: 400;
  line-height: 133%;
}

.card-shop-info-block .small-text {
  margin: 8px 0 0;
}

.card-shop-block .show-all-btn {
  margin: 70px 0 0;
  display: flex;
  justify-content: center;
}

.card-shop-mobile-block .show-all-btn {
  margin: 70px 0 0;
  display: flex;
  justify-content: center;
}

/* card shop section */

/* card provider section */
.card-provider-section {
  padding: 120px 0;
}

.card-provider-child-content .small-text {
  margin: 20px auto 0;
  text-align: center;
  width: 100%;
  max-width: 652px;
}

.card-provider-block {
  margin: 60px 0 0;
}

.card-provider-detail {
  position: relative;
}

.card-provider-image {
  width: 100%;
  height: 368px;
}

.card-provider-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-provider-image img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.card-provider-detail .normal-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(2px);
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
}

.card-provider-slider .slick-list {
  margin: 0 -16px;
}

.card-provider-slider .slick-slide {
  padding: 0 16px;
}

.card-provider-block .find-out-btn {
  margin: 60px 0 0;
  display: flex;
  justify-content: center;
}

.card-provider-block .find-out-btn .btn svg {
  margin-left: 10px;
}

.card-provider-block .find-out-btn .btn:hover svg path {
  fill: #EC9F25;
}

/* card provider section */

/* night section  */
.night-section {
  position: relative;
}

.night-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.night-image::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 90%, rgba(0, 0, 0, 0.70) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.night-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.night-block {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.night-content .section-title {
  color: #FFF;
  text-align: left;
}

.night-content {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.cycle-content{
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: unset;
}

.night-content .small-text {
  margin: 20px 0 0;
  color: #FfF;
}

.night-btn {
  margin: 40px 0 0;
}

/* night section  */

/* success stories section */
.success-stories-section {
  padding: 120px 0;
}

.success-stories-content {
  width: 100%;
  max-width: 985px;
  margin: 0 auto;
}

.success-stories-child-content {
  padding-bottom: 20px;
  border-bottom: 2px solid #000;
}

.success-stories-child-content .small-text {
  margin: 20px auto 0;
  width: 100%;
  max-width: 652px;
  text-align: center;
}

.success-stories-block {
  display: flex;
  justify-content: space-between;
}

.succcess-stories-part .success-stories-block:not(:last-child) {
  margin-bottom: 80px;
}

.success-stories-left-part {
  margin-right: 50px;
}

.success-stories-left-part .block-title {
  text-align: left;
}

.succes-stories-image {
  width: 100%;
  max-width: 230px;
  height: 183px;
}

.succes-stories-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.succes-stories-image img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.success-stories-right-part {
  flex: 0 0 auto;
}

.success-stories-left-part .small-text {
  margin: 11px 0 0;
  font-size: 16px;
}

.succcess-stories-part {
  margin: 60px 0 0;
}

.success-stories-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* success stories section */

/* cycling tours */
.cycling-tours-section {
  position: relative;
}

.cycling-tours-block {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.cycling-tours-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.cycling-tours-image::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 10%, rgba(0, 0, 0, 0.00) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.cycling-tours-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cycling-tours-content {
  width: 100%;
  max-width: 500px;
  margin-left: 35px;
}

.cycling-tours-content .section-title {
  text-align: left;
  color: #FFF;
}

.cycling-tours-content .small-text {
  margin: 20px 0 0;
  color: #FFF;
}

.cycling-tours-btn {
  margin: 40px 0 0;
}

/* cycling tours */

/* events section */
.events-section {
  padding: 120px 0;
}

.events-content {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}

.events-image {
  flex: 0 0 auto;
  width: 100%;
  max-width: 230px;
  height: 183px;
}

.events-image img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  object-fit: none;
  object-position: center;
}

.events-block {
  display: flex;
  justify-content: space-between;
}

.events-news-block {
  display: flex;
  margin-right: 50px;
}

.events-date {
  color: #EC9F25;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 120%;
  text-transform: uppercase;
  margin-right: 50px;
  margin-top: 10px;
}

.events-date span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 124%;
}

.events-news-info-block .block-title {
  margin: 11px 0 0;
  text-align: left;
}

.events-news-info-block .small-text {
  margin: 11px 0 0;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  width: 100%;
  max-width: 705px;
}

.events-wrp {
  margin: 100px 0 0;
}

.events-wrp .events-block:not(:last-child) {
  margin-bottom: 40px;
}

.events-wrp .find-out-btn {
  display: flex;
  justify-content: center;
  margin: 100px 0 0;
}

.events-wrp .find-out-btn .btn svg {
  margin-left: 10px;
}

.events-wrp .find-out-btn .btn:hover svg path {
  fill: #EC9F25;
}

/* events section */

/* sign up section */
.sign-up-section {
  padding: 60px 0;
  background: #4180AD;
}

.sign-up-content .section-title {
  color: #FFF;
}

.sign-up-content .small-text {
  width: 100%;
  max-width: 450px;
  margin: 20px auto;
  color: #FFF;
  text-align: center;
}

.form-top-part {
  display: flex;
  justify-content: center;
}

.common-form .form-group {
  width: 100%;
  max-width: 360px;
  margin-right: 20px;
}

.common-form .form-group .form-control {
  border-radius: 10px;
  background: #FFF;
  padding: 16px 20px;
  border: none;
}

.common-form .form-check {
  display: flex !important;
  margin: 25px auto 0 !important;
  width: 100% !important;
  max-width: 740px !important;
}

.common-form .form-group .form-control::placeholder {
  color: #EC9F25;
  font-size: 16px;
  font-weight: 300;
  line-height: 152%;
}

.common-form .form-check .form-check-label {
  color: #FFF;
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  user-select: none;
}

.common-form .form-check-input {
  flex: 0 0 auto;
  box-shadow: none;
  width: 13px;
  height: 13px;
  margin-left: 0 !important;
  margin-top: 4px;
  margin-right: 15px;
  border-radius: 2.5px;
  border: 1px solid #B4B4B4;
  background-color: #FFF;
  -webkit-border-radius: 2.5px;
  -moz-border-radius: 2.5px;
  -ms-border-radius: 2.5px;
  -o-border-radius: 2.5px;
}

.common-form .form-check-input:checked {
  background-color: #EC9F25 !important;
  border-color: #B4B4B4 !important;
}

.common-form .form-check-input:focus {
  border-color: #B4B4B4 !important;
  box-shadow: none !important;
}

.sign-up-form-part .submit-btn .btn:hover {
  color: #FFF;
  border-color: #FFF;
}

/* sign up section */

/* image gallery section */
.image-gallery-section {
  padding: 120px 0;
}

.image-gallery-detail {
  width: 100%;
  max-width: 700px;
}

.image-gallery-detail .image-gallery-info:not(:last-child) {
  margin-bottom: 60px;
}

.image-gallery-info .block-title {
  text-align: left;
  margin-bottom: 25px;
}

.image-gallery-info .small-text {
  color: #000;
  font-size: 16px;
}

.image-gallery-info .small-text p:not(:last-child) {
  margin-bottom: 50px;
}

.image-gallery-slider-block {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}

.pagination {
  margin: 17px 0 0;
  color: #4F4F4F;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.image-gallery-slider .slick-arrow {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EC9F25;
  position: absolute;
  bottom: -60px;
  right: 0;
  cursor: pointer;
}

.image-gallery-slider .slick-arrow:hover svg path{
  fill: #d7d7d7;
}

.image-gallery-slider .slick-arrow.slick-prev {
  right: 60px;
}

/* image gallery section */

/* card proider section */
.card-provider-link-list {
  padding: 50px 0;
  background: #F2F2F2;
}

.card-provider-link-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.card-provider-link-list ul li a {
  position: relative;
}

.card-provider-link-list ul li a.active {
  transform: translateY(-15%);
  -webkit-transform: translateY(-15%);
  -moz-transform: translateY(-15%);
  -ms-transform: translateY(-15%);
  -o-transform: translateY(-15%);
}

.card-provider-link-list ul li a.active::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: #EC9F25;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.list-filter.active{
  background: #EC9F25 !important;
}

.card-provider-link-list ul li:not(:last-child) {
  margin-right: 40px;
}

.card-provider-link-list ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Heebo", sans-serif;
  padding: 12px 20px;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.card-provider-link-list ul li a:hover {
  background: #EC9F25 !important;
}

.card-provider-link-content {
  padding: 60px 0;
}

.card-provider-link-content .card-provider-detail .small-text,
.card-provider-item .card-provider-detail .small-text{
  margin: 6px 0 0;
  font-size: 16px;
  color: #FFF;
  text-align: left;
}

.card-provider-link-content .card-provider-detail {
  display: block;
  margin-bottom: 32px;
}

.card-provider-link-button {
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}

/* card proider section */

/* contact information */
.contact-information {
  padding: 80px 0;
  background: #EC9F25;
}

.contact-information-detail .block-title {
  text-align: left;
  color: #FFF;
  margin-bottom: 24px;
}

.contact-information-detail .small-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFF;
}

.contact-information-detail .small-text>*:first-child {
  margin-bottom: 30px;
}

.contact-information-detail .small-text a {
  text-decoration: underline;
}

.contact-information-detail .small-text a:hover {
  color: #95ff00;
}

.contact-information-center-part .block-title {
  color: #FFF;
  text-align: left;
  margin-bottom: 24px;
}

.contact-information-center-info .small-text {
  color: #FFF;
  font-weight: 700;
}

.contact-information-center-info .small-text span {
  display: block;
  font-weight: 400;
}

.contact-information-center-info>*:not(:last-child) {
  margin-bottom: 30px;
}

.contact-information-right-part .block-title {
  margin-bottom: 24px;
  color: #FFF;
  text-align: left;
}

.social-media-list ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-media-list ul li {
  list-style: none;
  display: inline-flex;
}

.social-media-list ul li a {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.social-media-list ul li:not(:last-child) {
  margin-right: 40px;
}

.social-media-list ul li a:hover svg path {
  stroke: #016f01;
  fill: #EC9F25;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

/* contact information */

/* map section  */
.map-image {
  width: 100%;
  height: 100%;
}

.map-image * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* map section  */

/* card provider wrp info */
.card-provider-wrp-info {
  padding: 60px 0;
}

.card-provider-wrp-content .section-title {
  color: #000;
}

.card-provider-wrp-slider-part {
  margin: 60px 0 0;
}

.card-provider-wrp-slider .slick-list {
  margin: 0 -16px;
}

.card-provider-wrp-slider .slick-slide {
  padding: 0 16px;
}

/* card provider wrp info */

/* form part section */
.form-part-section {
  padding: 70px 0 120px;
}

.form-part-content {
  width: 100%;
  max-width: 672px;
  margin: 0 auto;
}

.form .form-group {
  position: relative;
  margin-bottom: 35px;
}

.form .form-group .form-control {
  border-radius: 6px;
  border: 1px solid #BDBDBD;
  background: #FFF;
  padding: 16px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.form .form-group .form-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #828282;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  pointer-events: none;
}

.form .form-group .form-control.focused {
  padding: 24px 16px 8px;
  transition: 0.3s;
  border-color: #000;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.form .form-group .form-control.focused+.form-label {
  transition: 0.3s;
  font-size: 10px;
  transform: translateY(-125%);
  -webkit-transform: translateY(-125%);
  -moz-transform: translateY(-125%);
  -ms-transform: translateY(-125%);
  -o-transform: translateY(-125%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.form .form-check {
  padding-left: 0;
}

.form .form-check .form-check-label {
  color: #000;
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  user-select: none;
}

.form .form-check-input {
  box-shadow: none;
  width: 20px;
  height: 20px;
  margin-left: 0 !important;
  margin-top: 2px;
  margin-right: 10px;
  border-radius: 0;
  border: 1px solid #000;
  background-color: #FFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.form .form-check-input3 {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.form .form-check-input:checked {
  background-color: #EC9F25 !important;
  border-color: #000 !important;
}

.form .form-check-input:focus {
  border-color: #000 !important;
  box-shadow: none !important;
}

textarea.form-control {
  padding: 16px 16px 80px !important;
}

textarea.form-control.focused {
  padding: 30px 16px 66px !important;
}

.teaxtarea-lable {
  top: 16px !important;
  transform: translateY(0) !important;
  -webkit-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
}

.form .form-submit .btn {
  display: flex;
  width: 100%;
}

/* form part section */

/* card blok section */
.card-block-wrp {
  padding: 40px 0;
  background: #F2F2F2;
}

.card-block-wrp ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.card-block-wrp ul li {
  list-style: none;
  display: inline-flex;
}

.card-block-wrp ul li:not(:last-child) {
  margin-right: 50px;
}

.card-block-section .card-shop-block {
  padding: 60px 0 0;
  margin: 0;
}

.card-block-section .card-shop-block .card-shop-detail {
  margin-bottom: 60px;
}

/* card blok section */

/* image gallery section */
.item-gallery-main {
  padding: 120px 0 83px;
}

.item-gallery-main .section-title {
  color: #000;
  text-align: left;
  margin-bottom: 60px;
}

.item-gallery-detail {
  width: 100%;
  max-width: 700px;
}

.item-gallery-detail .item-gallery-info:not(:last-child) {
  margin-bottom: 60px;
}

.item-gallery-info .block-title {
  text-align: left;
  margin-bottom: 25px;
}

.item-gallery-info .small-text {
  color: #000;
  font-size: 16px;
}

.item-gallery-info .small-text p:not(:last-child) {
  margin-bottom: 50px;
}

.item-gallery-slider-block {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}

.pagination {
  margin: 17px 0 0;
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.item-gallery-slider .slick-arrow {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EC9F25;
  position: absolute;
  bottom: -60px;
  right: 0;
  cursor: pointer;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.item-gallery-slider .slick-arrow:hover svg path{
  fill: #95ff00;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.item-gallery-slider .slick-arrow.slick-prev {
  right: 60px;
}

.item-gallery-content .btn {
  margin: 60px 0 0 auto;
  display: block;
  max-width: 700px;
}

.item-gallery-content .btn svg {
  padding-left: 10px;
  width: 45px;
  height: 25px;
}

.item-gallery-content .btn:hover svg path {
  fill: #EC9F25;
}

.item-banner-mobile-content .section-title {
  font-size: 54px;
  color: #fff;
  margin: 20px 0;
}

/* image gallery section */

/*grajski*/

.grajski-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.grajski-wrap .grajski-title {
  padding: 40px 0 60px;
}

.grajski-title .section-title {
  color: #000;
}

.grajski-title .small-text {
  color: #000;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.grajski-detail {
  margin: 80px auto 60px auto;
  max-width: 920px;
}

.grajski-detail .block-title {
  text-align: left;
}

.grajski-detail .small-text {
  color: #000;
  margin-top: 24px;
  font-size: 16px;
}

.grajski-detail .small-text * {
  margin-top: 24px;
}

.grajski-detail-other {
  margin-top: 60px;
}

/*grajski*/

/*other events*/
.other-events-main {
  padding: 120px 0;
}

.other-events-wrap .section-title {
  margin-bottom: 60px;
  color: #000;
}

.other-events-slider {
  opacity: 0;
}

.other-events-slider.slick-initialized {
  opacity: 1;
}

.other-events-wrap .other-events-slider .slick-slide {
  padding: 0 16px;
}

.other-events-wrap .other-events-slider .slick-list {
  margin: 0 -16px;
}

.other-events-wrap .other-events-slider .other-events-block img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
}

.other-event-detail {
  max-width: 343px;
  margin: 21px auto 0 auto;
}

.other-event-detail .small-text {
  color: #EC9F25;
  text-align: center;
  margin-bottom: 6px;
}

.other-event-detail .small-text>*:first-child {
  font-weight: 700;
}

.other-events-wrap {
  max-width: 1543px;
  margin: 0 auto;
}

/*other events*/

/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer-top {
  padding: 70px 0;
  background: #EC9F25;
}

.footer-top-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-top-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-top-list ul li {
  list-style: none;
  color: #FFF;
  font-family: "Heebo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.footer-top-list ul li a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.footer-top-list ul li a:hover {
  color: #d9b8a8;
}

.footer-top-list ul li:not(:last-child) {
  margin-right: 24px;
}

.footer-bottom-list {
  margin: 80px 0 0;
}

.footer-bottom-list ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom-list ul li {
  display: inline-flex;
  list-style: none;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: normal;
}

.footer-bottom-list ul li a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.footer-bottom-list ul li a:hover {
  color: #EC9F25;
}

.footer-bottom-list ul li:not(:last-child) {
  margin-right: 24px;
}

.footer-bottom {
  padding: 60px 0;
}

.footer-logo-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.footer-logo-list ul li:not(:last-child) {
  margin-right: 100px;
}

.footer-copyright {
  margin: 45px 0 0;
  text-align: center;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}

/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/

.contentHeader{
  position: sticky;
  color: #000;
}

.contentHeader .header-menu-list ul li a{
  color: #000;
}

.map-section #map{
  height: 700px;
}

.error .container{
  margin-top: 50px;
  margin-bottom: 50px;
}

.content.go .container{
  margin-top: 50px;
}

.sign-up-form-part .form-check.error .form-check-input{
  border: 1px solid red;
}

.sign-up-form-part .form-check.error .form-check-label{
  color: red;
}

.sign-up-form-part #email.error{
  border: 1px solid red;
}

.sign-up-content .subscribe-text{
  display: none;
  text-align: center;
  font-size: 19px;
  padding-top: 10px;
}

.sign-up-form-part .form-check-label a{
  color: #fff;
  text-decoration: underline;
}

form#data-form{
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

form#data-form .form-check{
  text-align: start;
}

form#data-form .form-textarea-group textarea{
  width: 100%;
}

form#data-form .validationMessages{
  color: red;
  text-align: start;
  position: absolute;
}

.content.go .container section ul li{
  list-style-type: disc;
  list-style-position: inside;
  font-size: 16px;
  color: inherit;
}

form#data-form .form-check-label a{
  color: #EC9F25;
}

.banner-section .banner-image .d-block{
  min-height: 600px;
}

.open-menu-btn-mobile {
  display: none;
}

.banner-section.homepageImg{
  position: relative;
}
.banner-section.homepageImg img{
  display: block;
}

.banner-section.homepageImg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center; /* Center the text */
  color: white;
  font-size: 1.5rem;
  text-align: center;
}

.video-overlay-full{
  position: relative;
}

.video-overlay-full .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center; /* Center the text */
  color: white;
  font-size: 1.5rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .open-menu-btn-mobile {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
  }
}

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

  .open-menu-btn-mobile {
    width: 50px !important;
    height: 50px !important;
    border: solid 1px #ccc;
  }

  .open-menu-btn-mobile img {
    width: 25px;
    height: 50px;
    margin-left: 13px;
  }
 
}

.content.go .container h3{
  text-align: center;
}

.menu-center-desktop-view .nav .nav-item a{
  display: inline-block;
}

.contentHeader.fixed .header-menu-list ul li a{
  color: #fff;
}



.card-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

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

.card h3 {
  font-size: 24px;
  font-weight: bold;
}

.card p {
  margin: 5px 0;
  font-size: 18px;
  color: #555;
}

.card a {
  color: #555;
  text-decoration: none;
  font-size: 18px;
}

.card a:hover {
  text-decoration: underline;
}

.content.go .container{
  margin-bottom: 50px;
}

.white-info-img{
  background-image: url('../img/info_white.svg');
  width: 36px;
  height: 36px;
}

.black-info-image{
  background-image: url('../img/info.svg');
  width: 36px;
  height: 36px;
}

.card-container .card h3{
  line-height: normal;
  padding-bottom: 25px;
}

.banner-video-section{
  position: relative;
}

.banner-video-section video{
  width: 100%;
}

.banner-video-section .v-title{
  font-size: 74px;
  line-height: 110%;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 90%;
}

.banner-video-section .v-subtitle{
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 90%;
  padding-top: 100px;
}

.card-category-content .row{
  display: flex;
  justify-content: center;
}
