.header {
  width: 100%;
  padding: 16px 0;
  background: var(--white-color);
  z-index: 11;
  transition: 0.3s;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

@keyframes sticky {
  0% {
    transform: translateY(-250px);
  }

  100% {
    transform: translateY(0);
  }
}

.nav-primary {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--black-color);
  color: var(--white-color);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: 999;
  padding: 20px 20px 20px;
}

.nav-primary.open {
  transform: translateX(0);
}

.close-nav-primary {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-primary ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-primary ul li a {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--white-color);
  padding: 8px 0;
  display: inline-block;
}

.nav-primary ul li.active a {
  color: var(--btn-background);
}

.nav-primary ul li.active a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--btn-background);
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn-toggle {
  width: 29px;
  display: block;
  cursor: pointer;
  position: relative;
  margin-left: 15px;
}

.btn-toggle span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  align-items: center;
  text-align: center;
  color: var(--black-color);
  transition: var(var(--transition));
}

.btn-toggle div {
  width: 100%;
  height: 3px;
  margin: 9px 0 0 0;
  background: var(--primary-color);
  transition: var(var(--transition));
}

.btn-toggle div.one {
  margin-top: 0;
}

.btn-toggle .two {
  opacity: 0;
}

.btn-toggle.close span {
  opacity: 0;
}

.btn-toggle.close .one {
  transform: rotate(45deg) translate(8px, 8px);
}

.btn-toggle.close .three {
  transform: rotate(-45deg) translate(9px, -9px);
}

.header-nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav__logo {
  width: 54px;
}

.header-nav__right {
  width: calc(100% - 54px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .nav-btn li:first-child {
    display: block;
  }
}

@media (min-width: 1200px) {

  .close-nav-primary,
  .btn-toggle {
    display: none;
  }

  .header {
    padding: 24px 0;
  }

  .header-nav__logo {
    width: 109px;
  }

  .header.sticky {
    padding: 12px 0;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }

  .nav-primary {
    position: unset;
    width: unset;
    height: unset;
    background: unset;
    transform: unset;
    z-index: unset;
    padding: 0;
    transition: none;
  }

  .nav-primary ul {
    flex-direction: row;
    gap: 18px;
  }

  .nav-primary ul li a {
    color: var(--primary-color);
  }

  .nav-primary ul li a:hover {
    color: var(--btn-background);
  }

  .nav-primary ul li a::after {
    content: "";
    width: 0;
    height: 1px;
    background: var(--btn-background);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition);
  }

  .nav-primary ul li a:hover::after {
    background: var(--btn-background);
    width: 100%;
  }

  .nav-btn {
    gap: 15px;
    margin: 0;
  }
}

@media (min-width: 1366px) {
  .nav-primary ul {
    gap: 24px;
  }

  .nav-btn {
    gap: 24px;
  }

  .header-nav .container-fluid {
    padding: 0 52px;
  }
}

/* Banner */

.header-banner {
  position: relative;
}

.header-banner .container-fluid {
  padding: 0 11px;
}

.header-banner-container {
  position: relative;
}

.header-banner-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.header-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-banner__content {
  padding: 306px 0px 24px;
  max-width: 980px;
  margin: 0 auto;
}

.header-banner__content h1 {
  margin-bottom: 6px;
}

.header-banner__content p {
  color: var(--white-color);
}

@media (min-width: 1200px) {
  .header-banner-image {
    width: calc(100% - 48px);
    left: 24px;
    border-radius: 24px;
    overflow: hidden;
  }

  .header-banner-container {
    height: 770px;
    display: flex;
    justify-content: center;
    align-items: end;
  }

  .header-banner__content {
    padding: 0 0 50px;
  }

  .header-banner__content p {
    font-size: 20px;
    line-height: 1.45em;
  }
}

@media (min-width: 1920px) {
  .header-banner-container {
    height: 990px;
  }
}

.half-and-half__wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

.half-content .subheading {
  padding-right: 0;
  margin-left: 40px;
  margin-bottom: 11px;
}

.half-content .subheading::after {
  width: calc(100% + 40px);
  margin-left: -40px;
  left: 0;
}

.half-content h2 {
  margin-bottom: 10px;
  text-align: left;
}

.half-content p {
  color: var(--text-color);
}

.half-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 28px;
}

.half-content ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--heading-color);
  padding-left: 24px;
}

.half-content ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/list-icon.svg) no-repeat 0 0;
  background-size: cover;
  position: absolute;
  top: 3px;
  left: 0;
}

.collus {
  padding: 24px;
  background: rgba(243, 182, 60, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.collus__number {
  position: relative;
  padding-left: 64px;
}

.collus__number {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.4444444444444444em;
}

.collus__number a {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-color);
}

.collus__number a:hover {
  color: #f3b63c;
}

.collus__number::after {
  content: "\e901";
  font-family: "carnival";
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: var(--white-color);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--btn-background);
}

.collus__readmore a {
  display: block;
}

.collus__readmore .btn {
  font-size: 20px;
  line-height: 29px;
  border-radius: 8px;
  padding: 12px 26px 12px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collus__readmore .btn::after {
  position: relative;
  margin-left: 10px;
  right: unset;
  top: unset;
  transform: unset;
  font-size: 25px;
}

@media (min-width: 768px) {
  .half-and-half__wrapper {
    flex-direction: row;
  }

  .half-image {
    width: calc(50% - 15px);
  }

  .half-content {
    width: calc(50% - 15px);
  }
}

@media (min-width: 1200px) {
  .half-and-half__wrapper {
    gap: 60px;
  }

  .half-content ul {
    gap: 20px;
    margin-bottom: 42px;
  }

  .half-content ul li {
    font-size: 22px;
    line-height: 1.4545454545454546em;
    padding-left: 44px;
  }

  .half-content ul li::before {
    width: 32px;
    height: 32px;
  }

  .collus {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }

  .collus__number {
    font-size: 22px;
    line-height: 1.1818181818181819em;
  }

  .collus__number span {
    font-size: 24px;
  }

  .collus__readmore .btn {
    display: inline-block;
    padding: 12px 51px 12px 24px;
  }

  .collus__readmore .btn::after {
    position: absolute;
    margin-left: unset;
    right: 16px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .collus__readmore .btn:hover::after {
    right: 6px;
  }

}

.editions-block .section-heading {
  margin-bottom: 20px;
}

.editions-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editions-card {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.editions-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.editions-card__content {
  position: relative;
  padding: 40px 14px 10px;
}

.editions-card__content h6 {
  color: var(--btn-background);
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 400;
}

.editions-card__content h4 {
  color: var(--white-color);
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.0625em;
  max-width: 255px;
}

.editions-card__content p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5em;
  color: var(--white-color);
}

.editions-card__content__link {
  text-align: right;
}

.editions-card__content__link a {
  border-color: var(--white-color);
  color: var(--white-color);
}

.editions-btn {
  margin-top: 24px;
}


@media (min-width:768px) {
  .editions-card {
    width: calc(50% - 15px);
  }

  .editions-card.editions-card-big {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .editions-card {
    width: calc(25% - 20px);
    transition: ease-out 0.5s all;
  }

  .editions-card__content {
    padding: 83px 12px 12px 24px;
  }

  .editions-card .editions-card__content__link {
    display: none;
  }

  .editions-card.editions-card-big {
    width: calc(50% - 20px);
  }

  .editions-card-big .editions-card__content__link {
    display: block;
  }

  .editions-card__content h6 {
    font-size: 20px;
    line-height: 1.45em;
  }

  .editions-card__content h4 {
    font-size: 24px;
    line-height: 30px;
    max-width: 367px;
  }

  .editions-card__content p {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 0;
  }

  .editions-wrapper {
    gap: 30px;
  }

  .editions-btn {
    margin-top: 60px;
  }

}

.half-image__wrapper {
  position: relative;
  width: 330px;
  margin: 0 auto;
}

.loader {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #FFDA91 0%, #FF9D00 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 16px;
  left: 0;
}

.loader h5 {
  font-weight: 700;
  font-size: 52px;
  line-height: 37px;
  font-size: 38px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #0C1D3B;
  margin-bottom: 10px;
}

.loader p {
  font-weight: 400;
  font-size: 24px;
  line-height: 37px;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #150802;
}

.half-image1 {
  width: 50%;
  position: relative;
  z-index: -1;
}

.half-image3 {
  position: relative;
  width: calc(50% + 30px);
  margin: -40px 0 0 auto;
  border-radius: 10px;
  background: var(--white-color);
}

.half-image3::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  background: var(--white-color);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: -1;
  border-radius: 10px;
}

.half-image1 img {
  border-radius: 10px;
  width: 100%;
}

.half-image3 img {
  border-radius: 10px;
}

.half-image2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  display: inline-block;
}

.image-sap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-sap-bg {
  width: 100%;
  height: 100%;
}

@media (min-width: 1200px) {
  .half-image__wrapper {
    width: 100%;
  }

  .half-image3 {
    width: calc(50% + 60px);
    margin: -90px 0 0 auto;
  }

  .half-image1 {
    width: calc(50% + 30px);
  }

  .half-image2 {
    width: 220px;
    height: 220px;
    display: inline-block;
  }

  .loader {
    width: 200px;
    height: 200px;
    bottom: 34px;
  }

  .loader h5 {
    font-size: 52px;
    line-height: 37px;
  }

  .loader p {
    font-size: 24px;
    line-height: 37px;
  }

}

.our-partners-block {
  position: relative;
}

.our-partners-block .subheading {
  background: #FDF0D8;
}

.our-partners-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partners-logo {
  width: 70px;
  height: 70px;
  padding: 10px;
  background: #FFFFFF;
  /* box-shadow: 0px 0px 55px #F2DDB7; */
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.our-partners-conteainer .section-heading {
  margin-bottom: 20px;
}

.our-partners-conteainer h3 {
  font-weight: 800;
  text-transform: uppercase;
  color: #F9D99F;
  margin-top: 8px;
  text-align: center;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.175em;
}

.our-partners-conteainer h3 span {
  display: block;
}

.our-partners-conteainer {
  height: 410px !important;
  position: relative;
  margin: 0 auto;
}

.js-our-partners-logo-slider .slick-list {
  max-width: 300px;
  margin: 0 auto;
}

.our-partners__bg-image {
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
  z-index: -2;
  border-radius: 8px;
  overflow: hidden;
}

.our-partners__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-logo1 {
  top: 135px;
  left: 4px;
  transform: rotate(-15deg);
}

.partners-logo2 {
  bottom: 120px;
  left: 44px;
  transform: rotate(15deg);
}

.partners-logo3 {
  bottom: 64px;
}

.partners-logo4 {
  bottom: 120px;
  right: 40px;
  transform: rotate(-15deg);
}

.partners-logo5 {
  top: 135px;
  right: 4px;
  transform: rotate(15deg);
}

.partners-section {
  position: relative;
}

.js-our-partners-logo-slider {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.our-partners-conteainer {
  position: absolute;
  inset: 0;
  height: 100vh;
  width: 100%;
}



@media (min-width :768px) {
  .our-partners-block {
    padding-bottom: 24px !important;
  }

  .js-our-partners-logo-slider .slick-list {
    max-width: 500px;
    margin: 0 auto;
  }

  .partners-logo {
    width: 100px;
    height: 100px;
  }

  .partners-logo2 {
    bottom: 54px;
    left: 66px;
  }

  .partners-logo3 {
    bottom: 0px;
  }

  .partners-logo4 {
    bottom: 54px;
    right: 66px;
  }

}

@media (min-width :1200px) {
  .js-our-partners-logo-slider {
    margin-top: -15px;
  }

  .js-our-partners-logo-slider .slick-list {
    max-width: 1215px;
    margin: 0 auto;
  }

  .our-partners-conteainer h3 {
    font-size: 80px;
    line-height: 97px;
    margin-top: 30px;
  }


  .our-partners__bg-image {
    left: 24px;
    width: calc(100% - 48px);
  }

  .partners-logo {
    width: 00px;
    height: 200px;
  }

  .our-partners-conteainer {
    height: 613px !important;
    position: relative;
    margin: 0 auto;
  }

  .partners-logo {
    width: 200px;
    position: absolute;
  }

  .partners-logo1 {
    top: 20px;
    left: 29px;
    transform: rotate(-15deg);
  }

  .partners-logo2 {
    left: 158px;
    bottom: 146px;
    transform: rotate(15deg);
  }

  .partners-logo3 {
    bottom: 24px;
  }

  .partners-logo4 {
    bottom: 146px;
    right: 164px;
    transform: rotate(-15deg);
  }

  .partners-logo5 {
    top: 20px;
    right: 22px;
    transform: rotate(15deg);
  }

}

/* outer section stays normal */
.our-partners-block {
  position: relative;
}

/* pin container */
.js-our-partners-logo-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin: 30px 0 0;
}

/* panels */
.our-partners-conteainer {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1214px;
  height: 100vh;
  margin-bottom: 40px;
}

.our-partners-conteainer:last-child {
  margin-bottom: 0;
}

/* keep your logo positioning as-is */
.partners-logo {
  position: absolute;
}

@media (max-width: 1199px) {
  .js-our-partners-logo-slider {
    height: 430px;
  }

  .our-partners-conteainer {
    max-width: 550px;
  }
}


.gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__middel-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 14px;
}


.gallery__middel-bottom2 {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

.gallery__middel-bottom1 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.gallery__middel-bottom3 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.gallery__middel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery__middel-bottom3 img,
.gallery__middel-bottom1 img,
.gallery__middel-bottom2 img,
.gallery__middel-bottom1 img,
.gallery__middel-top img,
.gallery__right1 img,
.gallery__right2 img,
.gallery__left2 img,
.gallery__left1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-block .section-heading {
  margin-bottom: 20px;
}

@media (min-width : 768px) {

  .gallery__right,
  .gallery__left {
    width: calc(25% - 20px);
  }

  .gallery__middel {
    width: calc(50% - 20px);
  }

  .gallery__right2,
  .gallery__left1 {
    width: 100%;
    height: calc(75% - 7px);
  }

  .gallery__right1,
  .gallery__left2 {
    width: 100%;
    height: calc(25% - 7px);
  }

}


@media (min-width : 1200px) {

  .gallery__right,
  .gallery__left {
    width: 340px;
  }

  .gallery__middel {
    width: 460px;
  }

  .gallery__right1 {
    height: 215px;
  }

  .gallery__left1,
  .gallery__right2 {
    height: 400px;
  }

  .gallery__middel-top {
    height: 240px;
  }

  .gallery__middel-bottom2 {
    height: 375px;
  }

  .gallery__left2 {
    height: 215px;
  }

  .gallery-block .section-heading {
    margin-bottom: 40px;
  }

}

/* footer */
.footer-wrapper {
  position: relative;
  z-index: 1;
  /* border-radius: 20px; */
  overflow: hidden;
  padding: 30px 0;
}

.footer-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.footer-logo {
  width: 100%;
}

.footer-logo a {
  display: block;
  max-width: 180px;
  margin: 0 auto;
}

.footer-col {
  width: 50%;
}

.footer-col:nth-child(2) {
  width: 100%;
}

.footer-col h5 {
  font-size: 19px;
  line-height: 1.25em;
  font-weight: 600;
  color: var(--white-color);
  margin: 0 0 24px;
}

.footer-col form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col form input,
.footer-col form select {
  border: none;
  width: 100%;
  height: 46px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  color: var(--white-color);
  padding: 0 16px;
}

.footer-col form select {
  cursor: pointer;
}

.footer-col form input::placeholder {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  color: var(--white-color);
}

.footer-col form .select {
  position: relative;
  width: 100%;
}

.footer-col form .select::after {
  position: absolute;
  content: "\e902";
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  font-size: 18px;
  line-height: 1;
  color: var(--white-color);
  font-family: 'carnival' !important;
  pointer-events: none;
}

.footer-col form select option {
  color: var(--black-color);
}

.footer-col h4 {
  font-size: 24px;
  line-height: 1em;
  font-weight: 600;
  color: var(--white-color);
  margin: 0 0 20px;
}

.footer-links li a {
  font-size: 18px;
  line-height: 1.45em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links li a i {
  margin-right: 12px;
}

.footer-links li {
  display: flex;
  margin: 0 0 15px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 22px 0 30px;
}

.click-top {
  width: 100%;
  margin-bottom: 32px;
}

.click-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--btn-background);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  color: var(--black-color);
  margin: 0 auto;
}

.privacy-terms {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-terms a {
  font-size: 15px;
  line-height: 1.45em;
  font-weight: 400;
  color: var(--heading-color);
  text-decoration: underline;
}

.footer-flex .footer-col:last-child {
  width: 100%;
}

.footer-links.social {
  column-count: 2;
}

.copyright-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .footer-wrapper {
    padding: 40px 0;
  }

  .footer-flex {
    justify-content: space-between;
  }

  .footer-logo {
    margin: 0 0 25px;
  }

  .footer-col:nth-child(2) {
    width: auto;
    max-width: 300px;
  }

  .footer-col form {
    align-items: flex-start;
  }

  .footer-col {
    width: auto;
  }

  .copyright {
    align-items: center;
    justify-content: center;
    margin: 25px 0;
  }

  .click-top {
    width: auto;
    margin: 0;
  }

  .copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .privacy-terms {
    gap: 100px;
  }
}

@media (min-width: 1200px) {
  .footer-wrapper {
    padding: 46px 0 60px 0;
    width: calc(100% - 48px);
    margin-left: 24px;
    border-radius: 20px;
  }

  .footer-col:nth-child(2) {
    max-width: 400px;
  }

  .footer-col h5 {
    font-size: 24px;
  }

  .footer-col form .btn {
    margin: 8px 0 0;
  }

  .footer-col h4 {
    font-size: 32px;
  }

  .footer-links li a {
    font-size: 20px;
  }

  .footer-links li a:hover {
    color: var(--orange-color);
  }

  .footer-links.social li:not(:last-child) {
    margin-bottom: 26px;
  }

  .copyright {
    padding: 0 28px;
    width: 100%;
  }

  .copyright-wrapper {
    width: 50%;
  }

  .copyright p {
    font-size: 20px;
    width: 30%;
  }

  .privacy-terms {
    gap: 90px;
  }

  .privacy-terms a {
    font-size: 20px;
  }

  .privacy-terms a:hover {
    text-decoration: underline;
  }

  .click-top a:hover {
    background: var(--orange-color);
  }

  .copyright {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .footer-flex .footer-col:last-child {
    width: unset;
  }

  .footer-links.social {
    column-count: unset;
  }

}

.tickets-area .section-heading h2 {
  margin: 10px 0;
}

.tickets-area .section-heading p {
  margin: 0 0 15px;
}

.tickets-area .section-heading .btn+.btn+.btn {
  margin-left: 0;
  margin-top: 10px;
}

.tickets-area .btns-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 !important;
}

.tickets-area .btns-group .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.tickets-area .btns-group .btn::after {
  position: unset;
  row-gap: 0;
  transform: unset;
  top: unset;
  margin-left: 6px;
  font-size: 12px;
}

.tickets-area .btns-group .btn+.btn {
  margin: 0 !important;
}

@media (min-width: 575px) {

  .tickets-area .section-heading .btn+.btn+.btn,
  .tickets-area .section-heading .btn+.btn {
    margin-left: 16px;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .tickets-area .section-heading p {
    margin: 0 0 20px;
  }

  .tickets-area .section-heading .btn+.btn+.btn {
    margin-left: 16px;
  }
}

@media (min-width: 1200px) {
  .tickets-area .section-heading p {
    margin: 0 0 35px;
  }



  .tickets-area .btns-group {
    display: flex;
    flex-direction: unset;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .tickets-area .btns-group .btn {
    width: unset;
    display: inline-block;
    height: unset;
  }

  .tickets-area .btns-group .btn::after {
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    margin-left: 0px;
    font-size: 25px;
    right: 15px;
  }

  .tickets-area .btns-group .btn:hover:after {
    right: 6px;
  }
}


/* 21-01-26 ananata */
.video-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.video__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  padding: 50px 15px;
}

.video-content .subheading {
  background: transparent;
}

.video-content .subheading::after {
  background: var(--white-color);
  width: 40px;
  z-index: 1;
}

.video-content .subheading::before {
  content: "";
  width: 40px;
  margin-right: -40px;
  height: 1px;
  background: var(--white-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.video-content h2 {
  color: var(--white-color);
  margin: 8px 0 15px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 0.7777777777777778em;
}

.video-content p {
  color: var(--white-color);
  font-size: 10px;
  line-height: 1.5em;
}

.play-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 auto;
  transform: scale(0.9);
}

.play-btn a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--white-color);
  border-radius: 50%;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #150802;
  z-index: 1;
}

.play-btn a span::before {
  position: absolute;
  top: 50%;
  left: calc(50% + 4px);
  transform: translate(-50%, -50%);
  z-index: -1;
  content: "\e908";
  font-size: 34px;
  line-height: 1;
  color: rgba(243, 182, 60, 0.4);
  font-family: 'carnival' !important;
}

@media (min-width: 768px) {
  .video-content {
    max-width: 584px;
    margin: 0 auto;
    padding: 80px 0;
  }

  .play-btn a {
    transform: scale(1);
  }

  .video-content p {
    margin: 0 0 20px;
  }
}

@media (min-width: 1200px) {
  .video-content {
    padding: 145px 0;
  }

  .video-content p {
    margin: 0 0 28px;
  }

  .play-btn a:hover {
    transform: scale(1.1);
  }


  .video-content h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
  }

  .video-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
  }
}

.news-section {
  position: relative;
}

.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FDF0D8;
  z-index: -1;
}

.news-bg {
  background: #FDF0D8;
  border-radius: 24px;
  padding: 50px 0;
}

.news-wrap {
  gap: 26px 0;
}

.news-left .subheading {
  background: #FDF0D8;
}

.news-left h2 {
  margin: 4px 0 12px 0;
}

.news-left {
  text-align: center;
}

.news-left .btn {
  display: none;
}

.news-right .row {
  gap: 30px 0;
}

.news-image {
  display: block;
}

.news-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.news-details {
  margin: 24px 0 0;
}

.news-type {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  line-height: 1em;
  font-weight: 400;
  color: #263246;
}

.news-type span {
  display: inline-block;
  background: var(--white-color);
  border: 1px solid #E6BF78;
  border-radius: 8px;
  padding: 10px 16px 7px 16px;
}

.news-details h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4444444444444444em;
  color: var(--heading-color);
  margin: 8px 0 0px;
}

.news-details .read__btn {
  position: relative;
  font-size: 16px;
  line-height: 1.45em;
  font-weight: 500;
  color: #150802;
  padding-right: 28px;
}

.news-details .read__btn::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  transform: translate(0, -50%);
  content: "\e900";
  font-size: 20px;
  line-height: 1;
  color: #150802;
  font-family: 'carnival' !important;
}

.news-left .section-heading p {
  color: var(--text-color);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .news-wrap {
    gap: 40px 0;
  }

  .news-bg {
    padding: 70px 0;
  }

  .news-type {
    font-size: 16px;
  }

  .news-details .read__btn {
    font-size: 18px;
    padding-right: 33px;
  }

  .news-details .read__btn::after {
    font-size: 25px;
    transition: 0.3s ease;
  }
}

@media (min-width: 1200px) {

  .news-section::before {
    left: 24px;
    width: calc(100% - 48px);
    border-radius: 24px;
  }

  .news-bg {
    padding: 100px 0 80px;
  }

  .news-left {
    position: sticky;
    top: 80px;
  }

  .news-right .row {
    gap: 42px 0;
    --bs-gutter-x: 1.875rem;
  }

  .news-type {
    font-size: 18px;
  }

  .news-details p {
    margin: 0 0 15px;
  }

  .news-details .read__btn:hover {
    color: var(--orange-color);
    padding-right: 40px;
  }

  .news-details .read__btn:hover::after {
    color: var(--orange-color);
  }



  .news-left {
    text-align: left;
  }


  .news-left .subheading {
    background: transparent;
    padding-left: 0;
  }

  .news-left .subheading::after {
    width: 40px;
    left: unset;
    right: 0;
    z-index: 1;
    margin-right: -40px;
  }

  .news-left h2 {
    text-align: left;
    margin: 4px 0 12px 0;
  }

  .news-details h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #0C1D3B;
  }

}

/* Contact Us */

.inner-banner {
  position: relative;
  margin-bottom: 50px;
}

.inner-banner-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.inner-banner-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.inner-banner .header-banner-container {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inner-banner .header-banner__content {
  padding: 50px 20px;
}


.breadcrumb {
  display: inline-flex;
}

.breadcrumb li {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45em;
  color: var(--white-color);
  padding: 0 10px;
}

.breadcrumb li::after {
  content: ">";
  position: absolute;
  top: 0;
  left: -5px;
}

.breadcrumb li:first-child:after {
  display: none;
}

.breadcrumb li:first-child {
  padding-left: 0;
}

.breadcrumb li:last-child {
  padding-right: 0;
}

.breadcrumb li a {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45em;
  color: var(--white-color);
}

@media (min-width: 1200px) {
  .inner-banner {
    margin-bottom: 60px;
  }

  .inner-banner .header-banner-container {
    height: unset;
    min-height: 400px;
  }

  .inner-banner-bg-image {
    left: 24px;
    width: calc(100% - 48px);
    border-radius: 24px;
  }
}

.section-heading p {
  font-size: 14px;
  line-height: 1.5em;
}

@media (min-width: 1200px) {
  .section-heading p {
    font-size: 18px;
    line-height: 1.4444444444444444em;
  }
}

.get-touch-with-us .section-heading {
  margin-bottom: 30px;
}

.icon-text__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: var(--white-color);
  box-shadow: 0px 10px 20px rgba(232, 219, 210, 0.5);
  border-radius: 6px;
  padding: 16px;
}

.icon-text__icon {
  width: 60px;
  margin-right: 12px;
}

.icon-text__content {
  width: calc(100% - 60px);
}

.icon-text__content h5 {
  font-weight: 500;
  font-size: 16px;
  line-height:  1.5em;
  color: var(--orange-color);
}

.icon-text__content a {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4444444444444444em;
  color: var(--heading-color);
}

.contact-location-block {
  position: relative;
}

.contact-location-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FDF0D8;
  z-index: -1;
}

.contact-location .section-heading {
  margin-bottom: 30px;
}

.contact-location .subheading {
  background: #FDF0D8;
  margin-left: 40px;
}

.contact-location .subheading::after {
  content: "";
  width: 100%;
}

.contact-location h2 {
  text-align: left;
  margin-bottom: 10px;
}

.contact-map {
  width: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
}

.contact-location-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: var(--white-color);
  box-shadow: 0px 10px 20px rgba(232, 219, 210, 0.5);
  border-radius: 15px;
  padding: 20px;
}

.location__item-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 134, 38, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--btn-background);
  font-size: 30px;
  margin-right: 20px;
}

.location__item-content {
  width: calc(100% - 70px);
}

.location__item-content h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--orange-color);
}

.location__item-content p,
.location__item-content a {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4444444444444444em;
  color: var(--heading-color);
}

.location__item-content a:hover {
  color: var(--orange-color);
}

.contact-location__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-wrapper {
  max-width: 916px;
  margin: 0 auto;
}

.form-col-button {
  margin-top: 16px;
  display: block;
}


@media (min-width: 768px) {
  .icon-text__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .contact-location__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-map,
  .contact-location {
    width: calc(50% - 15px);
  }
}

@media (min-width: 1200px) {
  .icon-text {
    padding: 30px 32px 34px;
    width: calc(50% - 15px);
    border-radius: 15px;
  }

  .icon-text__content h5 {
    font-size: 20px;
    line-height: 1.45em;
  }

  .icon-text__content a {
    font-size: 30px;
    line-height: 1.4666666666666666em;
  }

  .icon-text__content a:hover {
    color: var(--orange-color);
  }

  .icon-text__icon {
    width: 80px;
    margin-right: 20px;
  }

  .location__item-content h5 {
    font-size: 16px;
    line-height: 1.5em;
  }

  .location__item-content p,
  .location__item-content a {
    font-size: 20px;
    line-height: 1.45em;
  }

  .contact-location-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 26px;
  }

  .location__item {
    width: max-content;
  }

  .location__item:last-child {
    width: 100%;
  }

  .contact-location__wrapper {
    gap: 50px;
  }

  .contact-map,
  .contact-location {
    width: 500px;
  }

  .contact-location {
    width: calc(100% - 511px);
  }

  .contact-map iframe {
    height: 550px;
  }

  .form-col-button {
    margin-top: 12px;
  }

}


/* ananta 27-01-26 */
.our-philosophy .half-and-half__wrapper {
  flex-direction: column;
}

.two-column-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px 0 0;
}

.two-column-text {
  width: 100%;
}

.two-column-text h4 {
  font-size: 18px;
  line-height: 1.5555555555555556em;
  font-weight: 600;
  color: var(--heading-color);
  margin: 10px 0 4px 0;
}

.our-philosophy .half-image__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: auto;
}

.our-philosophy .half-image__wrapper .half-image-col:nth-child(2){
  margin-top: 70px;
}

.half-image-col>img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.rating-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
}

.rating-box figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FDF0D8;
  border-radius: 50%;
  margin: 0;
  padding: 10px;
}

.rating-star {
  width: 90px;
}

.rating-star span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
}

.rating-star span img {
  width: 56px;
}

.rating-star span a {
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  color: #263246;
  background: #FFDA91;
  border-radius: 24px;
  padding: 4px 6px 2px 6px;
}

.rating-star p {
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  color: #263246;
}

.half-image-col {
  width: calc(50% - 6px);
}

@media (min-width: 768px) {
  .two-column-text {
    width: calc(50% - 10px);
  }

  .our-philosophy .half-and-half__wrapper {
    flex-direction: row;
  }

  .our-philosophy .half-content {
    margin-top: 12px;
  }

  .our-philosophy .half-image__wrapper {
    flex-direction: row;
    gap: 16px;
  }

  .half-image-col {
    width: calc(50% - 8px);
  }

  .half-image-col:first-child {
    margin-top: 50px;
  }

  .half-image-col>img {
    height: auto;
  }

  .rating-box {
    position: absolute;
    bottom: -80px;
    left: 0;
    margin: 25px 0 0;
  }

  .rating-box figure {
    width: 60px;
    height: 60px;
  }

  .rating-box figure img {
    max-width: 32px;
  }

  .our-philosophy .half-image__wrapper .half-image-col:nth-child(2) {
    margin-top: 0px;
  }
}

@media (min-width: 1200px) {
  .two-column-cont {
    gap: 30px;
    padding: 0;
  }

  .two-column-text {
    width: calc(50% - 15px);
  }

  .our-philosophy .half-image__wrapper {
    gap: 20px;
  }

  .half-image-col {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .half-image-col:first-child {
    margin-top: 0;
  }

  .our-philosophy .half-image__wrapper .half-image-col:nth-child(2) {
    margin-top: 120px;
  }

  .rating-box {
    position: relative;
    bottom: unset;
    left: unset;
    gap: 14px;
  }

  .rating-box figure {
    width: 70px;
    height: 70px;
  }

  .rating-star span img {
    width: 100px;
  }

  .rating-star {
    width: 160px;
  }

  .rating-star span a {
    font-size: 14px;
  }

  .rating-star p {
    font-size: 14px;
    line-height: 28px;
  }

  .two-column-text h4 {
    font-size: 20px;
    line-height: 1.4em;
  }

  .rating-box figure img {
    max-width: unset;
  }

}


.milestones-wrap {
  position: relative;
  z-index: 1;
  background: #FDF0D8;
  border-radius: 24px;
  overflow: hidden;
  padding: 45px 15px;
}

.our-milestones .section-heading {
  margin: 0 0 25px;
}

.our-milestones .section-heading .subheading {
  background: #FDF0D8;
}

.js-roadmap-slider {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  margin: 0 -15px;
}

.js-roadmap-slider::before {
  position: absolute;
  content: "";
  top: 310px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--heading-color);
}

.roadmap-slider-col {
  position: relative;
  width: 300px;
  text-align: center;
  padding-right: 30px;
  margin-top: 185px;
}

.roadmap-slider-col:nth-child(even) {
  margin-top: 0;
  margin-bottom: 0;
}

.roadmap-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.roadmap-slider-col:nth-child(even) .roadmap-item {
  flex-direction: column-reverse;
  margin-top: 20px;
}

.roadmap-item::before,
.roadmap-item::after {
  position: absolute;
  content: "";
  top: 102px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 42px;
  height: 42px;
  border: 2px solid var(--orange-color);
  border-radius: 50%;
}

.roadmap-item::after {
  top: 111px;
  width: 24px;
  height: 24px;
  border: none;
  background: var(--orange-color);
}

.roadmap-slider-col:nth-child(even) .roadmap-item::before,
.roadmap-slider-col:nth-child(even) .roadmap-item::after {
  top: 268px;
}

.roadmap-slider-col:nth-child(even) .roadmap-item::after {
  top: 277px;
}

.year-box {
  position: relative;
  min-height: 122px;
  align-content: flex-start;
  padding-bottom: 25px;
}

.roadmap-slider-col:nth-child(even) .year-box {
  align-content: flex-end;
  padding-bottom: 0;
  padding-top: 25px;
}

.year-box h4 {
  font-size: 32px;
  line-height: 47px;
  font-weight: 700;
  color: var(--orange-color);
}

.year-box h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--heading-color);
}

.roadmap-detail {
  position: relative;
  padding-top: 100px;
  margin-top: 0;
}

.roadmap-slider-col:nth-child(even) .roadmap-detail {
  padding-top: 0;
  padding-bottom: 100px;
  margin-top: 0;
  margin-bottom: 0;
}

.roadmap-detail::before,
.roadmap-detail::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 90px;
  background: var(--heading-color);
}

.roadmap-detail::after {
  top: 90px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.roadmap-slider-col:nth-child(even) .roadmap-detail::before,
.roadmap-slider-col:nth-child(even) .roadmap-detail::after {
  top: unset;
  bottom: 0;
}

.roadmap-slider-col:nth-child(even) .roadmap-detail::after {
  bottom: 90px;
}

.roadmap-detail p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #263246;
  align-content: flex-end;
  min-height: 156px;
}

.roadmap-slider-col:nth-child(even) .roadmap-detail p {
  align-content: unset;
}

@media (min-width: 768px) {
  .milestones-wrap {
    padding: 60px 15px 80px 15px;
  }

  .our-milestones .section-heading {
    margin: 0 0 40px;
  }
}

@media (min-width: 1200px) {
  .our-milestones .section-heading {
    max-width: 1170px;
    margin: 0 auto;
    padding-bottom: 60px;
  }
}

.half-content {
  position: relative;
}

.small-float-image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 32%;
  border-radius: 16px;
  overflow: hidden;
}

.half-image__wrapper img.why-ind-carnival {
  width: 100%;
  border-radius: 10px;
}

.why-carnival .half-content ul {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .team-message .half-and-half__wrapper {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1200px) {
  .small-float-image {
    max-width: 100%;
  }
}


.media-block {
  position: relative;
}

.media-block .section-heading h2 {
  margin-bottom: 10px;
}


/* sanjoy  28.01.2026*/

.media-block {
  position: relative;
}

.media-block .section-heading {
  margin-bottom: 30px;
}

.media-block .section-heading h2 {
  margin-bottom: 10px;
}

.news-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1020px;
  margin: 0 auto;
}

.news-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-card-image {
  margin-bottom: 10px;
}

.news-card-image img {
  border-radius: 7px;
  overflow: hidden;
}

.news-card-description ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.news-card-description ul li {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5em;
  color: var(--text-color);
}

.news-card-description ul li:first-child {
  box-sizing: border-box;
  padding: 2px 7px;
  background: #FFFFFF;
  border: 1px solid #E6BF78;
  border-radius: 5px;
}

.news-card-description h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.625em;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.news-card-description p {
  margin-bottom: 10px;
}

.news-card__bottom .btn {
  padding: 0 33px 0 0;
  background: transparent;
  border: 0;
}

.news-card__bottom .btn::before {
  font: 15px;
}

.btn-center {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .news-card {
    width: calc(50% - 15px);
  }
}


@media (min-width: 1200px) {
  .news-card {
    width: calc(33.33% - 20px);
  }

  .news-card-description ul li {
    padding: 4px 16px;
    font-size: 18px;
    line-height: 1.4444444444444444em;
  }

  .news-card-description h3 {
    font-size: 22px;
    line-height: 1.2727272727272727em;
  }

  .news-card__bottom .btn {
    padding: 0 48px 0 0;
  }

  .news-card-image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
  }

  .news-card-image img {
    transition: var(--transition);
    border-radius: 12px;
  }

  .btn-center {
    padding-top: 30px;
  }

  .news-card:hover .news-card-image img {
    transform: scale(1.1);
  }
}

.tab-gallery-block .section-heading {
  margin-bottom: 15px;
}


.tab-gallery ul.tabs {
  margin: 0px 0px 20px;
  padding: 0px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tab-gallery ul.tabs li {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  background: #FDE6BC;
  border-radius: 52px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--heading-color);
}

.tab-gallery ul.tabs li.current {
  background: #F3B63C;
  color: var(--white-color);
}

.tab-gallery .tab-content {
  display: none;
}

.tab-gallery .tab-content.current {
  display: inherit;
}

@media (min-width: 1200px) {
  .tab-gallery ul.tabs li {
    padding: 10px 20px;
    font-size: 20px;
    line-height: 29px;
  }

  .tab-gallery ul.tabs {
    margin: 0px 0px 40px;
  }

}

.client-logos .section-heading {
  margin-bottom: 50px;
}

.editions-card.slick-slide {
  width: 325px;
  margin: 0 8px;
}

.maharashtra-block.section-margins {
  margin: 32px 0;
}

.maharashtra h2 {
  text-align: left;
}

.editions-card.slick-slide .editions-card__content__link {
  display: block;
}

.js-hover-slider {
  padding-bottom: 56px;
}

.js-hover-slider .slick-track {
  display: flex !important;
}

.js-hover-slider .editions-card.slick-slide {
  height: auto;
}

.maharashtra h2 {
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 1200px) {
  .maharashtra h2 {
    margin-bottom: 23px;
    text-align: left;
  }

  .js-hover-slider {
    padding-bottom: 0px;
  }

  .editions-card.slick-slide {
    width: 270px;
    margin: 0 15px;
  }

  .editions-card.slick-slide.slick-current {
    width: 570px;
  }

  .editions-card.slick-slide.slick-current .editions-card__content__link {
    display: block;
  }

  .editions-card.slick-slide .editions-card__content__link {
    display: none;
  }  
    
  .maharashtra-block.section-margins {
    margin: 80px 0;
  }
}


.file-drop-area {
  position: relative;
  transition: 0.2s;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.5);




  width: 100%;
  height: 50px;
  background: #FFF6E5;
  border: 1px solid #F4EEEA;
  border-radius: 6px;
  padding: 10px 6px 10px 20px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color);
  opacity: 1;
}

.file-drop-area .is-active {
  background-color: rgba(255, 255, 255, 0.05);
}

.fake-btn {
  position: relative;
  flex-shrink: 0;
  background: #F3B63C;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #150802;
  gap: 8px;
  padding: 7px 12px 7px 16px;
}

.fake-btn::after {
  content: "\e90b";
  font-family: "carnival";
  font-size: 14px;
}

.file-msg {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: var(--text-color);
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.become-partner .section-heading {
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .become-partner .section-heading {
    margin-bottom: 40px;
  }
}


/*  */

/* 
.vehicle-detail-banner .car-slider-desc {
    max-width: 180px;
    margin: 0 auto;
}
.banner-slider .slider.slider-for {
    max-width: 84%;
    padding-right: 35px;
}
.banner-slider .slider.slider-nav {
    max-width: 16%;
}
.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    width: 100%;
    float: left;
}
.banner-slider .slider.slider-nav {
    height: 610px;
    overflow: hidden;

}
.slider-banner-image {
    height: 610px;
}
.banner-slider .slider.slider-nav {
    padding: 20px 0 0;
}
.slider-nav .slick-slide.thumbnail-image .thumbImg{
    max-width: 178px;
    height: 110px;
    margin: 0 auto;
    border: 1px solid #EBEBEB;
}
.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
    height: 100%;
    width:100%;
    object-fit: cover;
}
.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
    border: 0;
    outline: 0;
}
.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
    border: 2px solid #196DB6;
}
.slider-nav .slick-slide.slick-current span {
    color: #196DB6;
}
.slider-nav .slick-slide {
    text-align: center;
}
.slider-nav .slick-slide span {
    font-size: 14px;
    display: block;
    padding: 5px 0 15px;
}
.slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 18px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}
.slick-prev {
   top: 0;
}
.slick-next {
   bottom: 0;
   background-color: #fff;
}
.slick-prev.slick-arrow {
    background-image: url(../images/black-up-arrow.png);
}
.slick-next.slick-arrow {
    background-image: url(../images/black-down-arrow.png);
}

@media screen and (max-width : 991px) {

	.banner-slider .slider.slider-for,
	.banner-slider .slider.slider-nav {
	    max-width: 100%;
	    float: none;
	}
	.banner-slider .slider.slider-for {
		padding-right: 0;
	}
	.banner-slider .slider.slider-nav {
		height: auto;
	}
	.slider-banner-image {
	    height: 500px;
	} 
	.slider.slider-nav.thumb-image {
        padding: 10px 30px 0;
	}
	.slider-nav .slick-slide span {
		padding: 5px 0;
	}
	.slick-arrow {
		padding: 0;
	    width: 30px;
	    height: 30px;
	    top: 50%;
	    bottom: 0;
	    -webkit-transform: translateY(-50%) rotate(-90deg);
	    -moz-transform: translateY(-50%) rotate(-90deg);
	    -ms-transform: translateY(-50%) rotate(-90deg);
	    transform: translateY(-50%) rotate(-90deg);
	}
	.slick-prev {
	    left: 0;
	    right: unset;
	}
	.slick-next {
	    left: unset;
	    right: 0;
   		background-color: transparent;
	}
	.vehicle-detail-banner .car-slider-desc {
    	max-width: 340px;
	}
	.bid-tag {
    	padding: 10px 0 15px;
	}
	.slider.slider-nav.thumb-image {
	   white-space: nowrap;
	}
	.thumbnail-image.slick-slide {
		padding: 0px 5px;
		min-width: 75px;
		display: inline-block;
		float: none;
	}
}

@media screen and (max-width : 767px) {
	.slider-banner-image {
	    height: 400px;
	}
	.slider.slider-nav.thumb-image {
    	padding: 0px 20px 0;
    	margin: 10px 0px 0;
	}
	.slider-nav .slick-slide.thumbnail-image .thumbImg {
		max-width: 140px;
		height: 80px;
	}
	.slick-prev.slick-arrow {
    	background-position: center 10px;
	}
	.slick-next.slick-arrow {
    	background-position: center 10px, center;
	}
	.slider-nav .slick-slide span {
	    font-size: 12px;
	    white-space: normal;
	}
}

@media screen and (max-width: 580px) {
	.slider-banner-image {
	    height:340px;
	}
}

@media screen and (max-width : 480px) {
	.slider-banner-image {
	    height:280px;
	}
} */


.slider-banner-image {
  border-radius: 12px;
  overflow: hidden;
}

.slider-banner-image img{
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbImg img{
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slider {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.banner-slider .slick-track {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; */
}

.slider-nav {
  position: relative;
}

.slider-nav-text {
  display: none;
}

@media (min-width:990px) {
  .banner-slider {
    position: relative;
    flex-direction: row;
    gap: 0px;
  }

  .slider.slider-for {
    width: calc(100% - 270px);
    height: 474px;
  }

  .slider.slider-nav  {
      width: 240px;
      margin-left: 30px;
  }

  .slider.slider-nav .slick-track {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .slider.slider-nav div.slick-list {
    height: 480px !important;
    margin: -15px 0;
  }

  .thumbnail-image.slick-slide {
    height: 130px;
    margin: 15px 0;
  }

  .thumbImg {
    height: 100%;
  }

  .slider-nav-text {
    display: block;
    position: absolute;
    bottom: -6px;
    right: 64px;
    text-align: center;
    color: var(--orange-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    text-decoration-line: underline;
  }

}

.varanasi-edition {
  padding: 25px;
  background: #FDF0D8;
  border-radius: 15px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.varanasi-edition h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.editions-details-box {
  padding: 25px;
  background: #FDF0D8;
  border-radius: 15px;
  margin: 20px 0;
}

.editions-details-box h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.editions-details-box ul li {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--heading-color);
  padding-left: 28px;
  margin-bottom: 10px;  
}

.editions-details-box ul li::before {
  content: "";
  background: url(../img/list-icon2.svg) no-repeat;
  width: 18px;
  height: 18px;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.sponser-logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.editions-details-box__left ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.editions-details-box__left ul li{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5714285714285714em;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .varanasi-edition {
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .varanasi-edition h3 {
    font-weight: 700;
    font-size: 32px;
    line-height:1.46875em;
    color: var(--heading-color);
  }

  .editions-details-box h4 {
    font-size: 24px;
    line-height: 1.4583333333333333em;
    margin-bottom: 15px;
  }

  .editions-details-box ul {
    column-count: 3;
  }

  .editions-details-box ul li {
    font-size: 18px;
    line-height: 1.4444444444444444em;
    padding-left: 34px;
    margin-bottom: 20px;
  }

  .editions-details-box ul li::before {
    width: 24px;
    height: 24px;
  }

  .editions-details-box__left ul li{
    font-size: 20px;
    line-height: 1.45em;
  }

   .varanasi-edition p {
    margin-bottom: 15px;
   }
}

.book-tickets {
  margin: 0 0 50px;
}

.choose__bg {
  background: #FDF0D8;
  padding: 50px 0 40px 0;
  margin: 0 -15px;
}

.choose-pass .section-heading p {
  margin-bottom: 20px;
}

.js-choose-cards {
  margin: 0 -7.5px;
  padding-bottom: 41px;
}

.js-choose-cards .slick-list {
  padding-bottom: 20px !important;
}

.choose-col {
  margin: 0 7.5px;
}

.choose-card {
  border: 1px solid #C3C3C3;
  filter: drop-shadow(0px 5px 15px rgba(232, 219, 210, 0.5));
  border-radius: 15px;
  min-height: 549px;
  transition: 0.3s;
  padding: 20px 17px;
}

.choose-col.slick-center .choose-card {
  background: var(--white-color);
  border-color: #FDF0D8;
  box-shadow: 0px 5px 15px rgba(232, 219, 210, 0.5);
}

.choose-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #FFFAF2;
  border: 1px solid #E0DFDF;
  border-radius: 12px;
  margin: 0 0 20px;
}

.chse-card-title h4 {
  font-size: 20px;
  line-height: 1.45em;
  font-weight: 600;
  color: var(--heading-color);
}

.chse-card-title p {
  font-size: 14px;
  color: var(--heading-color);
}

.chse-border-box {
  border: 1px solid #C9C9C9;
  border-radius: 12px;
  padding: 8px 12px 20px 12px;
  margin: 20px 0 8px 0;
}

.chse-border-box:nth-last-child(2) {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.chse-border-box h5 {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  color: var(--orange-color);
  margin: 0 0 16px;
}

.chse-border-box li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
  color: #32314B;
}

.chse-border-box li:not(:last-child) {
  margin-bottom: 12px;
}

.chse-border-box li::before {
  position: relative;
  display: inline-block;
  content: "";
  width: 21px;
  height: 21px;
  background: #FDF0D8 url(../img/check-icon.svg) no-repeat center center;
  border: 1px solid #E8E8E8;
  border-radius: 50%;
}

.chse-border-box:nth-last-child(2) li::before {
  display: none;
}

.buy__btn {
  margin: 10px 0 0;
}

.buy__btn .btn {
  display: block;
  padding: 11px 26px 11px 12px;
}

.buy__btn .btn::after {
  right: unset;
  left: calc(50% - -28px);
  font-size: 15px;
}

.choose-col.slick-center .buy__btn .btn {
  background: #F3B63C;
  border-color: #F3B63C;
}

.js-choose-cards .slick-arrow {
  transform: translate(-50%, 0);
}

.js-choose-cards .slick-prev {
  left: calc(50% - 25px);
  margin-left: 0;
}

.js-choose-cards .slick-next {
  left: calc(50% + 25px);
  margin-left: 0;
}

.js-choose-cards .slick-prev:before,
.js-choose-cards .slick-next:before {
  font-size: 30px;
}

@media (min-width: 768px) {
  .book-tickets .section-heading {
    max-width: 760px;
    margin: 0 auto;
  }

  .book-tickets .section-heading p {
    margin-bottom: 22px;
  }
}

@media (min-width: 1025px) {
  .choose__bg {
    margin: 0;
    border-radius: 24px;
    padding: 50px 15px 40px 15px;
  }

  .choose-pass .section-heading p {
    margin: 0 0 30px;
  }

  .js-choose-cards {
    margin: 0;    
    padding-bottom: 0px;
  }

  .choose-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    max-width: 1170px;
    margin: 0 auto;
  }

  .choose-col {
    width: calc(33.33% - 17.33px);
    margin: 0;
  }

  .choose-card {
    min-height: 555px;
  }

  .choose-card:hover {
    background: var(--white-color);
    border-color: #FDF0D8;
    box-shadow: 0px 5px 15px rgba(232, 219, 210, 0.5);
  }

  .chse-card-title h4 {
    font-size: 24px;
  }

  .chse-card-title p {
    font-size: 16px;
  }

  .chse-border-box:nth-child(3) {
    min-height: 211px;
  }

  .buy__btn {
    margin: 52px 0 0;
  }

  .buy__btn .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .choose-card:hover .buy__btn .btn {
    background: #F3B63C;
    border-color: #F3B63C;
    color: #150802;
  }

  .buy__btn .btn::after {
    position: relative;
    left: unset;
    transform: translate(0);
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .chse-border-box:nth-child(3) {
    min-height: 241px;
  }

  .choose-card {
    min-height: 537px;
  }

  .chse-border-box li {
    font-size: 18px;
  }
}


.tickets-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 99;
  width: 100%;
  height: 102vh;
  background: var(--white-color);
  padding: 120px 0 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.tickets-popup.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.close__popup {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 0;
}

.close__popup::before,
.close__popup::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #F44336;
  transform: rotate(45deg) translate(5px, 10px);
  border-radius: 10px;
  pointer-events: none;
}

.close__popup::after {
  transform: rotate(-45deg) translate(-10px, 5px);
}

.tickets-popup .container {
  padding: 0 15px;
}

.section-heading p {
  color: #263246;
  margin: 0 0 25px;
}

.tickets-form-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 16px;
}

.buy-tickets {
  text-align: center;
  margin: 16px 0 0;
}

.buy-tickets p {
  font-size: 14px;
  color: #263246;
  padding: 0 13px;
  margin: 25px 0 0;
}

@media (min-width: 1025px) {
  .tickets-popup {
    width: calc(100% - 48px);
    height: calc(100vh - 48px);
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
  }

  .tickets-form {
    max-width: 916px;
    margin: 0 auto;
  }

  .tickets-form-wrap {
    gap: 20px;
  }

  .section-heading p {
    margin: 0 0 42px;
  }

  .close__popup {
    left: unset;
    right: 20px;
    top: 20px;
    transform: translate(0);
    width: 20px;
    height: 20px;
  }

  .close__popup::before,
  .close__popup::after {
    width: 20px;
    height: 4px;
    transform: rotate(45deg) translate(5px, 6px);
  }

  .close__popup::after {
    transform: rotate(-45deg) translate(-6px, 5px);
  }
}

.entry-guidelines .section-heading h2 {
  text-align: left;
  margin: 0 0 10px;
}

.guidelines-list li {
  position: relative;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
  color: #32314B;
  padding-left: 34px;
}

.guidelines-list li:not(:last-child) {
  margin-bottom: 16px;
}

.guidelines-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../img/check-with-bg.svg) no-repeat center center;
  background-size: 24px;
}

.highlight-text {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #32314B;
  text-align: center;
  background-color: #EDEDED;
  border-radius: 8px;
  padding: 10.5px 0;
  margin: 24px 0 0;
}

@media (min-width: 768px) {
  .entry-guidelines .section-heading h2 {
    text-align: center;
    margin: 0 0 30px;
  }

  .guidelines-list {
    column-count: 2;
    gap: 0 20px;
  }

  .guidelines-list li {
    font-size: 16px;
  }

  .guidelines-list li::before {
    top: 0;
    transform: translate(0);
  }

  .highlight-text {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .guidelines-list li {
    font-size: 18px;
  }

  .highlight-text {
    font-size: 18px;
  }
}



.faq-wrappper {
  background-color: #FDF0D8;
  padding: 32px 0;
  margin: 0 -15px;
}

.faq-flex {
  position: relative;
  padding-bottom: 138px;
}

.faq-left h2 {
  margin: 0 0 20px;
}

.bottom-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.bottom-box h5 {
  font-size: 20px;
  line-height: 1.45em;
  font-weight: 600;
  color: #0C1D3B;
}

.bottom-box p {
  color: #263246;
}

.bottom-box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 26px 11px 12px;
}

.bottom-box .btn::after {
  position: relative;
  top: unset;
  right: unset;
  transform: translate(0);
}

.at-item {
  background: #FFFFFF;
  box-shadow: 0px 10px 20px rgba(232, 219, 210, 0.5);
  border-radius: 8px;
  padding: 12px;
}

.at-item:not(:last-child) {
  margin-bottom: 12px;
}

.at-tab {
  display: none;
  font-size: 12px;
  line-height: 1.333em;
  font-weight: 400;
  color: #263246;
  padding: 0;
  margin: 4px 0 0;
}

.at-title {
  font-size: 16px;
  line-height: 1.25em;
  font-weight: 600;
  color: #0C1D3B;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
  padding-right: 15px;
}

.at-title:after {
  content: "\e902";
  font-size: 16px;
  line-height: 1;
  color: #334332;
  font-family: 'carnival' !important;
  position: absolute;
  top: 0;
  right: 0;
}

.at-title.active:after {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .faq-wrappper {
    padding: 32px 0 40px 0;
  }

  .faq-flex {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    width: 40%;
    padding-right: 30px;
  }

  .faq-left h2 {
    text-align: left;
  }

  .bottom-box {
    position: relative;
    bottom: unset;
    left: unset;
    text-align: left;
    margin-top: auto;
  }

  .bottom-box .btn {
    display: inline-flex;
    gap: 10px;
  }

  .faq-right {
    width: 60%;
    padding-left: 20px;
  }

  .at-title {
    font-size: 18px;
  }

  .at-tab {
    font-size: 14px;
  }
}

@media (min-width: 1025px) {
  .faq-wrappper {
    border-radius: 24px;
    padding: 50px 0;
    margin: 0;
  }

  .faq-left {
    width: 335px;
    padding-right: 0;
  }

  .bottom-box h5 {
    font-size: 24px;
    margin: 0 0 10px;
  }

  .faq-right {
    width: calc(100% - 335px);
    max-width: 740px;
    margin-left: auto;
    padding-left: 0;
  }

  .at-item {
    border-radius: 15px;
    padding: 24px 30px;
  }

  .at-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .at-title {
    font-size: 20px;
  }

  .at-tab {
    font-size: 16px;
    margin: 9px 0 0;
  }
}