: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-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;
}
.call-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  width: 200px;
  padding: 0 20px;
}
.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);
  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;
}
.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;
  }
  .clients-section .img_client {
    /* height: auto; */
  }
  .grid_style {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* # => 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-columns: repeat(2, 1fr);
    gap: 2rem 10px;
    max-width: 100%;
  }

  .why_card {
    height: 280px;
    width: 106px;
  }
  .why_card.inactive {
    width: 90px;
  }
  .why_card.active {
    width: 146px;
  }
  .why_card .back p {
    font-size: 10px;
    max-width: 140px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .why_card .front .icon {
    height: 50px;
    padding: 0 0.2rem;
  }

  /* .why_card .back h2 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 1rem !important;
  }
  .why_card .back p {
    font-size: 14px;
  } */
}
/* # => End Why Choose Us..? */

/* $ => Start Services */
.services-section {
  height: 440px;
}
.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: 280px;
}
.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;
}

.social_links {
}
.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;
}
.digital-act .event_card-img{
  height: 300px;
  width: 100%;
}

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

@media (max-width: 480px){
  .title-event{
    position: absolute;
    margin: 0 20px;
    bottom: -60px;
  }
  .title-event h1{
    font-size: 2.8em !important;
  }
  .title-event.inDigital{
    margin-left: 20px;
    bottom: 70px;
  }
  .para-1{
    font-size: 1.5em;
    line-height: 1.1em;
  }
  .titles-event{
    width: 100%;
  }
  .event_card-title{
    font-size: 20px;
    padding: 10px 20px;
    line-height: 1em;
    font-family: var(--fontCoolveticaRg);
    letter-spacing: 1px;
  }
  .event_card-category{
    padding: 10px 20px 0px;
    font-size: 24px;
  }
  .event_card-description{
    padding: 10px 20px;
  }
  .event_card-img{
    min-height: 200px;
  }
  .event_card-img.media{
    height: 200px;
  }
  .digi-act-banner{
    mix-blend-mode: multiply;
  }
  .event_card-img.digi-img{
    height: 200px;
  }
  .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 span, .event_card-type2 h2.left-square.digital span{
    margin-right: 3px;
    display: inline-block;
    width: 23px;
  }
  .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;
  }
  .event_card-type2 h2.event_title{
    font-size: 32px;
  }
  .event_card-type2 h2.left-square.digital::before{
    left: -45px;
  }
  .event_card-type2 .below-left-square{
    margin-left: 33px;
  }
  .media-banner-home{
    mix-blend-mode: multiply;
  }
  
}
@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;
  }
}
/* # => End Event Details */

/* 1366px */
@media screen and (max-width: 1366px) {
  .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;
  }

  .services-section {
    height: 350px;
  }
  .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;
  }
} /* 1366px */

@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) {
  .services-section {
    height: auto;
  }

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

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

  /* .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: 18px;
    margin-bottom: -12px;
  }
  .title h2 {
    font-size: 30px !important;
  }
  .title h2 span {
    font-size: 40px;
  }
  .title p {
    line-height: 1;
    font-size: 14px !important;
    margin-top: -10px !important;
    margin-inline-start: 2px !important;
  }
}

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

@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 (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
}

.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) {
  .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;
  }
}
@media screen and (max-width: 991px) {
  .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;
  }
}
