:root {
  --fontCoolveticaCondensedRegular: "Coolvetica Condensed Rg";
  --fontCoolveticaCrammedRegular: "Coolvetica Crammed Rg";
  --fontCoolveticaCompressedHv: "Coolvetica Compressed Hv";
  --fontCoolveticaLt: "Coolvetica Lt";
  --fontCoolveticaRg: "Coolvetica Rg";
  --fontCoolveticaRgBold: "Coolvetica Bo";
  --fontCoolveticaBk: "Coolvetica Bk";
  --fontCoolveticaHv: "Coolvetica Hv";
  --fontCoolveticaEl: "Coolvetica El";
  --fontCoolveticaUl: "Coolvetica Ul";
  --mainColor: #5952a3;
  --grayColor: #3b3b3b;
  --blackColor: #000000;
}

body {
  font-family: var(--fontCoolveticaBk);
}

.c_main {
  color: var(--mainColor) !important;
}

.c_gray {
  color: var(--grayColor) !important;
}

.bg_main {
  background-color: var(--mainColor) !important;
}

.bg_gray {
  background-color: var(--grayColor) !important;
}

.font1 {
  font-family: var(--fontCoolveticaCondensedRegular);
}

.font2 {
  font-family: var(--fontCoolveticaCrammedRegular);
}

.font3 {
  font-family: var(--fontCoolveticaCompressedHv);
}

.font4 {
  font-family: var(--fontCoolveticaBk);
}

.font5 {
  font-family: var(--fontCoolveticaRgBold);
  font-weight: bold;
}

.font6 {
  font-family: var(--fontCoolveticaHv);
}

.font7 {
  font-family: var(--fontCoolveticaEl);
}

.font8 {
  font-family: var(--fontCoolveticaLt);
}

.font9 {
  font-family: var(--fontCoolveticaRg);
  font-weight: normal;
}

.font10 {
  font-family: var(--fontCoolveticaUl);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.cursor-pointer {
  cursor: pointer;
}

.btn_style {
  display: inline-flex;
  position: relative;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  border-radius: 34px;
  padding: 0 1rem 0 1rem;
  height: 60px;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.btn_style::after {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-end: 3px;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background-color: var(--mainColor);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.btn_style:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  inset-inline-end: 0;
}

/* .btn_style .button-decor {
  position: absolute;
  inset: 0;
  background-color: var(--mainColor);
  transform: translateX(100%);
  transition: transform .3s;
  z-index: 0;
} */
.btn_style .button-content {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.btn_style .button__icon {
  /* position: static; */
  /* inset-inline-end: 5px; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  width: 29px;
  height: auto;
  display: grid;
  place-content: center;
  transition: 0.3s;
}

.btn_style .button__text {
  display: inline-block;
  transition: color 0.2s;
  padding: 2px 1.5rem 2px;
  padding-left: 0.75rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
}

.btn_style:hover .button__text {
  color: #fff;
}

.btn_style:hover .button__icon {
  transform: rotate(90deg);
}

.btn_style .button__icon svg {
  transition: 0.3s;
}

.btn_style:hover .button__icon svg {
  width: 40px;
  height: 40px;
}

.btn_style2 {
  width: 78px;
  height: 60px;
  border-radius: 28.4746px;
  background-color: rgba(89, 82, 163, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
  font-size: 20px;
  font-family: var(--fontCoolveticaLt);
}

/* Rectangle 201 */

.btn_style2 .svgIcon {
  width: 34px;
  transition-duration: 0.3s;
}

.btn_style2 .svgIcon path {
  fill: white;
}

.btn_style2:hover {
  width: 250px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: rgb(181, 160, 255);
  align-items: center;
}

.btn_style2:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.btn_style2::before {
  position: absolute;
  bottom: -20px;
  content: attr(data-content);
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.btn_style2:hover::before {
  font-size: 20px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}

.overlay_body {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: all 0.5s linear;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.overlay_body.showing {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

/* $ => Start Header */
header nav .nav-link {
  font-size: 18px;
  color: #fff;
  font-weight: normal;
}

header nav .nav-link:hover,
header nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-sticky.sticky {
  position: fixed !important;
  top: -60px !important;
  left: 0 !important;
  z-index: 999 !important;
  animation: goDown 0.5s ease-in-out forwards;
  background-color: var(--mainColor);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes goDown {
  0% {
    top: -60px;
  }

  100% {
    transform: translateY(60px);
  }
}

.navbar-brand img {}

.navbar-sticky.sticky .navbar-brand img {
  width: 120px;
}

.navbar-toggler {
  color: #fff;
  background-color: var(--mainColor);
  border-color: #fff;
}

.navbar-toggler-icon {
  color: #fff;
  filter: invert(1);
}

@media screen and (max-width: 991px) {
  .navbar-brand img {
    width: 120px;
  }

  .navbar-collapse {
    background-color: var(--mainColor);
    padding: 1rem;
    border-radius: 10px;
  }
}

/* # => End Header */

/* $ => Start Banner */
.banner-section {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .banner-section {
    /* height: 70vh; */
  }
}

@media screen and (min-width: 1200px) {
  .banner-section {
    /* height: 90vh; */
  }
}

@media screen and (max-width: 991px) {
  .banner-section {
    /* height: 45vh; */
  }
}

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

.banner-section::after {
  /* content: ""; */
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  background: radial-gradient(circle at center, #5952a3 0%, #201a4f 100%);
}

@media screen and (max-width: 767px) {
  /* .banner-section {
    position: relative;
    z-index: 1;
    height: 80vh;
  } */
}

.banner-section::before {
  /* content: ""; */
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #fff;
  clip-path: polygon(0 20%, 100% 100%, 100% 100%, 0 100%);
}

.banner-slides .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ******* banner-slider ******* */
.banner-slider {
  min-height: 320px;
}

.banner-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* يحافظ على نسبة 16:9 */
  background-image: url("dist/imgs/banner/01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  /* يركّز الصورة */
  background-size: contain;
  /* يعرض الصورة كاملة داخل الحاوية */
  background-color: #000;
  /* يمكنك تغيير اللون ليمثل الفراغ */
}

.thums-slider-container {
  position: absolute;
  bottom: 60px;
  inset-inline-end: 100px;
  z-index: 99999;
  width: 177.94px;
  height: 80.08px;
  border: 2.64px solid #fff;
  border-radius: 54.04px;
}

.thums-slider-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(217, 217, 217, 0.25);
  border-radius: 54.04px;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.thums-slider-container .swiper-wrapper {
  justify-content: center;
}

.thums-slider {
  width: 100%;
  height: 100%;
  border-radius: 54.04px;
}

.thums-slider .swiper-slide {
  width: 64.35px !important;
  height: 64.35px;
  border-radius: 50%;
  overflow: hidden;
  z-index: -1;
  margin: auto -17px;
  transition: margin-left 0.5s linear, transform 0.5s linear;
}

.thums-slider .swiper-slide.swiper-slide-visible {
  z-index: 1;
}

.thums-slider .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-next {
  z-index: 1;
}

.thums-slider .swiper-slide.swiper-slide-fully-visible.swiper-slide-active.swiper-slide-thumb-active {
  z-index: 2;
  transform: scale(1.1);
}

/* .thums-slider .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active {
  z-index: 10;
  transform: scale(1.1);
} */

.thums-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thums-slider-container .icon_circle {
  width: 42px;
  height: 42px;
  background-color: var(--mainColor);
  z-index: 10;
}

.thums-slider-container .icon_circle svg {
  width: 20px;
}

.thums-slider-container .icon_circle svg path {
  fill: #fff !important;
}

.thums-slider-container .icon_circle_left {
  inset-inline-start: -30px;
}

.thums-slider-container .icon_circle_right {
  inset-inline-end: -30px;
}

.banner-txt-container {
  position: absolute;
  bottom: 0;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.banner-txt img.img-2 {
  margin-top: -40px;
  margin-inline-end: -40px;
}

.call-btn {
  bottom: 70px;
  inset-inline-start: 70px;
  z-index: 99999;
  font-size: 18px;
  color: #fff;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16.3628px;
  transition: all 0.5s ease-in-out;
  user-select: none;
  touch-action: none;
  cursor: grab;
  /* important for mobile dragging */
}

.call-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  width: 200px;
  padding: 0 20px;
}

.call-btn:active {
  cursor: grabbing;
}

.call-btn span.icon {
  width: 40px;
  height: 40px;
  transition: all 0.5s linear;
}

.call-btn:hover span.icon {
  width: 80px;
  height: 80px;
  transform: rotate(30deg);
}

.call-btn .txt-call {
  position: absolute;
  opacity: 0;
  transform: scale(0) translateX(-100px);
  margin-inline-start: 0.5rem;
  font-size: 26px;
  transition: transform 0.8s ease-in-out;
}

.call-btn:hover .txt-call {
  position: static;
  opacity: 1;
  transform: scale(1) translateX(0);
}

@media screen and (max-width: 991px) {
  .call-btn {
    inset-inline-start: 20px;
    bottom: 70px;
    width: 50px;
    height: 50px;
  }

  .call-btn span.icon {
    width: 30px;
    height: 30px;
  }

  .call-btn:hover span.icon {
    width: 40px;
    height: 40px;
  }

  .call-btn .txt-call {
    margin-inline-start: 0.5rem;
    font-size: 18px;
  }

  .call-btn:hover {
    width: 120px;
    padding: 0 10px;
  }

  .thums-slider-container {
    width: 130px;
    height: 50px;
    inset-inline-end: 40px;
    bottom: 30px;
  }

  .thums-slider .swiper-slide {
    width: 45px !important;
    height: 45px;
    margin: auto -6px;
    border-radius: 50%;
  }

  .thums-slider .swiper-slide.swiper-slide-fully-visible.swiper-slide-active.swiper-slide-thumb-active,
  .thums-slider .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active {
    transform: scale(1.07);
  }

  .thums-slider .swiper-slide img {
    border-radius: 50%;
  }

  .thums-slider-container .icon_circle {
    width: 28px;
    height: 28px;
  }

  .thums-slider-container .icon_circle svg {
    width: 14px;
  }

  .thums-slider-container .icon_circle_left {
    inset-inline-start: -18px;
  }

  .thums-slider-container .icon_circle_right {
    inset-inline-end: -18px;
  }
}

/* end media query max-width: 767px */

@media screen and (max-width: 575px) {
  .thums-slider-container {
    width: 130px;
    height: 43px;
    inset-inline-end: 40px;
    bottom: 14px;
  }

  .thums-slider .swiper-slide {
    width: 40px !important;
    height: 40px;
  }
}

.form_event {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 50% 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form_event>div {
  position: relative;
  width: 50%;
  height: auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 991px) {
  .form_event>div {
    width: 95%;
  }
}

.form_event.form_event_2 {
  /* height: 350px; */
}

.form_event.form_event_2.active,
.form_event.form_event_1.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.btn_close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  color: #fff;
  outline: unset;
  border: 0;
}

.form_event .form-control {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 0;
  height: 70px;
  border-radius: 0;
  padding: 1rem 2rem;
  font-size: 20px;
}

.form_event .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.text_lg {
  font-size: 20px;
}

.btn_chk {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 4rem;
  color: #fff;
  border-radius: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.btn-check+.btn:hover {
  color: #fff;
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: #fff;
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.event-photography img {
  width: 30px;
}

.label_chked {
  opacity: 0.7;
  padding: 1px 3px;
}

.event-photography .btn-check:checked+.label_chked {
  opacity: 1;
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  border-radius: 10px;
}

.form_event .btn-light {
  font-size: 20px;
  padding: 0.5rem 2rem;
}

.form_event .btn-light:hover {
  background-color: var(--mainColor);
  color: #fff !important;
  border-color: var(--mainColor);
}

.sides-banner {
  position: relative;
  height: 220px;
  top: -52px;
  z-index: 1;
  display: grid;
  place-content: center;
}

.sides-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: -5px;
  width: 101%;
  height: 120px;
  background: #c0c0c0;
  background-image: url("../imgs/banner/pattern-bottom.svg");
  background-position: center center;
  background-repeat: repeat;
  background-blend-mode: exclusion;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateY(-50%) rotate(2.59deg);
  z-index: -1;
}

.sides-banner .swiper {
  left: -10px;
  width: 101%;
  height: 120px;
  transform: rotate(-2.87deg);
  z-index: 1;
  background-color: var(--mainColor);
  display: grid;
  /* place-content: center; */
}

.sides-banner .swiper-slide img {
  width: 30px;
  height: 30px;
  filter: opacity(0.5);
}

.sides-banner .swiper-slide {
  position: relative;
}

.sides-banner .swiper-slide:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 65px;
  height: 65px;
  transform: translateY(-50%);
  background-image: url("../imgs/banner/slide-icon-01.svg");
  opacity: 0.5;
  background-repeat: no-repeat;
  background-size: contain;
}

.sides-banner .swiper-slide span {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  font-family: var(--fontCoolveticaCondensedRegular);
  max-width: 70%;
  margin: auto;
}

@media screen and (max-width: 1400px) {
  .form_event h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem !important;
  }

  .form_event .mt-5 {
    margin-top: 1.5rem !important;
  }

  .form_event .btn-light {
    font-size: 16px;
    padding: 0.3rem 2rem;
  }

  .form_event .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    height: auto;
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-size: 14px;
  }

  .btn_chk {
    padding: 0.5rem 3rem;
    font-size: 14px;
  }

  .form_event .text_lg {
    font-size: 16px;
  }

  .form_event .mt-5 {
    margin-top: 2rem !important;
  }
}

@media screen and (max-width: 1366px) {
  .sides-banner .swiper-slide span {
    font-size: 30px;
    max-width: 65%;
  }
}

@media screen and (max-width: 1299px) {
  .sides-banner .swiper-slide span {
    font-size: 28px;
    max-width: 67%;
  }
}

@media screen and (max-width: 1199px) {
  .sides-banner .swiper {
    width: 106%;
  }

  .sides-banner .swiper-slide span {
    max-width: 71%;
  }
}

@media screen and (max-width: 991px) {
  .sides-banner {
    top: -30px;
    height: 144px;
  }

  .sides-banner .swiper {
    height: 90px;
  }

  .sides-banner::before {
    height: 90px;
  }

  .sides-banner .swiper-slide:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    width: 45px;
    height: 45px;
  }

  .sides-banner .swiper-slide span {
    font-size: 20px;
    max-width: 67%;
  }
}

@media screen and (max-width: 767px) {
  .w-50 {
    width: 100% !important;
  }

  .banner-section::before,
  .banner-section::after {
    height: 80px;
  }

  .form_event {
    width: 80%;
  }

  .form_event .btn-light {
    font-size: 15px;
    padding: 0.3rem 2rem;
  }

  .sides-banner {
    height: 93px;
    top: -12px;
  }

  .sides-banner .swiper {
    height: 70px;
  }

  .sides-banner::before {
    height: 70px;
  }

  .sides-banner .swiper-slide:after {
    width: 40px;
    height: 40px;
  }

  .sides-banner .swiper-slide span {
    font-size: 20px;
    max-width: 80%;
  }

  .banner-txt img.img-2 {
    margin-top: -25px;
    margin-inline-end: -40px;
  }

  /* .sides-banner .swiper {
    width: 110%;
    height: 60px;
  } */
  .sides-banner .swiper-slide span {
    font-size: 17px;
  }

  .sides-banner .swiper-slide:after {
    width: 30px;
    height: 30px;
  }

  .sides-banner .swiper-slide:after {
    left: -35px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section {
    /* height: 38vh; */
  }

  .banner-txt img.img-2 {
    margin-top: -20px;
    margin-inline-end: -20px;
  }

  .sides-banner {
    top: -16px;
  }

  .sides-banner .swiper {
    height: 60px;
  }

  .sides-banner::before {
    height: 60px;
  }

  .event-photography img {
    width: 20px;
  }

  .btn_chk {
    padding: 0.1rem 1rem;
    font-size: 10px;
  }

  .form_event .btn-light {
    font-size: 12px;
    padding: 0.1rem 2rem;
  }

  .sides-banner .swiper-slide span {
    font-size: 14px;
  }
}

/* 420px */
@media screen and (max-width: 420px) {
  .banner-section {
    /* height: 32vh; */
  }
}

/* # => End Banner */

/* $ => Start Clients */
.clients-section {
  padding-top: 0px;
  padding-bottom: 100px;
}

.clients-section-page {
  min-height: 440px;
}

.title-event h1.clients-title {
  font-size: 5em;
  line-height: 1.1em;
  margin: 15px auto;
}

.title-event h3.clients-title-h3 {
  font-size: 3em;
  font-family: var(--fontCoolveticaEl);
}

.all-clients-logos {
  background-color: var(--mainColor);
  padding: 45px 35px;
  max-width: 1200px;
  margin: 25px auto 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-clients-logos img {
  max-width: 1080px;
  width: 96%
}

.title span.sup_title {
  display: block;
  font-size: 40px;
  font-family: var(--fontCoolveticaBk);
  margin-bottom: -20px;
}

.title h2 {
  font-size: 80px;
  color: var(--grayColor);
  font-weight: bold;
}

.title h2 span {
  color: var(--mainColor);
  font-size: 100px;
}

.title p {
  font-size: 28px;
  color: #000;
  margin-top: -20px;
  margin-bottom: 0;
  margin-inline-start: 10px;
}

.clients-section .img_client {
  height: 80px;
  /* padding: 1.6rem; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-section .img_client img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.1s ease-in-out;
  filter: grayscale(1);
  opacity: 0.4;
}

.clients-section .img_client:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.grid_style {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem 1.8rem;
}

/* 
.clients-section .img_client {
  height: 100px;
  padding: 1rem;
} */

.more_btn {
  position: relative;
  line-height: 1;
}

.more_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
  width: 70%;
  height: 2px;
  background-color: var(--grayColor);
  opacity: 0.4;
}

/* media query for min-width: 992px to max-width: 1400px */
@media screen and (min-width: 1367px) {
  .custom_container {
    max-width: 972px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 1366px) {
  .custom_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 1366px) {
  .sides-banner {
    height: 190px;
    top: -52px;
  }

  .clients-section .img_client {
    height: 55px;
  }
}

@media screen and (max-width: 991px) {
  .clients-section .img_client {
    height: 45px;
  }
}

@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 1em !important;
  }

  .grid_style {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .grid-in-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }


  /* .grid_style > div:nth-child(13) { grid-column: 1; }
  .grid_style > div:nth-child(14) { grid-column: 3; }
  .grid_style > div:nth-child(15) { grid-column: 4; }
   */
}

/* # => End Clients */

/* $ => Start Why Choose Us..? */
.why-section {
  background: linear-gradient(360deg, #ffffff 9.74%, #e4e4e4 100%);
  position: relative;
  z-index: 1;
}

.why-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 60%;
  background-image: url("../imgs/why-choose-us/bg-pattern-1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.why-section .title h2 {
  font-size: 80px;
}

.why_items {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 620px;
  margin: auto;
}

.why_card {
  background: linear-gradient(180deg, rgba(89, 82, 163, 0.85) 0%, #5952a3 100%);
  border-radius: 30px;
  height: 493.37px;
  width: 184px;
  margin: auto;
  color: #fff;
  transition: all 0.5s ease-in-out;
  position: relative;
  cursor: pointer;
  padding-top: 1rem !important;
  padding-bottom: 2rem !important;
}

.why_card.inactive {
  width: 130px;
}

.why_card.active {
  width: 270px;
}

.why_card .front {
  height: 100%;
}

.why_card.active .front {
  opacity: 0;
  visibility: hidden;
}

.why_card .front .icon {
  height: 120px;
  padding: 0 1.5rem;
}

.why_items>div:nth-child(1) .why_card .front .icon {
  padding: 0 0.5rem;
}

.why_items>div:nth-child(2) .why_card .front .icon {
  padding-inline-end: 1.5rem;
}

.why_card .front .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
}

.why_card .front h2 {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: #fff;
  transition: all 0.2s ease-in-out;
  font-size: 1.7rem;
}

.why_card .back {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.why_card.active .back {
  opacity: 1;
  visibility: visible;
}

.why_card .back h2 {
  font-size: 2em;
  letter-spacing: 1px;
}

.why_card .back p {
  font-size: 1.3em;
  line-height: 1.1em;
  font-family: var(--fontCoolveticaLt);
  letter-spacing: 1px;
  margin: auto;
}

.close_back {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  /* display: none; */
}

.close_back {
  width: 50px;
  height: 50px;
  background-color: var(--mainColor);
  border: 1px solid #fff;
  padding: 0.5rem;
  border-radius: 50%;
}

@media screen and (max-width: 1366px) {
  .why_items {
    max-width: 480px;
  }

  .why_card {
    height: 380px;
    width: 150px;
    padding-bottom: 1rem !important;
  }

  .why_card.inactive {
    width: 100px;
  }

  .why_card.active {
    width: 210px;
  }

  .why_card h2 {
    font-size: 1.5rem;
  }

  .why_card .back h2 {
    font-size: 22px;
    margin-bottom: 0.8rem !important;
  }

  .why_card .back p {
    font-size: 13px;
    width: 190px;
  }

  .why_card .front h2 {
    font-size: 1.3rem;
    max-height: 250px;
  }

  .why_card .front .icon {
    height: 90px;
    padding: 0 0.5rem;
  }

  .why_items>div:nth-child(2) .why_card .front .icon {
    padding-inline-end: 0.5rem;
  }
}

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

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

@media screen and (max-width: 991px) {
  .close_back {
    width: 40px;
    height: 40px;
    padding: 0.4rem;
  }

  .why_items {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .why_card {
    height: 280px;
    width: 107px;
    padding-bottom: 1rem !important;
  }

  .why_card.inactive {
    width: 90px;
  }

  .why_card.active {
    width: 200px;
  }

  .why_card h2 {
    font-size: 1.2rem;
  }

  .why_card .back p {
    font-size: 11px;
    width: 181px;
  }

  .why_card .back h2 {
    font-size: 18px;
    margin-bottom: 1rem !important;
  }

  .why_card .front h2 {
    font-size: 1rem;
    max-height: 180px;
  }

  .why_card .front .icon {
    height: 60px;
    padding: 0 0.8rem;
  }

  .why_items>div:nth-child(2) .why_card .front .icon {
    padding-inline-end: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .why_items {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 10px;
  }

  .why_card {
    /* width: 200px; */
  }

  .why_card.inactive {
    /* width: 180px; */
  }

  .why_card.active {
    /* width: 260px; */
  }
}

@media screen and (max-width: 600px) {
  .why_items {
    grid-template-rows: repeat(4, auto);
    grid-template-columns: auto;
    gap: 10px;
    max-width: 100%;
    border-radius: 15px;
  }

  .why_card {
    height: 70px;
    width: 320px;
    background-image: linear-gradient(90deg, rgba(89, 82, 163, 0.85) 0%, #5952a3 100%);
  }

  .why_card.inactive {
    width: 320px;
  }

  .why_card.active {
    width: 320px;
    height: 300px;
  }

  .why_card .front {
    gap: 10px;
  }

  .paper-icon {
    background-color: #45407E;
    padding: 10px 5px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
  }

  .paper-icon img {
    width: 20px;
  }

  .why_card.active .back .paper-icon {
    width: 50px;
    height: 50px;
    right: 3%;
    top: 3%;
    transform: translate3d(3%, 3%, 0);
    position: absolute;
  }

  .why_card.active .back .paper-icon svg {
    width: 50px;
    height: 50px;
  }

  .why_card.active .back .paper-icon svg path {
    fill: white;
    transform: rotate(90deg);
    transform-origin: center;
    transition: all 1s ease;
  }

  .why_card .front .icon {
    height: 60px;
    padding: 0 0.2rem;
  }

  .why_card .front h2 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    text-align: left;
    font-size: 1.1em;
    font-family: var(--fontCoolveticaBk);
    line-height: 1em;
  }

  .why_card .back h2 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    text-align: left;
    font-size: 1.25em;
    font-family: var(--fontCoolveticaBk);
    line-height: 1em;
  }

  .why_card .back p {
    font-size: 18px;
    width: 100%;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

}

/* # => End Why Choose Us..? */

/* $ => Start Services */

.services-section .title h2 {
  font-size: 80px;
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  min-height: 434px;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border: 3.5px solid rgba(255, 255, 255, 0.8);
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border: 6px solid rgba(0, 0, 0, 0.25);
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  padding: 40px 20px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  transform: translateZ(60px) scale(0.94);
  -webkit-transform: translateZ(60px) scale(0.94);
  -ms-transform: translateZ(60px) scale(0.94);
}

.flip-box .flip-box-back .inner {
  bottom: 50%;
  transform: translateY(50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(50%) translateZ(60px) scale(0.94);
}

.flip-box .flip-box-back .inner ul {
  padding: 0;
}

.flip-box .flip-box-back .inner ul li {
  font-size: 17px;
  position: relative;
  padding-inline-start: 1.4rem;
  margin-bottom: 0.3rem;
}

.flip-box .flip-box-back .inner ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 13.83px;
  height: 24.2px;
  background-image: url('data:image/svg+xml,<svg width="14" height="25" viewBox="0 0 14 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.74795 24.6491C12.3682 23.6586 14.1096 20.7497 13.7932 17.9115C13.4451 14.7748 10.0972 13.4102 8.5093 11.0313C8.18939 10.5517 7.92103 10.0385 7.71479 9.49769C6.54528 6.43408 8.51282 2.66543 10.062 0.779297C-1.66238 9.33342 -1.20067 17.6741 1.81568 21.8037C3.318 23.8601 6.77379 25.7726 9.74795 24.6491Z" fill="%235952A3"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.flip-box-header {
  font-size: 40px;
  color: #fff;
  transition: 0.2s;
  font-weight: bold;
  line-height: 1;
}

.flip-box .flip-box-back .flip-box-header {
  font-size: 2.3em;
}

@media screen and (max-width: 991px) {
  .title span.sup_title {
    font-size: 24px;
    margin-bottom: -12px;
  }

  .title h2 {
    font-size: 40px !important;
  }

  .title p {
    font-size: 20px !important;
    margin-top: -10px !important;
    margin-inline-start: 2px !important;
  }

  .btn_style::after {
    width: 45px;
    height: 45px;
  }

  .more_btn::before {
    width: 90%;
  }
}

/* # => End Services */

/* $ => Start Our Portfolio */
.portfolio-section {
  padding-top: 30px;
}

.portfolio-section .container {
  position: relative;
}

.swiper-container-wrapper {
  height: 540px !important;
  position: relative;
  /* padding: 0 40px; */
}

.swiper-portfolio {
  height: 100% !important;
}

.portfolio-card {
  /* padding: 2.5rem; */
  height: 100%;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
  transition: all 0.5s ease-in-out;
}

.portfolio-card:hover img {
  object-position: bottom;
  transform: scale(1.3);
}

.swiper-button-next-custom,
.swiper-button-prev-custom {
  position: unset;
  top: auto;
  left: auto;
  right: auto;
  width: auto;
  height: auto;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: inline-flex;
  align-items: initial;
  justify-content: initial;
  color: initial;
}

.swiper-button-next-custom:after,
.swiper-button-prev-custom:after {
  content: unset;
}

.icon_circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(201, 201, 201, 0.3);
  transition: all 0.5s ease-in-out;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.icon_circle_left {
  inset-inline-start: -123px;
}

.icon_circle_right {
  inset-inline-end: -123px;
}

.icon_circle:hover {
  opacity: 1;
}

.icon_circle svg {
  transition: all 0.5s ease-in-out;
}

.icon_circle:hover svg {
  transform: rotateX(-180deg);
}

.icon_circle:hover svg path {
  fill: var(--mainColor);
}

@media screen and (max-width: 1366px) {
  .swiper-container-wrapper {
    height: 400px !important;
  }
}

@media screen and (max-width: 1199px) {
  .swiper-container-wrapper {
    /* height: 530px !important; */
  }

  .icon_circle {
    width: 60px;
    height: 60px;
  }

  .icon_circle svg {
    width: 30px;
    height: 30px;
  }

  .icon_circle_left {
    inset-inline-start: -30px;
  }

  .icon_circle_right {
    inset-inline-end: -30px;
  }
}

@media screen and (max-width: 991px) {
  .portfolio-section {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .swiper-container-wrapper {
    /* height: 500px !important; */
    /* position: relative; */
    /* padding: 0 0px; */
  }

  .portfolio-card {
    /* padding: 1rem; */
  }
}

@media screen and (max-width: 575px) {
  .swiper-container-wrapper {
    /* height: 400px !important; */
  }

  .icon_circle {
    width: 40px;
    height: 40px;
  }

  .icon_circle svg {
    width: 20px;
    height: 20px;
  }
}

/* # => End Our Portfolio */

/* $ => Start Meet Our Team */
.swiper-container-wrapper2 {
  /* height: 90vh; */
  height: 840px;
  position: relative;
  /* padding: 0 40px; */
}

.swiper-teams {
  height: 100% !important;
}

.team-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 176px; */
  border-top-right-radius: 176px;
  border-top-left-radius: 176px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding-top: 0;
  z-index: 1;
  height: 410px;
}

.team-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.73%, #000000 100%);
  z-index: 0;
}

.team-card .icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease-in-out;
  z-index: -1;
  opacity: 0.4;
}

.team-card .icon svg {
  width: 50px;
}

.team-card:hover .icon {
  left: 50%;
  transform: scale(5) translate(-10%, 24%);
}

.team-card .team-img {
  transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.team-card:hover .team-img {
  transform: translateY(-25px);
}

.team-card .team-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.team-card .team-content {
  text-align: center;
  padding: 1rem;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.team-card:hover .team-content {
  bottom: 40px;
}

.team-card .team-content h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 4px;
}

.team-card .team-content h5 {
  font-family: var(--fontCoolveticaLt);
  font-size: 18px;
}

.team-card .team-content p {
  font-family: var(--fontCoolveticaLt);
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.team-card:hover .team-content p {
  opacity: 1;
}

@media screen and (max-width: 1366px) {
  .swiper-container-wrapper2 {
    height: 640px;
  }

  .team-card {
    height: 310px;
  }

  .team-card .team-content h2 {
    font-size: 22px;
  }

  .team-card .team-content h5 {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-container-wrapper2 {
    height: 660px;
  }

  .team-card .team-content {
    padding: 1rem;
  }

  .team-card {
    height: 320px;
  }

  .team-card .team-content h2 {
    font-size: 20px;
  }

  .team-card .team-content h5 {
    font-size: 14px;
  }
}

/* # => End Meet Our Team */

/* $ => Start Footer */
footer {}

.map_txt span.icon {
  width: 36px;
  max-width: 36px;
  flex: 0 0 36px;
  height: 36px;
}

.map_txt span.icon svg {
  width: 100%;
  height: 100%;
}

.map_txt h5 {
  font-size: 22px;
}

.map_txt p {
  font-size: 20px;
  font-family: var(--fontCoolveticaLt);
  line-height: 1.2em;
  margin-top: 10px !important;
  letter-spacing: 1px;
}

/* --- Toast --- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: .35s;
  background: #0a1428;
  border: 1px solid rgba(56, 189, 248, .35);
  color: #e6faff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  font-size: 1.1em;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

.toast .msgDone {
  color: #4CAF50;
}

.toast .msgError {
  color: #f44336;
}

.social_links a {
  background-color: #ffffff;
  padding: 8px;
  color: var(--blackColor);
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.footer_links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
}

.footer_links a:hover {
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .map_txt p {
    font-size: 16px;
    width: 100% !important;
  }

  .footer_links a {
    font-size: 16px;
  }
}

/* # => End Footer */

/* $ => Start Event Details */
.event-section {
  height: 700px;
}

.event_img {
  position: absolute;
  top: 100px;
  inset-inline-end: 0;
  width: 1000px;
  border-radius: 0 0 0 80px;
  overflow: hidden;
}

.event_img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.title-event {
  position: relative;
  z-index: 1;
}

.txt_suptitle {
  font-size: 48px;
}

.title-event h1 {
  font-size: 7em;
  line-height: 0.8em;
  font-family: var(--fontCoolveticaRg);
  text-transform: uppercase;
}

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

.event_intro {
  padding-top: 100px;
}

.para-1 {
  font-size: 2em;
  line-height: 1.3em;
}

/* event_card-full */
.event_card {}

.event_card .card_top {
  position: relative;
}

.event_card-body {}

.titles-event {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
}

.event_card-category {
  margin: 0;
  margin-bottom: -10px;
  color: #fff;
  font-size: 30px;
  padding: 0 2rem;
}

.event_card-title {
  margin: 0;
  color: #fff;
  background-color: var(--mainColor);
  padding: 0.5rem 2rem;
  font-size: 38px;
  line-height: 1;
  font-family: var(--fontCoolveticaRg);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event_card-description {
  padding: 0.5rem 2rem;
  font-size: 24px;
  line-height: 1;
  font-family: var(--fontCoolveticaLt);
}

.event_card-type2 .event_txt h2 {
  color: var(--grayColor);
  font-size: 28px;
  margin-bottom: -8px;
}

.event_card-type2 h2.event_title {
  margin-bottom: 0.5rem !important;
  font-size: 3em;
  font-family: var(--fontCoolveticaRg);
  line-height: 1em;
  letter-spacing: 1px;
  position: relative;
  z-index: 9;
}

.event_card-type2 h2.event_title span {
  color: #fff !important;
}

.event_card-type2 h2.left-square {
  margin-left: -30px;
}

.event_card-type2 .below-left-square {
  margin-left: 10px;
}

.event_card-type2 h2.left-square::before {
  content: '';
  width: 65px;
  height: 140px;
  position: absolute;
  left: -37px;
  top: -20px;
  background-color: var(--mainColor);
  z-index: -1;
}

.event_card-type2 h2.left-square.digital {
  margin-left: -35px;
}

.event_card-type2 h2.left-square.digital::before {
  width: 75px;
}

.event_card-type2 .event_description {
  font-size: 22px;
  line-height: 1;
  font-family: var(--fontCoolveticaLt);
}


.event_card-img {
  border-radius: 20px;
}

@media screen and (min-width: 1700px) {
  .form_event.form_event_2 {
    /* height: 530px; */
  }
}

.event_card-type2 h2.digital.act1::before {
  height: 170px;
  left: -42px;
  top: -12px;
}

.event_card-type2 h2.media.act1::before,
.event_card-type2 h2.media.act0::before {
  height: 80px;
  left: -42px;
  top: -12px;
}

.event_card-type2 h2.digital.act0::before {
  height: 122px;
  left: -42px;
  top: -13px;
}

.event_card-type2 h2.digital.act0 span {
  display: inline-block;
  width: 30px;
  margin-right: 8px;
  text-align: right;
}

.event_card-type2 h2.digital.act1 span {
  margin-right: 8px;
  display: inline-block;
  width: 30px;
  text-align: right;
}

.event_card-type2 h2.left-square.digital-m span {
  width: 39px;
  margin-right: 2px;
  font-size: 1em;
  display: inline-block;
  text-align: right;
}

.home-slider-s1 {
  background-image: url('../imgs/banner/0001.jpg');
}

.home-slider-s2 {
  background-image: url('../imgs/banner/0002.jpg');
}

.home-slider-s3 {
  background-image: url('../imgs/banner/0003.jpg');
}

.form_page_banner {
  height: 400px;
  padding-bottom: 0 !important;
}

.form_page_banner .title-event h1 {
  margin-top: 1rem;
  font-size: 50px;
  line-height: 1;
}

@media screen and (max-width: 1366px) {
  .event-section {
    height: 400px;
  }

  .event_img {
    width: 920px;
    height: 100%;
  }

  .txt_suptitle {
    font-size: 48px;
  }

  .title-event {
    margin-top: 1.5rem;
  }

  .title-event h1 {
    font-size: 68px;
  }

  .title-event svg {
    width: 25px;
    height: 56px;
  }

  .form_page_banner {
    height: 250px;
  }

  .form_page_banner .title-event .icon {
    width: 30px;
  }

  .form_page_banner .title-event .icon svg {
    width: 100%;
    height: 100%;
  }

  .form_page_banner .title-event h1 {
    margin-top: 1rem;
    font-size: 40px;
    line-height: 1;
  }

  .form_page h1 {
    font-size: 28px;
  }

  .clients_bn_title {
    height: 300px;
    padding-top: 5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .txt_suptitle {
    font-size: 25px;
  }

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

  .banner-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }

  .banner-txt img {
    max-width: 60%;
  }

  .clients-section {
    padding-bottom: 30px;
  }

  .title h2 {
    font-size: 70px;
  }

  .title h2 span {
    font-size: 80px;
  }

  .title p {
    font-size: 23px;
  }

  .team-section .title h2,
  .portfolio-section .title h2,
  .why-section .title h2,
  .services-section .title h2 {
    font-size: 40px;
  }

  .icon_circle {
    width: 70px;
    height: 70px;
  }

  .icon_circle svg {
    width: 35px;
    height: 35px;
  }

  .flip-box-front,
  .flip-box-back {
    min-height: 330px;
  }

  .flip-box-header {
    font-size: 24px;
  }

  .flip-box .flip-box-back .flip-box-header {
    font-size: 20px;
  }

  .flip-box .flip-box-back .inner ul {
    padding: 0px;
  }

  .flip-box .flip-box-back .inner ul li {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .flip-box .flip-box-back .inner ul li::before {
    width: 10.83px;
    height: 16.2px;
  }

  .btn_style {
    padding: 0 0.5rem 0 0.5rem;
    height: 50px;
  }

  .btn_style::after {
    width: 45px;
    height: 45px;
  }

  .portfolio-section {
    padding-top: 190px;
  }

  .icon_circle_left {
    inset-inline-start: -90px;
  }

  .icon_circle_right {
    inset-inline-end: -90px;
  }

  .call-btn:hover {
    width: 170px;
    padding: 0 14px;
  }

  .call-btn:hover span.icon {
    width: 60px;
    height: 60px;
  }

  .call-btn .txt-call {
    font-size: 20px;
  }
}

/* # => End Event Details */
/* 1366px */

@media screen and (width: 1366px) and (min-resolution: 1.5dppx) {

  /* Swiper wrapper: يعادل 100% عرض الشاشة و100% ارتفاع الشاشة */
  .banner-section {
    width: 100%;
    height: 100vh;
  }

  .banner-img {
    aspect-ratio: unset;
    background-size: cover;
  }
}


@media screen and (max-width: 1199px) {
  .title h2 {
    font-size: 60px;
  }

  .title h2 span {
    font-size: 70px;
  }

  .title p {
    font-size: 26px;
  }

  .icon_circle_left {
    inset-inline-start: 0px;
  }

  .icon_circle_right {
    inset-inline-end: 0px;
  }
}

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

  .portfolio-section {
    padding-top: 40px;
  }

  .swiper-container-wrapper {
    height: 400px !important;
  }

  .form_page_banner {
    height: 250px;
  }

  .form_page_banner .title-event .icon {
    width: 30px;
  }

  .form_page_banner .title-event .icon svg {
    width: 100%;
    height: 100%;
  }

  .form_page_banner .title-event h1 {
    margin-top: 1rem;
    font-size: 30px;
  }

  /* .team-card .team-content h5 {
    margin-bottom: 0.5rem;
    font-size: 14px;
  }
  .team-card .team-content p {
    font-size: 12px;
  } */
}

@media screen and (max-width: 767px) {
  .sides-banner {
    height: 110px;
    top: -20px;
  }
}

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

@media screen and (max-width: 600px) {
  .sides-banner {
    height: 90px;
    top: -16px;
  }

  .title span.sup_title {
    font-size: 30px;
    margin-bottom: -12px;
  }

  .title h2 {
    font-size: 40px !important;
  }

  .title h2 span {
    font-size: 40px;
  }

  .title p {
    line-height: 1;
    font-size: 20px !important;
    margin-top: -10px !important;
    margin-inline-start: 2px !important;
  }
}


@media (max-width: 480px) {

  /* home page */
  .thums-slider-container {
    bottom: 0;
  }

  .home-slider-s1,
  .home-slider-s2,
  .home-slider-s3 {
    width: 100%;
    height: 100%;
    min-height: 400px;
  }

  .home-slider-s1 {
    background: url(../imgs/banner/slider-home-banner1.jpg) no-repeat bottom / cover;
  }

  .home-slider-s2 {
    background: url(../imgs/banner/slider-home-banner2.jpg) no-repeat bottom / cover;
  }

  .home-slider-s3 {
    background: url(../imgs/banner/slider-home-banner3.jpg) no-repeat bottom / cover;
  }

  /* section 2 clients logos */
  .custom_container {
    text-align: center;
  }

  .title h2 {
    font-family: var(--fontCoolveticaBk);
    font-size: 3em;
  }

  .title p {
    font-size: 20px;
  }

  .nav-more-partners-btn {
    width: 180px;
    height: 45px;
    border-radius: 10px;
    background: #5952A3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
  }

  .flip-box-header,
  .flip-box .flip-box-back .flip-box-header {
    font-size: 2em;
  }

  .flip-box .flip-box-back .inner ul li {
    font-size: 1.3em;
    line-height: 1;
    margin-bottom: 5px;
  }

  .title-event {
    position: absolute;
    margin: 0 20px;
    bottom: -30px;
  }

  .title-event h1 {
    font-size: 2.5em !important;
    font-family: var(--fontCoolveticaRg);
    letter-spacing: 1px;
    margin: 5px auto;
  }

  .title-event.inDigital {
    width: 100%;
    margin: 15px auto;
  }

  .para-1 {
    font-size: 1.5em;
    line-height: 1.1em;
  }

  .titles-event {
    width: 100%;
  }

  .event_card-title {
    font-size: 1.5em;
    padding: 10px;
    line-height: 1em;
    font-family: var(--fontCoolveticaRg);
    letter-spacing: 1px;
    width: fit-content;
    margin: 0 auto -20px;
  }

  .event_card-title.marketing-para,
  .event_title.marketing-para {
    font-size: 1.3em;
    padding: 10px 5px;
  }

  .event_card-category {
    padding: 5px 20px 0px;
    font-size: 20px;
    background-color: var(--mainColor);
    width: fit-content;
    margin: 0px auto -5px;
  }

  .event_card-description {
    padding: 10px 20px;
    margin-top: 20px;
  }

  .digi-act-banner {
    mix-blend-mode: multiply;
  }

  .event_card-type2 h2.left-square.event-m span {
    width: 22px;
    margin-right: 0px;
    display: inline-block;
  }

  .event_card-type2 h2.left-square.event-m::before {
    height: 98px;
    top: -15px;
    left: -44px;
  }

  .event_card-type2 h2.left-square {
    margin-left: 0px;
  }

  .event_card-type2 h2.left-square.digital {
    margin-left: 0px !important;
    font-size: 32px;
    letter-spacing: 1px;
  }

  .event_card-type2 h2.event_title {
    font-size: 1.7em;
    color: #fff !important;
    background: var(--mainColor);
    padding: 5px 25px;
    width: fit-content;
    margin: -30px auto 25px;
  }

  .event_card-type2 h2.event_title.manufacturing {
    margin: -50px auto 0px !important;
    padding: 5px 20px;
    width: fit-content;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .event_card-type2 h2.event_title.manufacturing span {
    font-size: 20px;
    font-family: var(--fontCoolveticaEl);
    width: fit-content;
  }

  .event_card-type2 .event_description {
    margin-top: 20px;
  }

  .event_txt {
    margin-top: 10px;
  }

  .event_card-type2 h2.event_title span,
  .event_card-type2 h2.left-square.digital span {
    margin-right: 3px;
    display: inline-block;
    font-size: 20px;
  }

  .event_card-type2 h2.left-square.digital span {
    width: 30px;
    font-size: 34px;
  }

  .event_card-type2 h2.left-square.digital-m span {
    width: 30px;
    margin-right: 3px;
    font-size: 34px;
  }

  .media-banner-home {
    mix-blend-mode: multiply;
  }

  .title-event h1.clients-title {
    font-size: 1.8em !important;
    line-height: 1.1em;
    margin: 15px auto;
    padding: 15px 25px;
  }

  .title-event h3.clients-title-h3 {
    font-size: 1.2em;
    font-family: var(--fontCoolveticaEl);
    padding: 15px 25px;
  }

  .clients-title-event.title-event {
    margin: 0;
    padding: 0;
    top: 60px;
    left: 0;
    right: 0;
    padding-bottom: 50px;
    position: relative;
  }

  .mobile-v.icon_circle {
    top: unset;
    transform: translateY(60%);
    width: 50px;
    height: 50px;
  }

  .btn_style {
    height: 80px;
    display: block;
    border-radius: 13px;
    border: 1px solid #fff;
    padding: 0;
  }

  .btn_style .flip-box-front {
    min-height: auto;
    height: 80px;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    padding-left: 20px;
    background-size: 180px;
    background-repeat: no-repeat;
    background-position-y: -50px;
    background-position-x: right;
  }

  .btn_style .flip-box-front .lens {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-image: linear-gradient(90deg, #1b1648 55%, #364b632e 80%);
  }

  .btn_style .flip-box-header {
    font-size: 1.3em;
    text-align: left;
    margin: 0;
  }

  .portfolio-section .container {
    margin-bottom: 10px;
  }

  .download-portfolio-btn {
    background: var(--mainColor);
    color: #fff;
    padding: 20px 15px;
    border-radius: 15px;
    margin: 15px auto;
    font-size: 1.1em;
  }

  .form_event {
    width: 100%;
  }

  .form_event .form-control {
    font-size: 18px;
    height: 50px;
  }

  .form_event .btn-light {
    font-size: 20px;
  }

  .map_txt span.icon {
    width: 25px;
    max-width: 25px;
    flex: 0 0 25px;
    height: 25px;
  }

  .map_txt h5 {
    font-size: 18px;
  }

  .map_txt p {
    font-size: 13px;
  }

  .overlay_body {
    background-color: #FFFFFFCC;
    backdrop-filter: blur(4px);
  }

  .form_event>div {
    background-color: #000000a5;
    box-shadow: 0 2px 10px #000000e6;
    border-radius: 15px;
  }

  .form_event h2 {
    font-size: 2.1em;
    text-align: center;
    min-width: 100%;
    font-family: var(--fontCoolveticaBk);
  }

  .form_event .btn_close {
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    border: 1px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--mainColor) !important;
  }

  .all-clients-logos {
    margin: 25px 20px 50px;
    padding: 25px 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 20px;
    background: #6760B4;
    border: 2px solid #5952A399;
  }

  .all-clients-logos img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .navbar-toggler {
    border: none;
    left: 20px;
    top: 10px;
    position: absolute;
    background: transparent;
  }

  .navbar-toggler:hover,
  .navbar-toggler:focus {
    border: none;
    box-shadow: none;
  }

  .navbar-brand {
    position: absolute;
    left: 0;
    transform: translateX(0%);
    right: 0;
    top: 10px;
    margin: 5px auto;
    width: fit-content;
  }

  .navbar-brand img {
    width: 150px;
  }

  .navbar-collapse {
    margin-top: 80px;
  }

  .navbar-sticky.sticky {
    height: 70px;
  }

  .navbar-toggler-icon {
    font-size: 1.5em;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    filter: unset;
  }

  .event_img {
    filter: brightness(0.5);
  }

  .event_img img {
    object-fit: cover;
  }

  .event_intro {
    padding-top: 10px;
  }

  .event_intro .txt_style {
    border: 2px solid #5952A399;
    border-radius: 25px;
    background: #fff;
    padding: 40px 20px 10px;
  }

  .digital-marketing-banner-img img {
    object-fit: contain;
    margin-left: 180px;
  }

  .event-section .container {
    --bs-gutter-x: 0;
  }

  .event_title .h2-span {
    font-family: var(--fontCoolveticaBk);
    font-size: 20px;
  }

  .planning-title,
  .printing-title {
    font-size: 1.3em !important;
  }

  .mobile-title,
  .installations-title,
  .production-title,
  .studio-title,
  .printing-title {
    margin-top: -60px !important;
  }

  .screens-title,
  .robotics-title,
  .photo-title,
  .scripting-title,
  .ui-ux-title,
  .storyb-title,
  .graphic-title,
  .streams-title,
  .booth-title {
    margin-top: -40px !important;
  }

  .installations-title span,
  .production-title span,
  .studio-title span,
  .streams-title span,
  .printing-title span {
    font-family: var(--fontCoolveticaBk);
  }

  .page-404 {
    min-height: 500px;
  }

  .swiper-pagination-bullet {
    border: 1px solid #fff;
  }

  .swiper-pagination-bullet-active {
    background-color: #fff;
    border: 1px solid #cccccc;
  }

  .call-btn {
    inset-inline-start: auto;
    inset-inline-end: 15px;
  }
}
